diff --git a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/EditorWindow/AbilityTimelineEditorConfig.cs b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/EditorWindow/AbilityTimelineEditorConfig.cs index 4baf5bdb..51663546 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/EditorWindow/AbilityTimelineEditorConfig.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/EditorWindow/AbilityTimelineEditorConfig.cs @@ -1,3 +1,5 @@ +using GAS.Runtime; + #if UNITY_EDITOR namespace GAS.Editor { @@ -9,7 +11,7 @@ namespace GAS.Editor public const int StandardFrameUnitWidth = 1; public const int MaxFrameUnitLevel= 20; public const float MinTimerShaftFrameDrawStep = 5; - public int DefaultFrameRate => GASTimer.FrameRate; + public int DefaultFrameRate => JexGasManager.FrameRate; } } #endif \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs index 0de86cef..6e7cd466 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/GameplayAbilitySystem/GASWatcher.cs @@ -136,8 +136,8 @@ namespace GAS.Editor { if (_selected == null || _selected.Id == 0) { - _selected = GAS.GameplayAbilitySystem.GAS.AbilitySystemComponents.Count > 0 - ? GAS.GameplayAbilitySystem.GAS.AbilitySystemComponents[0] as AbilitySystemComponent + _selected = JexGasManager.Editor.AbilitySystemComponents.Count > 0 + ? JexGasManager.Editor.AbilitySystemComponents[0] as AbilitySystemComponent : null; } @@ -165,7 +165,7 @@ namespace GAS.Editor if (!IsPlaying) return; menuScrollPos = EditorGUILayout.BeginScrollView(menuScrollPos, GUI.skin.box); - foreach (var iasc in GAS.GameplayAbilitySystem.GAS.AbilitySystemComponents) + foreach (var iasc in JexGasManager.Editor.AbilitySystemComponents) { var asc = (AbilitySystemComponent)iasc; var presetName = asc.Preset != null ? asc.Preset.name : "NoPreset"; diff --git a/JNFrame2/Assets/HotScripts/JNGame/Root/Math/BaseType/LFloat.cs b/JNFrame2/Assets/HotScripts/JNGame/Root/Math/BaseType/LFloat.cs index ef19f88e..c310f38c 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Root/Math/BaseType/LFloat.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Root/Math/BaseType/LFloat.cs @@ -623,6 +623,11 @@ namespace JNGame.Math public static readonly LFloat EPS_1MS = new LFloat(null, 1L); + /// + /// 10 + /// + public static LFloat L05 => new("",500); + /// /// 10 /// diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/General/GASTimer.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/General/GASTimer.cs index 46a4a08e..6bfb7c37 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/General/GASTimer.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/General/GASTimer.cs @@ -1,4 +1,5 @@ using System; +using GAS.Runtime; using UnityEngine; namespace GAS.General @@ -16,7 +17,7 @@ namespace GAS.General public static int CurrentFrameCount => _currentFrameCount; public static void UpdateCurrentFrameCount() { - _currentFrameCount = Mathf.FloorToInt((Timestamp() - _startTimestamp) / 1000f * FrameRate); + _currentFrameCount = Mathf.FloorToInt((Timestamp() - _startTimestamp) / 1000f * JexGasManager.FrameRate); } private static long _startTimestamp; @@ -37,7 +38,5 @@ namespace GAS.General _deltaTime -= (int)(Timestamp() - _pauseTimestamp); } - private static int _frameRate = 60; - public static int FrameRate => _frameRate; } } \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityAsset.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityAsset.cs index 1ea01f37..bef254d1 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityAsset.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityAsset.cs @@ -78,8 +78,8 @@ namespace GAS.Runtime [TabGroup("Base/H1/V2", "General")] [LabelWidth(WIDTH_LABEL)] [LabelText(SdfIconType.ClockFill, Text = GASTextDefine.ABILITY_CD_TIME)] - [Unit(Units.Second)] - public float CooldownTime; + [Unit(Units.Millisecond)] + public int CooldownTime; // Tags [TabGroup("Base/H1/V3", "Tags", SdfIconType.TagsFill, TextColor = "#45B1FF", Order = 3)] diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityContainer.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityContainer.cs index f170d3b5..3c3aedcc 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityContainer.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilityContainer.cs @@ -14,14 +14,14 @@ namespace GAS.Runtime _owner = owner; } - public void Tick() + public void Tick(int dt) { var abilitySpecs = JexGasObjectPool.Instance.Fetch>(); abilitySpecs.AddRange(_abilities.Values); foreach (var abilitySpec in abilitySpecs) { - abilitySpec.Tick(); + abilitySpec.Tick(dt); } abilitySpecs.Clear(); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilitySpec.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilitySpec.cs index 0b65227d..3295fa7b 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilitySpec.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbilitySpec.cs @@ -212,15 +212,15 @@ namespace GAS.Runtime _onCancelAbility?.Invoke(); } - public void Tick() + public void Tick(int dt) { if (IsActive) { - AbilityTick(); + AbilityTick(dt); } } - protected virtual void AbilityTick() + protected virtual void AbilityTick(int dt) { } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbstractAbility.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbstractAbility.cs index 81b465ac..929e4f59 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbstractAbility.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/AbstractAbility.cs @@ -16,7 +16,7 @@ namespace GAS.Runtime public GameplayEffect Cooldown { get; protected set; } - public float CooldownTime { get; protected set; } + public int CooldownTime { get; protected set; } public GameplayEffect Cost { get; protected set; } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbility.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbility.cs index b64f4dd6..cc5768ce 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbility.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbility.cs @@ -56,10 +56,10 @@ namespace GAS.Runtime _player.Stop(); } - protected override void AbilityTick() + protected override void AbilityTick(int dt) { Profiler.BeginSample("TimelineAbilitySpecT::AbilityTick()"); - _player.Tick(); + _player.Tick(dt); Profiler.EndSample(); } } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbilityPlayer.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbilityPlayer.cs index cfc48cc0..c9023fc0 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbilityPlayer.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/TimelineAbilityPlayer.cs @@ -66,7 +66,7 @@ namespace GAS.Runtime public AssetT AbilityAsset => _abilitySpec.Data.AbilityAsset; public int FrameCount => AbilityAsset.FrameCount; - public int FrameRate => GASTimer.FrameRate; + public int FrameRate => JexGasManager.FrameRate; /// /// 不受播放速率影响的总时间 @@ -241,14 +241,14 @@ namespace GAS.Runtime IsPlaying = false; } - public void Tick() + public void Tick(int dt) { if (!IsPlaying) return; var speed = _abilitySpec.GetPlaySpeed(); speed = Math.Max(0, speed); - _playTotalTime += Time.deltaTime * speed; - var targetFrame = (int)(_playTotalTime * FrameRate); + _playTotalTime += dt * speed; + var targetFrame = ((int)(_playTotalTime * FrameRate)) / 1000; // 追帧 while (_currentFrame < targetFrame) 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 39729a54..62026a7c 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/AbilitySystemComponent.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/AbilitySystemComponent.cs @@ -282,10 +282,10 @@ namespace GAS.Runtime return value; } - public void Tick() + public void Tick(int dt) { - AbilityContainer.Tick(); - GameplayEffectContainer.Tick(); + AbilityContainer.Tick(dt); + GameplayEffectContainer.Tick(dt); } public Dictionary DataSnapshot() 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 797c919e..3c8ecfa3 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/IAbilitySystemComponent.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Component/IAbilitySystemComponent.cs @@ -31,7 +31,7 @@ namespace GAS.Runtime void RemoveGameplayEffect(GameplayEffectSpec spec); - void Tick(); + void Tick(int dt); Dictionary DataSnapshot(); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GameplayAbilitySystem.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GameplayAbilitySystem.cs deleted file mode 100644 index 074d9bca..00000000 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GameplayAbilitySystem.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System.Collections.Generic; -using GAS.General; -using GAS.Runtime; -using UnityEngine; -using UnityEngine.Profiling; - -namespace GAS -{ - public class GameplayAbilitySystem - { - private static GameplayAbilitySystem _gas; - - private GameplayAbilitySystem() - { - const int capacity = 1024; - AbilitySystemComponents = new List(capacity); - GASTimer.InitStartTimestamp(); - - GasHost = new GameObject("GAS Host").AddComponent(); - GasHost.hideFlags = HideFlags.HideAndDontSave; - Object.DontDestroyOnLoad(GasHost.gameObject); - GasHost.gameObject.SetActive(true); - } - - public List AbilitySystemComponents { get; } - - private GasHost GasHost { get; } - - public static GameplayAbilitySystem GAS - { - get - { - _gas ??= new GameplayAbilitySystem(); - return _gas; - } - } - - public bool IsPaused => !GasHost.enabled; - - public void Register(AbilitySystemComponent abilitySystemComponent) - { - // if (!GasHost.enabled) - // { - // Debug.LogWarning("[EX] GAS is paused, can't register new ASC!"); - // return; - // } - - if (AbilitySystemComponents.Contains(abilitySystemComponent)) return; - AbilitySystemComponents.Add(abilitySystemComponent); - } - - public bool Unregister(AbilitySystemComponent abilitySystemComponent) - { - // if (!GasHost.enabled) - // { - // Debug.LogWarning("[EX] GAS is paused, can't unregister ASC!"); - // return false; - // } - - return AbilitySystemComponents.Remove(abilitySystemComponent); - } - - public void Pause() - { - GasHost.enabled = false; - } - - public void Unpause() - { - GasHost.enabled = true; - } - - public void ClearComponents() - { - foreach (var t in AbilitySystemComponents) - t.Disable(); - - AbilitySystemComponents.Clear(); - } - - public void Tick() - { - Profiler.BeginSample($"{nameof(GameplayAbilitySystem)}::Tick()"); - - var abilitySystemComponents = JexGasObjectPool.Instance.Fetch>(); - abilitySystemComponents.AddRange(AbilitySystemComponents); - - foreach (var abilitySystemComponent in abilitySystemComponents) - { - abilitySystemComponent.Tick(); - } - - abilitySystemComponents.Clear(); - JexGasObjectPool.Instance.Recycle(abilitySystemComponents); - - Profiler.EndSample(); - } - } -} \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GameplayAbilitySystem.cs.meta b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GameplayAbilitySystem.cs.meta deleted file mode 100644 index 7068e1cb..00000000 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GameplayAbilitySystem.cs.meta +++ /dev/null @@ -1,3 +0,0 @@ -fileFormatVersion: 2 -guid: 98a325bbe54441739d7e05e89817e9a5 -timeCreated: 1701861619 \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GasHost.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GasHost.cs deleted file mode 100644 index a450beb2..00000000 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GasHost.cs +++ /dev/null @@ -1,21 +0,0 @@ -using GAS.General; -using UnityEngine; - -namespace GAS -{ - public class GasHost : MonoBehaviour - { - private GameplayAbilitySystem _gas => GameplayAbilitySystem.GAS; - - private void Update() - { - GASTimer.UpdateCurrentFrameCount(); - _gas.Tick(); - } - - private void OnDestroy() - { - _gas.ClearComponents(); - } - } -} \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GasHost.cs.meta b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GasHost.cs.meta deleted file mode 100644 index dfeab2a9..00000000 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Core/GasHost.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c17e2cf434ca2f549b2fbd2dc0ecc4c8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffect.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffect.cs index 4a52c2d7..4247651f 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffect.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffect.cs @@ -37,7 +37,7 @@ namespace GAS.Runtime { public readonly string GameplayEffectName; public readonly EffectsDurationPolicy DurationPolicy; - public readonly float Duration; // -1 represents infinite duration + public readonly int Duration; // -1 represents infinite duration public readonly float Period; public readonly GameplayEffect PeriodExecution; public readonly GameplayEffectTagContainer TagContainer; diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectAsset.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectAsset.cs index 15b324b0..59c92c57 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectAsset.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectAsset.cs @@ -55,9 +55,9 @@ namespace GAS.Runtime [LabelWidth(WIDTH_LABEL)] [LabelText(GASTextDefine.LABLE_GE_DURATION, SdfIconType.HourglassSplit)] [EnableIf("@DurationPolicy == EffectsDurationPolicy.Duration")] - [Unit(Units.Second)] + [Unit(Units.Millisecond)] [ValidateInput("@DurationPolicy != EffectsDurationPolicy.Duration || Duration > 0", ERROR_DURATION)] - public float Duration; + public int Duration; [ShowIf("@DurationPolicy != EffectsDurationPolicy.Duration")] [TabGroup(GRP_BASE_H_RIGHT, "Policy")] @@ -65,9 +65,9 @@ namespace GAS.Runtime [LabelWidth(WIDTH_LABEL)] [LabelText(GASTextDefine.LABLE_GE_INTERVAL, SdfIconType.AlarmFill)] [EnableIf("IsDurationalPolicy")] - [Unit(Units.Second)] + [Unit(Units.Millisecond)] [ValidateInput("@DurationPolicy != EffectsDurationPolicy.Infinite || Period <= 0 || Period >= 0.01f", "Period < 0.01", InfoMessageType.Warning)] - public float Period; + public int Period; [ShowIf("@DurationPolicy == EffectsDurationPolicy.Duration"),] [TabGroup(GRP_BASE_H_RIGHT, "Policy")] @@ -80,7 +80,7 @@ namespace GAS.Runtime [PropertyRange(0, "@Duration")] [ValidateInput("@DurationPolicy != EffectsDurationPolicy.Duration || Period <= 0 || Period >= 0.01f", "Period < 0.01", InfoMessageType.Warning)] // 这个Property是为了给"限时型"效果绘制一个范围滑动条 - public float PeriodForDurational + public int PeriodForDurational { get => Period; set => Period = value; @@ -325,9 +325,9 @@ namespace GAS.Runtime public EffectsDurationPolicy GetDurationPolicy() => DurationPolicy; - public float GetDuration() => Duration; + public int GetDuration() => Duration; - public float GetPeriod() => Period; + public int GetPeriod() => Period; public IGameplayEffectData GetPeriodExecution() => PeriodExecution; diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectContainer.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectContainer.cs index 6b3bc630..823f3a76 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectContainer.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectContainer.cs @@ -22,7 +22,7 @@ namespace GAS.Runtime return _gameplayEffectSpecs; } - public void Tick() + public void Tick(int dt) { var gameplayEffectSpecs = JexGasObjectPool.Instance.Fetch>(); gameplayEffectSpecs.AddRange(_gameplayEffectSpecs); @@ -31,7 +31,7 @@ namespace GAS.Runtime { if (gameplayEffectSpec.IsActive) { - gameplayEffectSpec.Tick(); + gameplayEffectSpec.Tick(dt); } } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectData.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectData.cs index e41aef3f..b0cfe8d8 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectData.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectData.cs @@ -21,9 +21,9 @@ namespace GAS.Runtime public virtual EffectsDurationPolicy GetDurationPolicy() => EffectsDurationPolicy.Instant; - public virtual float GetDuration() => -1; + public virtual int GetDuration() => -1; - public virtual float GetPeriod() => 0; + public virtual int GetPeriod() => 0; public virtual IGameplayEffectData GetPeriodExecution() => null; @@ -66,7 +66,7 @@ namespace GAS.Runtime public class InfiniteGameplayEffectData : InstantGameplayEffectData { - public float Period { get; } + public int Period { get; } public IGameplayEffectData PeriodExecution { get; set; } = null; @@ -83,11 +83,11 @@ namespace GAS.Runtime public GrantedAbilityConfig[] GrantedAbilities { get; set; } = Array.Empty(); public GameplayEffectStacking Stacking { get; set; } = GameplayEffectStacking.None; - public InfiniteGameplayEffectData(string name, float period) : base(name) => Period = period; + public InfiniteGameplayEffectData(string name, int period) : base(name) => Period = period; public override EffectsDurationPolicy GetDurationPolicy() => EffectsDurationPolicy.Infinite; - public override float GetPeriod() => Period; + public override int GetPeriod() => Period; public override IGameplayEffectData GetPeriodExecution() => PeriodExecution; @@ -114,14 +114,15 @@ namespace GAS.Runtime public override GameplayEffectStacking GetStacking() => Stacking; } + public class DurationalGameplayEffectData : InfiniteGameplayEffectData { - public float Duration { get; } + public int Duration { get; } - public DurationalGameplayEffectData(string name, float period, float duration) : base(name, period) => Duration = duration; + public DurationalGameplayEffectData(string name, int period, int duration) : base(name, period) => Duration = duration; public override EffectsDurationPolicy GetDurationPolicy() => EffectsDurationPolicy.Duration; - public override float GetDuration() => Duration; + public override int GetDuration() => Duration; } } \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectPeriodTicker.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectPeriodTicker.cs index 3b263102..246981e3 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectPeriodTicker.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectPeriodTicker.cs @@ -25,11 +25,11 @@ namespace GAS.Runtime private float Period => _spec.GameplayEffect.Period; - public void Tick() + public void Tick(int dt) { _spec.TriggerOnTick(); - UpdatePeriod(); + UpdatePeriod(dt); if (_spec.DurationPolicy == EffectsDurationPolicy.Duration && _spec.DurationRemaining() <= 0) { @@ -69,29 +69,26 @@ namespace GAS.Runtime /// /// 注意: Period 小于 0.01f 可能出现误差, 基本够用了 /// - private void UpdatePeriod() + private void UpdatePeriod(int dt) { // 前提: Period不会动态修改 if (Period <= 0) return; - var actualDuration = Time.time - _spec.ActivationTime; - if (actualDuration < Mathf.Epsilon) + if ( _spec.ActivationTime == 0) { // 第一次执行 return; } - var dt = Time.deltaTime; - if (_spec.DurationPolicy == EffectsDurationPolicy.Duration) { - var excessDuration = actualDuration - _spec.Duration; + int excessDuration = _spec.ActivationTime - _spec.Duration; if (excessDuration >= 0) { // 如果超出了持续时间,就减去超出的时间, 此时应该是最后一次执行 dt -= excessDuration; // 为了避免误差, 保证最后一次边界得到执行机会 - dt += 0.0001f; + dt += 1; } } diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectSpec.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectSpec.cs index 9770c90a..608694d5 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectSpec.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/GameplayEffectSpec.cs @@ -150,14 +150,14 @@ namespace GAS.Runtime } public GameplayEffect GameplayEffect { get; private set; } - public float ActivationTime { get; private set; } + public int ActivationTime { get; private set; } public float Level { get; private set; } public AbilitySystemComponent Source { get; private set; } public AbilitySystemComponent Owner { get; private set; } public bool IsApplied { get; private set; } public bool IsActive { get; private set; } internal EntityRef PeriodTicker { get; private set; } - public float Duration { get; private set; } + public int Duration { get; private set; } public EffectsDurationPolicy DurationPolicy { get; private set; } public EntityRef PeriodExecution { get; private set; } public GameplayEffectModifier[] Modifiers { get; private set; } @@ -173,13 +173,12 @@ namespace GAS.Runtime /// public int StackCount { get; private set; } = 1; - public float DurationRemaining() { if (DurationPolicy == EffectsDurationPolicy.Infinite) return -1; - return Mathf.Max(0, Duration - (Time.time - ActivationTime)); + return Mathf.Max(0, Duration - ActivationTime); } public void SetLevel(float level) @@ -187,12 +186,12 @@ namespace GAS.Runtime Level = level; } - public void SetActivationTime(float activationTime) + public void SetActivationTime(int activationTime) { ActivationTime = activationTime; } - public void SetDuration(float duration) + public void SetDuration(int duration) { Duration = duration; } @@ -271,7 +270,7 @@ namespace GAS.Runtime { if (IsActive) return; IsActive = true; - ActivationTime = Time.time; + ActivationTime = 0; TriggerOnActivation(); } @@ -282,9 +281,10 @@ namespace GAS.Runtime TriggerOnDeactivation(); } - public void Tick() + public void Tick(int dt) { - PeriodTicker.Value?.Tick(); + ActivationTime += dt; + PeriodTicker.Value?.Tick(dt); } void TriggerInstantCues(GameplayCueInstant[] cues) @@ -679,7 +679,7 @@ namespace GAS.Runtime public void RefreshDuration() { - ActivationTime = Time.time; + ActivationTime = 0; } private void OnStackCountChange(int oldStackCount, int newStackCount) diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/IGameplayEffectData.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/IGameplayEffectData.cs index 9d4738b7..4edae2c7 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/IGameplayEffectData.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Effects/IGameplayEffectData.cs @@ -4,8 +4,8 @@ { string GetDisplayName(); EffectsDurationPolicy GetDurationPolicy(); - float GetDuration(); - float GetPeriod(); + int GetDuration(); + int GetPeriod(); GameplayEffectSnapshotPolicy GetSnapshotPolicy(); GameplayEffectSpecifiedSnapshotConfig[] GetSpecifiedSnapshotConfigs(); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs index b91222c5..7586e9d7 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs @@ -10,6 +10,22 @@ namespace GAS.Runtime public class JexGasManager { +#if UNITY_EDITOR + //编辑器专用的单例 用于预览GAS + public static JexGasManager Editor = new JexGasManager(); +#endif + + public JexGasManager() + { +#if UNITY_EDITOR + //预览GAS + Editor = this; +#endif + } + + //---------------- 全局信息 ------------------------------------------------------------------------------------------ + public static int FrameRate = 10; //每秒帧 + public List AbilitySystemComponents = new(); /// @@ -18,7 +34,7 @@ namespace GAS.Runtime private JexGasObjectPool ObjectPool = new JexGasObjectPool(); //GAS 更新 - public void Update() + public void Update(int dt) { Profiler.BeginSample($"{nameof(JexGasManager)}::Tick()"); @@ -28,7 +44,7 @@ namespace GAS.Runtime foreach (var abilitySystemComponent in abilitySystemComponents) { - abilitySystemComponent.Tick(); + abilitySystemComponent.Tick(dt); } abilitySystemComponents.Clear(); diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin.meta b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin.meta new file mode 100644 index 00000000..e273c959 --- /dev/null +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 49241b5db40b450f934fb9de0841b2fc +timeCreated: 1729415696 \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize.meta b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize.meta new file mode 100644 index 00000000..a32a602c --- /dev/null +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 7f1317ff9b314419b0e48ae76657c960 +timeCreated: 1729415730 \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize/OdinLVector3.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize/OdinLVector3.cs new file mode 100644 index 00000000..bca5988b --- /dev/null +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize/OdinLVector3.cs @@ -0,0 +1,28 @@ +using System; +using JNGame.Math; +using Sirenix.OdinInspector; +using UnityEngine; + +namespace JNGame.Runtime.Odin.TypeCustomize +{ + [Serializable] + public class OdinLVector3 + { + [LabelText("X (x1000)")] + public int X; + [LabelText("Y (x1000)")] + public int Y; + [LabelText("Z (x1000)")] + public int Z; + + public Vector3 ToVector3() + { + return (new LVector3(true, X * LFloat.RateOfOldPrecision, Y * LFloat.RateOfOldPrecision, Z * LFloat.RateOfOldPrecision)).ToVector3(); + } + + public LVector3 ToLVector3() + { + return (new LVector3(true, X * LFloat.RateOfOldPrecision, Y * LFloat.RateOfOldPrecision, Z * LFloat.RateOfOldPrecision)); + } + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize/OdinLVector3.cs.meta b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize/OdinLVector3.cs.meta new file mode 100644 index 00000000..5246a8ad --- /dev/null +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Odin/TypeCustomize/OdinLVector3.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: bfdfa8bae636419282b29d0cfb4d9239 +timeCreated: 1729415750 \ No newline at end of file diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/Component/Components/JNTransformComponent.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/Component/Components/JNTransformComponent.cs index b71ae936..6148735c 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/Component/Components/JNTransformComponent.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/Component/Components/JNTransformComponent.cs @@ -7,6 +7,7 @@ namespace JNGame.Sync.Frame.Entity.Component.Components { public LVector3 Position = new(); + public LVector3 Scale = new(1,1,1); public bool IsRange(LVector3 target,LFloat len) { diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNContext.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNContext.cs index 29744210..1721d9f4 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNContext.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNContext.cs @@ -113,7 +113,9 @@ namespace JNGame.Sync.Frame.Entity } //生命周期 - public virtual void OnSyncStart(){} + public virtual void OnSyncStart() + { + } public virtual void OnSyncUpdate(int dt) { @@ -128,7 +130,8 @@ namespace JNGame.Sync.Frame.Entity } public virtual void OnSyncDestroy() - {} + { + } } public interface IJNContext : IJNSyncCycle diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNEntity.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNEntity.cs index b09d6fea..796ec1a3 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNEntity.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNEntity.cs @@ -39,13 +39,17 @@ namespace JNGame.Sync.Entity public JNEntityLookup CLookup{ get; set; } /// - /// 坐标 + /// Transform 组件 /// public JNTransformComponent Transform => CLookup.Query(this); /// /// 位置 /// public LVector3 Position => Transform.Position; + /// + /// 大小 + /// + public LVector3 Scale => Transform.Scale; public bool IsDelayDestroy { get; private set; } = false; @@ -142,7 +146,9 @@ namespace JNGame.Sync.Entity } //生命周期 - public virtual void OnSyncStart(){} + public virtual void OnSyncStart() + { + } public virtual void OnSyncUpdate(int dt) { diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/DValuePosition.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/NDataLVector3.cs similarity index 77% rename from JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/DValuePosition.cs rename to JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/NDataLVector3.cs index c26f1cf6..74a939ec 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/DValuePosition.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/NDataLVector3.cs @@ -4,8 +4,11 @@ using UnityEngine; namespace JNGame.Sync.System.Data.Type { + /// + /// 用于传输的 LVector3 类型 + /// [Serializable] - public class DValuePosition + public class NDataLVector3 { public long x; public long y; @@ -23,7 +26,7 @@ namespace JNGame.Sync.System.Data.Type public override bool Equals(object obj) { - if (obj is not DValuePosition old) return false; + if (obj is not NDataLVector3 old) return false; return old.x == x && old.y == y && old.z == z; } @@ -32,9 +35,9 @@ namespace JNGame.Sync.System.Data.Type return new LVector3(new LFloat(true,x), new LFloat(true,y), new LFloat(true,z)); } - public static DValuePosition Build(LVector3 vec3) + public static NDataLVector3 Build(LVector3 vec3) { - return new DValuePosition() + return new NDataLVector3() { x = vec3.x.rawValue, y = vec3.y.rawValue, diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/DValuePosition.cs.meta b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/NDataLVector3.cs.meta similarity index 100% rename from JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/DValuePosition.cs.meta rename to JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Data/Type/NDataLVector3.cs.meta 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 0135efa1..435af9c5 100644 --- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Logic/JNGASSystem.cs +++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/Sync/System/Logic/JNGASSystem.cs @@ -1,5 +1,6 @@ using GAS.Runtime; using JNGame.Sync.System; +using UnityEngine; namespace JNGame.Runtime.Sync.System.Logic { @@ -14,10 +15,10 @@ namespace JNGame.Runtime.Sync.System.Logic /// private JexGasManager _gas = new(); public JexGasManager GAS => _gas; - + public override void OnSyncUpdate(int dt) { - GAS.Update(); + GAS.Update(dt); } public void Register(AbilitySystemComponent abilitySystemComponent) diff --git a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity index 35ea43f2..db659286 100644 --- a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity +++ b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity @@ -123,6 +123,63 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} +--- !u!1001 &4168632 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1449950259} + m_Modifications: + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalPosition.x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7403693568755579174, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + propertyPath: m_Name + value: Cube + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} --- !u!1 &28019073 GameObject: m_ObjectHideFlags: 0 @@ -217,6 +274,38 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &1449950258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1449950259} + m_Layer: 0 + m_Name: EditorPreview + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1449950259 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449950258} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1872085155} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1745439352 GameObject: m_ObjectHideFlags: 0 @@ -248,6 +337,8 @@ MonoBehaviour: m_EditorClassIdentifier: World: {fileID: 2144549411} Box: {fileID: 7403693568755579174, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + Preset: {fileID: 11400000, guid: 7692a8d07949a5c46b6b5325ebb9a422, type: 2} + GE_JisolDemo1: {fileID: 11400000, guid: 25ef9a2206b693c4f9b93af896a038a8, type: 2} --- !u!4 &1745439354 Transform: m_ObjectHideFlags: 0 @@ -263,6 +354,11 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1872085155 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1418229812123219311, guid: 2e5d0c510b71c714aaccc714aca99afc, type: 3} + m_PrefabInstance: {fileID: 4168632} + m_PrefabAsset: {fileID: 0} --- !u!1 &2104190881 GameObject: m_ObjectHideFlags: 0 @@ -394,3 +490,4 @@ SceneRoots: - {fileID: 2104190884} - {fileID: 2144549412} - {fileID: 1745439354} + - {fileID: 1449950259} diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Player.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Player.asset index a8ab7462..393bf78b 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Player.asset +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Player.asset @@ -13,7 +13,8 @@ MonoBehaviour: m_Name: ASC_Player m_EditorClassIdentifier: Description: - AttributeSets: [] + AttributeSets: + - BaseAttribute BaseTags: [] BaseAbilities: - {fileID: 11400000, guid: b78ae002fbbf510419a39987f22201f1, type: 2} diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset index 1ac05b9a..4a5a6c8c 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset @@ -29,18 +29,25 @@ MonoBehaviour: DurationalCues: - trackName: "\u6301\u7EEDGameplayCue\u8F68\u9053" clipEvents: - - startFrame: 6 - durationFrame: 34 + - startFrame: 0 + durationFrame: 53 cue: {fileID: 11400000, guid: 0a77e9c8e20008944a99814e0b5a4aed, type: 2} InstantCues: - trackName: "\u5373\u65F6Cue\u8F68\u9053" - markEvents: [] + markEvents: + - startFrame: 55 + cues: + - {fileID: 11400000, guid: 041f193225d7b1e49a75af0003a4111b, type: 2} ReleaseGameplayEffect: - trackName: "GameplayEffect\u91CA\u653E\u8F68\u9053" markEvents: [] BuffGameplayEffects: - trackName: Buff - clipEvents: [] + clipEvents: + - startFrame: 8 + durationFrame: 30 + buffTarget: 0 + gameplayEffect: {fileID: 11400000, guid: 25ef9a2206b693c4f9b93af896a038a8, type: 2} InstantTasks: - trackName: "\u5373\u65F6Task\u8F68\u9053" markEvents: [] diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset index 6e9e461e..853f54bb 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset @@ -15,5 +15,11 @@ MonoBehaviour: Description: RequiredTags: [] ImmunityTags: [] - start: {x: 0, y: 0, z: 0} - end: {x: 10, y: 0, z: 0} + start: + X: 0 + Y: 0 + Z: 0 + end: + X: 10000 + Y: 0 + Z: 0 diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset new file mode 100644 index 00000000..f9830955 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 725500c3ce824f8daa3a4be247f4f131, type: 3} + m_Name: GCue_PlayerDemo02 + m_EditorClassIdentifier: + Description: + RequiredTags: [] + ImmunityTags: [] diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset.meta b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset.meta new file mode 100644 index 00000000..d2272709 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2aa1d58fb62dc104484f4f2bf1673303 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset new file mode 100644 index 00000000..f0c9b0b4 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset @@ -0,0 +1,73 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b9395a0be3e547f48bd1c8320edc6c58, type: 3} + m_Name: GE_JisolDemo1 + m_EditorClassIdentifier: + Description: "\u7B80\u5355\u65BD\u52A0 debuff \u548C \u6263\u8840" + DurationPolicy: 3 + Duration: 10000 + Period: 0 + PeriodExecution: {fileID: 0} + Stacking: + stackingType: 0 + stackingCodeName: + limitCount: 0 + durationRefreshPolicy: 0 + periodResetPolicy: 0 + expirationPolicy: 0 + denyOverflowApplication: 0 + clearStackOnOverflow: 0 + overflowEffects: [] + GrantedAbilities: [] + Modifiers: + - AttributeName: AS_BaseAttribute.HP + AttributeSetName: AS_BaseAttribute + AttributeShortName: HP + ModiferMagnitude: 10 + Operation: 3 + MMC: {fileID: 11400000, guid: 331222964d02d1349b1a9c717605c8e9, type: 2} + AssetTags: + - _name: DeBuff + _hashCode: -251087900 + _shortName: DeBuff + _ancestorHashCodes: + _ancestorNames: [] + - _name: Buff + _hashCode: 937056111 + _shortName: Buff + _ancestorHashCodes: + _ancestorNames: [] + GrantedTags: + - _name: Buff + _hashCode: 937056111 + _shortName: Buff + _ancestorHashCodes: + _ancestorNames: [] + - _name: DeBuff + _hashCode: -251087900 + _shortName: DeBuff + _ancestorHashCodes: + _ancestorNames: [] + ApplicationRequiredTags: [] + OngoingRequiredTags: [] + RemoveGameplayEffectsWithTags: [] + ApplicationImmunityTags: [] + CueOnExecute: [] + CueDurational: [] + CueOnAdd: + - {fileID: 11400000, guid: 041f193225d7b1e49a75af0003a4111b, type: 2} + CueOnRemove: + - {fileID: 11400000, guid: 2aa1d58fb62dc104484f4f2bf1673303, type: 2} + CueOnActivate: [] + CueOnDeactivate: [] + SnapshotPolicy: 0 + SpecifiedSnapshotConfigs: [] diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset.meta b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset.meta new file mode 100644 index 00000000..c9c77e27 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25ef9a2206b693c4f9b93af896a038a8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset new file mode 100644 index 00000000..2627f975 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b964e9ee395740d6b0f8e42978c1ba35, type: 3} + m_Name: MMC_AttrModCalculation + m_EditorClassIdentifier: + Description: "\u57FA\u7840\u8FD0\u7B97" diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset.meta b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset.meta new file mode 100644 index 00000000..18eb637d --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 331222964d02d1349b1a9c717605c8e9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/AbilitySystemSamplesComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/AbilitySystemSamplesComponent.cs deleted file mode 100644 index 298976d2..00000000 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/AbilitySystemSamplesComponent.cs +++ /dev/null @@ -1,17 +0,0 @@ -using GAS.Runtime; -using JNGame.Sync.Entity; - -namespace GASSamples.Scripts -{ - public class AbilitySystemSamplesComponent : AbilitySystemComponent - { - - public JNEntity Entity { get; protected set; } - - public AbilitySystemSamplesComponent(JNEntity entity) - { - Entity = entity; - } - - } -} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/AbilitySystemSamplesComponent.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/AbilitySystemSamplesComponent.cs.meta deleted file mode 100644 index 161a9d7f..00000000 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/AbilitySystemSamplesComponent.cs.meta +++ /dev/null @@ -1,3 +0,0 @@ -fileFormatVersion: 2 -guid: 1384fe4e23ec4d718ac4df20198da171 -timeCreated: 1729247365 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs index 03b4316e..0246472f 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs @@ -1,5 +1,9 @@ using GAS.General; using GAS.Runtime; +using GASSamples.Scripts; +using GASSamples.Scripts.Game.GAS; +using JNGame.Math; +using JNGame.Runtime.Odin.TypeCustomize; using Sirenix.OdinInspector; using UnityEngine; @@ -10,10 +14,10 @@ namespace Demo.Scripts.GAS.GameplayCue [BoxGroup] [LabelText("开始位置")] - public Vector3 start; + public OdinLVector3 start; [BoxGroup] [LabelText("结束位置")] - public Vector3 end; + public OdinLVector3 end; public override GameplayCueDurationalSpec CreateSpec(GameplayCueParameters parameters) { @@ -23,11 +27,11 @@ namespace Demo.Scripts.GAS.GameplayCue #if UNITY_EDITOR public override void OnEditorPreview(GameObject previewObject, int frameIndex, int startFrame, int endFrame) { - Debug.Log($"GameplayCue_PlayerDemo01 {previewObject} {frameIndex}"); + Debug.Log($"GameplayCueDurational_PlayerDemo01 {previewObject} {frameIndex}"); if (frameIndex >= startFrame && frameIndex <= endFrame) { - previewObject.transform.position = Vector3.Lerp(start, end, (float)(frameIndex - startFrame) / endFrame); + previewObject.transform.position = Vector3.Lerp(start.ToVector3(), end.ToVector3(), (float)(frameIndex - startFrame) / endFrame); } } @@ -38,13 +42,10 @@ namespace Demo.Scripts.GAS.GameplayCue public class GameplayCueDurational_PlayerDemo01_Spec : GameplayCueDurationalSpec { - private GameplayCueDurational_PlayerDemo01 Cue; - public GameplayCueDurational_PlayerDemo01_Spec(GameplayCueDurational_PlayerDemo01 cue, GameplayCueParameters parameters) : base(cue, parameters) { - Cue = cue; } - + public override void OnAdd(int frame,int startFrame,int endFrame) { Debug.Log("GameplayCueDurational_PlayerDemo01_Spec OnAdd"); @@ -67,7 +68,10 @@ namespace Demo.Scripts.GAS.GameplayCue public override void OnTick(int frame,int startFrame,int endFrame) { + Debug.Log($"GameplayCueDurational_PlayerDemo01_Spec OnTick {frame}"); + ((GAbilitySystemComponent)Owner).Entity.Transform.Position = LVector3.Lerp(cue.start.ToLVector3(), cue.end.ToLVector3(), (LFloat)(frame - startFrame) / endFrame); + } } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo01.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo01.cs index 8660ba60..6632f401 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo01.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo01.cs @@ -1,4 +1,6 @@ using GAS.Runtime; +using GASSamples.Scripts.Game.GAS; +using JNGame.Math; using UnityEngine; namespace Demo.Scripts.GAS.GameplayCue @@ -10,14 +12,6 @@ namespace Demo.Scripts.GAS.GameplayCue Debug.Log($"GameplayCue_PlayerDemo01 CreateSpec"); return new GameplayCue_PlayerDemo01_Spec(this,parameters); } - -#if UNITY_EDITOR - public override void OnEditorPreview(GameObject previewObject, int frame, int startFrame) - { - Debug.Log($"GameplayCue_PlayerDemo01 {previewObject}"); - } -#endif - } public class GameplayCue_PlayerDemo01_Spec : GameplayCueInstantSpec @@ -29,6 +23,7 @@ namespace Demo.Scripts.GAS.GameplayCue public override void Trigger() { + ((GAbilitySystemComponent)Owner).Entity.Transform.Scale = new LVector3(LFloat.L05,LFloat.L05,LFloat.L05); } } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo02.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo02.cs new file mode 100644 index 00000000..a4945da1 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo02.cs @@ -0,0 +1,32 @@ +using GAS.Runtime; +using GASSamples.Scripts.Game.GAS; +using JNGame.Math; +using UnityEngine; + +namespace Demo.Scripts.GAS.GameplayCue +{ + public class GameplayCue_PlayerDemo02 : GameplayCueInstant + { + public override GameplayCueInstantSpec CreateSpec(GameplayCueParameters parameters) + { + Debug.Log($"GameplayCue_PlayerDemo02 CreateSpec"); + return new GameplayCue_PlayerDemo02_Spec(this,parameters); + } + } + + + public class GameplayCue_PlayerDemo02_Spec : GameplayCueInstantSpec + { + + public GameplayCue_PlayerDemo02_Spec(GameplayCueInstant cue, GameplayCueParameters parameters) : base(cue, parameters) + { + } + + public override void Trigger() + { + ((GAbilitySystemComponent)Owner).Entity.Transform.Scale = new LVector3(1,1,1); + } + + } + +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo02.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo02.cs.meta new file mode 100644 index 00000000..ab3bc3fd --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCue_PlayerDemo02.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 725500c3ce824f8daa3a4be247f4f131 +timeCreated: 1729419424 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC.meta new file mode 100644 index 00000000..ee12fb10 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: dd4c4a195812409f935d57313ac16614 +timeCreated: 1729418595 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs new file mode 100644 index 00000000..c9d101a3 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs @@ -0,0 +1,19 @@ +using GAS.Runtime; +using JNGame.Math; +using UnityEngine; + +namespace GASSamples.Scripts.GAS.MMC +{ + + /// + /// 基础运算 + /// + [CreateAssetMenu(fileName = "AttrModCalculation", menuName = "GAS/MMC/AttrModCalculation")] + public class AttrModCalculation : ModifierMagnitudeCalculation + { + public override float CalculateMagnitude(GameplayEffectSpec spec, float modifierMagnitude) + { + return modifierMagnitude; + } + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs.meta new file mode 100644 index 00000000..6cb32288 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: b964e9ee395740d6b0f8e42978c1ba35 +timeCreated: 1729418602 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Data/JNGASBoxDataSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Data/JNGASBoxDataSystem.cs index b58c4b51..56621699 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Data/JNGASBoxDataSystem.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Data/JNGASBoxDataSystem.cs @@ -4,6 +4,7 @@ using GASSamples.Scripts.Game.Entity.Contexts; using JNGame.Sync.System; using JNGame.Sync.System.Data; using JNGame.Sync.System.Data.Type; +using UnityEngine.Serialization; using NotImplementedException = System.NotImplementedException; namespace GASSamples.Scripts.Game.Logic.Data @@ -17,7 +18,8 @@ namespace GASSamples.Scripts.Game.Logic.Data [Serializable] public class JNGASBoxValue { - public DValuePosition Position = null; + public NDataLVector3 Position = null; + public NDataLVector3 Scale = null; } public class JNGASBoxData : ISData @@ -47,7 +49,8 @@ namespace GASSamples.Scripts.Game.Logic.Data { Value = new () { - Position = DValuePosition.Build(entity.Position) + Position = NDataLVector3.Build(entity.Position), + Scale = NDataLVector3.Build(entity.Scale) } }); } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components/JNGASComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components/JNGASComponent.cs deleted file mode 100644 index 3d965c50..00000000 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components/JNGASComponent.cs +++ /dev/null @@ -1,39 +0,0 @@ -using GAS.Runtime; -using GASSamples.Scripts.Game.GAS; -using JNGame.Runtime.Sync.System.Logic; -using JNGame.Sync.Entity.Component; - -namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Components -{ - public class JNGASComponent : JNComponent - { - - private GAbilitySystemComponent ASC = new (); - - public override void OnSyncStart() - { - base.OnSyncStart(); - - //初始化ASC - GetSystem().Register(ASC); - } - - public void SetPreset(AbilitySystemComponentPreset ascPreset) - { - ASC.SetPreset(ascPreset); - } - - public void SetLevel(int level) - { - ASC.SetLevel(level); - } - - public override void OnSyncDestroy() - { - base.OnSyncDestroy(); - - //销毁ASC - GetSystem().Unregister(ASC); - } - } -} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS/GAbilitySystemComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS/GAbilitySystemComponent.cs deleted file mode 100644 index c42bbdc8..00000000 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS/GAbilitySystemComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using GAS.Runtime; - -namespace GASSamples.Scripts.Game.GAS -{ - - public class GAbilitySystemComponent : AbilitySystemComponent - { - - } - -} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/EDContexts.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/EDContexts.cs similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/EDContexts.cs rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/EDContexts.cs diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/EDContexts.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/EDContexts.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/EDContexts.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/EDContexts.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components.meta 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 new file mode 100644 index 00000000..d9aabe97 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs @@ -0,0 +1,54 @@ +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 +{ + public class JNGASComponent : JNComponent + { + + private GAbilitySystemComponent _asc; + public GAbilitySystemComponent ASC => _asc; + + public override void OnSyncStart() + { + base.OnSyncStart(); + _asc = new (Entity); + //注册ASC + GetSystem().Register(ASC); + } + + public override void OnSyncDestroy() + { + base.OnSyncDestroy(); + //取消注册ASC + GetSystem().Unregister(ASC); + } + + public void InitWithPreset(AbilitySystemComponentPreset ascPreset,int level) + { + ASC.SetPreset(ascPreset); + ASC.SetLevel(level); + ASC.InitWithPreset(ASC.Level,ASC.Preset); + } + + /// + /// 附加效果给自己 + /// + public void ApplyGameplayEffectToSelf(GameplayEffect gameplayEffect) + { + ASC.ApplyGameplayEffectToSelf(gameplayEffect); + } + + /// + /// 激活技能 + /// + public void TryActivateAbility(string name) + { + ASC.TryActivateAbility(name); + } + + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components/JNGASComponent.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Components/JNGASComponent.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller/JNGASBoxController.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs similarity index 52% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller/JNGASBoxController.cs rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs index 5af44795..33109671 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller/JNGASBoxController.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs @@ -1,4 +1,7 @@ +using Game.Logic.System.Usual; +using GAS.Runtime; using GASSamples.Scripts.Game.Entity.Nodes.Component.Components; +using JNGame.Runtime.Sync.System.Logic; using JNGame.Sync.Entity.Component; namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Controller @@ -10,13 +13,19 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Controller public override void OnSyncStart() { - + base.OnSyncStart(); //设置GAS 角色 - // GAS.SetPreset(); - - + GAS.InitWithPreset(GetSystem().Preset,1); + + //附加效果测试 + // GAS.ApplyGameplayEffectToSelf(new GameplayEffect(GetSystem().GE_JisolDemo1)); + + //释放技能 + GAS.TryActivateAbility(GAbilityLib.JisolDemo1.Name); + + } } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller/JNGASBoxController.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Controller/JNGASBoxController.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Controller/JNGASBoxController.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs index 8e22885e..fe37575b 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs @@ -15,15 +15,15 @@ namespace GASSamples.Scripts.Game.Entity.Nodes.Component.Lookup protected override void BindIndex() { base.BindIndex(); - Controller = Next(); GAS = Next(); + Controller = Next(); } protected override void BindType(KeyValue types) { base.BindType(types); - types.Add(Controller,typeof(JNGASBoxController)); types.Add(GAS,typeof(JNGASComponent)); + types.Add(Controller,typeof(JNGASBoxController)); } } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Lookup/JNGASBoxLookup.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts/JNGASBoxContext.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs similarity index 59% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts/JNGASBoxContext.cs rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs index 2da774f9..3c52fbfd 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts/JNGASBoxContext.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs @@ -1,4 +1,6 @@ using GASSamples.Scripts.Game.Entity.Nodes; +using GASSamples.Scripts.Game.Entity.Nodes.Component.Components; +using GASSamples.Scripts.Game.Entity.Nodes.Component.Controller; using JNGame.Sync.Frame.Entity; namespace GASSamples.Scripts.Game.Entity.Contexts @@ -8,6 +10,8 @@ namespace GASSamples.Scripts.Game.Entity.Contexts protected override JNGASBox BindComponent(JNGASBox entity) { base.BindComponent(entity); + entity.AddComponent(); + entity.AddComponent(); return entity; } } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts/JNGASBoxContext.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/Contexts/JNGASBoxContext.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Contexts/JNGASBoxContext.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/JNGASBox.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs similarity index 78% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/JNGASBox.cs rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs index 53b55190..934745a7 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/JNGASBox.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs @@ -1,3 +1,4 @@ +using GASSamples.Scripts.Game.Entity.Nodes.Component.Components; using GASSamples.Scripts.Game.Entity.Nodes.Component.Controller; using GASSamples.Scripts.Game.Entity.Nodes.Component.Lookup; using JNGame.Sync.Entity; @@ -8,6 +9,7 @@ namespace GASSamples.Scripts.Game.Entity.Nodes public class JNGASBox : JNEntity { + public JNGASComponent GAS => CLookup.Query(this); public JNGASBoxController Controller => CLookup.Query(this); public override JNEntityLookup NewCLookup() diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/JNGASBox.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Entity/Nodes/JNGASBox.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/JNGASBox.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs new file mode 100644 index 00000000..3018f619 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs @@ -0,0 +1,20 @@ +using GAS.Runtime; +using JNGame.Sync.Entity; + +namespace GASSamples.Scripts.Game.GAS +{ + + public class GAbilitySystemComponent : AbilitySystemComponent + { + + + public IJNEntity Entity { get; protected set; } + + public GAbilitySystemComponent(IJNEntity entity) + { + Entity = entity; + } + + } + +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS/GAbilitySystemComponent.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/GAS/GAbilitySystemComponent.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/GAS/GAbilitySystemComponent.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic.meta new file mode 100644 index 00000000..1999f9a2 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 796b9c926a8f40ab9361c6955888747c +timeCreated: 1729410298 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/DWorldSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic/DWorldSystem.cs similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/DWorldSystem.cs rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic/DWorldSystem.cs diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/DWorldSystem.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic/DWorldSystem.cs.meta similarity index 100% rename from JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/DWorldSystem.cs.meta rename to JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Logic/DWorldSystem.cs.meta diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual.meta new file mode 100644 index 00000000..fd498923 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: ae051ac88cb04928b9d55f4e7c6fdc07 +timeCreated: 1729410272 \ No newline at end of file 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 new file mode 100644 index 00000000..00359a86 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs @@ -0,0 +1,23 @@ +using GAS.Runtime; +using GASSamples.Scripts; +using JNGame.Sync.System; + +namespace Game.Logic.System.Usual +{ + /// + /// 游戏数据 + /// + public class DDataSystem : SLogicSystem + { + + public AbilitySystemComponentPreset Preset { get; private set; } + public IGameplayEffectData GE_JisolDemo1 { get; private set; } + + public override void OnSyncStart() + { + base.OnSyncStart(); + Preset = App.Resource.Preset; + GE_JisolDemo1 = App.Resource.GE_JisolDemo1; + } + } +} \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs.meta new file mode 100644 index 00000000..b87513a3 --- /dev/null +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/Logic/System/Usual/DDataSystem.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 743622b492f0406895154855d13ed6db +timeCreated: 1729410339 \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/Entity/VDBox.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/Entity/VDBox.cs index e4668327..62017e0c 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/Entity/VDBox.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Game/View/Entity/VDBox.cs @@ -19,12 +19,13 @@ namespace GASSamples.Scripts.Game.View.Entity public override void ViewUpdate(JNGASBoxData data, GameObject view) { view.transform.DOMove(data.Value.Position.ToVector3(),0.5f); + view.transform.DOScale(data.Value.Scale.ToVector3(),0.5f); } public override GameObject NewView(JNGASBoxData data) { var view = Object.Instantiate(Box, World.transform); - view.name = $"Boss_{data.Id}"; + view.name = $"Box_{data.Id}"; return view; } diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs index 745a8bf6..8b5da2ce 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAbilityLib.gen.cs @@ -17,7 +17,7 @@ namespace GAS.Runtime public Type AbilityClassType; } - public static AbilityInfo JisolDemo1 = new AbilityInfo { Name = "JisolDemo1", AssetPath = "Assets/Demo/GAS/Config/GameplayAbilityLib/JisolDemo1.asset",AbilityClassType = typeof(GAS.Runtime.TimelineAbility) }; + 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 diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrLib.gen.cs index 817eb09f..44021397 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrLib.gen.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrLib.gen.cs @@ -9,10 +9,13 @@ namespace GAS.Runtime { public static class GAttrLib { + /// 血量 + public const string HP = "HP"; // For facilitating the creation of a Value Dropdown in the editor. public static readonly IReadOnlyList AttributeNames = new List { + HP, }; } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrSetLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrSetLib.gen.cs index d4e671e2..ea8ccdb0 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrSetLib.gen.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GAttrSetLib.gen.cs @@ -8,18 +8,68 @@ using System.Collections.Generic; namespace GAS.Runtime { + public class AS_BaseAttribute : AttributeSet + { + #region HP + + /// 血量 + public AttributeBase HP { get; } = new("AS_BaseAttribute", "HP", 0f, CalculateMode.Stacking, (SupportedOperation)31, float.MinValue, float.MaxValue); + + public void InitHP(float value) => HP.Init(value); + public void SetCurrentHP(float value) => HP.SetCurrentValue(value); + public void SetBaseHP(float value) => HP.SetBaseValue(value); + public void SetMinHP(float value) => HP.SetMinValue(value); + public void SetMaxHP(float value) => HP.SetMaxValue(value); + public void SetMinMaxHP(float min, float max) => HP.SetMinMaxValue(min, max); + + #endregion HP + + public override AttributeBase this[string key] + { + get + { + switch (key) + { + case "HP": + return HP; + } + + return null; + } + } + + public override string[] AttributeNames { get; } = + { + "HP", + }; + + public override void SetOwner(AbilitySystemComponent owner) + { + _owner = owner; + HP.SetOwner(owner); + } + + public static class Lookup + { + public const string HP = "AS_BaseAttribute.HP"; + } + } + public static class GAttrSetLib { public static readonly IReadOnlyDictionary AttrSetTypeDict = new Dictionary { + { "BaseAttribute", typeof(AS_BaseAttribute) }, }; public static readonly IReadOnlyDictionary TypeToName = new Dictionary { + { typeof(AS_BaseAttribute), nameof(AS_BaseAttribute) }, }; public static readonly IReadOnlyList AttributeFullNames = new List { + "AS_BaseAttribute.HP", }; } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GTagLib.gen.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GTagLib.gen.cs index 47d88584..213964b4 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GTagLib.gen.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Gen/GTagLib.gen.cs @@ -9,12 +9,16 @@ namespace GAS.Runtime { public static class GTagLib { - /// Ability - public static GameplayTag Ability { get; } = new("Ability"); + /// Buff + public static GameplayTag Buff { get; } = new("Buff"); + + /// DeBuff + public static GameplayTag DeBuff { get; } = new("DeBuff"); public static readonly IReadOnlyDictionary TagMap = new Dictionary { - ["Ability"] = Ability, + ["Buff"] = Buff, + ["DeBuff"] = DeBuff, }; } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs index 67852aee..74fafc8c 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/JNGResService.cs @@ -1,4 +1,5 @@ using System.Threading.Tasks; +using GAS.Runtime; using JNGame.Network; using UnityEngine; @@ -11,11 +12,18 @@ namespace GASSamples.Scripts //Box public GameObject Box; + + //Preset + public AbilitySystemComponentPreset Preset; + + //GE_JisolDemo1 + public IGameplayEffectData GE_JisolDemo1; public override Task OnInit() { return base.OnInit(); } + } } \ No newline at end of file diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs index e1411ecf..76981a11 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Main.cs @@ -1,5 +1,6 @@ using System; using DefaultNamespace; +using GAS.Runtime; using JNGame.Runtime; using UnityEngine; @@ -10,7 +11,10 @@ namespace GASSamples.Scripts public GameObject World; public GameObject Box; + public AbilitySystemComponentPreset Preset; + public GameplayEffectAsset GE_JisolDemo1; + private JNGASFrameSystem _frameSystem; private int _totalTime; private int _frameIndex; @@ -21,6 +25,8 @@ namespace GASSamples.Scripts await JNetGame.Instance.Init(App.AllSystem()); App.Resource.World = World; App.Resource.Box = Box; + App.Resource.Preset = Preset; + App.Resource.GE_JisolDemo1 = GE_JisolDemo1; _frameSystem = new JNGASFrameSystem(); _frameSystem.Initialize(); @@ -35,6 +41,7 @@ namespace GASSamples.Scripts //自动推帧 if (_totalTime >= _frameSystem.NSyncTime) { + _totalTime -= _frameSystem.NSyncTime; _frameSystem.AddFrame(new JNFrameInfo() { Index = _frameIndex++ diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs index 8b57d588..1d4d8e2c 100644 --- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs +++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs @@ -1,5 +1,6 @@ using Cysharp.Threading.Tasks; using Game.Input; +using Game.Logic.System.Usual; using GASSamples.Scripts.Game.Entity; using GASSamples.Scripts.Game.Logic.Data; using GASSamples.Scripts.Game.Logic.System; @@ -19,8 +20,8 @@ namespace DefaultNamespace { return new SLogicSystem[] { - //基础数据 new DInputSystem(), //游戏输入 + new DDataSystem(), //数据 系统 new JNGASSystem(), //GAS 系统 new DWorldSystem(), //世界逻辑 }; diff --git a/JNFrame2/Assets/Scripts/Samples/Game/Data/State/GDataBaseSystem.cs b/JNFrame2/Assets/Scripts/Samples/Game/Data/State/GDataBaseSystem.cs index da211ab1..f9471ef5 100644 --- a/JNFrame2/Assets/Scripts/Samples/Game/Data/State/GDataBaseSystem.cs +++ b/JNFrame2/Assets/Scripts/Samples/Game/Data/State/GDataBaseSystem.cs @@ -11,6 +11,7 @@ using JNGame.Sync.System.Data; using JNGame.Network.Action; using JNGame.Sync.System.Data.Type; using TouchSocket.Core; +using UnityEngine.Serialization; namespace Game.JNGState.Logic.Data { @@ -23,7 +24,7 @@ namespace Game.JNGState.Logic.Data [Serializable] public class GDataValue { - public DValuePosition Position = null; + public NDataLVector3 Position = null; } public abstract class IGDataBase : ISTileData @@ -58,7 +59,7 @@ namespace Game.JNGState.Logic.Data public override void BindEntity(JNTileEntity entity) { base.BindEntity(entity); - Value.Position = new DValuePosition() + Value.Position = new NDataLVector3() { x = Node.Position.x.rawValue, y = Node.Position.y.rawValue, diff --git a/JNFrame2/GASSamples.csproj b/JNFrame2/GASSamples.csproj index 2e132e8c..1d1ae470 100644 --- a/JNFrame2/GASSamples.csproj +++ b/JNFrame2/GASSamples.csproj @@ -74,27 +74,29 @@ - - - - - + + + + - - + + - + + - + + + diff --git a/JNFrame2/JNFrame2.sln b/JNFrame2/JNFrame2.sln index fa90e054..cfd9e041 100644 --- a/JNFrame2/JNFrame2.sln +++ b/JNFrame2/JNFrame2.sln @@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{62753af3-1e0c-69e5-d3db-cf11598cd1b3}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GASSamples", "GASSamples.csproj", "{cba4eb94-86d9-7b86-6816-9eef31e3bef2}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JNGame.Editor", "JNGame.Editor.csproj", "{17b58f54-5d7b-7430-a784-74a4540f4c68}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StompyRobot.SRF", "StompyRobot.SRF.csproj", "{356a0975-52a0-edee-67e5-a8751d23d388}" @@ -27,8 +29,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SHFrame", "SHFrame.csproj", EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameScripts", "GameScripts.csproj", "{c0e4a2c6-f110-93aa-0a2f-48b1bf0890de}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GASSamples", "GASSamples.csproj", "{cba4eb94-86d9-7b86-6816-9eef31e3bef2}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HotMain", "HotMain.csproj", "{a37cd6bb-4243-4e53-0fb1-da1c51041fde}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-firstpass", "Assembly-CSharp-firstpass.csproj", "{082457fe-fcb4-40d1-c6ce-98e6d3097f89}" @@ -64,6 +64,8 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {62753af3-1e0c-69e5-d3db-cf11598cd1b3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {62753af3-1e0c-69e5-d3db-cf11598cd1b3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {cba4eb94-86d9-7b86-6816-9eef31e3bef2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {cba4eb94-86d9-7b86-6816-9eef31e3bef2}.Debug|Any CPU.Build.0 = Debug|Any CPU {17b58f54-5d7b-7430-a784-74a4540f4c68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {17b58f54-5d7b-7430-a784-74a4540f4c68}.Debug|Any CPU.Build.0 = Debug|Any CPU {356a0975-52a0-edee-67e5-a8751d23d388}.Debug|Any CPU.ActiveCfg = Debug|Any CPU @@ -88,8 +90,6 @@ Global {56fe4698-9e38-f97f-0948-b4a412ec01fc}.Debug|Any CPU.Build.0 = Debug|Any CPU {c0e4a2c6-f110-93aa-0a2f-48b1bf0890de}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {c0e4a2c6-f110-93aa-0a2f-48b1bf0890de}.Debug|Any CPU.Build.0 = Debug|Any CPU - {cba4eb94-86d9-7b86-6816-9eef31e3bef2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {cba4eb94-86d9-7b86-6816-9eef31e3bef2}.Debug|Any CPU.Build.0 = Debug|Any CPU {a37cd6bb-4243-4e53-0fb1-da1c51041fde}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {a37cd6bb-4243-4e53-0fb1-da1c51041fde}.Debug|Any CPU.Build.0 = Debug|Any CPU {082457fe-fcb4-40d1-c6ce-98e6d3097f89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU diff --git a/JNFrame2/JNGame.Runtime.csproj b/JNFrame2/JNGame.Runtime.csproj index ba1f8e6a..ec4b7df2 100644 --- a/JNFrame2/JNGame.Runtime.csproj +++ b/JNFrame2/JNGame.Runtime.csproj @@ -140,7 +140,6 @@ - @@ -217,8 +216,6 @@ - - @@ -258,6 +255,7 @@ + @@ -317,6 +315,7 @@ + diff --git a/JNFrame2/Logs/AssetImportWorker0-prev.log b/JNFrame2/Logs/AssetImportWorker0-prev.log index e6a6dd16..673256a6 100644 --- a/JNFrame2/Logs/AssetImportWorker0-prev.log +++ b/JNFrame2/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ D:/Jisol/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker0.log -srvPort -57261 +58888 Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 D:/Jisol/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,12 +49,12 @@ D:/Jisol/JisolGame/JNFrame2 "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [22824] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3825777297 [EditorId] 3825777297 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [33012] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3477239101 [EditorId] 3477239101 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [22824] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3825777297 [EditorId] 3825777297 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [33012] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3477239101 [EditorId] 3477239101 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... [Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers. -Refreshing native plugins compatible for Editor in 78.58 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 330.58 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) [Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems @@ -70,47 +70,47 @@ Initialize mono Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed' Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56732 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56064 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.013571 seconds. -- Loaded All Assemblies, in 0.391 seconds +Registered in 0.035407 seconds. +- Loaded All Assemblies, in 0.982 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 298 ms +Android Extension - Scanning For ADB Devices 1220 ms Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.553 seconds -Domain Reload Profiling: 938ms - BeginReloadAssembly (145ms) +- Finished resetting the current domain, in 2.240 seconds +Domain Reload Profiling: 3205ms + BeginReloadAssembly (329ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (42ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (68ms) - LoadAllAssembliesAndSetupDomain (122ms) - LoadAssemblies (138ms) + RebuildCommonClasses (72ms) + RebuildNativeTypeToScriptingClass (21ms) + initialDomainReloadingComplete (194ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (309ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (119ms) - TypeCache.Refresh (118ms) - TypeCache.ScanAssembly (107ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (554ms) + AnalyzeDomain (339ms) + TypeCache.Refresh (337ms) + TypeCache.ScanAssembly (309ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (1ms) + FinalizeReload (2242ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (512ms) + SetupLoadedEditorAssemblies (2113ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (388ms) - SetLoadedEditorAssemblies (2ms) + InitializePlatformSupportModulesInManaged (1523ms) + SetLoadedEditorAssemblies (8ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (84ms) - ProcessInitializeOnLoadMethodAttributes (37ms) + BeforeProcessingInitializeOnLoad (6ms) + ProcessInitializeOnLoadAttributes (390ms) + ProcessInitializeOnLoadMethodAttributes (185ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -118,200 +118,59 @@ Domain Reload Profiling: 938ms ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.998 seconds -Refreshing native plugins compatible for Editor in 33.93 ms, found 3 plugins. +- Loaded All Assemblies, in 6.147 seconds +Refreshing native plugins compatible for Editor in 266.73 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.17 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.045 seconds -Domain Reload Profiling: 2028ms - BeginReloadAssembly (157ms) +- Finished resetting the current domain, in 7.467 seconds +Domain Reload Profiling: 13370ms + BeginReloadAssembly (1259ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (52ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (17ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (70ms) - LoadAllAssembliesAndSetupDomain (717ms) - LoadAssemblies (558ms) + CreateAndSetChildDomain (69ms) + RebuildCommonClasses (164ms) + RebuildNativeTypeToScriptingClass (39ms) + initialDomainReloadingComplete (481ms) + LoadAllAssembliesAndSetupDomain (3959ms) + LoadAssemblies (3474ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (261ms) - TypeCache.Refresh (230ms) - TypeCache.ScanAssembly (208ms) - ScanForSourceGeneratedMonoScriptInfo (22ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1046ms) + AnalyzeDomain (1285ms) + TypeCache.Refresh (1130ms) + TypeCache.ScanAssembly (1048ms) + ScanForSourceGeneratedMonoScriptInfo (111ms) + ResolveRequiredComponents (40ms) + FinalizeReload (7468ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (906ms) + SetupLoadedEditorAssemblies (6050ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (286ms) + SetLoadedEditorAssemblies (18ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (555ms) - ProcessInitializeOnLoadMethodAttributes (228ms) - AfterProcessingInitializeOnLoad (28ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 37.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) -Unloading 175 unused Assets / (231.0 KB). Loaded Objects now: 5995. -Memory consumption went from 210.1 MB to 209.8 MB. -Total: 14.701000 ms (FindLiveObjects: 0.328800 ms CreateObjectMapping: 0.184900 ms MarkObjects: 13.896400 ms DeleteObjects: 0.289400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 436737.013951 seconds. - path: Assets/Resources/WhiteMat.mat - artifactKey: Guid(633a83508c617534bb405e9fe3aacfc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/WhiteMat.mat using Guid(633a83508c617534bb405e9fe3aacfc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f89a2a1610d3b4e6279325075661d1a') in 0.067868 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Resources/Battle/Sphere.prefab - artifactKey: Guid(86cd8d5d5dc65a640a89e80b920a7f12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Battle/Sphere.prefab using Guid(86cd8d5d5dc65a640a89e80b920a7f12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '991539ecc992d7dd45ff0348a1c17136') in 0.017191 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 8 -======================================================================== -Received Import Request. - Time since last request: 0.000014 seconds. - path: Assets/AssetBundleCollectorSetting.asset - artifactKey: Guid(3cf588b650c043f41ac56ee8a5e7d801) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/AssetBundleCollectorSetting.asset using Guid(3cf588b650c043f41ac56ee8a5e7d801) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b26bce32ddf57948b23a2e8bfb54275') in 0.002331 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000016 seconds. - path: Assets/Resources/Fonts/SIMKAI.TTF - artifactKey: Guid(823c7151eb711204e9a45de5f4584f59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Fonts/SIMKAI.TTF using Guid(823c7151eb711204e9a45de5f4584f59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2717e17b245ee163969a1da1f42cc737') in 0.029038 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.468489 seconds. - path: Assets/Scripts/GASSamples - artifactKey: Guid(ebc3cec6713633742ae15cc9e8038ab1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples using Guid(ebc3cec6713633742ae15cc9e8038ab1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4f5a02b71539055c30d43524d11f579') in 0.000587 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.850668 seconds. - path: Assets/Scripts/GASSamples/Scripts - artifactKey: Guid(07d357ab8ac95864b80f9b54e729abe8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts using Guid(07d357ab8ac95864b80f9b54e729abe8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '659ae2ff46cc06cab832678538e6c987') in 0.000535 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.768958 seconds. - path: Assets/Scripts/GASSamples/Scripts/Main.cs - artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8e66bc7122b8223ace1815dd9577deb') in 0.000664 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: 260.671862 seconds. - path: Assets/HotMain/HotMain.asmdef - artifactKey: Guid(00b62574639528e40bdd0ce0d013db67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotMain/HotMain.asmdef using Guid(00b62574639528e40bdd0ce0d013db67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd523c1d43f8c10fcc92000295442d5e') in 0.000810 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.000762 seconds. - path: Assets/HotScripts/JNGame/Root/JNGame.Root.asmdef - artifactKey: Guid(a035c483e4ff50f4c92f84afd22778cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Root/JNGame.Root.asmdef using Guid(a035c483e4ff50f4c92f84afd22778cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae005b3cb8fdd58625cc22a5ac8dcd6a') in 0.000446 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 0.698 seconds -Refreshing native plugins compatible for Editor in 35.17 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.035 seconds -Domain Reload Profiling: 2719ms - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (64ms) - LoadAllAssembliesAndSetupDomain (410ms) - LoadAssemblies (471ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (29ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2036ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (544ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (185ms) - AfterProcessingInitializeOnLoad (22ms) + BeforeProcessingInitializeOnLoad (925ms) + ProcessInitializeOnLoadAttributes (2088ms) + ProcessInitializeOnLoadMethodAttributes (2461ms) + AfterProcessingInitializeOnLoad (272ms) EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (73ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.91 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 269.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6055. -Memory consumption went from 208.7 MB to 208.5 MB. -Total: 15.117400 ms (FindLiveObjects: 0.396200 ms CreateObjectMapping: 0.266400 ms MarkObjects: 14.123000 ms DeleteObjects: 0.330600 ms) +Unloading 5563 Unused Serialized files (Serialized files now loaded: 0) +Unloading 175 unused Assets / (230.9 KB). Loaded Objects now: 6011. +Memory consumption went from 210.3 MB to 210.1 MB. +Total: 62.367900 ms (FindLiveObjects: 0.877400 ms CreateObjectMapping: 0.599500 ms MarkObjects: 60.312000 ms DeleteObjects: 0.575600 ms) -Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> @@ -328,1178 +187,65 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 112.392800 seconds. - path: Assets/Scripts/GASSamples/Scripts/Main.cs - artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efc4a4f6b41788f8ee6313e59a101b65') in 0.001903 seconds + Time since last request: 573648.289617 seconds. + path: Assets/Scripts/Samples/TextMain.cs + artifactKey: Guid(870a0b4c0dd966a4e8d4036ec0ef5a81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Samples/TextMain.cs using Guid(870a0b4c0dd966a4e8d4036ec0ef5a81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e4b15841cac9cd8efbc5288c607fe25') in 0.005569 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.052 seconds -Refreshing native plugins compatible for Editor in 72.56 ms, found 3 plugins. +- Loaded All Assemblies, in 2.442 seconds +Refreshing native plugins compatible for Editor in 137.98 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.199 seconds -Domain Reload Profiling: 3220ms - BeginReloadAssembly (260ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (54ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (110ms) - LoadAllAssembliesAndSetupDomain (602ms) - LoadAssemblies (708ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (13ms) - FinalizeReload (2199ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (873ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (41ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (121ms) - ProcessInitializeOnLoadAttributes (373ms) - ProcessInitializeOnLoadMethodAttributes (287ms) - AfterProcessingInitializeOnLoad (43ms) - EditorAssembliesLoaded (4ms) - 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 79.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6070. -Memory consumption went from 210.7 MB to 210.5 MB. -Total: 19.191800 ms (FindLiveObjects: 0.469800 ms CreateObjectMapping: 0.172100 ms MarkObjects: 18.315700 ms DeleteObjects: 0.232500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.094 seconds -Refreshing native plugins compatible for Editor in 64.57 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.562 seconds -Domain Reload Profiling: 2632ms - BeginReloadAssembly (302ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (39ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (108ms) - LoadAllAssembliesAndSetupDomain (609ms) - LoadAssemblies (772ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1562ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (503ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (169ms) - AfterProcessingInitializeOnLoad (17ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 35.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5530 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6085. -Memory consumption went from 212.8 MB to 212.7 MB. -Total: 11.978400 ms (FindLiveObjects: 0.344900 ms CreateObjectMapping: 0.209200 ms MarkObjects: 11.224600 ms DeleteObjects: 0.198500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 24.579629 seconds. - path: Assets/Resources - artifactKey: Guid(fec3f26c09759484e86d7cd7151311c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources using Guid(fec3f26c09759484e86d7cd7151311c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '97c8c6f4c20f0f718b8f84a7e4b61f9e') in 0.001786 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 0.960 seconds -Refreshing native plugins compatible for Editor in 62.96 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.157 seconds -Domain Reload Profiling: 3095ms - BeginReloadAssembly (277ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (64ms) - LoadAllAssembliesAndSetupDomain (549ms) - LoadAssemblies (672ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (13ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2158ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (894ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (36ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (374ms) - ProcessInitializeOnLoadMethodAttributes (340ms) - AfterProcessingInitializeOnLoad (47ms) - EditorAssembliesLoaded (4ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.56 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6100. -Memory consumption went from 214.5 MB to 214.3 MB. -Total: 18.630400 ms (FindLiveObjects: 0.418100 ms CreateObjectMapping: 0.162200 ms MarkObjects: 17.826800 ms DeleteObjects: 0.221900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.044 seconds -Refreshing native plugins compatible for Editor in 68.51 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.109 seconds -Domain Reload Profiling: 3119ms - BeginReloadAssembly (281ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (128ms) - LoadAllAssembliesAndSetupDomain (555ms) - LoadAssemblies (677ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (39ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2109ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (922ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (41ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (385ms) - ProcessInitializeOnLoadMethodAttributes (336ms) - AfterProcessingInitializeOnLoad (51ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 77.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6116. -Memory consumption went from 216.7 MB to 216.5 MB. -Total: 23.479700 ms (FindLiveObjects: 0.416400 ms CreateObjectMapping: 0.169100 ms MarkObjects: 22.655400 ms DeleteObjects: 0.237600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.004 seconds -Refreshing native plugins compatible for Editor in 65.15 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.307 seconds -Domain Reload Profiling: 3277ms - BeginReloadAssembly (259ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (86ms) - LoadAllAssembliesAndSetupDomain (595ms) - LoadAssemblies (701ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2307ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1069ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (58ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (158ms) - ProcessInitializeOnLoadAttributes (429ms) - ProcessInitializeOnLoadMethodAttributes (372ms) - AfterProcessingInitializeOnLoad (48ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 74.16 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6131. -Memory consumption went from 218.7 MB to 218.5 MB. -Total: 30.319400 ms (FindLiveObjects: 0.425700 ms CreateObjectMapping: 0.169300 ms MarkObjects: 29.501200 ms DeleteObjects: 0.221700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.195 seconds -Refreshing native plugins compatible for Editor in 64.22 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.514 seconds -Domain Reload Profiling: 2660ms - BeginReloadAssembly (313ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - RebuildCommonClasses (49ms) - RebuildNativeTypeToScriptingClass (14ms) - initialDomainReloadingComplete (118ms) - LoadAllAssembliesAndSetupDomain (651ms) - LoadAssemblies (811ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (13ms) - FinalizeReload (1515ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (572ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (265ms) - ProcessInitializeOnLoadMethodAttributes (192ms) - AfterProcessingInitializeOnLoad (22ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 35.00 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6146. -Memory consumption went from 220.6 MB to 220.4 MB. -Total: 13.309700 ms (FindLiveObjects: 0.474500 ms CreateObjectMapping: 0.155900 ms MarkObjects: 12.457400 ms DeleteObjects: 0.220600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.675 seconds -Refreshing native plugins compatible for Editor in 37.17 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.108 seconds -Domain Reload Profiling: 1766ms - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (71ms) - LoadAllAssembliesAndSetupDomain (379ms) - LoadAssemblies (447ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (26ms) - TypeCache.Refresh (10ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1108ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (504ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (165ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 32.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6161. -Memory consumption went from 222.5 MB to 222.3 MB. -Total: 13.400300 ms (FindLiveObjects: 0.337900 ms CreateObjectMapping: 0.237900 ms MarkObjects: 12.604700 ms DeleteObjects: 0.218600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.720 seconds -Refreshing native plugins compatible for Editor in 33.52 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.270 seconds -Domain Reload Profiling: 1975ms - BeginReloadAssembly (174ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (74ms) - LoadAllAssembliesAndSetupDomain (414ms) - LoadAssemblies (482ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (28ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1273ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (613ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (298ms) - ProcessInitializeOnLoadMethodAttributes (194ms) - AfterProcessingInitializeOnLoad (24ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 38.03 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5532 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6177. -Memory consumption went from 224.5 MB to 224.3 MB. -Total: 12.661800 ms (FindLiveObjects: 0.291600 ms CreateObjectMapping: 0.165000 ms MarkObjects: 12.009700 ms DeleteObjects: 0.194500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.115 seconds -Refreshing native plugins compatible for Editor in 34.46 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.157 seconds -Domain Reload Profiling: 2236ms - BeginReloadAssembly (302ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (30ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - RebuildCommonClasses (39ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (118ms) - LoadAllAssembliesAndSetupDomain (607ms) - LoadAssemblies (727ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (36ms) - TypeCache.Refresh (21ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1158ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (495ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (164ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 34.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6193. -Memory consumption went from 226.4 MB to 226.2 MB. -Total: 12.121000 ms (FindLiveObjects: 0.302800 ms CreateObjectMapping: 0.178500 ms MarkObjects: 11.435600 ms DeleteObjects: 0.203000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.698 seconds -Refreshing native plugins compatible for Editor in 36.94 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.245 seconds -Domain Reload Profiling: 1931ms - BeginReloadAssembly (175ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (79ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (459ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (30ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1248ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (550ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (261ms) - ProcessInitializeOnLoadMethodAttributes (179ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Script is not up to date after domain reload: guid(fb60ec3a5bba4f57ac82e4862a01860d) path("Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 37.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5532 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6207. -Memory consumption went from 228.4 MB to 228.2 MB. -Total: 12.497300 ms (FindLiveObjects: 0.305400 ms CreateObjectMapping: 0.173600 ms MarkObjects: 11.826500 ms DeleteObjects: 0.191000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.674 seconds -Refreshing native plugins compatible for Editor in 32.46 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.104 seconds -Domain Reload Profiling: 1763ms - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (71ms) - LoadAllAssembliesAndSetupDomain (380ms) - LoadAssemblies (447ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (26ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1104ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (505ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (163ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 32.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6223. -Memory consumption went from 230.3 MB to 230.1 MB. -Total: 12.529500 ms (FindLiveObjects: 0.359800 ms CreateObjectMapping: 0.178700 ms MarkObjects: 11.688800 ms DeleteObjects: 0.300700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.056 seconds -Refreshing native plugins compatible for Editor in 63.13 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.135 seconds -Domain Reload Profiling: 2168ms - BeginReloadAssembly (268ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (133ms) - LoadAllAssembliesAndSetupDomain (589ms) - LoadAssemblies (694ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (49ms) - TypeCache.Refresh (28ms) - TypeCache.ScanAssembly (15ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1136ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (500ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (159ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 32.63 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6238. -Memory consumption went from 232.2 MB to 232.0 MB. -Total: 13.101200 ms (FindLiveObjects: 0.319200 ms CreateObjectMapping: 0.164900 ms MarkObjects: 12.430000 ms DeleteObjects: 0.186300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.722 seconds -Refreshing native plugins compatible for Editor in 37.20 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.208 seconds -Domain Reload Profiling: 1917ms - BeginReloadAssembly (182ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (75ms) - LoadAllAssembliesAndSetupDomain (411ms) - LoadAssemblies (475ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (36ms) - TypeCache.Refresh (21ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1209ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (542ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (265ms) - ProcessInitializeOnLoadMethodAttributes (171ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 35.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6253. -Memory consumption went from 234.2 MB to 234.0 MB. -Total: 13.272000 ms (FindLiveObjects: 0.349800 ms CreateObjectMapping: 0.174600 ms MarkObjects: 12.534800 ms DeleteObjects: 0.211800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.280 seconds -Refreshing native plugins compatible for Editor in 43.02 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.154 seconds -Domain Reload Profiling: 2410ms - BeginReloadAssembly (266ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (51ms) - RebuildCommonClasses (38ms) - RebuildNativeTypeToScriptingClass (29ms) - initialDomainReloadingComplete (133ms) - LoadAllAssembliesAndSetupDomain (790ms) - LoadAssemblies (795ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (148ms) - TypeCache.Refresh (131ms) - TypeCache.ScanAssembly (13ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1155ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (512ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (155ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 29.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6268. -Memory consumption went from 236.0 MB to 235.8 MB. -Total: 12.241100 ms (FindLiveObjects: 0.441800 ms CreateObjectMapping: 0.161400 ms MarkObjects: 11.461000 ms DeleteObjects: 0.176200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.080 seconds -Refreshing native plugins compatible for Editor in 73.06 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.072 seconds -Domain Reload Profiling: 3124ms - BeginReloadAssembly (243ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - RebuildCommonClasses (45ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (107ms) - LoadAllAssembliesAndSetupDomain (645ms) - LoadAssemblies (729ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (51ms) - TypeCache.Refresh (27ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (13ms) - FinalizeReload (2073ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (889ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (42ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (395ms) - ProcessInitializeOnLoadMethodAttributes (288ms) - AfterProcessingInitializeOnLoad (47ms) - EditorAssembliesLoaded (17ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 58.82 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6283. -Memory consumption went from 238.0 MB to 237.8 MB. -Total: 20.594600 ms (FindLiveObjects: 0.446200 ms CreateObjectMapping: 0.180100 ms MarkObjects: 19.764300 ms DeleteObjects: 0.202900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.120 seconds -Refreshing native plugins compatible for Editor in 64.97 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.195 seconds -Domain Reload Profiling: 3290ms - BeginReloadAssembly (308ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (129ms) - LoadAllAssembliesAndSetupDomain (605ms) - LoadAssemblies (756ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (3ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2195ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (957ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (35ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (390ms) - ProcessInitializeOnLoadMethodAttributes (394ms) - AfterProcessingInitializeOnLoad (38ms) - EditorAssembliesLoaded (6ms) - 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 67.30 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6298. -Memory consumption went from 240.0 MB to 239.8 MB. -Total: 21.773700 ms (FindLiveObjects: 0.460300 ms CreateObjectMapping: 0.168600 ms MarkObjects: 20.888100 ms DeleteObjects: 0.255300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.155 seconds -Refreshing native plugins compatible for Editor in 77.94 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.153 seconds -Domain Reload Profiling: 2281ms - BeginReloadAssembly (283ms) +- Finished resetting the current domain, in 4.776 seconds +Domain Reload Profiling: 7004ms + BeginReloadAssembly (627ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (166ms) - LoadAllAssembliesAndSetupDomain (632ms) - LoadAssemblies (765ms) + CreateAndSetChildDomain (107ms) + RebuildCommonClasses (58ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (142ms) + LoadAllAssembliesAndSetupDomain (1380ms) + LoadAssemblies (1772ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (1153ms) + AnalyzeDomain (44ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (26ms) + FinalizeReload (4777ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (521ms) + SetupLoadedEditorAssemblies (1981ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (78ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (178ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (220ms) + ProcessInitializeOnLoadAttributes (926ms) + ProcessInitializeOnLoadMethodAttributes (629ms) + AfterProcessingInitializeOnLoad (113ms) + EditorAssembliesLoaded (10ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) + AwakeInstancesAfterBackupRestoration (98ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.60 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 132.29 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6313. -Memory consumption went from 241.9 MB to 241.7 MB. -Total: 14.651600 ms (FindLiveObjects: 0.446800 ms CreateObjectMapping: 0.215100 ms MarkObjects: 13.631200 ms DeleteObjects: 0.357100 ms) +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.1 KB). Loaded Objects now: 6026. +Memory consumption went from 208.5 MB to 208.3 MB. +Total: 37.763500 ms (FindLiveObjects: 0.808000 ms CreateObjectMapping: 0.443300 ms MarkObjects: 36.058100 ms DeleteObjects: 0.449300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1519,56 +265,56 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.694 seconds -Refreshing native plugins compatible for Editor in 36.35 ms, found 3 plugins. +- Loaded All Assemblies, in 1.736 seconds +Refreshing native plugins compatible for Editor in 96.30 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.136 seconds -Domain Reload Profiling: 1816ms - BeginReloadAssembly (176ms) +- Finished resetting the current domain, in 3.960 seconds +Domain Reload Profiling: 5642ms + BeginReloadAssembly (530ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) + DisableScriptedObjects (9ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (72ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (458ms) + CreateAndSetChildDomain (96ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (134ms) + LoadAllAssembliesAndSetupDomain (952ms) + LoadAssemblies (1216ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (30ms) - TypeCache.Refresh (13ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1136ms) + AnalyzeDomain (49ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (15ms) + FinalizeReload (3965ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (511ms) + SetupLoadedEditorAssemblies (1446ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (2ms) + InitializePlatformSupportModulesInManaged (81ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (165ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (0ms) + BeforeProcessingInitializeOnLoad (162ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (481ms) + AfterProcessingInitializeOnLoad (61ms) + EditorAssembliesLoaded (21ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + 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 34.64 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 102.47 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6328. -Memory consumption went from 243.8 MB to 243.6 MB. -Total: 12.899200 ms (FindLiveObjects: 0.317000 ms CreateObjectMapping: 0.175300 ms MarkObjects: 12.194900 ms DeleteObjects: 0.210800 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6042. +Memory consumption went from 210.8 MB to 210.6 MB. +Total: 36.012500 ms (FindLiveObjects: 0.528300 ms CreateObjectMapping: 0.239000 ms MarkObjects: 35.008700 ms DeleteObjects: 0.234600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1588,56 +334,195 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.134 seconds -Refreshing native plugins compatible for Editor in 63.86 ms, found 3 plugins. +- Loaded All Assemblies, in 0.972 seconds +Refreshing native plugins compatible for Editor in 74.86 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.259 seconds -Domain Reload Profiling: 3369ms - BeginReloadAssembly (309ms) +- Finished resetting the current domain, in 1.706 seconds +Domain Reload Profiling: 2660ms + BeginReloadAssembly (266ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (92ms) + LoadAllAssembliesAndSetupDomain (546ms) + LoadAssemblies (636ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (49ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1707ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (789ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (32ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (351ms) + ProcessInitializeOnLoadMethodAttributes (281ms) + AfterProcessingInitializeOnLoad (34ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 50.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6057. +Memory consumption went from 212.7 MB to 212.5 MB. +Total: 19.419100 ms (FindLiveObjects: 0.357200 ms CreateObjectMapping: 0.233200 ms MarkObjects: 18.601000 ms DeleteObjects: 0.226200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.256 seconds +Refreshing native plugins compatible for Editor in 65.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.734 seconds +Domain Reload Profiling: 3965ms + BeginReloadAssembly (411ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (90ms) + RebuildCommonClasses (59ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (128ms) + LoadAllAssembliesAndSetupDomain (614ms) + LoadAssemblies (798ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2736ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1481ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (40ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (730ms) + ProcessInitializeOnLoadMethodAttributes (528ms) + AfterProcessingInitializeOnLoad (72ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (52ms) +Script is not up to date after domain reload: guid(acdb37e4e7c0494084eed1be8171efc6) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 132.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.2 KB). Loaded Objects now: 6071. +Memory consumption went from 214.6 MB to 214.4 MB. +Total: 37.278300 ms (FindLiveObjects: 0.738900 ms CreateObjectMapping: 0.389300 ms MarkObjects: 35.793600 ms DeleteObjects: 0.354000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.190 seconds +Refreshing native plugins compatible for Editor in 66.82 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.267 seconds +Domain Reload Profiling: 4432ms + BeginReloadAssembly (293ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (112ms) - LoadAllAssembliesAndSetupDomain (642ms) - LoadAssemblies (803ms) + CreateAndSetChildDomain (63ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (119ms) + LoadAllAssembliesAndSetupDomain (687ms) + LoadAssemblies (798ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (39ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (13ms) - FinalizeReload (2260ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (14ms) + FinalizeReload (3270ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1047ms) + SetupLoadedEditorAssemblies (1483ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (46ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (110ms) + SetLoadedEditorAssemblies (9ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (137ms) - ProcessInitializeOnLoadAttributes (408ms) - ProcessInitializeOnLoadMethodAttributes (412ms) - AfterProcessingInitializeOnLoad (39ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (271ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (398ms) + AfterProcessingInitializeOnLoad (64ms) + EditorAssembliesLoaded (6ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (78ms) + 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 96.42 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 55.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6343. -Memory consumption went from 245.7 MB to 245.5 MB. -Total: 20.116800 ms (FindLiveObjects: 0.462600 ms CreateObjectMapping: 0.164400 ms MarkObjects: 19.249400 ms DeleteObjects: 0.239100 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.1 KB). Loaded Objects now: 6087. +Memory consumption went from 216.5 MB to 216.4 MB. +Total: 17.289100 ms (FindLiveObjects: 0.345100 ms CreateObjectMapping: 0.204900 ms MarkObjects: 16.526000 ms DeleteObjects: 0.211700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1657,56 +542,57 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.042 seconds -Refreshing native plugins compatible for Editor in 65.01 ms, found 3 plugins. +- Loaded All Assemblies, in 2.525 seconds +Refreshing native plugins compatible for Editor in 99.57 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.118 seconds -Domain Reload Profiling: 3138ms - BeginReloadAssembly (272ms) +- Finished resetting the current domain, in 4.823 seconds +Domain Reload Profiling: 7271ms + BeginReloadAssembly (757ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (111ms) - LoadAllAssembliesAndSetupDomain (602ms) - LoadAssemblies (726ms) + CreateAndSetChildDomain (113ms) + RebuildCommonClasses (103ms) + RebuildNativeTypeToScriptingClass (30ms) + initialDomainReloadingComplete (272ms) + LoadAllAssembliesAndSetupDomain (1285ms) + LoadAssemblies (1730ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2119ms) + AnalyzeDomain (78ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (7ms) + ScanForSourceGeneratedMonoScriptInfo (19ms) + ResolveRequiredComponents (23ms) + FinalizeReload (4825ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (890ms) + SetupLoadedEditorAssemblies (1946ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (37ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (82ms) + SetLoadedEditorAssemblies (7ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (374ms) - ProcessInitializeOnLoadMethodAttributes (339ms) - AfterProcessingInitializeOnLoad (44ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (211ms) + ProcessInitializeOnLoadAttributes (875ms) + ProcessInitializeOnLoadMethodAttributes (630ms) + AfterProcessingInitializeOnLoad (128ms) + EditorAssembliesLoaded (12ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) + AwakeInstancesAfterBackupRestoration (125ms) +Script is not up to date after domain reload: guid(acdb37e4e7c0494084eed1be8171efc6) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs") state(2) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 66.60 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 60.87 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6358. -Memory consumption went from 247.7 MB to 247.5 MB. -Total: 20.498300 ms (FindLiveObjects: 0.558400 ms CreateObjectMapping: 0.217500 ms MarkObjects: 19.471300 ms DeleteObjects: 0.249700 ms) +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6101. +Memory consumption went from 218.5 MB to 218.3 MB. +Total: 19.936800 ms (FindLiveObjects: 0.384900 ms CreateObjectMapping: 0.264100 ms MarkObjects: 19.038300 ms DeleteObjects: 0.247900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1726,8 +612,1128 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.152 seconds -Refreshing native plugins compatible for Editor in 63.65 ms, found 3 plugins. +- Loaded All Assemblies, in 0.952 seconds +Refreshing native plugins compatible for Editor in 55.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.909 seconds +Domain Reload Profiling: 2840ms + BeginReloadAssembly (257ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (100ms) + LoadAllAssembliesAndSetupDomain (519ms) + LoadAssemblies (630ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1910ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (879ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (387ms) + ProcessInitializeOnLoadMethodAttributes (314ms) + AfterProcessingInitializeOnLoad (37ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 62.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.2 KB). Loaded Objects now: 6117. +Memory consumption went from 220.5 MB to 220.3 MB. +Total: 20.650000 ms (FindLiveObjects: 0.384800 ms CreateObjectMapping: 0.235700 ms MarkObjects: 19.657200 ms DeleteObjects: 0.370600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.953 seconds +Refreshing native plugins compatible for Editor in 82.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.977 seconds +Domain Reload Profiling: 4892ms + BeginReloadAssembly (693ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (152ms) + RebuildCommonClasses (81ms) + RebuildNativeTypeToScriptingClass (24ms) + initialDomainReloadingComplete (211ms) + LoadAllAssembliesAndSetupDomain (903ms) + LoadAssemblies (1233ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (58ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (16ms) + FinalizeReload (2978ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (53ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (823ms) + ProcessInitializeOnLoadMethodAttributes (537ms) + AfterProcessingInitializeOnLoad (95ms) + EditorAssembliesLoaded (10ms) + 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 161.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.1 KB). Loaded Objects now: 6132. +Memory consumption went from 222.4 MB to 222.2 MB. +Total: 36.770500 ms (FindLiveObjects: 0.615200 ms CreateObjectMapping: 0.302100 ms MarkObjects: 35.526400 ms DeleteObjects: 0.324300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.082 seconds +Refreshing native plugins compatible for Editor in 77.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.891 seconds +Domain Reload Profiling: 2949ms + BeginReloadAssembly (261ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (113ms) + LoadAllAssembliesAndSetupDomain (630ms) + LoadAssemblies (734ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1891ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (834ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (371ms) + ProcessInitializeOnLoadMethodAttributes (285ms) + AfterProcessingInitializeOnLoad (40ms) + 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 57.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6147. +Memory consumption went from 224.4 MB to 224.2 MB. +Total: 17.722400 ms (FindLiveObjects: 0.356900 ms CreateObjectMapping: 0.218900 ms MarkObjects: 16.910100 ms DeleteObjects: 0.235200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 595.484371 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ef66900eae8557eba0edc3ebbaa7c24') in 0.018527 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 3.405586 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Player.asset + artifactKey: Guid(7692a8d07949a5c46b6b5325ebb9a422) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/AbilitySystemComponentLib/ASC_Player.asset using Guid(7692a8d07949a5c46b6b5325ebb9a422) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d9a078a1cd9abb0c9efb0e29a72fafb') in 0.002603 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.066 seconds +Refreshing native plugins compatible for Editor in 83.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.839 seconds +Domain Reload Profiling: 3884ms + BeginReloadAssembly (265ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (105ms) + LoadAllAssembliesAndSetupDomain (620ms) + LoadAssemblies (745ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (16ms) + FinalizeReload (2841ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (58ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (137ms) + ProcessInitializeOnLoadAttributes (591ms) + ProcessInitializeOnLoadMethodAttributes (406ms) + AfterProcessingInitializeOnLoad (64ms) + 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 78.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (205.9 KB). Loaded Objects now: 6163. +Memory consumption went from 226.0 MB to 225.8 MB. +Total: 25.028200 ms (FindLiveObjects: 0.498500 ms CreateObjectMapping: 0.258200 ms MarkObjects: 23.950000 ms DeleteObjects: 0.319900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.294 seconds +Refreshing native plugins compatible for Editor in 77.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.291 seconds +Domain Reload Profiling: 4561ms + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (108ms) + LoadAllAssembliesAndSetupDomain (851ms) + LoadAssemblies (774ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (223ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (155ms) + ScanForSourceGeneratedMonoScriptInfo (31ms) + ResolveRequiredComponents (13ms) + FinalizeReload (3292ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (941ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (100ms) + ProcessInitializeOnLoadAttributes (364ms) + ProcessInitializeOnLoadMethodAttributes (389ms) + AfterProcessingInitializeOnLoad (39ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + 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 75.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.1 KB). Loaded Objects now: 6178. +Memory consumption went from 228.3 MB to 228.1 MB. +Total: 49.136400 ms (FindLiveObjects: 0.692100 ms CreateObjectMapping: 1.000200 ms MarkObjects: 46.901800 ms DeleteObjects: 0.539900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.295 seconds +Refreshing native plugins compatible for Editor in 170.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 5.582 seconds +Domain Reload Profiling: 7827ms + BeginReloadAssembly (536ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (91ms) + RebuildCommonClasses (82ms) + RebuildNativeTypeToScriptingClass (28ms) + initialDomainReloadingComplete (285ms) + LoadAllAssembliesAndSetupDomain (1311ms) + LoadAssemblies (1541ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (84ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (7ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (28ms) + FinalizeReload (5584ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (2705ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (119ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (286ms) + ProcessInitializeOnLoadAttributes (1467ms) + ProcessInitializeOnLoadMethodAttributes (712ms) + AfterProcessingInitializeOnLoad (98ms) + EditorAssembliesLoaded (12ms) + 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 76.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6193. +Memory consumption went from 230.2 MB to 230.1 MB. +Total: 21.813300 ms (FindLiveObjects: 0.430400 ms CreateObjectMapping: 0.244500 ms MarkObjects: 20.868600 ms DeleteObjects: 0.268200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.742 seconds +Refreshing native plugins compatible for Editor in 77.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.937 seconds +Domain Reload Profiling: 4652ms + BeginReloadAssembly (578ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (140ms) + RebuildCommonClasses (71ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (159ms) + LoadAllAssembliesAndSetupDomain (885ms) + LoadAssemblies (1121ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (64ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (22ms) + ResolveRequiredComponents (16ms) + FinalizeReload (2939ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (58ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (598ms) + ProcessInitializeOnLoadMethodAttributes (368ms) + AfterProcessingInitializeOnLoad (59ms) + EditorAssembliesLoaded (10ms) + 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 149.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6208. +Memory consumption went from 232.2 MB to 232.0 MB. +Total: 24.876400 ms (FindLiveObjects: 0.461300 ms CreateObjectMapping: 0.258000 ms MarkObjects: 23.857800 ms DeleteObjects: 0.297500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.504 seconds +Refreshing native plugins compatible for Editor in 76.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.288 seconds +Domain Reload Profiling: 4762ms + BeginReloadAssembly (445ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (35ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (127ms) + LoadAllAssembliesAndSetupDomain (842ms) + LoadAssemblies (1021ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (52ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (15ms) + FinalizeReload (3289ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (49ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (436ms) + AfterProcessingInitializeOnLoad (65ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 74.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6223. +Memory consumption went from 234.1 MB to 233.9 MB. +Total: 25.700500 ms (FindLiveObjects: 0.540500 ms CreateObjectMapping: 0.313600 ms MarkObjects: 24.333400 ms DeleteObjects: 0.510800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.412 seconds +Refreshing native plugins compatible for Editor in 87.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 4.446 seconds +Domain Reload Profiling: 5827ms + BeginReloadAssembly (359ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (53ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (145ms) + LoadAllAssembliesAndSetupDomain (805ms) + LoadAssemblies (1006ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (17ms) + FinalizeReload (4448ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1603ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (59ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (157ms) + ProcessInitializeOnLoadAttributes (768ms) + ProcessInitializeOnLoadMethodAttributes (524ms) + AfterProcessingInitializeOnLoad (83ms) + EditorAssembliesLoaded (6ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (47ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6238. +Memory consumption went from 236.0 MB to 235.8 MB. +Total: 35.366200 ms (FindLiveObjects: 0.816400 ms CreateObjectMapping: 0.566700 ms MarkObjects: 33.634800 ms DeleteObjects: 0.345600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.234 seconds +Refreshing native plugins compatible for Editor in 71.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.635 seconds +Domain Reload Profiling: 4843ms + BeginReloadAssembly (301ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + RebuildCommonClasses (55ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (125ms) + LoadAllAssembliesAndSetupDomain (709ms) + LoadAssemblies (852ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (3637ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (54ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (594ms) + ProcessInitializeOnLoadMethodAttributes (404ms) + AfterProcessingInitializeOnLoad (61ms) + EditorAssembliesLoaded (3ms) + 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 143.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6253. +Memory consumption went from 238.0 MB to 237.8 MB. +Total: 42.929200 ms (FindLiveObjects: 0.632400 ms CreateObjectMapping: 0.318600 ms MarkObjects: 41.611800 ms DeleteObjects: 0.364100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.633 seconds +Refreshing native plugins compatible for Editor in 99.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.848 seconds +Domain Reload Profiling: 4557ms + BeginReloadAssembly (481ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (73ms) + RebuildCommonClasses (61ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (186ms) + LoadAllAssembliesAndSetupDomain (846ms) + LoadAssemblies (1083ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (62ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (20ms) + FinalizeReload (2964ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1173ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (492ms) + ProcessInitializeOnLoadMethodAttributes (453ms) + AfterProcessingInitializeOnLoad (60ms) + EditorAssembliesLoaded (3ms) + 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 95.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6268. +Memory consumption went from 239.9 MB to 239.7 MB. +Total: 36.443600 ms (FindLiveObjects: 0.462400 ms CreateObjectMapping: 0.237400 ms MarkObjects: 35.445900 ms DeleteObjects: 0.296500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.175 seconds +Refreshing native plugins compatible for Editor in 60.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.910 seconds +Domain Reload Profiling: 3063ms + BeginReloadAssembly (299ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (69ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (108ms) + LoadAllAssembliesAndSetupDomain (688ms) + LoadAssemblies (822ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1911ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (862ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (386ms) + ProcessInitializeOnLoadMethodAttributes (300ms) + AfterProcessingInitializeOnLoad (38ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 55.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6283. +Memory consumption went from 241.8 MB to 241.6 MB. +Total: 17.373000 ms (FindLiveObjects: 0.391500 ms CreateObjectMapping: 0.203800 ms MarkObjects: 16.523400 ms DeleteObjects: 0.253000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.172 seconds +Refreshing native plugins compatible for Editor in 149.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.041 seconds +Domain Reload Profiling: 3181ms + BeginReloadAssembly (283ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (129ms) + LoadAllAssembliesAndSetupDomain (669ms) + LoadAssemblies (752ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (75ms) + TypeCache.Refresh (34ms) + TypeCache.ScanAssembly (17ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (27ms) + FinalizeReload (2042ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (811ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (368ms) + ProcessInitializeOnLoadMethodAttributes (273ms) + AfterProcessingInitializeOnLoad (37ms) + 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 91.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6298. +Memory consumption went from 243.8 MB to 243.6 MB. +Total: 28.466700 ms (FindLiveObjects: 0.473000 ms CreateObjectMapping: 0.233300 ms MarkObjects: 27.511000 ms DeleteObjects: 0.248000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.656 seconds +Refreshing native plugins compatible for Editor in 96.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.207 seconds +Domain Reload Profiling: 4821ms + BeginReloadAssembly (437ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (73ms) + RebuildCommonClasses (52ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (92ms) + LoadAllAssembliesAndSetupDomain (1018ms) + LoadAssemblies (1209ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (73ms) + TypeCache.Refresh (40ms) + TypeCache.ScanAssembly (21ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (19ms) + FinalizeReload (3208ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1436ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (63ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (155ms) + ProcessInitializeOnLoadAttributes (650ms) + ProcessInitializeOnLoadMethodAttributes (502ms) + AfterProcessingInitializeOnLoad (62ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (47ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 165.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6313. +Memory consumption went from 245.6 MB to 245.5 MB. +Total: 37.167900 ms (FindLiveObjects: 0.634800 ms CreateObjectMapping: 0.318900 ms MarkObjects: 35.840300 ms DeleteObjects: 0.371500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.033 seconds +Refreshing native plugins compatible for Editor in 60.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.987 seconds +Domain Reload Profiling: 2997ms + BeginReloadAssembly (252ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (111ms) + LoadAllAssembliesAndSetupDomain (593ms) + LoadAssemblies (680ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (52ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1987ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (914ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (105ms) + ProcessInitializeOnLoadAttributes (527ms) + ProcessInitializeOnLoadMethodAttributes (210ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6328. +Memory consumption went from 247.6 MB to 247.4 MB. +Total: 13.118200 ms (FindLiveObjects: 0.328800 ms CreateObjectMapping: 0.171300 ms MarkObjects: 12.400700 ms DeleteObjects: 0.216300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.678 seconds +Refreshing native plugins compatible for Editor in 46.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.441 seconds +Domain Reload Profiling: 2106ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (398ms) + LoadAssemblies (469ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1442ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (630ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (300ms) + ProcessInitializeOnLoadMethodAttributes (200ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6343. +Memory consumption went from 249.6 MB to 249.4 MB. +Total: 15.591400 ms (FindLiveObjects: 0.333000 ms CreateObjectMapping: 0.182900 ms MarkObjects: 14.827000 ms DeleteObjects: 0.247100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.855 seconds +Refreshing native plugins compatible for Editor in 43.87 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument @@ -1735,116 +1741,48 @@ Native extension for Android target not found [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly - Finished resetting the current domain, in 2.117 seconds -Domain Reload Profiling: 3238ms - BeginReloadAssembly (291ms) +Domain Reload Profiling: 2953ms + BeginReloadAssembly (240ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - RebuildCommonClasses (56ms) - RebuildNativeTypeToScriptingClass (14ms) - initialDomainReloadingComplete (130ms) - LoadAllAssembliesAndSetupDomain (629ms) - LoadAssemblies (756ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (81ms) + LoadAllAssembliesAndSetupDomain (473ms) + LoadAssemblies (599ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (41ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (13ms) - FinalizeReload (2118ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2117ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (954ms) + SetupLoadedEditorAssemblies (605ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (37ms) + InitializePlatformSupportModulesInManaged (25ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (99ms) - ProcessInitializeOnLoadAttributes (377ms) - ProcessInitializeOnLoadMethodAttributes (385ms) - AfterProcessingInitializeOnLoad (46ms) - EditorAssembliesLoaded (7ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6373. -Memory consumption went from 249.6 MB to 249.4 MB. -Total: 17.306100 ms (FindLiveObjects: 0.451200 ms CreateObjectMapping: 0.169600 ms MarkObjects: 16.416400 ms DeleteObjects: 0.267400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.055 seconds -Refreshing native plugins compatible for Editor in 65.79 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.365 seconds -Domain Reload Profiling: 2396ms - BeginReloadAssembly (269ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (95ms) - LoadAllAssembliesAndSetupDomain (635ms) - LoadAssemblies (750ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (39ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (1365ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (503ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (161ms) - AfterProcessingInitializeOnLoad (17ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (204ms) + AfterProcessingInitializeOnLoad (23ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(f3ea713c89fe42fd98c9b84f2ec623f8) path("Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNContext.cs") state(2) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 31.04 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 40.25 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6388. -Memory consumption went from 251.6 MB to 251.4 MB. -Total: 12.450700 ms (FindLiveObjects: 0.319800 ms CreateObjectMapping: 0.142000 ms MarkObjects: 11.806500 ms DeleteObjects: 0.181500 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6358. +Memory consumption went from 251.5 MB to 251.3 MB. +Total: 16.126900 ms (FindLiveObjects: 0.392400 ms CreateObjectMapping: 0.210900 ms MarkObjects: 15.121900 ms DeleteObjects: 0.400400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1864,125 +1802,56 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.656 seconds -Refreshing native plugins compatible for Editor in 34.07 ms, found 3 plugins. +- Loaded All Assemblies, in 0.830 seconds +Refreshing native plugins compatible for Editor in 36.97 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.191 seconds -Domain Reload Profiling: 1833ms - BeginReloadAssembly (163ms) +- Finished resetting the current domain, in 1.455 seconds +Domain Reload Profiling: 2269ms + BeginReloadAssembly (211ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (70ms) - LoadAllAssembliesAndSetupDomain (371ms) - LoadAssemblies (434ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (69ms) + LoadAllAssembliesAndSetupDomain (482ms) + LoadAssemblies (559ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (25ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) ResolveRequiredComponents (7ms) - FinalizeReload (1192ms) + FinalizeReload (1456ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (530ms) + SetupLoadedEditorAssemblies (536ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (181ms) - AfterProcessingInitializeOnLoad (24ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 39.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6403. -Memory consumption went from 253.5 MB to 253.3 MB. -Total: 13.006000 ms (FindLiveObjects: 0.435900 ms CreateObjectMapping: 0.203100 ms MarkObjects: 12.158100 ms DeleteObjects: 0.207600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.673 seconds -Refreshing native plugins compatible for Editor in 36.91 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.204 seconds -Domain Reload Profiling: 1861ms - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (75ms) - LoadAllAssembliesAndSetupDomain (379ms) - LoadAssemblies (444ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (27ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1204ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (552ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (25ms) SetLoadedEditorAssemblies (2ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (192ms) - AfterProcessingInitializeOnLoad (23ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (179ms) + AfterProcessingInitializeOnLoad (20ms) EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) + AwakeInstancesAfterBackupRestoration (16ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 34.68 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 34.69 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6418. -Memory consumption went from 255.4 MB to 255.2 MB. -Total: 12.849500 ms (FindLiveObjects: 0.344400 ms CreateObjectMapping: 0.172600 ms MarkObjects: 12.058000 ms DeleteObjects: 0.273500 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6373. +Memory consumption went from 253.4 MB to 253.2 MB. +Total: 14.023700 ms (FindLiveObjects: 0.307500 ms CreateObjectMapping: 0.162800 ms MarkObjects: 13.338300 ms DeleteObjects: 0.213800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2002,56 +1871,56 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.022 seconds -Refreshing native plugins compatible for Editor in 34.34 ms, found 3 plugins. +- Loaded All Assemblies, in 0.763 seconds +Refreshing native plugins compatible for Editor in 34.06 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.266 seconds -Domain Reload Profiling: 2275ms +- Finished resetting the current domain, in 1.138 seconds +Domain Reload Profiling: 1888ms BeginReloadAssembly (262ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (105ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (80ms) - LoadAllAssembliesAndSetupDomain (632ms) - LoadAssemblies (694ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (494ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (22ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1268ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1139ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (541ms) + SetupLoadedEditorAssemblies (526ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) + InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) + BeforeProcessingInitializeOnLoad (61ms) ProcessInitializeOnLoadAttributes (256ms) - ProcessInitializeOnLoadMethodAttributes (173ms) - AfterProcessingInitializeOnLoad (20ms) - EditorAssembliesLoaded (0ms) + ProcessInitializeOnLoadMethodAttributes (160ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (3ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) + AwakeInstancesAfterBackupRestoration (7ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 34.03 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 32.95 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5542 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6443. -Memory consumption went from 257.6 MB to 257.4 MB. -Total: 15.639600 ms (FindLiveObjects: 0.389900 ms CreateObjectMapping: 0.244500 ms MarkObjects: 14.772600 ms DeleteObjects: 0.231700 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6388. +Memory consumption went from 255.3 MB to 255.1 MB. +Total: 19.879500 ms (FindLiveObjects: 0.418500 ms CreateObjectMapping: 0.222800 ms MarkObjects: 18.908900 ms DeleteObjects: 0.326900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2071,56 +1940,539 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.649 seconds -Refreshing native plugins compatible for Editor in 41.67 ms, found 3 plugins. +- Loaded All Assemblies, in 1.263 seconds +Refreshing native plugins compatible for Editor in 71.54 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.370 seconds -Domain Reload Profiling: 2007ms - BeginReloadAssembly (164ms) +- Finished resetting the current domain, in 2.066 seconds +Domain Reload Profiling: 3300ms + BeginReloadAssembly (282ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (129ms) + LoadAllAssembliesAndSetupDomain (766ms) + LoadAssemblies (890ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2073ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (826ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (381ms) + ProcessInitializeOnLoadMethodAttributes (243ms) + AfterProcessingInitializeOnLoad (57ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (26ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 74.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6403. +Memory consumption went from 257.3 MB to 257.1 MB. +Total: 33.710800 ms (FindLiveObjects: 0.441000 ms CreateObjectMapping: 0.166900 ms MarkObjects: 32.873700 ms DeleteObjects: 0.227800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.097 seconds +Refreshing native plugins compatible for Editor in 58.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.177 seconds +Domain Reload Profiling: 2248ms + BeginReloadAssembly (281ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (152ms) + LoadAllAssembliesAndSetupDomain (587ms) + LoadAssemblies (697ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1177ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (528ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (166ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6418. +Memory consumption went from 259.2 MB to 259.0 MB. +Total: 13.943800 ms (FindLiveObjects: 0.373100 ms CreateObjectMapping: 0.230500 ms MarkObjects: 13.073600 ms DeleteObjects: 0.265100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.607 seconds +Refreshing native plugins compatible for Editor in 33.86 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.264 seconds +Domain Reload Profiling: 1859ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (413ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1264ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (552ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (186ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 32.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6433. +Memory consumption went from 261.2 MB to 261.0 MB. +Total: 13.259600 ms (FindLiveObjects: 0.339000 ms CreateObjectMapping: 0.171100 ms MarkObjects: 12.483200 ms DeleteObjects: 0.265000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.878 seconds +Refreshing native plugins compatible for Editor in 34.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.180 seconds +Domain Reload Profiling: 2058ms + BeginReloadAssembly (277ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (116ms) + LoadAllAssembliesAndSetupDomain (405ms) + LoadAssemblies (538ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1206ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (545ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (183ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6448. +Memory consumption went from 263.1 MB to 262.9 MB. +Total: 14.084400 ms (FindLiveObjects: 0.365800 ms CreateObjectMapping: 0.277400 ms MarkObjects: 13.227600 ms DeleteObjects: 0.212400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.654 seconds +Refreshing native plugins compatible for Editor in 53.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.405 seconds +Domain Reload Profiling: 2046ms + BeginReloadAssembly (160ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (449ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1406ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (317ms) + ProcessInitializeOnLoadMethodAttributes (191ms) + AfterProcessingInitializeOnLoad (27ms) + 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 40.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6463. +Memory consumption went from 265.0 MB to 264.8 MB. +Total: 14.429400 ms (FindLiveObjects: 0.334700 ms CreateObjectMapping: 0.172300 ms MarkObjects: 13.690200 ms DeleteObjects: 0.225500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.661 seconds +Refreshing native plugins compatible for Editor in 43.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.465 seconds +Domain Reload Profiling: 2113ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (8ms) initialDomainReloadingComplete (64ms) - LoadAllAssembliesAndSetupDomain (375ms) - LoadAssemblies (445ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (454ms) RebuildTransferFunctionScriptingTraits (0ms) AnalyzeDomain (17ms) TypeCache.Refresh (7ms) TypeCache.ScanAssembly (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (8ms) - FinalizeReload (1371ms) + FinalizeReload (1466ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (606ms) + SetupLoadedEditorAssemblies (633ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) + InitializePlatformSupportModulesInManaged (31ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (294ms) - ProcessInitializeOnLoadMethodAttributes (192ms) - AfterProcessingInitializeOnLoad (23ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (303ms) + ProcessInitializeOnLoadMethodAttributes (193ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (4ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) + 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 40.06 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 43.30 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5542 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6458. -Memory consumption went from 259.5 MB to 259.3 MB. -Total: 14.139800 ms (FindLiveObjects: 0.493600 ms CreateObjectMapping: 0.122300 ms MarkObjects: 13.319300 ms DeleteObjects: 0.203100 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6478. +Memory consumption went from 267.0 MB to 266.8 MB. +Total: 14.764300 ms (FindLiveObjects: 0.470600 ms CreateObjectMapping: 0.139900 ms MarkObjects: 13.918600 ms DeleteObjects: 0.234200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.234 seconds +Refreshing native plugins compatible for Editor in 76.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.912 seconds +Domain Reload Profiling: 4119ms + BeginReloadAssembly (291ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (127ms) + LoadAllAssembliesAndSetupDomain (730ms) + LoadAssemblies (851ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2912ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1019ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (449ms) + ProcessInitializeOnLoadMethodAttributes (363ms) + AfterProcessingInitializeOnLoad (41ms) + 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 47.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6493. +Memory consumption went from 269.0 MB to 268.8 MB. +Total: 26.124400 ms (FindLiveObjects: 0.463600 ms CreateObjectMapping: 0.194200 ms MarkObjects: 25.233500 ms DeleteObjects: 0.231600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.078 seconds +Refreshing native plugins compatible for Editor in 62.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.045 seconds +Domain Reload Profiling: 3084ms + BeginReloadAssembly (301ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (64ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (117ms) + LoadAllAssembliesAndSetupDomain (544ms) + LoadAssemblies (680ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2045ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (867ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (388ms) + ProcessInitializeOnLoadMethodAttributes (298ms) + AfterProcessingInitializeOnLoad (38ms) + EditorAssembliesLoaded (11ms) + 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 69.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6508. +Memory consumption went from 270.9 MB to 270.7 MB. +Total: 23.004200 ms (FindLiveObjects: 0.642700 ms CreateObjectMapping: 0.246600 ms MarkObjects: 21.889500 ms DeleteObjects: 0.223300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2141,55 +2493,331 @@ AssetImportParameters requested are different than current active one (requested Received Prepare Begin MonoManager ReloadAssembly - Loaded All Assemblies, in 0.921 seconds -Refreshing native plugins compatible for Editor in 43.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.97 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.631 seconds -Domain Reload Profiling: 2538ms - BeginReloadAssembly (189ms) +- Finished resetting the current domain, in 1.127 seconds +Domain Reload Profiling: 2015ms + BeginReloadAssembly (291ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (121ms) + LoadAllAssembliesAndSetupDomain (424ms) + LoadAssemblies (574ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1129ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (506ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (161ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6523. +Memory consumption went from 272.8 MB to 272.6 MB. +Total: 13.133900 ms (FindLiveObjects: 0.356600 ms CreateObjectMapping: 0.155500 ms MarkObjects: 12.421100 ms DeleteObjects: 0.199700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.186 seconds +Refreshing native plugins compatible for Editor in 73.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.333 seconds +Domain Reload Profiling: 3507ms + BeginReloadAssembly (320ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (108ms) + LoadAllAssembliesAndSetupDomain (696ms) + LoadAssemblies (864ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2334ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1170ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (636ms) + ProcessInitializeOnLoadMethodAttributes (319ms) + AfterProcessingInitializeOnLoad (47ms) + 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 64.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6538. +Memory consumption went from 274.7 MB to 274.5 MB. +Total: 18.881600 ms (FindLiveObjects: 0.437300 ms CreateObjectMapping: 0.169600 ms MarkObjects: 18.044400 ms DeleteObjects: 0.228700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.123 seconds +Refreshing native plugins compatible for Editor in 87.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.959 seconds +Domain Reload Profiling: 4038ms + BeginReloadAssembly (291ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (106ms) + LoadAllAssembliesAndSetupDomain (633ms) + LoadAssemblies (777ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2960ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1056ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (40ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (482ms) + ProcessInitializeOnLoadMethodAttributes (319ms) + AfterProcessingInitializeOnLoad (49ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (52ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 79.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6553. +Memory consumption went from 276.7 MB to 276.5 MB. +Total: 40.042300 ms (FindLiveObjects: 0.517800 ms CreateObjectMapping: 0.179000 ms MarkObjects: 39.118500 ms DeleteObjects: 0.226000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.196 seconds +Refreshing native plugins compatible for Editor in 69.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.164 seconds +Domain Reload Profiling: 3332ms + BeginReloadAssembly (281ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (136ms) + LoadAllAssembliesAndSetupDomain (696ms) + LoadAssemblies (818ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2164ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (963ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (398ms) + ProcessInitializeOnLoadMethodAttributes (378ms) + AfterProcessingInitializeOnLoad (39ms) + EditorAssembliesLoaded (10ms) + 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 70.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6568. +Memory consumption went from 278.6 MB to 278.4 MB. +Total: 20.769500 ms (FindLiveObjects: 0.520500 ms CreateObjectMapping: 0.165300 ms MarkObjects: 19.855400 ms DeleteObjects: 0.227200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.772 seconds +Refreshing native plugins compatible for Editor in 66.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.812 seconds +Domain Reload Profiling: 2570ms + BeginReloadAssembly (173ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (81ms) - LoadAllAssembliesAndSetupDomain (595ms) - LoadAssemblies (546ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (70ms) + LoadAllAssembliesAndSetupDomain (480ms) + LoadAssemblies (547ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (152ms) - TypeCache.Refresh (126ms) - TypeCache.ScanAssembly (100ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1633ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1812ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (705ms) + SetupLoadedEditorAssemblies (773ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (29ms) + InitializePlatformSupportModulesInManaged (35ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (320ms) - ProcessInitializeOnLoadMethodAttributes (255ms) - AfterProcessingInitializeOnLoad (23ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (357ms) + ProcessInitializeOnLoadMethodAttributes (264ms) + AfterProcessingInitializeOnLoad (25ms) EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) 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 56.85 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 37.90 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5542 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6473. -Memory consumption went from 261.6 MB to 261.4 MB. -Total: 21.145300 ms (FindLiveObjects: 0.442300 ms CreateObjectMapping: 0.285300 ms MarkObjects: 20.150400 ms DeleteObjects: 0.265400 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6583. +Memory consumption went from 280.6 MB to 280.4 MB. +Total: 13.375300 ms (FindLiveObjects: 0.345300 ms CreateObjectMapping: 0.177400 ms MarkObjects: 12.626800 ms DeleteObjects: 0.225000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2209,125 +2837,125 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.191 seconds -Refreshing native plugins compatible for Editor in 53.69 ms, found 3 plugins. +- Loaded All Assemblies, in 0.774 seconds +Refreshing native plugins compatible for Editor in 35.32 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.671 seconds -Domain Reload Profiling: 2826ms - BeginReloadAssembly (396ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - RebuildCommonClasses (77ms) - RebuildNativeTypeToScriptingClass (29ms) - initialDomainReloadingComplete (157ms) - LoadAllAssembliesAndSetupDomain (496ms) - LoadAssemblies (748ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (22ms) - TypeCache.Refresh (8ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (13ms) - FinalizeReload (1672ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (678ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (47ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (101ms) - ProcessInitializeOnLoadAttributes (309ms) - ProcessInitializeOnLoadMethodAttributes (187ms) - AfterProcessingInitializeOnLoad (28ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 57.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5542 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6488. -Memory consumption went from 263.5 MB to 263.3 MB. -Total: 14.369200 ms (FindLiveObjects: 0.371100 ms CreateObjectMapping: 0.191400 ms MarkObjects: 13.577400 ms DeleteObjects: 0.228000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.658 seconds -Refreshing native plugins compatible for Editor in 40.76 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.227 seconds -Domain Reload Profiling: 1872ms - BeginReloadAssembly (165ms) +- Finished resetting the current domain, in 1.161 seconds +Domain Reload Profiling: 1915ms + BeginReloadAssembly (172ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (60ms) - LoadAllAssembliesAndSetupDomain (387ms) - LoadAssemblies (455ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (467ms) + LoadAssemblies (529ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (17ms) - TypeCache.Refresh (8ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) ResolveRequiredComponents (7ms) - FinalizeReload (1228ms) + FinalizeReload (1163ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (564ms) + SetupLoadedEditorAssemblies (534ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) + InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (258ms) - ProcessInitializeOnLoadMethodAttributes (190ms) - AfterProcessingInitializeOnLoad (26ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (182ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6598. +Memory consumption went from 282.5 MB to 282.3 MB. +Total: 12.853500 ms (FindLiveObjects: 0.336400 ms CreateObjectMapping: 0.197300 ms MarkObjects: 12.062900 ms DeleteObjects: 0.255900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.734 seconds +Refreshing native plugins compatible for Editor in 37.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.187 seconds +Domain Reload Profiling: 1909ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (77ms) + LoadAllAssembliesAndSetupDomain (389ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1187ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (527ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (20ms) EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (12ms) Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 36.91 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 36.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5542 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6503. -Memory consumption went from 265.4 MB to 265.2 MB. -Total: 14.818900 ms (FindLiveObjects: 0.361600 ms CreateObjectMapping: 0.216600 ms MarkObjects: 13.998000 ms DeleteObjects: 0.241500 ms) +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6613. +Memory consumption went from 284.4 MB to 284.2 MB. +Total: 12.801300 ms (FindLiveObjects: 0.368300 ms CreateObjectMapping: 0.193000 ms MarkObjects: 12.008700 ms DeleteObjects: 0.230000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2347,3 +2975,4562 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.765 seconds +Refreshing native plugins compatible for Editor in 40.86 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.146 seconds +Domain Reload Profiling: 1899ms + BeginReloadAssembly (313ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (523ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1147ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (524ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6628. +Memory consumption went from 286.4 MB to 286.2 MB. +Total: 12.885300 ms (FindLiveObjects: 0.384500 ms CreateObjectMapping: 0.182000 ms MarkObjects: 12.110800 ms DeleteObjects: 0.207000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Refreshing native plugins compatible for Editor in 41.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.392 seconds +Domain Reload Profiling: 2034ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1392ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (627ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (297ms) + ProcessInitializeOnLoadMethodAttributes (209ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6643. +Memory consumption went from 288.3 MB to 288.1 MB. +Total: 15.266800 ms (FindLiveObjects: 0.354400 ms CreateObjectMapping: 0.187900 ms MarkObjects: 14.394700 ms DeleteObjects: 0.328300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.979 seconds +Refreshing native plugins compatible for Editor in 42.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.239 seconds +Domain Reload Profiling: 2191ms + BeginReloadAssembly (329ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (114ms) + LoadAllAssembliesAndSetupDomain (456ms) + LoadAssemblies (642ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1240ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (592ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (222ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6658. +Memory consumption went from 290.2 MB to 290.0 MB. +Total: 13.079100 ms (FindLiveObjects: 0.360600 ms CreateObjectMapping: 0.185500 ms MarkObjects: 12.274800 ms DeleteObjects: 0.256800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.140 seconds +Refreshing native plugins compatible for Editor in 80.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.322 seconds +Domain Reload Profiling: 3450ms + BeginReloadAssembly (266ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (115ms) + LoadAllAssembliesAndSetupDomain (696ms) + LoadAssemblies (821ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2323ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1077ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (224ms) + ProcessInitializeOnLoadAttributes (425ms) + ProcessInitializeOnLoadMethodAttributes (350ms) + AfterProcessingInitializeOnLoad (38ms) + EditorAssembliesLoaded (0ms) + 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 76.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6673. +Memory consumption went from 292.2 MB to 292.0 MB. +Total: 34.395900 ms (FindLiveObjects: 0.464700 ms CreateObjectMapping: 0.179900 ms MarkObjects: 33.409100 ms DeleteObjects: 0.340500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.004 seconds +Refreshing native plugins compatible for Editor in 35.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.162 seconds +Domain Reload Profiling: 2143ms + BeginReloadAssembly (270ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (52ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (142ms) + LoadAllAssembliesAndSetupDomain (503ms) + LoadAssemblies (634ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1163ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (538ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (177ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6688. +Memory consumption went from 294.0 MB to 293.8 MB. +Total: 13.684900 ms (FindLiveObjects: 0.434600 ms CreateObjectMapping: 0.206800 ms MarkObjects: 12.710700 ms DeleteObjects: 0.331800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.015 seconds +Refreshing native plugins compatible for Editor in 34.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.136 seconds +Domain Reload Profiling: 2116ms + BeginReloadAssembly (336ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (100ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (666ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1137ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (517ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (154ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6703. +Memory consumption went from 296.0 MB to 295.8 MB. +Total: 14.093100 ms (FindLiveObjects: 0.349700 ms CreateObjectMapping: 0.176200 ms MarkObjects: 13.339800 ms DeleteObjects: 0.226100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 39.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.142 seconds +Domain Reload Profiling: 1771ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (357ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1143ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (512ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (160ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6718. +Memory consumption went from 298.0 MB to 297.8 MB. +Total: 13.764500 ms (FindLiveObjects: 0.354000 ms CreateObjectMapping: 0.199000 ms MarkObjects: 12.928800 ms DeleteObjects: 0.281300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.772 seconds +Refreshing native plugins compatible for Editor in 39.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.133 seconds +Domain Reload Profiling: 1890ms + BeginReloadAssembly (246ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (84ms) + LoadAllAssembliesAndSetupDomain (388ms) + LoadAssemblies (490ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1134ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (515ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (252ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6733. +Memory consumption went from 299.9 MB to 299.7 MB. +Total: 14.445400 ms (FindLiveObjects: 0.415300 ms CreateObjectMapping: 0.197000 ms MarkObjects: 13.445400 ms DeleteObjects: 0.385900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.845 seconds +Refreshing native plugins compatible for Editor in 40.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.246 seconds +Domain Reload Profiling: 2078ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (562ms) + LoadAssemblies (603ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1247ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (514ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6748. +Memory consumption went from 301.8 MB to 301.6 MB. +Total: 14.681300 ms (FindLiveObjects: 0.404200 ms CreateObjectMapping: 0.199800 ms MarkObjects: 13.785300 ms DeleteObjects: 0.290400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.635 seconds +Refreshing native plugins compatible for Editor in 39.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.179 seconds +Domain Reload Profiling: 1802ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (434ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1180ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (530ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (179ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6763. +Memory consumption went from 303.7 MB to 303.5 MB. +Total: 15.268100 ms (FindLiveObjects: 0.410700 ms CreateObjectMapping: 0.213300 ms MarkObjects: 14.390300 ms DeleteObjects: 0.252200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.176 seconds +Refreshing native plugins compatible for Editor in 77.89 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.050 seconds +Domain Reload Profiling: 4196ms + BeginReloadAssembly (280ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (53ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (126ms) + LoadAllAssembliesAndSetupDomain (674ms) + LoadAssemblies (771ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (71ms) + TypeCache.Refresh (42ms) + TypeCache.ScanAssembly (17ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (14ms) + FinalizeReload (3050ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (940ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (382ms) + ProcessInitializeOnLoadMethodAttributes (358ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (10ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (38ms) +Script is not up to date after domain reload: guid(9378cf08054e430f8fd59ca809378c8a) path("Assets/HotScripts/JNGame/Runtime/GAS/General/GASTimer.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 82.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6777. +Memory consumption went from 305.7 MB to 305.5 MB. +Total: 22.442800 ms (FindLiveObjects: 0.573400 ms CreateObjectMapping: 0.203500 ms MarkObjects: 21.439700 ms DeleteObjects: 0.224600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.998 seconds +Refreshing native plugins compatible for Editor in 61.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.703 seconds +Domain Reload Profiling: 4681ms + BeginReloadAssembly (253ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (55ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (117ms) + LoadAllAssembliesAndSetupDomain (538ms) + LoadAssemblies (634ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (3704ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (533ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (174ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 136 unused Assets / (203.5 KB). Loaded Objects now: 6791. +Memory consumption went from 307.6 MB to 307.4 MB. +Total: 13.459800 ms (FindLiveObjects: 0.398900 ms CreateObjectMapping: 0.210200 ms MarkObjects: 12.635300 ms DeleteObjects: 0.214200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 2929.607022 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f79dc1a525217a3d5c304f77fb17a52f') in 0.025190 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 23.402367 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo.asset + artifactKey: Guid(041f193225d7b1e49a75af0003a4111b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo.asset using Guid(041f193225d7b1e49a75af0003a4111b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb233d59c8814c632369c71659cb1710') in 0.001542 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 0.646 seconds +Refreshing native plugins compatible for Editor in 39.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.338 seconds +Domain Reload Profiling: 1970ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (436ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1338ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (296ms) + ProcessInitializeOnLoadMethodAttributes (198ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6806. +Memory consumption went from 309.3 MB to 309.1 MB. +Total: 15.066600 ms (FindLiveObjects: 0.351400 ms CreateObjectMapping: 0.198400 ms MarkObjects: 14.299900 ms DeleteObjects: 0.215700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.695 seconds +Refreshing native plugins compatible for Editor in 34.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.245 seconds +Domain Reload Profiling: 1926ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (412ms) + LoadAssemblies (472ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1246ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (563ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (182ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 33.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6821. +Memory consumption went from 311.5 MB to 311.3 MB. +Total: 13.435300 ms (FindLiveObjects: 0.383600 ms CreateObjectMapping: 0.195600 ms MarkObjects: 12.558500 ms DeleteObjects: 0.296200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.659 seconds +Refreshing native plugins compatible for Editor in 37.96 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.316 seconds +Domain Reload Profiling: 1961ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (67ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (426ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1317ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (580ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (283ms) + ProcessInitializeOnLoadMethodAttributes (178ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6836. +Memory consumption went from 313.3 MB to 313.1 MB. +Total: 14.446700 ms (FindLiveObjects: 0.414900 ms CreateObjectMapping: 0.247500 ms MarkObjects: 13.535200 ms DeleteObjects: 0.247700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.635 seconds +Refreshing native plugins compatible for Editor in 34.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 1817ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (350ms) + LoadAssemblies (413ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1195ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (549ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (166ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6851. +Memory consumption went from 315.5 MB to 315.3 MB. +Total: 12.783900 ms (FindLiveObjects: 0.366000 ms CreateObjectMapping: 0.205600 ms MarkObjects: 11.982600 ms DeleteObjects: 0.228600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.930 seconds +Refreshing native plugins compatible for Editor in 30.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 2029ms + BeginReloadAssembly (304ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (112ms) + LoadAllAssembliesAndSetupDomain (414ms) + LoadAssemblies (583ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (522ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (171ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6866. +Memory consumption went from 317.4 MB to 317.2 MB. +Total: 15.293100 ms (FindLiveObjects: 0.403300 ms CreateObjectMapping: 0.227900 ms MarkObjects: 14.437600 ms DeleteObjects: 0.223100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.251 seconds +Refreshing native plugins compatible for Editor in 68.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.218 seconds +Domain Reload Profiling: 3419ms + BeginReloadAssembly (264ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (135ms) + LoadAllAssembliesAndSetupDomain (745ms) + LoadAssemblies (857ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2219ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (987ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (39ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (406ms) + ProcessInitializeOnLoadMethodAttributes (404ms) + AfterProcessingInitializeOnLoad (33ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 100.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6881. +Memory consumption went from 319.3 MB to 319.1 MB. +Total: 26.043000 ms (FindLiveObjects: 0.478800 ms CreateObjectMapping: 0.178000 ms MarkObjects: 25.148800 ms DeleteObjects: 0.235700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.904 seconds +Refreshing native plugins compatible for Editor in 35.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.822 seconds +Domain Reload Profiling: 2714ms + BeginReloadAssembly (336ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (86ms) + LoadAllAssembliesAndSetupDomain (415ms) + LoadAssemblies (603ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1823ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (547ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (168ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6896. +Memory consumption went from 321.3 MB to 321.1 MB. +Total: 13.275200 ms (FindLiveObjects: 0.375700 ms CreateObjectMapping: 0.183000 ms MarkObjects: 12.462700 ms DeleteObjects: 0.252600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Refreshing native plugins compatible for Editor in 38.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1796ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1154ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (531ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6911. +Memory consumption went from 323.1 MB to 322.9 MB. +Total: 13.505700 ms (FindLiveObjects: 0.400400 ms CreateObjectMapping: 0.188600 ms MarkObjects: 12.694200 ms DeleteObjects: 0.221000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.150 seconds +Refreshing native plugins compatible for Editor in 78.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.309 seconds +Domain Reload Profiling: 3428ms + BeginReloadAssembly (273ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (121ms) + LoadAllAssembliesAndSetupDomain (675ms) + LoadAssemblies (751ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (76ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (25ms) + ResolveRequiredComponents (23ms) + FinalizeReload (2309ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (977ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (44ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (400ms) + ProcessInitializeOnLoadMethodAttributes (388ms) + AfterProcessingInitializeOnLoad (42ms) + EditorAssembliesLoaded (0ms) + 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 70.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6926. +Memory consumption went from 325.1 MB to 324.9 MB. +Total: 19.099300 ms (FindLiveObjects: 0.516900 ms CreateObjectMapping: 0.186600 ms MarkObjects: 18.171600 ms DeleteObjects: 0.222700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.038 seconds +Refreshing native plugins compatible for Editor in 53.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 2153ms + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (111ms) + LoadAllAssembliesAndSetupDomain (574ms) + LoadAssemblies (681ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (520ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6941. +Memory consumption went from 327.0 MB to 326.8 MB. +Total: 12.517000 ms (FindLiveObjects: 0.363200 ms CreateObjectMapping: 0.210700 ms MarkObjects: 11.688800 ms DeleteObjects: 0.252700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.701 seconds +Refreshing native plugins compatible for Editor in 34.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.296 seconds +Domain Reload Profiling: 1983ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (417ms) + LoadAssemblies (476ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1297ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (580ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (204ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6956. +Memory consumption went from 329.0 MB to 328.8 MB. +Total: 12.703100 ms (FindLiveObjects: 0.451400 ms CreateObjectMapping: 0.183900 ms MarkObjects: 11.827000 ms DeleteObjects: 0.239600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.005 seconds +Refreshing native plugins compatible for Editor in 59.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.903 seconds +Domain Reload Profiling: 2892ms + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (111ms) + LoadAllAssembliesAndSetupDomain (594ms) + LoadAssemblies (650ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (56ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (17ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (15ms) + FinalizeReload (1903ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (535ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (172ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6971. +Memory consumption went from 330.9 MB to 330.7 MB. +Total: 12.901700 ms (FindLiveObjects: 0.405500 ms CreateObjectMapping: 0.178600 ms MarkObjects: 12.114300 ms DeleteObjects: 0.202300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.030 seconds +Refreshing native plugins compatible for Editor in 39.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.849 seconds +Domain Reload Profiling: 2861ms + BeginReloadAssembly (361ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (75ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (97ms) + LoadAllAssembliesAndSetupDomain (497ms) + LoadAssemblies (639ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1850ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (557ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (170ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6986. +Memory consumption went from 332.8 MB to 332.6 MB. +Total: 13.495800 ms (FindLiveObjects: 0.383500 ms CreateObjectMapping: 0.194200 ms MarkObjects: 12.636800 ms DeleteObjects: 0.280200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.954 seconds +Refreshing native plugins compatible for Editor in 40.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.985 seconds +Domain Reload Profiling: 2927ms + BeginReloadAssembly (322ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (125ms) + LoadAllAssembliesAndSetupDomain (434ms) + LoadAssemblies (605ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1986ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (561ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (174ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 7001. +Memory consumption went from 334.8 MB to 334.6 MB. +Total: 12.811300 ms (FindLiveObjects: 0.380300 ms CreateObjectMapping: 0.191400 ms MarkObjects: 12.034400 ms DeleteObjects: 0.203800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.749 seconds +Refreshing native plugins compatible for Editor in 42.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.172 seconds +Domain Reload Profiling: 1882ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (75ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (456ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1174ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (531ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7017. +Memory consumption went from 336.7 MB to 336.5 MB. +Total: 14.037900 ms (FindLiveObjects: 0.557300 ms CreateObjectMapping: 0.127500 ms MarkObjects: 13.132300 ms DeleteObjects: 0.219400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.758 seconds +Refreshing native plugins compatible for Editor in 39.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 1939ms + BeginReloadAssembly (241ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (75ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (476ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1195ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (559ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (176ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 7032. +Memory consumption went from 338.7 MB to 338.5 MB. +Total: 13.212500 ms (FindLiveObjects: 0.388100 ms CreateObjectMapping: 0.204600 ms MarkObjects: 12.406100 ms DeleteObjects: 0.212200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.853 seconds +Refreshing native plugins compatible for Editor in 40.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.186 seconds +Domain Reload Profiling: 2024ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (72ms) + LoadAllAssembliesAndSetupDomain (547ms) + LoadAssemblies (601ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1187ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (543ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (172ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 7047. +Memory consumption went from 340.6 MB to 340.4 MB. +Total: 13.013100 ms (FindLiveObjects: 0.384700 ms CreateObjectMapping: 0.178600 ms MarkObjects: 12.230500 ms DeleteObjects: 0.218000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.665 seconds +Refreshing native plugins compatible for Editor in 36.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.205 seconds +Domain Reload Profiling: 1856ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (382ms) + LoadAssemblies (438ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1205ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (548ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (170ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7062. +Memory consumption went from 342.5 MB to 342.3 MB. +Total: 13.152900 ms (FindLiveObjects: 0.406800 ms CreateObjectMapping: 0.219400 ms MarkObjects: 12.304800 ms DeleteObjects: 0.220700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.237 seconds +Refreshing native plugins compatible for Editor in 77.89 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.329 seconds +Domain Reload Profiling: 3535ms + BeginReloadAssembly (318ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (84ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (135ms) + LoadAllAssembliesAndSetupDomain (695ms) + LoadAssemblies (806ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (56ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2330ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (921ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (39ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (301ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Script is not up to date after domain reload: guid(321af3379125465380073b2a04a1b1e2) path("Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 66.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7076. +Memory consumption went from 344.4 MB to 344.2 MB. +Total: 26.613500 ms (FindLiveObjects: 0.513100 ms CreateObjectMapping: 0.168300 ms MarkObjects: 25.689600 ms DeleteObjects: 0.241100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.918 seconds +Refreshing native plugins compatible for Editor in 40.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.230 seconds +Domain Reload Profiling: 2135ms + BeginReloadAssembly (361ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (79ms) + LoadAllAssembliesAndSetupDomain (403ms) + LoadAssemblies (609ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1231ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (567ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (186ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 7092. +Memory consumption went from 346.4 MB to 346.2 MB. +Total: 12.961300 ms (FindLiveObjects: 0.389600 ms CreateObjectMapping: 0.187100 ms MarkObjects: 12.133600 ms DeleteObjects: 0.249700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 2725.915533 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset + artifactKey: Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset using Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '561384e5b55be9e1142c948c2c25f570') in 0.016766 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 0.790 seconds +Refreshing native plugins compatible for Editor in 37.12 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 1971ms + BeginReloadAssembly (303ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (520ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1195ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (539ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (162ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7107. +Memory consumption went from 348.1 MB to 347.9 MB. +Total: 13.076700 ms (FindLiveObjects: 0.396700 ms CreateObjectMapping: 0.192000 ms MarkObjects: 12.278400 ms DeleteObjects: 0.208600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.275 seconds +Refreshing native plugins compatible for Editor in 82.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.306 seconds +Domain Reload Profiling: 3544ms + BeginReloadAssembly (311ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (131ms) + LoadAllAssembliesAndSetupDomain (737ms) + LoadAssemblies (875ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2307ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (957ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (402ms) + ProcessInitializeOnLoadMethodAttributes (343ms) + AfterProcessingInitializeOnLoad (42ms) + EditorAssembliesLoaded (9ms) + 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 71.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7122. +Memory consumption went from 350.3 MB to 350.1 MB. +Total: 27.042800 ms (FindLiveObjects: 1.072600 ms CreateObjectMapping: 0.168500 ms MarkObjects: 25.497300 ms DeleteObjects: 0.302400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.963 seconds +Refreshing native plugins compatible for Editor in 38.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.168 seconds +Domain Reload Profiling: 2108ms + BeginReloadAssembly (269ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (124ms) + LoadAllAssembliesAndSetupDomain (495ms) + LoadAssemblies (581ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (60ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (19ms) + FinalizeReload (1170ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (517ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (166ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 7137. +Memory consumption went from 352.1 MB to 351.9 MB. +Total: 13.522600 ms (FindLiveObjects: 0.408700 ms CreateObjectMapping: 0.229000 ms MarkObjects: 12.617100 ms DeleteObjects: 0.266200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.775 seconds +Refreshing native plugins compatible for Editor in 38.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.127 seconds +Domain Reload Profiling: 1887ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (111ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (468ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1128ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (506ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (161ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 32.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7152. +Memory consumption went from 354.2 MB to 354.0 MB. +Total: 13.072400 ms (FindLiveObjects: 0.445900 ms CreateObjectMapping: 0.184500 ms MarkObjects: 12.218800 ms DeleteObjects: 0.222200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.264 seconds +Refreshing native plugins compatible for Editor in 68.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.050 seconds +Domain Reload Profiling: 3282ms + BeginReloadAssembly (330ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (103ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (143ms) + LoadAllAssembliesAndSetupDomain (703ms) + LoadAssemblies (812ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2051ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (903ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (392ms) + ProcessInitializeOnLoadMethodAttributes (304ms) + AfterProcessingInitializeOnLoad (46ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 7167. +Memory consumption went from 356.1 MB to 355.9 MB. +Total: 12.582900 ms (FindLiveObjects: 0.491900 ms CreateObjectMapping: 0.190100 ms MarkObjects: 11.678400 ms DeleteObjects: 0.221400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.731 seconds +Refreshing native plugins compatible for Editor in 36.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.264 seconds +Domain Reload Profiling: 2981ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (452ms) + LoadAssemblies (519ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2264ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (579ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (51ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (166ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 7182. +Memory consumption went from 358.0 MB to 357.8 MB. +Total: 12.991100 ms (FindLiveObjects: 0.372300 ms CreateObjectMapping: 0.226000 ms MarkObjects: 12.150900 ms DeleteObjects: 0.240700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.276 seconds +Refreshing native plugins compatible for Editor in 67.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.940 seconds +Domain Reload Profiling: 4170ms + BeginReloadAssembly (377ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (109ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (113ms) + LoadAllAssembliesAndSetupDomain (683ms) + LoadAssemblies (804ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (50ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2941ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (917ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (406ms) + ProcessInitializeOnLoadMethodAttributes (298ms) + AfterProcessingInitializeOnLoad (37ms) + EditorAssembliesLoaded (10ms) + 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 66.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 135 unused Assets / (202.9 KB). Loaded Objects now: 7196. +Memory consumption went from 359.9 MB to 359.7 MB. +Total: 17.753900 ms (FindLiveObjects: 0.504800 ms CreateObjectMapping: 0.175800 ms MarkObjects: 16.856500 ms DeleteObjects: 0.215200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.635 seconds +Refreshing native plugins compatible for Editor in 37.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.371 seconds +Domain Reload Profiling: 1993ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1372ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (617ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (288ms) + ProcessInitializeOnLoadMethodAttributes (201ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 42.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7211. +Memory consumption went from 361.8 MB to 361.6 MB. +Total: 14.582700 ms (FindLiveObjects: 0.412700 ms CreateObjectMapping: 0.192800 ms MarkObjects: 13.774100 ms DeleteObjects: 0.201800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.200 seconds +Refreshing native plugins compatible for Editor in 79.81 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.645 seconds +Domain Reload Profiling: 3812ms + BeginReloadAssembly (305ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (153ms) + LoadAllAssembliesAndSetupDomain (659ms) + LoadAssemblies (779ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2646ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1031ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (420ms) + ProcessInitializeOnLoadMethodAttributes (390ms) + AfterProcessingInitializeOnLoad (48ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Script is not up to date after domain reload: guid(b0b041f9937946109449a4143e1072a7) path("Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 80.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7225. +Memory consumption went from 363.8 MB to 363.6 MB. +Total: 18.015500 ms (FindLiveObjects: 0.548100 ms CreateObjectMapping: 0.169400 ms MarkObjects: 17.064300 ms DeleteObjects: 0.232100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.200 seconds +Refreshing native plugins compatible for Editor in 77.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.262 seconds +Domain Reload Profiling: 3422ms + BeginReloadAssembly (310ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (140ms) + LoadAllAssembliesAndSetupDomain (655ms) + LoadAssemblies (796ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (52ms) + TypeCache.Refresh (29ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2263ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (988ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (404ms) + ProcessInitializeOnLoadMethodAttributes (359ms) + AfterProcessingInitializeOnLoad (48ms) + EditorAssembliesLoaded (7ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (36ms) +Script is not up to date after domain reload: guid(b0b041f9937946109449a4143e1072a7) path("Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 69.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 7240. +Memory consumption went from 365.7 MB to 365.5 MB. +Total: 20.111400 ms (FindLiveObjects: 0.863000 ms CreateObjectMapping: 0.193800 ms MarkObjects: 18.803900 ms DeleteObjects: 0.248800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.835 seconds +Refreshing native plugins compatible for Editor in 41.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.157 seconds +Domain Reload Profiling: 1979ms + BeginReloadAssembly (324ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (508ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1157ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (526ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7256. +Memory consumption went from 367.7 MB to 367.5 MB. +Total: 12.948700 ms (FindLiveObjects: 0.384200 ms CreateObjectMapping: 0.196200 ms MarkObjects: 12.155500 ms DeleteObjects: 0.211400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.640 seconds +Refreshing native plugins compatible for Editor in 39.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.405 seconds +Domain Reload Profiling: 2032ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1406ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (647ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (314ms) + ProcessInitializeOnLoadMethodAttributes (204ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7271. +Memory consumption went from 369.6 MB to 369.4 MB. +Total: 15.778800 ms (FindLiveObjects: 0.418600 ms CreateObjectMapping: 0.359500 ms MarkObjects: 14.739900 ms DeleteObjects: 0.259000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.764 seconds +Refreshing native plugins compatible for Editor in 34.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.915 seconds +Domain Reload Profiling: 2663ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (75ms) + LoadAllAssembliesAndSetupDomain (451ms) + LoadAssemblies (509ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1915ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (568ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (196ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 7286. +Memory consumption went from 371.5 MB to 371.3 MB. +Total: 15.518200 ms (FindLiveObjects: 0.406200 ms CreateObjectMapping: 0.191700 ms MarkObjects: 14.609700 ms DeleteObjects: 0.309400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.638 seconds +Refreshing native plugins compatible for Editor in 38.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.486 seconds +Domain Reload Profiling: 2112ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (429ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1487ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (672ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (313ms) + ProcessInitializeOnLoadMethodAttributes (229ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 42.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 7301. +Memory consumption went from 373.5 MB to 373.3 MB. +Total: 17.688500 ms (FindLiveObjects: 0.705000 ms CreateObjectMapping: 0.348200 ms MarkObjects: 16.296700 ms DeleteObjects: 0.336300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.720 seconds +Refreshing native plugins compatible for Editor in 39.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.723 seconds +Domain Reload Profiling: 2432ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (71ms) + LoadAllAssembliesAndSetupDomain (424ms) + LoadAssemblies (498ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1725ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (555ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (194ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 7316. +Memory consumption went from 375.4 MB to 375.2 MB. +Total: 13.023900 ms (FindLiveObjects: 0.589800 ms CreateObjectMapping: 0.180500 ms MarkObjects: 11.936700 ms DeleteObjects: 0.315600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 34.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.268 seconds +Domain Reload Profiling: 1898ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1269ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (571ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (184ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7331. +Memory consumption went from 377.3 MB to 377.1 MB. +Total: 13.565600 ms (FindLiveObjects: 0.400300 ms CreateObjectMapping: 0.200000 ms MarkObjects: 12.645000 ms DeleteObjects: 0.318800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.696 seconds +Refreshing native plugins compatible for Editor in 39.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.181 seconds +Domain Reload Profiling: 1864ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (460ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1182ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (523ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (162ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 7346. +Memory consumption went from 379.3 MB to 379.1 MB. +Total: 13.384900 ms (FindLiveObjects: 0.402200 ms CreateObjectMapping: 0.183000 ms MarkObjects: 12.532400 ms DeleteObjects: 0.266200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.646 seconds +Refreshing native plugins compatible for Editor in 37.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.469 seconds +Domain Reload Profiling: 2102ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1470ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (669ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (319ms) + ProcessInitializeOnLoadMethodAttributes (199ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 46.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7361. +Memory consumption went from 381.1 MB to 380.9 MB. +Total: 16.286700 ms (FindLiveObjects: 0.500000 ms CreateObjectMapping: 0.278100 ms MarkObjects: 15.221500 ms DeleteObjects: 0.285300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.305 seconds +Refreshing native plugins compatible for Editor in 83.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.590 seconds +Domain Reload Profiling: 3863ms + BeginReloadAssembly (321ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (111ms) + LoadAllAssembliesAndSetupDomain (786ms) + LoadAssemblies (914ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2593ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (978ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (177ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (289ms) + AfterProcessingInitializeOnLoad (51ms) + EditorAssembliesLoaded (6ms) + ExecutionOrderSort2 (0ms) + 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 34.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 7376. +Memory consumption went from 383.1 MB to 382.9 MB. +Total: 34.973300 ms (FindLiveObjects: 0.532500 ms CreateObjectMapping: 0.180700 ms MarkObjects: 33.985500 ms DeleteObjects: 0.273100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.115 seconds +Refreshing native plugins compatible for Editor in 35.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 2295ms + BeginReloadAssembly (350ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (108ms) + LoadAllAssembliesAndSetupDomain (584ms) + LoadAssemblies (791ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (557ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7391. +Memory consumption went from 385.1 MB to 384.9 MB. +Total: 15.147500 ms (FindLiveObjects: 0.525500 ms CreateObjectMapping: 0.190600 ms MarkObjects: 14.146400 ms DeleteObjects: 0.283500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 37.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.475 seconds +Domain Reload Profiling: 2115ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1476ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (668ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (323ms) + ProcessInitializeOnLoadMethodAttributes (210ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7406. +Memory consumption went from 387.0 MB to 386.8 MB. +Total: 14.661400 ms (FindLiveObjects: 0.676400 ms CreateObjectMapping: 0.200200 ms MarkObjects: 13.544400 ms DeleteObjects: 0.238600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 33.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.466 seconds +Domain Reload Profiling: 2095ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (425ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1466ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (663ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (312ms) + ProcessInitializeOnLoadMethodAttributes (218ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 7421. +Memory consumption went from 388.9 MB to 388.7 MB. +Total: 17.061200 ms (FindLiveObjects: 0.488200 ms CreateObjectMapping: 0.181400 ms MarkObjects: 16.051000 ms DeleteObjects: 0.339300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 38.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.413 seconds +Domain Reload Profiling: 2049ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (442ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1414ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (308ms) + ProcessInitializeOnLoadMethodAttributes (217ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7436. +Memory consumption went from 390.8 MB to 390.6 MB. +Total: 15.243000 ms (FindLiveObjects: 0.483700 ms CreateObjectMapping: 0.208700 ms MarkObjects: 14.337000 ms DeleteObjects: 0.212500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 36.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.419 seconds +Domain Reload Profiling: 2049ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (363ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1420ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (312ms) + ProcessInitializeOnLoadMethodAttributes (210ms) + AfterProcessingInitializeOnLoad (28ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 7451. +Memory consumption went from 392.8 MB to 392.6 MB. +Total: 14.397700 ms (FindLiveObjects: 0.398800 ms CreateObjectMapping: 0.190100 ms MarkObjects: 13.390000 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-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.634 seconds +Refreshing native plugins compatible for Editor in 35.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.373 seconds +Domain Reload Profiling: 1995ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (425ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1374ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (627ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (303ms) + ProcessInitializeOnLoadMethodAttributes (196ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 42.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 7466. +Memory consumption went from 394.7 MB to 394.5 MB. +Total: 15.738400 ms (FindLiveObjects: 0.710100 ms CreateObjectMapping: 0.250100 ms MarkObjects: 14.536800 ms DeleteObjects: 0.240200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1291.454942 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9e7e82d3fdce3a8dae694aa5192aed5') in 0.023721 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.742 seconds +Refreshing native plugins compatible for Editor in 34.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.182 seconds +Domain Reload Profiling: 2910ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (460ms) + LoadAssemblies (510ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2183ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (548ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (173ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 7481. +Memory consumption went from 396.5 MB to 396.3 MB. +Total: 12.976000 ms (FindLiveObjects: 0.411800 ms CreateObjectMapping: 0.188100 ms MarkObjects: 12.133300 ms DeleteObjects: 0.241500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 33.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.359 seconds +Domain Reload Profiling: 2037ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (407ms) + LoadAssemblies (467ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1360ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (555ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (190ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 7496. +Memory consumption went from 398.6 MB to 398.5 MB. +Total: 13.852900 ms (FindLiveObjects: 0.425500 ms CreateObjectMapping: 0.219200 ms MarkObjects: 13.004500 ms DeleteObjects: 0.202100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.728 seconds +Refreshing native plugins compatible for Editor in 36.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.917 seconds +Domain Reload Profiling: 2632ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (454ms) + LoadAssemblies (507ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1917ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (554ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (181ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 7511. +Memory consumption went from 400.5 MB to 400.3 MB. +Total: 13.586600 ms (FindLiveObjects: 0.590300 ms CreateObjectMapping: 0.190400 ms MarkObjects: 12.580100 ms DeleteObjects: 0.224400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.510 seconds +Refreshing native plugins compatible for Editor in 34.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.496 seconds +Domain Reload Profiling: 3989ms + BeginReloadAssembly (552ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (336ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (83ms) + LoadAllAssembliesAndSetupDomain (812ms) + LoadAssemblies (878ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2497ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (825ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (420ms) + ProcessInitializeOnLoadMethodAttributes (248ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (1ms) + 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 35.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 7527. +Memory consumption went from 402.5 MB to 402.3 MB. +Total: 17.418100 ms (FindLiveObjects: 0.887800 ms CreateObjectMapping: 0.263400 ms MarkObjects: 15.938400 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-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.689 seconds +Refreshing native plugins compatible for Editor in 35.96 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.242 seconds +Domain Reload Profiling: 1918ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1242ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (571ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (288ms) + ProcessInitializeOnLoadMethodAttributes (169ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 33.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 7542. +Memory consumption went from 404.5 MB to 404.3 MB. +Total: 13.115900 ms (FindLiveObjects: 0.410000 ms CreateObjectMapping: 0.168800 ms MarkObjects: 12.323200 ms DeleteObjects: 0.212600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.115 seconds +Refreshing native plugins compatible for Editor in 46.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.372 seconds +Domain Reload Profiling: 2473ms + BeginReloadAssembly (304ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (121ms) + LoadAllAssembliesAndSetupDomain (631ms) + LoadAssemblies (759ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1372ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (670ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (325ms) + ProcessInitializeOnLoadMethodAttributes (216ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Script is not up to date after domain reload: guid(b964e9ee395740d6b0f8e42978c1ba35) path("Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 7556. +Memory consumption went from 406.4 MB to 406.2 MB. +Total: 15.872900 ms (FindLiveObjects: 0.471200 ms CreateObjectMapping: 0.257300 ms MarkObjects: 14.785800 ms DeleteObjects: 0.357200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.817 seconds +Refreshing native plugins compatible for Editor in 53.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.633 seconds +Domain Reload Profiling: 2437ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (563ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1633ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (556ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (176ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 7572. +Memory consumption went from 408.3 MB to 408.1 MB. +Total: 13.766300 ms (FindLiveObjects: 0.611800 ms CreateObjectMapping: 0.265800 ms MarkObjects: 12.654600 ms DeleteObjects: 0.232600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1109.430680 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset + artifactKey: Guid(331222964d02d1349b1a9c717605c8e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset using Guid(331222964d02d1349b1a9c717605c8e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f2cabe773902ca064df986593e60d66') in 0.023396 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 0.726 seconds +Refreshing native plugins compatible for Editor in 35.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.098 seconds +Domain Reload Profiling: 2811ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (69ms) + LoadAllAssembliesAndSetupDomain (420ms) + LoadAssemblies (484ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2099ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (590ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (284ms) + ProcessInitializeOnLoadMethodAttributes (183ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 7587. +Memory consumption went from 409.9 MB to 409.7 MB. +Total: 13.473700 ms (FindLiveObjects: 0.519600 ms CreateObjectMapping: 0.297500 ms MarkObjects: 12.443700 ms DeleteObjects: 0.211700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 54.778853 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset + artifactKey: Guid(25ef9a2206b693c4f9b93af896a038a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset using Guid(25ef9a2206b693c4f9b93af896a038a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c3b80306dfc2054947ecd1899a0b9ca') in 0.020645 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 7.389441 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '50ac23908422eb84cc3fb08d62d64c2f') in 0.011674 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 7.358826 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e093973c3196ffb55fff2569e3c1e978') in 0.003140 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 2.411568 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fd37fa0e2ee63ed2ae12cb24c789db1') in 0.002864 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 4 diff --git a/JNFrame2/Logs/AssetImportWorker0.log b/JNFrame2/Logs/AssetImportWorker0.log new file mode 100644 index 00000000..1492a5b2 --- /dev/null +++ b/JNFrame2/Logs/AssetImportWorker0.log @@ -0,0 +1,965 @@ +Using pre-set license +Built from '2022.3/china_unity/release' branch; Version is '2022.3.16f1c1 (2f3f1b3bde89) revision 3096347'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +C:\APP\UnityEdit\2022.3.16f1c1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +D:/Jisol/JisolGame/JNFrame2 +-logFile +Logs/AssetImportWorker0.log +-srvPort +58746 +Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 +D:/Jisol/JisolGame/JNFrame2 +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [45888] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 1126597679 [EditorId] 1126597679 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [45888] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 1126597679 [EditorId] 1126597679 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +[Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers. +Refreshing native plugins compatible for Editor in 80.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) +[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520) + Vendor: NVIDIA + VRAM: 5996 MB + Driver: 31.0.15.5176 +Initialize mono +Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed' +Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56396 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.014255 seconds. +- Loaded All Assemblies, in 0.358 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 348 ms +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.598 seconds +Domain Reload Profiling: 949ms + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (72ms) + LoadAllAssembliesAndSetupDomain (121ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (118ms) + TypeCache.Refresh (117ms) + TypeCache.ScanAssembly (105ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (599ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (558ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (438ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (79ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.992 seconds +Refreshing native plugins compatible for Editor in 40.96 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.995 seconds +Domain Reload Profiling: 1973ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (19ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (719ms) + LoadAssemblies (562ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (257ms) + TypeCache.Refresh (227ms) + TypeCache.ScanAssembly (207ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (7ms) + FinalizeReload (995ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (863ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (417ms) + ProcessInitializeOnLoadMethodAttributes (326ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5563 Unused Serialized files (Serialized files now loaded: 0) +Unloading 175 unused Assets / (231.6 KB). Loaded Objects now: 6011. +Memory consumption went from 210.3 MB to 210.1 MB. +Total: 15.154300 ms (FindLiveObjects: 0.329600 ms CreateObjectMapping: 0.192300 ms MarkObjects: 14.360500 ms DeleteObjects: 0.270700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.207 seconds +Refreshing native plugins compatible for Editor in 76.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.222 seconds +Domain Reload Profiling: 2377ms + BeginReloadAssembly (342ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (142ms) + LoadAllAssembliesAndSetupDomain (605ms) + LoadAssemblies (768ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1228ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (558ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (180ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6026. +Memory consumption went from 208.8 MB to 208.6 MB. +Total: 13.008100 ms (FindLiveObjects: 0.313100 ms CreateObjectMapping: 0.179600 ms MarkObjects: 12.289000 ms DeleteObjects: 0.224800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.698 seconds +Refreshing native plugins compatible for Editor in 42.93 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.231 seconds +Domain Reload Profiling: 1915ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (67ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (462ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1232ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (588ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (213ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6041. +Memory consumption went from 210.7 MB to 210.5 MB. +Total: 13.774300 ms (FindLiveObjects: 0.425800 ms CreateObjectMapping: 0.208500 ms MarkObjects: 12.912700 ms DeleteObjects: 0.226300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 582979.347410 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset + artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f39606425d838568877c54fab67f29d5') in 0.014472 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 4 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.158 seconds +Refreshing native plugins compatible for Editor in 67.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.221 seconds +Domain Reload Profiling: 2272ms + BeginReloadAssembly (234ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (88ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (128ms) + LoadAllAssembliesAndSetupDomain (587ms) + LoadAssemblies (668ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1221ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (568ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (202ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 32.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6058. +Memory consumption went from 212.4 MB to 212.2 MB. +Total: 12.524200 ms (FindLiveObjects: 0.296500 ms CreateObjectMapping: 0.208100 ms MarkObjects: 11.830000 ms DeleteObjects: 0.188300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.679 seconds +Refreshing native plugins compatible for Editor in 34.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.238 seconds +Domain Reload Profiling: 1907ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (392ms) + LoadAssemblies (455ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1242ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (583ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (180ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6073. +Memory consumption went from 214.6 MB to 214.4 MB. +Total: 13.714000 ms (FindLiveObjects: 0.311200 ms CreateObjectMapping: 0.182400 ms MarkObjects: 12.999700 ms DeleteObjects: 0.219500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 139.234409 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset + artifactKey: Guid(2aa1d58fb62dc104484f4f2bf1673303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset using Guid(2aa1d58fb62dc104484f4f2bf1673303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72adfdcc06dafd5d51312a46454b1398') in 0.010225 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.143 seconds +Refreshing native plugins compatible for Editor in 78.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.155 seconds +Domain Reload Profiling: 3259ms + BeginReloadAssembly (281ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (128ms) + LoadAllAssembliesAndSetupDomain (645ms) + LoadAssemblies (764ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2156ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (891ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (417ms) + ProcessInitializeOnLoadMethodAttributes (281ms) + AfterProcessingInitializeOnLoad (44ms) + EditorAssembliesLoaded (12ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (38ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 78.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6088. +Memory consumption went from 216.2 MB to 216.0 MB. +Total: 21.245700 ms (FindLiveObjects: 0.459200 ms CreateObjectMapping: 0.189400 ms MarkObjects: 20.339000 ms DeleteObjects: 0.256800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.157 seconds +Refreshing native plugins compatible for Editor in 69.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.514 seconds +Domain Reload Profiling: 2639ms + BeginReloadAssembly (299ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (57ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (140ms) + LoadAllAssembliesAndSetupDomain (617ms) + LoadAssemblies (737ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1514ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (584ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (187ms) + AfterProcessingInitializeOnLoad (33ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6103. +Memory consumption went from 218.4 MB to 218.2 MB. +Total: 13.156900 ms (FindLiveObjects: 0.349800 ms CreateObjectMapping: 0.207800 ms MarkObjects: 12.366100 ms DeleteObjects: 0.231600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.614 seconds +Refreshing native plugins compatible for Editor in 35.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.357 seconds +Domain Reload Profiling: 1957ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (411ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1358ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (301ms) + ProcessInitializeOnLoadMethodAttributes (203ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6118. +Memory consumption went from 220.4 MB to 220.2 MB. +Total: 13.961900 ms (FindLiveObjects: 0.359800 ms CreateObjectMapping: 0.231600 ms MarkObjects: 13.129700 ms DeleteObjects: 0.239800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.658 seconds +Refreshing native plugins compatible for Editor in 53.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.399 seconds +Domain Reload Profiling: 2044ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (387ms) + LoadAssemblies (458ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1400ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (295ms) + ProcessInitializeOnLoadMethodAttributes (212ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6133. +Memory consumption went from 222.3 MB to 222.1 MB. +Total: 14.744500 ms (FindLiveObjects: 0.482600 ms CreateObjectMapping: 0.163500 ms MarkObjects: 13.794300 ms DeleteObjects: 0.302800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.142 seconds +Refreshing native plugins compatible for Editor in 65.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.243 seconds +Domain Reload Profiling: 2357ms + BeginReloadAssembly (310ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (136ms) + LoadAllAssembliesAndSetupDomain (613ms) + LoadAssemblies (770ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1243ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (599ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (284ms) + ProcessInitializeOnLoadMethodAttributes (201ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6148. +Memory consumption went from 224.2 MB to 224.0 MB. +Total: 13.265300 ms (FindLiveObjects: 0.356200 ms CreateObjectMapping: 0.204400 ms MarkObjects: 12.480900 ms DeleteObjects: 0.222500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.798 seconds +Refreshing native plugins compatible for Editor in 36.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.175 seconds +Domain Reload Profiling: 1946ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (103ms) + LoadAllAssembliesAndSetupDomain (448ms) + LoadAssemblies (510ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1176ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (534ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (173ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6163. +Memory consumption went from 226.1 MB to 225.9 MB. +Total: 14.449700 ms (FindLiveObjects: 0.483100 ms CreateObjectMapping: 0.263100 ms MarkObjects: 13.488400 ms DeleteObjects: 0.214100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.627 seconds +Refreshing native plugins compatible for Editor in 42.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.419 seconds +Domain Reload Profiling: 2033ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (352ms) + LoadAssemblies (426ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1419ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (313ms) + ProcessInitializeOnLoadMethodAttributes (209ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 43.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.1 KB). Loaded Objects now: 6178. +Memory consumption went from 228.1 MB to 227.9 MB. +Total: 14.459400 ms (FindLiveObjects: 0.377900 ms CreateObjectMapping: 0.219400 ms MarkObjects: 13.657800 ms DeleteObjects: 0.203000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame2/Logs/AssetImportWorker1-prev.log b/JNFrame2/Logs/AssetImportWorker1-prev.log index 4e07ea3a..a46aaa4c 100644 --- a/JNFrame2/Logs/AssetImportWorker1-prev.log +++ b/JNFrame2/Logs/AssetImportWorker1-prev.log @@ -15,7 +15,7 @@ D:/Jisol/JisolGame/JNFrame2 -logFile Logs/AssetImportWorker1.log -srvPort -57261 +58888 Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 D:/Jisol/JisolGame/JNFrame2 [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,12 +49,12 @@ D:/Jisol/JisolGame/JNFrame2 "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [9804] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 2208123794 [EditorId] 2208123794 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [7192] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3930966283 [EditorId] 3930966283 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [9804] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 2208123794 [EditorId] 2208123794 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [7192] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3930966283 [EditorId] 3930966283 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... [Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers. -Refreshing native plugins compatible for Editor in 85.95 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 336.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) [Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems @@ -70,47 +70,47 @@ Initialize mono Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed' Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56232 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56508 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.014350 seconds. -- Loaded All Assemblies, in 0.378 seconds +Registered in 0.037837 seconds. +- Loaded All Assemblies, in 1.023 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 302 ms +Android Extension - Scanning For ADB Devices 1258 ms Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.568 seconds -Domain Reload Profiling: 940ms - BeginReloadAssembly (150ms) +- Finished resetting the current domain, in 2.291 seconds +Domain Reload Profiling: 3273ms + BeginReloadAssembly (326ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (2ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (67ms) - LoadAllAssembliesAndSetupDomain (120ms) - LoadAssemblies (120ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (80ms) + RebuildNativeTypeToScriptingClass (21ms) + initialDomainReloadingComplete (203ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (309ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (118ms) - TypeCache.Refresh (116ms) - TypeCache.ScanAssembly (105ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (568ms) + AnalyzeDomain (341ms) + TypeCache.Refresh (338ms) + TypeCache.ScanAssembly (309ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (1ms) + FinalizeReload (2291ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (527ms) + SetupLoadedEditorAssemblies (2168ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (394ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (1688ms) + SetLoadedEditorAssemblies (9ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (88ms) - ProcessInitializeOnLoadMethodAttributes (41ms) + BeforeProcessingInitializeOnLoad (5ms) + ProcessInitializeOnLoadAttributes (326ms) + ProcessInitializeOnLoadMethodAttributes (139ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -118,59 +118,3651 @@ Domain Reload Profiling: 940ms ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.985 seconds -Refreshing native plugins compatible for Editor in 34.70 ms, found 3 plugins. +- Loaded All Assemblies, in 5.885 seconds +Refreshing native plugins compatible for Editor in 289.11 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for Android 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 [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.036 seconds -Domain Reload Profiling: 2007ms - BeginReloadAssembly (166ms) +- Finished resetting the current domain, in 7.420 seconds +Domain Reload Profiling: 13030ms + BeginReloadAssembly (1090ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (33ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (20ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (77ms) - LoadAllAssembliesAndSetupDomain (690ms) - LoadAssemblies (541ms) + CreateAndSetChildDomain (61ms) + RebuildCommonClasses (137ms) + RebuildNativeTypeToScriptingClass (42ms) + initialDomainReloadingComplete (669ms) + LoadAllAssembliesAndSetupDomain (3672ms) + LoadAssemblies (3029ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (256ms) - TypeCache.Refresh (230ms) - TypeCache.ScanAssembly (210ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1037ms) + AnalyzeDomain (1272ms) + TypeCache.Refresh (1119ms) + TypeCache.ScanAssembly (1040ms) + ScanForSourceGeneratedMonoScriptInfo (112ms) + ResolveRequiredComponents (36ms) + FinalizeReload (7421ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (902ms) + SetupLoadedEditorAssemblies (6130ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (192ms) + SetLoadedEditorAssemblies (27ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (557ms) - ProcessInitializeOnLoadMethodAttributes (228ms) - AfterProcessingInitializeOnLoad (22ms) - EditorAssembliesLoaded (0ms) + BeforeProcessingInitializeOnLoad (962ms) + ProcessInitializeOnLoadAttributes (2475ms) + ProcessInitializeOnLoadMethodAttributes (2327ms) + AfterProcessingInitializeOnLoad (146ms) + EditorAssembliesLoaded (1ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + 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 38.83 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 249.85 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) -Unloading 175 unused Assets / (231.0 KB). Loaded Objects now: 5995. -Memory consumption went from 210.0 MB to 209.8 MB. -Total: 14.807900 ms (FindLiveObjects: 0.334300 ms CreateObjectMapping: 0.176900 ms MarkObjects: 14.003200 ms DeleteObjects: 0.292300 ms) +Unloading 5563 Unused Serialized files (Serialized files now loaded: 0) +Unloading 175 unused Assets / (231.1 KB). Loaded Objects now: 6011. +Memory consumption went from 210.3 MB to 210.1 MB. +Total: 117.550100 ms (FindLiveObjects: 0.922500 ms CreateObjectMapping: 0.685100 ms MarkObjects: 113.003500 ms DeleteObjects: 2.934700 ms) +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.475 seconds +Refreshing native plugins compatible for Editor in 156.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 4.704 seconds +Domain Reload Profiling: 7119ms + BeginReloadAssembly (667ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (110ms) + RebuildCommonClasses (59ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (326ms) + LoadAllAssembliesAndSetupDomain (1343ms) + LoadAssemblies (1779ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (43ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (25ms) + FinalizeReload (4706ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1998ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (78ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (232ms) + ProcessInitializeOnLoadAttributes (918ms) + ProcessInitializeOnLoadMethodAttributes (623ms) + AfterProcessingInitializeOnLoad (125ms) + EditorAssembliesLoaded (15ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (91ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 128.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6026. +Memory consumption went from 208.8 MB to 208.6 MB. +Total: 40.091700 ms (FindLiveObjects: 0.794600 ms CreateObjectMapping: 0.532900 ms MarkObjects: 38.355500 ms DeleteObjects: 0.405800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.711 seconds +Refreshing native plugins compatible for Editor in 95.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.996 seconds +Domain Reload Profiling: 5617ms + BeginReloadAssembly (554ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (132ms) + LoadAllAssembliesAndSetupDomain (871ms) + LoadAssemblies (1127ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (51ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (15ms) + FinalizeReload (3996ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1428ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (69ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (166ms) + ProcessInitializeOnLoadAttributes (566ms) + ProcessInitializeOnLoadMethodAttributes (561ms) + AfterProcessingInitializeOnLoad (59ms) + EditorAssembliesLoaded (4ms) + 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 84.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6042. +Memory consumption went from 210.7 MB to 210.6 MB. +Total: 26.346700 ms (FindLiveObjects: 0.457800 ms CreateObjectMapping: 0.188200 ms MarkObjects: 25.432800 ms DeleteObjects: 0.266600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.959 seconds +Refreshing native plugins compatible for Editor in 76.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.732 seconds +Domain Reload Profiling: 2674ms + BeginReloadAssembly (259ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (90ms) + LoadAllAssembliesAndSetupDomain (542ms) + LoadAssemblies (628ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1734ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (802ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (351ms) + ProcessInitializeOnLoadMethodAttributes (287ms) + AfterProcessingInitializeOnLoad (42ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 50.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6057. +Memory consumption went from 212.7 MB to 212.5 MB. +Total: 20.672200 ms (FindLiveObjects: 0.339800 ms CreateObjectMapping: 0.189100 ms MarkObjects: 19.888100 ms DeleteObjects: 0.253700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.257 seconds +Refreshing native plugins compatible for Editor in 63.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.693 seconds +Domain Reload Profiling: 3927ms + BeginReloadAssembly (419ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (91ms) + RebuildCommonClasses (58ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (128ms) + LoadAllAssembliesAndSetupDomain (610ms) + LoadAssemblies (805ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2695ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1438ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (714ms) + ProcessInitializeOnLoadMethodAttributes (504ms) + AfterProcessingInitializeOnLoad (69ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (56ms) +Script is not up to date after domain reload: guid(acdb37e4e7c0494084eed1be8171efc6) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 125.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6071. +Memory consumption went from 214.6 MB to 214.4 MB. +Total: 33.043900 ms (FindLiveObjects: 0.480100 ms CreateObjectMapping: 0.411200 ms MarkObjects: 31.483200 ms DeleteObjects: 0.666800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.191 seconds +Refreshing native plugins compatible for Editor in 67.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.231 seconds +Domain Reload Profiling: 4402ms + BeginReloadAssembly (295ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (119ms) + LoadAllAssembliesAndSetupDomain (685ms) + LoadAssemblies (793ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (58ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (14ms) + FinalizeReload (3239ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1443ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (100ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (265ms) + ProcessInitializeOnLoadAttributes (632ms) + ProcessInitializeOnLoadMethodAttributes (373ms) + AfterProcessingInitializeOnLoad (64ms) + 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 59.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6087. +Memory consumption went from 216.5 MB to 216.3 MB. +Total: 18.510000 ms (FindLiveObjects: 0.343400 ms CreateObjectMapping: 0.258000 ms MarkObjects: 17.684200 ms DeleteObjects: 0.223400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.475 seconds +Refreshing native plugins compatible for Editor in 109.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 4.832 seconds +Domain Reload Profiling: 7230ms + BeginReloadAssembly (738ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (113ms) + RebuildCommonClasses (92ms) + RebuildNativeTypeToScriptingClass (30ms) + initialDomainReloadingComplete (233ms) + LoadAllAssembliesAndSetupDomain (1303ms) + LoadAssemblies (1721ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (81ms) + TypeCache.Refresh (33ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (23ms) + ResolveRequiredComponents (24ms) + FinalizeReload (4833ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1920ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (87ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (208ms) + ProcessInitializeOnLoadAttributes (885ms) + ProcessInitializeOnLoadMethodAttributes (610ms) + AfterProcessingInitializeOnLoad (120ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (103ms) +Script is not up to date after domain reload: guid(acdb37e4e7c0494084eed1be8171efc6) path("Assets/Scripts/GASSamples/Scripts/Game/Logic/Entity/Nodes/Component/Components/JNGASComponent.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 62.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6101. +Memory consumption went from 218.5 MB to 218.3 MB. +Total: 20.075800 ms (FindLiveObjects: 0.416300 ms CreateObjectMapping: 0.257300 ms MarkObjects: 19.141100 ms DeleteObjects: 0.259600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.955 seconds +Refreshing native plugins compatible for Editor in 57.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.887 seconds +Domain Reload Profiling: 2822ms + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (100ms) + LoadAllAssembliesAndSetupDomain (515ms) + LoadAssemblies (632ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1888ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (862ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (384ms) + ProcessInitializeOnLoadMethodAttributes (290ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 66.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6117. +Memory consumption went from 220.5 MB to 220.3 MB. +Total: 19.349900 ms (FindLiveObjects: 0.388900 ms CreateObjectMapping: 0.232700 ms MarkObjects: 18.477000 ms DeleteObjects: 0.248900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.928 seconds +Refreshing native plugins compatible for Editor in 84.12 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.912 seconds +Domain Reload Profiling: 4803ms + BeginReloadAssembly (695ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (19ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (144ms) + RebuildCommonClasses (83ms) + RebuildNativeTypeToScriptingClass (23ms) + initialDomainReloadingComplete (200ms) + LoadAllAssembliesAndSetupDomain (888ms) + LoadAssemblies (1216ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (59ms) + TypeCache.Refresh (25ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (17ms) + FinalizeReload (2915ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1626ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (52ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (824ms) + ProcessInitializeOnLoadMethodAttributes (514ms) + AfterProcessingInitializeOnLoad (106ms) + EditorAssembliesLoaded (1ms) + 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 182.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6132. +Memory consumption went from 222.4 MB to 222.2 MB. +Total: 41.552400 ms (FindLiveObjects: 0.669700 ms CreateObjectMapping: 0.319500 ms MarkObjects: 40.201600 ms DeleteObjects: 0.359500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.078 seconds +Refreshing native plugins compatible for Editor in 77.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.877 seconds +Domain Reload Profiling: 2931ms + BeginReloadAssembly (261ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (112ms) + LoadAllAssembliesAndSetupDomain (627ms) + LoadAssemblies (730ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1878ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (829ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (371ms) + ProcessInitializeOnLoadMethodAttributes (286ms) + AfterProcessingInitializeOnLoad (38ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 58.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6147. +Memory consumption went from 224.3 MB to 224.1 MB. +Total: 18.226300 ms (FindLiveObjects: 0.413900 ms CreateObjectMapping: 0.295900 ms MarkObjects: 17.244700 ms DeleteObjects: 0.270500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.056 seconds +Refreshing native plugins compatible for Editor in 80.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.787 seconds +Domain Reload Profiling: 3820ms + BeginReloadAssembly (266ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (102ms) + LoadAllAssembliesAndSetupDomain (612ms) + LoadAssemblies (740ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (15ms) + FinalizeReload (2788ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (54ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (577ms) + ProcessInitializeOnLoadMethodAttributes (397ms) + AfterProcessingInitializeOnLoad (51ms) + EditorAssembliesLoaded (7ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (52ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 82.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.5 KB). Loaded Objects now: 6162. +Memory consumption went from 226.2 MB to 226.0 MB. +Total: 27.335600 ms (FindLiveObjects: 0.468100 ms CreateObjectMapping: 0.320300 ms MarkObjects: 26.194700 ms DeleteObjects: 0.349200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.292 seconds +Refreshing native plugins compatible for Editor in 76.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.239 seconds +Domain Reload Profiling: 4507ms + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (105ms) + LoadAllAssembliesAndSetupDomain (849ms) + LoadAssemblies (770ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (224ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (153ms) + ScanForSourceGeneratedMonoScriptInfo (34ms) + ResolveRequiredComponents (13ms) + FinalizeReload (3241ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (100ms) + ProcessInitializeOnLoadAttributes (363ms) + ProcessInitializeOnLoadMethodAttributes (359ms) + AfterProcessingInitializeOnLoad (42ms) + EditorAssembliesLoaded (0ms) + 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 75.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6177. +Memory consumption went from 228.3 MB to 228.1 MB. +Total: 48.972400 ms (FindLiveObjects: 0.591100 ms CreateObjectMapping: 0.278800 ms MarkObjects: 47.527200 ms DeleteObjects: 0.571600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 2.259 seconds +Refreshing native plugins compatible for Editor in 161.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 5.670 seconds +Domain Reload Profiling: 7878ms + BeginReloadAssembly (533ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (96ms) + RebuildCommonClasses (82ms) + RebuildNativeTypeToScriptingClass (29ms) + initialDomainReloadingComplete (281ms) + LoadAllAssembliesAndSetupDomain (1283ms) + LoadAssemblies (1512ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (80ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (6ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (26ms) + FinalizeReload (5671ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (2681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (129ms) + SetLoadedEditorAssemblies (13ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (297ms) + ProcessInitializeOnLoadAttributes (1456ms) + ProcessInitializeOnLoadMethodAttributes (694ms) + AfterProcessingInitializeOnLoad (89ms) + EditorAssembliesLoaded (4ms) + 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 68.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6192. +Memory consumption went from 230.2 MB to 230.0 MB. +Total: 21.862600 ms (FindLiveObjects: 0.437500 ms CreateObjectMapping: 0.250700 ms MarkObjects: 20.909000 ms DeleteObjects: 0.263900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.706 seconds +Refreshing native plugins compatible for Editor in 77.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.928 seconds +Domain Reload Profiling: 4611ms + BeginReloadAssembly (555ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (17ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (115ms) + RebuildCommonClasses (68ms) + RebuildNativeTypeToScriptingClass (21ms) + initialDomainReloadingComplete (159ms) + LoadAllAssembliesAndSetupDomain (877ms) + LoadAssemblies (1097ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (63ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (22ms) + ResolveRequiredComponents (16ms) + FinalizeReload (2931ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (58ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (133ms) + ProcessInitializeOnLoadAttributes (600ms) + ProcessInitializeOnLoadMethodAttributes (373ms) + AfterProcessingInitializeOnLoad (63ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (29ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 275.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6207. +Memory consumption went from 232.2 MB to 232.0 MB. +Total: 25.734600 ms (FindLiveObjects: 0.487700 ms CreateObjectMapping: 0.274400 ms MarkObjects: 24.641900 ms DeleteObjects: 0.328400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.409 seconds +Refreshing native plugins compatible for Editor in 80.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.303 seconds +Domain Reload Profiling: 4681ms + BeginReloadAssembly (352ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (123ms) + LoadAllAssembliesAndSetupDomain (843ms) + LoadAssemblies (988ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (52ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (15ms) + FinalizeReload (3304ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1276ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (50ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (162ms) + ProcessInitializeOnLoadAttributes (559ms) + ProcessInitializeOnLoadMethodAttributes (433ms) + AfterProcessingInitializeOnLoad (65ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (41ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6222. +Memory consumption went from 234.1 MB to 233.9 MB. +Total: 25.569100 ms (FindLiveObjects: 0.521000 ms CreateObjectMapping: 0.300000 ms MarkObjects: 24.403000 ms DeleteObjects: 0.343200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.421 seconds +Refreshing native plugins compatible for Editor in 88.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 4.441 seconds +Domain Reload Profiling: 5829ms + BeginReloadAssembly (364ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (138ms) + LoadAllAssembliesAndSetupDomain (817ms) + LoadAssemblies (1012ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (18ms) + FinalizeReload (4443ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1586ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (59ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (155ms) + ProcessInitializeOnLoadAttributes (758ms) + ProcessInitializeOnLoadMethodAttributes (520ms) + AfterProcessingInitializeOnLoad (83ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (58ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6237. +Memory consumption went from 235.9 MB to 235.8 MB. +Total: 37.126500 ms (FindLiveObjects: 0.633400 ms CreateObjectMapping: 0.343300 ms MarkObjects: 35.738800 ms DeleteObjects: 0.408900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.227 seconds +Refreshing native plugins compatible for Editor in 71.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.632 seconds +Domain Reload Profiling: 4831ms + BeginReloadAssembly (308ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (135ms) + LoadAllAssembliesAndSetupDomain (692ms) + LoadAssemblies (842ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (13ms) + FinalizeReload (3632ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (57ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (592ms) + ProcessInitializeOnLoadMethodAttributes (412ms) + AfterProcessingInitializeOnLoad (58ms) + EditorAssembliesLoaded (5ms) + 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 145.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6252. +Memory consumption went from 238.0 MB to 237.8 MB. +Total: 41.306400 ms (FindLiveObjects: 0.752700 ms CreateObjectMapping: 0.377600 ms MarkObjects: 39.794200 ms DeleteObjects: 0.379200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.733 seconds +Refreshing native plugins compatible for Editor in 83.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.067 seconds +Domain Reload Profiling: 4749ms + BeginReloadAssembly (491ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (79ms) + RebuildCommonClasses (61ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (193ms) + LoadAllAssembliesAndSetupDomain (917ms) + LoadAssemblies (1166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (14ms) + ResolveRequiredComponents (16ms) + FinalizeReload (3068ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1349ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (47ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (519ms) + ProcessInitializeOnLoadMethodAttributes (533ms) + AfterProcessingInitializeOnLoad (127ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (56ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 89.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6267. +Memory consumption went from 239.9 MB to 239.7 MB. +Total: 40.092500 ms (FindLiveObjects: 0.641600 ms CreateObjectMapping: 0.233500 ms MarkObjects: 38.894500 ms DeleteObjects: 0.320700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.187 seconds +Refreshing native plugins compatible for Editor in 60.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.896 seconds +Domain Reload Profiling: 3062ms + BeginReloadAssembly (305ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (109ms) + LoadAllAssembliesAndSetupDomain (693ms) + LoadAssemblies (829ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1896ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (850ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (387ms) + ProcessInitializeOnLoadMethodAttributes (284ms) + AfterProcessingInitializeOnLoad (37ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 57.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6282. +Memory consumption went from 241.8 MB to 241.6 MB. +Total: 17.599400 ms (FindLiveObjects: 0.373400 ms CreateObjectMapping: 0.242800 ms MarkObjects: 16.728500 ms DeleteObjects: 0.253500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.142 seconds +Refreshing native plugins compatible for Editor in 139.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.053 seconds +Domain Reload Profiling: 3168ms + BeginReloadAssembly (276ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (126ms) + LoadAllAssembliesAndSetupDomain (654ms) + LoadAssemblies (748ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (61ms) + TypeCache.Refresh (32ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (16ms) + FinalizeReload (2054ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (812ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (34ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (367ms) + ProcessInitializeOnLoadMethodAttributes (270ms) + AfterProcessingInitializeOnLoad (40ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 118.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6297. +Memory consumption went from 243.8 MB to 243.6 MB. +Total: 30.898400 ms (FindLiveObjects: 0.478000 ms CreateObjectMapping: 0.191400 ms MarkObjects: 29.970600 ms DeleteObjects: 0.256900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.699 seconds +Refreshing native plugins compatible for Editor in 92.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.238 seconds +Domain Reload Profiling: 4889ms + BeginReloadAssembly (463ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (143ms) + LoadAllAssembliesAndSetupDomain (994ms) + LoadAssemblies (1208ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (67ms) + TypeCache.Refresh (38ms) + TypeCache.ScanAssembly (20ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (17ms) + FinalizeReload (3246ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1522ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (57ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (189ms) + ProcessInitializeOnLoadAttributes (705ms) + ProcessInitializeOnLoadMethodAttributes (487ms) + AfterProcessingInitializeOnLoad (69ms) + EditorAssembliesLoaded (10ms) + 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 162.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6312. +Memory consumption went from 245.6 MB to 245.4 MB. +Total: 39.469500 ms (FindLiveObjects: 0.709100 ms CreateObjectMapping: 0.350100 ms MarkObjects: 38.032500 ms DeleteObjects: 0.375300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.026 seconds +Refreshing native plugins compatible for Editor in 59.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.015 seconds +Domain Reload Profiling: 3020ms + BeginReloadAssembly (250ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (112ms) + LoadAllAssembliesAndSetupDomain (589ms) + LoadAssemblies (678ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2017ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (930ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (529ms) + ProcessInitializeOnLoadMethodAttributes (223ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6327. +Memory consumption went from 247.6 MB to 247.4 MB. +Total: 12.460500 ms (FindLiveObjects: 0.308600 ms CreateObjectMapping: 0.177000 ms MarkObjects: 11.783500 ms DeleteObjects: 0.190600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.692 seconds +Refreshing native plugins compatible for Editor in 46.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.436 seconds +Domain Reload Profiling: 2114ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (404ms) + LoadAssemblies (479ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1437ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (633ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (300ms) + ProcessInitializeOnLoadMethodAttributes (206ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 42.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6342. +Memory consumption went from 249.6 MB to 249.4 MB. +Total: 14.500900 ms (FindLiveObjects: 0.321900 ms CreateObjectMapping: 0.174600 ms MarkObjects: 13.765000 ms DeleteObjects: 0.238300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.854 seconds +Refreshing native plugins compatible for Editor in 44.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.119 seconds +Domain Reload Profiling: 2955ms + BeginReloadAssembly (237ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (85ms) + LoadAllAssembliesAndSetupDomain (469ms) + LoadAssemblies (589ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2120ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (606ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (214ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Script is not up to date after domain reload: guid(f3ea713c89fe42fd98c9b84f2ec623f8) path("Assets/HotScripts/JNGame/Runtime/Sync/Entity/JNContext.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6357. +Memory consumption went from 251.5 MB to 251.3 MB. +Total: 14.609900 ms (FindLiveObjects: 0.363000 ms CreateObjectMapping: 0.224600 ms MarkObjects: 13.765000 ms DeleteObjects: 0.255800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.834 seconds +Refreshing native plugins compatible for Editor in 37.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.471 seconds +Domain Reload Profiling: 2290ms + BeginReloadAssembly (218ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (475ms) + LoadAssemblies (556ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1471ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (545ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (185ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6372. +Memory consumption went from 253.4 MB to 253.2 MB. +Total: 14.519800 ms (FindLiveObjects: 0.361100 ms CreateObjectMapping: 0.205400 ms MarkObjects: 13.665400 ms DeleteObjects: 0.286800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.787 seconds +Refreshing native plugins compatible for Editor in 32.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.147 seconds +Domain Reload Profiling: 1919ms + BeginReloadAssembly (256ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (82ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (494ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (9ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1148ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (518ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (162ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6387. +Memory consumption went from 255.3 MB to 255.1 MB. +Total: 12.682200 ms (FindLiveObjects: 0.304200 ms CreateObjectMapping: 0.167900 ms MarkObjects: 11.998200 ms DeleteObjects: 0.210900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.231 seconds +Refreshing native plugins compatible for Editor in 178.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.065 seconds +Domain Reload Profiling: 3262ms + BeginReloadAssembly (302ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (23ms) + initialDomainReloadingComplete (133ms) + LoadAllAssembliesAndSetupDomain (702ms) + LoadAssemblies (830ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2065ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (891ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (391ms) + ProcessInitializeOnLoadMethodAttributes (315ms) + AfterProcessingInitializeOnLoad (40ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (47ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 61.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6402. +Memory consumption went from 257.3 MB to 257.1 MB. +Total: 21.081300 ms (FindLiveObjects: 0.467500 ms CreateObjectMapping: 0.163400 ms MarkObjects: 20.202500 ms DeleteObjects: 0.246300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.125 seconds +Refreshing native plugins compatible for Editor in 91.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.162 seconds +Domain Reload Profiling: 2255ms + BeginReloadAssembly (286ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (118ms) + LoadAllAssembliesAndSetupDomain (635ms) + LoadAssemblies (754ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (41ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1163ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (527ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6417. +Memory consumption went from 259.2 MB to 259.0 MB. +Total: 14.036100 ms (FindLiveObjects: 0.338200 ms CreateObjectMapping: 0.182300 ms MarkObjects: 13.311000 ms DeleteObjects: 0.203600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.604 seconds +Refreshing native plugins compatible for Editor in 33.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.290 seconds +Domain Reload Profiling: 1883ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (413ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1292ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (567ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (202ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 32.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6432. +Memory consumption went from 261.2 MB to 261.0 MB. +Total: 12.834400 ms (FindLiveObjects: 0.322400 ms CreateObjectMapping: 0.169900 ms MarkObjects: 12.087200 ms DeleteObjects: 0.253400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.833 seconds +Refreshing native plugins compatible for Editor in 33.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.128 seconds +Domain Reload Profiling: 1937ms + BeginReloadAssembly (269ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (118ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (494ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1129ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (521ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6447. +Memory consumption went from 263.1 MB to 262.9 MB. +Total: 13.100600 ms (FindLiveObjects: 0.308300 ms CreateObjectMapping: 0.194300 ms MarkObjects: 12.391200 ms DeleteObjects: 0.205700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.662 seconds +Refreshing native plugins compatible for Editor in 53.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.395 seconds +Domain Reload Profiling: 2045ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (392ms) + LoadAssemblies (457ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1396ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (314ms) + ProcessInitializeOnLoadMethodAttributes (194ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6462. +Memory consumption went from 265.0 MB to 264.8 MB. +Total: 14.816000 ms (FindLiveObjects: 0.523800 ms CreateObjectMapping: 0.146600 ms MarkObjects: 13.907100 ms DeleteObjects: 0.226800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.660 seconds +Refreshing native plugins compatible for Editor in 43.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.478 seconds +Domain Reload Profiling: 2125ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (380ms) + LoadAssemblies (454ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1479ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (31ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (302ms) + ProcessInitializeOnLoadMethodAttributes (204ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 43.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6477. +Memory consumption went from 267.0 MB to 266.8 MB. +Total: 15.058000 ms (FindLiveObjects: 0.358100 ms CreateObjectMapping: 0.304400 ms MarkObjects: 14.175400 ms DeleteObjects: 0.219000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.214 seconds +Refreshing native plugins compatible for Editor in 83.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.921 seconds +Domain Reload Profiling: 4074ms + BeginReloadAssembly (288ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (122ms) + LoadAllAssembliesAndSetupDomain (686ms) + LoadAssemblies (805ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2921ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1013ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (69ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (428ms) + ProcessInitializeOnLoadMethodAttributes (345ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 74.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.6 KB). Loaded Objects now: 6492. +Memory consumption went from 268.9 MB to 268.7 MB. +Total: 17.801400 ms (FindLiveObjects: 0.536100 ms CreateObjectMapping: 0.176400 ms MarkObjects: 16.861900 ms DeleteObjects: 0.225500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.074 seconds +Refreshing native plugins compatible for Editor in 61.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.055 seconds +Domain Reload Profiling: 3107ms + BeginReloadAssembly (308ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (107ms) + LoadAllAssembliesAndSetupDomain (586ms) + LoadAssemblies (714ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2056ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (857ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (378ms) + ProcessInitializeOnLoadMethodAttributes (281ms) + AfterProcessingInitializeOnLoad (63ms) + EditorAssembliesLoaded (1ms) + 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 73.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6507. +Memory consumption went from 270.9 MB to 270.7 MB. +Total: 21.140200 ms (FindLiveObjects: 0.453200 ms CreateObjectMapping: 0.174700 ms MarkObjects: 20.244700 ms DeleteObjects: 0.266300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.862 seconds +Refreshing native plugins compatible for Editor in 34.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 2002ms + BeginReloadAssembly (287ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (166ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (488ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (525ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (179ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 33.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.5 KB). Loaded Objects now: 6522. +Memory consumption went from 272.8 MB to 272.6 MB. +Total: 12.825300 ms (FindLiveObjects: 0.326600 ms CreateObjectMapping: 0.190000 ms MarkObjects: 12.108300 ms DeleteObjects: 0.199400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.176 seconds +Refreshing native plugins compatible for Editor in 94.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.569 seconds +Domain Reload Profiling: 3737ms + BeginReloadAssembly (307ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (69ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (107ms) + LoadAllAssembliesAndSetupDomain (668ms) + LoadAssemblies (804ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2574ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1265ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (673ms) + ProcessInitializeOnLoadMethodAttributes (336ms) + AfterProcessingInitializeOnLoad (54ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 62.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6537. +Memory consumption went from 274.7 MB to 274.5 MB. +Total: 30.228700 ms (FindLiveObjects: 0.431100 ms CreateObjectMapping: 0.169800 ms MarkObjects: 29.329300 ms DeleteObjects: 0.297100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.112 seconds +Refreshing native plugins compatible for Editor in 75.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.868 seconds +Domain Reload Profiling: 3956ms + BeginReloadAssembly (293ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (50ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (121ms) + LoadAllAssembliesAndSetupDomain (611ms) + LoadAssemblies (756ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2869ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1058ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (43ms) + SetLoadedEditorAssemblies (24ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (220ms) + ProcessInitializeOnLoadAttributes (425ms) + ProcessInitializeOnLoadMethodAttributes (290ms) + AfterProcessingInitializeOnLoad (51ms) + EditorAssembliesLoaded (6ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 74.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6552. +Memory consumption went from 276.7 MB to 276.5 MB. +Total: 31.932300 ms (FindLiveObjects: 0.557900 ms CreateObjectMapping: 0.176500 ms MarkObjects: 30.941100 ms DeleteObjects: 0.255500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.164 seconds +Refreshing native plugins compatible for Editor in 68.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.158 seconds +Domain Reload Profiling: 3293ms + BeginReloadAssembly (277ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (138ms) + LoadAllAssembliesAndSetupDomain (668ms) + LoadAssemblies (781ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2158ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (385ms) + ProcessInitializeOnLoadMethodAttributes (354ms) + AfterProcessingInitializeOnLoad (36ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 65.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6567. +Memory consumption went from 278.6 MB to 278.4 MB. +Total: 23.904700 ms (FindLiveObjects: 0.705900 ms CreateObjectMapping: 0.189600 ms MarkObjects: 22.773200 ms DeleteObjects: 0.234400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.758 seconds +Refreshing native plugins compatible for Editor in 64.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.821 seconds +Domain Reload Profiling: 2564ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (470ms) + LoadAssemblies (536ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1821ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (771ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (352ms) + ProcessInitializeOnLoadMethodAttributes (267ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6582. +Memory consumption went from 280.5 MB to 280.3 MB. +Total: 12.364500 ms (FindLiveObjects: 0.337800 ms CreateObjectMapping: 0.177900 ms MarkObjects: 11.634200 ms DeleteObjects: 0.213600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.777 seconds +Refreshing native plugins compatible for Editor in 35.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.135 seconds +Domain Reload Profiling: 1891ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (471ms) + LoadAssemblies (531ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1136ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (513ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (162ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6597. +Memory consumption went from 282.5 MB to 282.3 MB. +Total: 12.702400 ms (FindLiveObjects: 0.327500 ms CreateObjectMapping: 0.183100 ms MarkObjects: 11.961000 ms DeleteObjects: 0.229800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.736 seconds +Refreshing native plugins compatible for Editor in 37.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.200 seconds +Domain Reload Profiling: 1918ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (90ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (462ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1200ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (535ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (184ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6612. +Memory consumption went from 284.3 MB to 284.1 MB. +Total: 12.484900 ms (FindLiveObjects: 0.325100 ms CreateObjectMapping: 0.172100 ms MarkObjects: 11.746500 ms DeleteObjects: 0.240300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.767 seconds +Refreshing native plugins compatible for Editor in 41.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.133 seconds +Domain Reload Profiling: 1889ms + BeginReloadAssembly (328ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (528ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1134ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (524ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (168ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6627. +Memory consumption went from 286.3 MB to 286.1 MB. +Total: 13.304400 ms (FindLiveObjects: 0.372600 ms CreateObjectMapping: 0.184200 ms MarkObjects: 12.521500 ms DeleteObjects: 0.224900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.648 seconds +Refreshing native plugins compatible for Editor in 42.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.379 seconds +Domain Reload Profiling: 2014ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (436ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1379ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (607ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (289ms) + ProcessInitializeOnLoadMethodAttributes (194ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6642. +Memory consumption went from 288.3 MB to 288.1 MB. +Total: 15.413200 ms (FindLiveObjects: 0.361000 ms CreateObjectMapping: 0.206700 ms MarkObjects: 14.589400 ms DeleteObjects: 0.255000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.990 seconds +Refreshing native plugins compatible for Editor in 39.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.228 seconds +Domain Reload Profiling: 2191ms + BeginReloadAssembly (343ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (126ms) + LoadAllAssembliesAndSetupDomain (439ms) + LoadAssemblies (641ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1231ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (595ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (226ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6657. +Memory consumption went from 290.2 MB to 290.0 MB. +Total: 12.933200 ms (FindLiveObjects: 0.340500 ms CreateObjectMapping: 0.177800 ms MarkObjects: 12.130300 ms DeleteObjects: 0.283500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.137 seconds +Refreshing native plugins compatible for Editor in 78.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.308 seconds +Domain Reload Profiling: 3431ms + BeginReloadAssembly (267ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (114ms) + LoadAllAssembliesAndSetupDomain (691ms) + LoadAssemblies (816ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2309ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1002ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (456ms) + ProcessInitializeOnLoadMethodAttributes (335ms) + AfterProcessingInitializeOnLoad (40ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 78.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6672. +Memory consumption went from 292.1 MB to 292.0 MB. +Total: 34.783800 ms (FindLiveObjects: 0.460500 ms CreateObjectMapping: 0.173900 ms MarkObjects: 33.899900 ms DeleteObjects: 0.248100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.009 seconds +Refreshing native plugins compatible for Editor in 33.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.189 seconds +Domain Reload Profiling: 2176ms + BeginReloadAssembly (269ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (141ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (656ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1190ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (540ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (252ms) + ProcessInitializeOnLoadMethodAttributes (176ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6687. +Memory consumption went from 294.0 MB to 293.8 MB. +Total: 13.551100 ms (FindLiveObjects: 0.345400 ms CreateObjectMapping: 0.193100 ms MarkObjects: 12.803300 ms DeleteObjects: 0.208000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.031 seconds +Refreshing native plugins compatible for Editor in 34.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.141 seconds +Domain Reload Profiling: 2156ms + BeginReloadAssembly (334ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (117ms) + LoadAllAssembliesAndSetupDomain (510ms) + LoadAssemblies (694ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1141ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (519ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (161ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6702. +Memory consumption went from 296.0 MB to 295.8 MB. +Total: 14.075100 ms (FindLiveObjects: 0.361600 ms CreateObjectMapping: 0.184200 ms MarkObjects: 13.309400 ms DeleteObjects: 0.219100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.634 seconds +Refreshing native plugins compatible for Editor in 38.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.158 seconds +Domain Reload Profiling: 1779ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (353ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1158ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (521ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (168ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6717. +Memory consumption went from 297.9 MB to 297.7 MB. +Total: 14.055000 ms (FindLiveObjects: 0.382000 ms CreateObjectMapping: 0.184600 ms MarkObjects: 13.068400 ms DeleteObjects: 0.418400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.763 seconds +Refreshing native plugins compatible for Editor in 39.68 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.148 seconds +Domain Reload Profiling: 1897ms + BeginReloadAssembly (240ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (80ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (530ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (180ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6732. +Memory consumption went from 299.9 MB to 299.7 MB. +Total: 14.300700 ms (FindLiveObjects: 0.395900 ms CreateObjectMapping: 0.201500 ms MarkObjects: 13.286700 ms DeleteObjects: 0.415400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.844 seconds +Refreshing native plugins compatible for Editor in 39.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.255 seconds +Domain Reload Profiling: 2087ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (565ms) + LoadAssemblies (600ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (29ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1256ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (525ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (171ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6747. +Memory consumption went from 301.9 MB to 301.7 MB. +Total: 15.039200 ms (FindLiveObjects: 0.413200 ms CreateObjectMapping: 0.196300 ms MarkObjects: 14.140000 ms DeleteObjects: 0.288300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.633 seconds +Refreshing native plugins compatible for Editor in 39.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1773ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1153ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (506ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (157ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6762. +Memory consumption went from 303.7 MB to 303.5 MB. +Total: 14.905600 ms (FindLiveObjects: 0.382100 ms CreateObjectMapping: 0.213500 ms MarkObjects: 14.065100 ms DeleteObjects: 0.243600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.165 seconds +Refreshing native plugins compatible for Editor in 78.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.061 seconds +Domain Reload Profiling: 4200ms + BeginReloadAssembly (312ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (127ms) + LoadAllAssembliesAndSetupDomain (649ms) + LoadAssemblies (773ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (72ms) + TypeCache.Refresh (42ms) + TypeCache.ScanAssembly (17ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (15ms) + FinalizeReload (3061ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (911ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (383ms) + ProcessInitializeOnLoadMethodAttributes (343ms) + AfterProcessingInitializeOnLoad (39ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Script is not up to date after domain reload: guid(9378cf08054e430f8fd59ca809378c8a) path("Assets/HotScripts/JNGame/Runtime/GAS/General/GASTimer.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 80.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6776. +Memory consumption went from 305.7 MB to 305.5 MB. +Total: 28.665000 ms (FindLiveObjects: 0.532500 ms CreateObjectMapping: 0.189800 ms MarkObjects: 27.696500 ms DeleteObjects: 0.244600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.954 seconds +Refreshing native plugins compatible for Editor in 58.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.688 seconds +Domain Reload Profiling: 4616ms + BeginReloadAssembly (263ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (107ms) + LoadAllAssembliesAndSetupDomain (508ms) + LoadAssemblies (620ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (3688ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (525ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6790. +Memory consumption went from 307.6 MB to 307.4 MB. +Total: 13.239500 ms (FindLiveObjects: 0.397900 ms CreateObjectMapping: 0.233400 ms MarkObjects: 12.378500 ms DeleteObjects: 0.228300 ms) + +Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> @@ -187,22 +3779,3670 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 436737.067524 seconds. - path: Assets/Resources/BuildinFileManifest.asset - artifactKey: Guid(f158672a438d7024c82155e424606457) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/BuildinFileManifest.asset using Guid(f158672a438d7024c82155e424606457) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24ecb48b4daa300b99d895810c019569') in 0.009672 seconds + Time since last request: 577200.255715 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset + artifactKey: Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCueDurational_PlayerDemo.asset using Guid(0a77e9c8e20008944a99814e0b5a4aed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb264261cccf71f91cc19522eb5a2398') in 0.042795 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 1 ======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Resources/Battle/Boss.prefab - artifactKey: Guid(d579585eed352e344bf2abbbb4989281) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Battle/Boss.prefab using Guid(d579585eed352e344bf2abbbb4989281) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f44dcfb1379108fa8c0f3c5573539cae') in 0.055754 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 10 -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: ߳˳Ӧóֹ I/O -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.653 seconds +Refreshing native plugins compatible for Editor in 36.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.333 seconds +Domain Reload Profiling: 1973ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1334ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (623ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (297ms) + ProcessInitializeOnLoadMethodAttributes (193ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6806. +Memory consumption went from 309.3 MB to 309.1 MB. +Total: 14.869000 ms (FindLiveObjects: 0.389000 ms CreateObjectMapping: 0.191500 ms MarkObjects: 14.069000 ms DeleteObjects: 0.218200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.693 seconds +Refreshing native plugins compatible for Editor in 35.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.244 seconds +Domain Reload Profiling: 1923ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (410ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1245ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (566ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (188ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 33.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6821. +Memory consumption went from 311.5 MB to 311.3 MB. +Total: 14.207200 ms (FindLiveObjects: 0.339400 ms CreateObjectMapping: 0.172300 ms MarkObjects: 13.445300 ms DeleteObjects: 0.249100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.657 seconds +Refreshing native plugins compatible for Editor in 37.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.331 seconds +Domain Reload Profiling: 1973ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (372ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1332ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (598ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (195ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6836. +Memory consumption went from 313.4 MB to 313.2 MB. +Total: 14.679200 ms (FindLiveObjects: 0.421800 ms CreateObjectMapping: 0.200700 ms MarkObjects: 13.763100 ms DeleteObjects: 0.292000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 35.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.196 seconds +Domain Reload Profiling: 1814ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (348ms) + LoadAssemblies (410ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1197ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (543ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (164ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6851. +Memory consumption went from 315.4 MB to 315.2 MB. +Total: 13.052500 ms (FindLiveObjects: 0.353000 ms CreateObjectMapping: 0.191500 ms MarkObjects: 12.273500 ms DeleteObjects: 0.233600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.907 seconds +Refreshing native plugins compatible for Editor in 30.89 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.112 seconds +Domain Reload Profiling: 1979ms + BeginReloadAssembly (289ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (140ms) + LoadAllAssembliesAndSetupDomain (388ms) + LoadAssemblies (536ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1112ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (505ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.1 KB). Loaded Objects now: 6866. +Memory consumption went from 317.3 MB to 317.1 MB. +Total: 15.807600 ms (FindLiveObjects: 0.423400 ms CreateObjectMapping: 0.260200 ms MarkObjects: 14.872600 ms DeleteObjects: 0.250200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.187 seconds +Refreshing native plugins compatible for Editor in 69.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.226 seconds +Domain Reload Profiling: 3378ms + BeginReloadAssembly (277ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (115ms) + LoadAllAssembliesAndSetupDomain (698ms) + LoadAssemblies (823ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2227ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (955ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (40ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (382ms) + ProcessInitializeOnLoadMethodAttributes (402ms) + AfterProcessingInitializeOnLoad (35ms) + EditorAssembliesLoaded (0ms) + 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 97.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6881. +Memory consumption went from 319.2 MB to 319.0 MB. +Total: 23.902300 ms (FindLiveObjects: 0.574700 ms CreateObjectMapping: 0.229800 ms MarkObjects: 22.851800 ms DeleteObjects: 0.244000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.886 seconds +Refreshing native plugins compatible for Editor in 34.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.817 seconds +Domain Reload Profiling: 2692ms + BeginReloadAssembly (297ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (96ms) + LoadAllAssembliesAndSetupDomain (430ms) + LoadAssemblies (576ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1818ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (544ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (166ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6896. +Memory consumption went from 321.2 MB to 321.0 MB. +Total: 13.193500 ms (FindLiveObjects: 0.356400 ms CreateObjectMapping: 0.186700 ms MarkObjects: 12.418000 ms DeleteObjects: 0.231000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.650 seconds +Refreshing native plugins compatible for Editor in 39.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.151 seconds +Domain Reload Profiling: 1788ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (428ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1151ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (530ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (159ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6911. +Memory consumption went from 323.0 MB to 322.8 MB. +Total: 15.060100 ms (FindLiveObjects: 0.372000 ms CreateObjectMapping: 0.179300 ms MarkObjects: 14.278400 ms DeleteObjects: 0.229100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.169 seconds +Refreshing native plugins compatible for Editor in 75.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.267 seconds +Domain Reload Profiling: 3406ms + BeginReloadAssembly (283ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (123ms) + LoadAllAssembliesAndSetupDomain (672ms) + LoadAssemblies (770ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2267ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (952ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (41ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (387ms) + ProcessInitializeOnLoadMethodAttributes (367ms) + AfterProcessingInitializeOnLoad (44ms) + EditorAssembliesLoaded (10ms) + 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 80.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6926. +Memory consumption went from 325.0 MB to 324.8 MB. +Total: 28.083100 ms (FindLiveObjects: 0.520400 ms CreateObjectMapping: 0.176100 ms MarkObjects: 27.143200 ms DeleteObjects: 0.241400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.053 seconds +Refreshing native plugins compatible for Editor in 33.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 2190ms + BeginReloadAssembly (262ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (112ms) + LoadAllAssembliesAndSetupDomain (565ms) + LoadAssemblies (674ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1194ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (537ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (193ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6941. +Memory consumption went from 327.0 MB to 326.8 MB. +Total: 11.909600 ms (FindLiveObjects: 0.373300 ms CreateObjectMapping: 0.208500 ms MarkObjects: 11.073400 ms DeleteObjects: 0.252900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.699 seconds +Refreshing native plugins compatible for Editor in 34.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.293 seconds +Domain Reload Profiling: 1980ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (468ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1294ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (583ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (208ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6956. +Memory consumption went from 328.9 MB to 328.7 MB. +Total: 12.170800 ms (FindLiveObjects: 0.443500 ms CreateObjectMapping: 0.173800 ms MarkObjects: 11.342600 ms DeleteObjects: 0.210200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.002 seconds +Refreshing native plugins compatible for Editor in 59.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.901 seconds +Domain Reload Profiling: 2887ms + BeginReloadAssembly (230ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (120ms) + LoadAllAssembliesAndSetupDomain (578ms) + LoadAssemblies (625ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (65ms) + TypeCache.Refresh (35ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (15ms) + FinalizeReload (1902ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (535ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6971. +Memory consumption went from 330.8 MB to 330.6 MB. +Total: 13.486800 ms (FindLiveObjects: 0.373600 ms CreateObjectMapping: 0.208500 ms MarkObjects: 12.680300 ms DeleteObjects: 0.223300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.022 seconds +Refreshing native plugins compatible for Editor in 40.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.853 seconds +Domain Reload Profiling: 2857ms + BeginReloadAssembly (358ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (101ms) + LoadAllAssembliesAndSetupDomain (492ms) + LoadAssemblies (633ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1853ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (552ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (168ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6986. +Memory consumption went from 332.7 MB to 332.5 MB. +Total: 13.642100 ms (FindLiveObjects: 0.372600 ms CreateObjectMapping: 0.186300 ms MarkObjects: 12.703000 ms DeleteObjects: 0.379000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.956 seconds +Refreshing native plugins compatible for Editor in 40.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.978 seconds +Domain Reload Profiling: 2920ms + BeginReloadAssembly (321ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (123ms) + LoadAllAssembliesAndSetupDomain (439ms) + LoadAssemblies (606ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1979ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (564ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 7001. +Memory consumption went from 334.7 MB to 334.5 MB. +Total: 12.808900 ms (FindLiveObjects: 0.397700 ms CreateObjectMapping: 0.218100 ms MarkObjects: 11.696100 ms DeleteObjects: 0.495800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.761 seconds +Refreshing native plugins compatible for Editor in 39.00 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.163 seconds +Domain Reload Profiling: 1909ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (105ms) + LoadAllAssembliesAndSetupDomain (388ms) + LoadAssemblies (452ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1165ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (529ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (172ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.1 KB). Loaded Objects now: 7017. +Memory consumption went from 336.6 MB to 336.5 MB. +Total: 14.345900 ms (FindLiveObjects: 0.403600 ms CreateObjectMapping: 0.207200 ms MarkObjects: 13.500300 ms DeleteObjects: 0.233500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.776 seconds +Refreshing native plugins compatible for Editor in 41.56 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 1962ms + BeginReloadAssembly (250ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (70ms) + LoadAllAssembliesAndSetupDomain (393ms) + LoadAssemblies (485ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (12ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (554ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.1 KB). Loaded Objects now: 7032. +Memory consumption went from 338.6 MB to 338.4 MB. +Total: 13.549800 ms (FindLiveObjects: 0.392300 ms CreateObjectMapping: 0.200500 ms MarkObjects: 12.700700 ms DeleteObjects: 0.255400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.854 seconds +Refreshing native plugins compatible for Editor in 39.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.182 seconds +Domain Reload Profiling: 2021ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (74ms) + LoadAllAssembliesAndSetupDomain (539ms) + LoadAssemblies (597ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1182ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (546ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (174ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7047. +Memory consumption went from 340.5 MB to 340.3 MB. +Total: 13.174500 ms (FindLiveObjects: 0.375700 ms CreateObjectMapping: 0.184600 ms MarkObjects: 12.401100 ms DeleteObjects: 0.212100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.671 seconds +Refreshing native plugins compatible for Editor in 39.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.196 seconds +Domain Reload Profiling: 1855ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (384ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1197ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (545ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (170ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7062. +Memory consumption went from 342.4 MB to 342.2 MB. +Total: 13.949900 ms (FindLiveObjects: 0.430500 ms CreateObjectMapping: 0.214200 ms MarkObjects: 12.925700 ms DeleteObjects: 0.378200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.274 seconds +Refreshing native plugins compatible for Editor in 75.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.216 seconds +Domain Reload Profiling: 3473ms + BeginReloadAssembly (328ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (89ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (132ms) + LoadAllAssembliesAndSetupDomain (726ms) + LoadAssemblies (840ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (13ms) + FinalizeReload (2232ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (897ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (39ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (107ms) + ProcessInitializeOnLoadAttributes (401ms) + ProcessInitializeOnLoadMethodAttributes (300ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Script is not up to date after domain reload: guid(321af3379125465380073b2a04a1b1e2) path("Assets/Scripts/GASSamples/Scripts/GAS/GameplayCue/GameplayCueDurational_PlayerDemo01.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 65.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7076. +Memory consumption went from 344.4 MB to 344.2 MB. +Total: 23.232100 ms (FindLiveObjects: 0.504700 ms CreateObjectMapping: 0.181600 ms MarkObjects: 22.310200 ms DeleteObjects: 0.233800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.891 seconds +Refreshing native plugins compatible for Editor in 38.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.209 seconds +Domain Reload Profiling: 2087ms + BeginReloadAssembly (350ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (69ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (587ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1210ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (545ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (267ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 33.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 7092. +Memory consumption went from 346.3 MB to 346.1 MB. +Total: 13.283800 ms (FindLiveObjects: 0.375700 ms CreateObjectMapping: 0.180300 ms MarkObjects: 12.504700 ms DeleteObjects: 0.221900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.790 seconds +Refreshing native plugins compatible for Editor in 35.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.179 seconds +Domain Reload Profiling: 1955ms + BeginReloadAssembly (302ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (496ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1180ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (537ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (164ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 7107. +Memory consumption went from 348.2 MB to 348.0 MB. +Total: 13.027200 ms (FindLiveObjects: 0.401900 ms CreateObjectMapping: 0.183100 ms MarkObjects: 12.211400 ms DeleteObjects: 0.229800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.302 seconds +Refreshing native plugins compatible for Editor in 86.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.218 seconds +Domain Reload Profiling: 3483ms + BeginReloadAssembly (309ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (134ms) + LoadAllAssembliesAndSetupDomain (762ms) + LoadAssemblies (895ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (57ms) + TypeCache.Refresh (31ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2220ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (977ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (141ms) + ProcessInitializeOnLoadAttributes (415ms) + ProcessInitializeOnLoadMethodAttributes (334ms) + AfterProcessingInitializeOnLoad (45ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (38ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 69.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7122. +Memory consumption went from 350.2 MB to 350.0 MB. +Total: 23.784000 ms (FindLiveObjects: 0.765300 ms CreateObjectMapping: 0.311600 ms MarkObjects: 22.385500 ms DeleteObjects: 0.319800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.973 seconds +Refreshing native plugins compatible for Editor in 46.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.203 seconds +Domain Reload Profiling: 2145ms + BeginReloadAssembly (271ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (119ms) + LoadAllAssembliesAndSetupDomain (500ms) + LoadAssemblies (597ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (56ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (15ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (18ms) + FinalizeReload (1204ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (557ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (278ms) + ProcessInitializeOnLoadMethodAttributes (175ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 7137. +Memory consumption went from 352.0 MB to 351.9 MB. +Total: 14.002500 ms (FindLiveObjects: 0.399900 ms CreateObjectMapping: 0.195200 ms MarkObjects: 13.148100 ms DeleteObjects: 0.258000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.770 seconds +Refreshing native plugins compatible for Editor in 36.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.159 seconds +Domain Reload Profiling: 1910ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (108ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (464ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1159ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (529ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (184ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 32.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7152. +Memory consumption went from 354.1 MB to 353.9 MB. +Total: 13.005400 ms (FindLiveObjects: 0.540900 ms CreateObjectMapping: 0.179100 ms MarkObjects: 12.048000 ms DeleteObjects: 0.235700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.244 seconds +Refreshing native plugins compatible for Editor in 67.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.240 seconds +Domain Reload Profiling: 3431ms + BeginReloadAssembly (328ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (105ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (109ms) + LoadAllAssembliesAndSetupDomain (701ms) + LoadAssemblies (809ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (47ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (14ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (12ms) + FinalizeReload (2241ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (899ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (110ms) + ProcessInitializeOnLoadAttributes (400ms) + ProcessInitializeOnLoadMethodAttributes (297ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (9ms) + 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 65.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 7167. +Memory consumption went from 356.0 MB to 355.8 MB. +Total: 12.944700 ms (FindLiveObjects: 0.367900 ms CreateObjectMapping: 0.188000 ms MarkObjects: 12.186500 ms DeleteObjects: 0.201200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.727 seconds +Refreshing native plugins compatible for Editor in 35.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.264 seconds +Domain Reload Profiling: 2977ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (448ms) + LoadAssemblies (517ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (16ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2264ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (578ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (54ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 7182. +Memory consumption went from 357.9 MB to 357.7 MB. +Total: 12.866000 ms (FindLiveObjects: 0.386500 ms CreateObjectMapping: 0.205400 ms MarkObjects: 12.024400 ms DeleteObjects: 0.248500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.283 seconds +Refreshing native plugins compatible for Editor in 69.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 3.027 seconds +Domain Reload Profiling: 4266ms + BeginReloadAssembly (380ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (112ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (114ms) + LoadAllAssembliesAndSetupDomain (687ms) + LoadAssemblies (810ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (49ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (12ms) + FinalizeReload (3028ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (969ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (39ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (411ms) + ProcessInitializeOnLoadMethodAttributes (353ms) + AfterProcessingInitializeOnLoad (39ms) + EditorAssembliesLoaded (5ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 85.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 135 unused Assets / (204.7 KB). Loaded Objects now: 7196. +Memory consumption went from 359.9 MB to 359.7 MB. +Total: 25.016900 ms (FindLiveObjects: 0.491000 ms CreateObjectMapping: 0.223200 ms MarkObjects: 24.077600 ms DeleteObjects: 0.223700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.633 seconds +Refreshing native plugins compatible for Editor in 37.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.375 seconds +Domain Reload Profiling: 1996ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (428ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1377ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (629ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (293ms) + ProcessInitializeOnLoadMethodAttributes (207ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7211. +Memory consumption went from 361.7 MB to 361.5 MB. +Total: 14.068600 ms (FindLiveObjects: 0.575700 ms CreateObjectMapping: 0.345100 ms MarkObjects: 12.912900 ms DeleteObjects: 0.233700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.195 seconds +Refreshing native plugins compatible for Editor in 83.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.600 seconds +Domain Reload Profiling: 3762ms + BeginReloadAssembly (307ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (156ms) + LoadAllAssembliesAndSetupDomain (649ms) + LoadAssemblies (768ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (27ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2600ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1003ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (38ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (399ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Script is not up to date after domain reload: guid(b0b041f9937946109449a4143e1072a7) path("Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 81.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7225. +Memory consumption went from 363.7 MB to 363.5 MB. +Total: 21.441800 ms (FindLiveObjects: 0.607100 ms CreateObjectMapping: 0.187000 ms MarkObjects: 20.390800 ms DeleteObjects: 0.254900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.210 seconds +Refreshing native plugins compatible for Editor in 84.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.305 seconds +Domain Reload Profiling: 3467ms + BeginReloadAssembly (311ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (139ms) + LoadAllAssembliesAndSetupDomain (657ms) + LoadAssemblies (786ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (61ms) + TypeCache.Refresh (36ms) + TypeCache.ScanAssembly (22ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (14ms) + FinalizeReload (2306ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1044ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (42ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (149ms) + ProcessInitializeOnLoadAttributes (412ms) + ProcessInitializeOnLoadMethodAttributes (395ms) + AfterProcessingInitializeOnLoad (43ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Script is not up to date after domain reload: guid(b0b041f9937946109449a4143e1072a7) path("Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 73.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5544 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.2 KB). Loaded Objects now: 7240. +Memory consumption went from 365.6 MB to 365.4 MB. +Total: 26.035800 ms (FindLiveObjects: 0.737200 ms CreateObjectMapping: 0.183500 ms MarkObjects: 24.736600 ms DeleteObjects: 0.375900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.852 seconds +Refreshing native plugins compatible for Editor in 40.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.190 seconds +Domain Reload Profiling: 2029ms + BeginReloadAssembly (326ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (88ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (533ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (23ms) + TypeCache.ScanAssembly (11ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1192ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (542ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (181ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.2 KB). Loaded Objects now: 7256. +Memory consumption went from 367.6 MB to 367.4 MB. +Total: 13.547400 ms (FindLiveObjects: 0.366900 ms CreateObjectMapping: 0.184900 ms MarkObjects: 12.729800 ms DeleteObjects: 0.264600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 38.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.396 seconds +Domain Reload Profiling: 2021ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (357ms) + LoadAssemblies (427ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1396ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (312ms) + ProcessInitializeOnLoadMethodAttributes (199ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 42.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 7271. +Memory consumption went from 369.5 MB to 369.3 MB. +Total: 14.848400 ms (FindLiveObjects: 0.396300 ms CreateObjectMapping: 0.195700 ms MarkObjects: 13.952400 ms DeleteObjects: 0.302700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.762 seconds +Refreshing native plugins compatible for Editor in 35.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.883 seconds +Domain Reload Profiling: 2630ms + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (76ms) + LoadAllAssembliesAndSetupDomain (439ms) + LoadAssemblies (503ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1884ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (569ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (190ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.1 KB). Loaded Objects now: 7286. +Memory consumption went from 371.4 MB to 371.2 MB. +Total: 15.165400 ms (FindLiveObjects: 0.419000 ms CreateObjectMapping: 0.193400 ms MarkObjects: 14.241900 ms DeleteObjects: 0.309700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.634 seconds +Refreshing native plugins compatible for Editor in 38.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.507 seconds +Domain Reload Profiling: 2130ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (428ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1509ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (674ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (310ms) + ProcessInitializeOnLoadMethodAttributes (235ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 42.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7301. +Memory consumption went from 373.4 MB to 373.2 MB. +Total: 17.300900 ms (FindLiveObjects: 0.784500 ms CreateObjectMapping: 0.158100 ms MarkObjects: 16.030200 ms DeleteObjects: 0.325300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.715 seconds +Refreshing native plugins compatible for Editor in 40.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.707 seconds +Domain Reload Profiling: 2410ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (71ms) + LoadAllAssembliesAndSetupDomain (422ms) + LoadAssemblies (492ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1708ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (542ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (185ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7316. +Memory consumption went from 375.3 MB to 375.1 MB. +Total: 13.047700 ms (FindLiveObjects: 0.502000 ms CreateObjectMapping: 0.197800 ms MarkObjects: 12.103800 ms DeleteObjects: 0.243200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.644 seconds +Refreshing native plugins compatible for Editor in 35.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.283 seconds +Domain Reload Profiling: 1916ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (365ms) + LoadAssemblies (433ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1285ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (583ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (205ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 7331. +Memory consumption went from 377.3 MB to 377.1 MB. +Total: 13.455200 ms (FindLiveObjects: 0.406300 ms CreateObjectMapping: 0.181700 ms MarkObjects: 12.650300 ms DeleteObjects: 0.215700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.697 seconds +Refreshing native plugins compatible for Editor in 37.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.191 seconds +Domain Reload Profiling: 1875ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (412ms) + LoadAssemblies (461ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (22ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1192ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (528ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (163ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 7346. +Memory consumption went from 379.2 MB to 379.0 MB. +Total: 13.803100 ms (FindLiveObjects: 0.386500 ms CreateObjectMapping: 0.201500 ms MarkObjects: 12.965500 ms DeleteObjects: 0.248500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 37.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.474 seconds +Domain Reload Profiling: 2103ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1474ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (661ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (323ms) + ProcessInitializeOnLoadMethodAttributes (187ms) + AfterProcessingInitializeOnLoad (25ms) + 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 44.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7361. +Memory consumption went from 381.1 MB to 380.9 MB. +Total: 16.207800 ms (FindLiveObjects: 0.547900 ms CreateObjectMapping: 0.251800 ms MarkObjects: 15.120000 ms DeleteObjects: 0.286900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.275 seconds +Refreshing native plugins compatible for Editor in 86.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.606 seconds +Domain Reload Profiling: 3852ms + BeginReloadAssembly (327ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (115ms) + LoadAllAssembliesAndSetupDomain (747ms) + LoadAssemblies (866ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (53ms) + TypeCache.Refresh (30ms) + TypeCache.ScanAssembly (16ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2608ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1002ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (35ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (186ms) + ProcessInitializeOnLoadAttributes (412ms) + ProcessInitializeOnLoadMethodAttributes (310ms) + AfterProcessingInitializeOnLoad (48ms) + EditorAssembliesLoaded (7ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.1 KB). Loaded Objects now: 7376. +Memory consumption went from 383.1 MB to 382.9 MB. +Total: 35.036700 ms (FindLiveObjects: 0.546600 ms CreateObjectMapping: 0.184800 ms MarkObjects: 34.047200 ms DeleteObjects: 0.256600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.101 seconds +Refreshing native plugins compatible for Editor in 35.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.200 seconds +Domain Reload Profiling: 2279ms + BeginReloadAssembly (327ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (111ms) + LoadAllAssembliesAndSetupDomain (588ms) + LoadAssemblies (762ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1201ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (565ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (179ms) + AfterProcessingInitializeOnLoad (25ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7391. +Memory consumption went from 385.0 MB to 384.8 MB. +Total: 15.064500 ms (FindLiveObjects: 0.499200 ms CreateObjectMapping: 0.247000 ms MarkObjects: 14.074600 ms DeleteObjects: 0.242300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 38.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.444 seconds +Domain Reload Profiling: 2081ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1444ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (320ms) + ProcessInitializeOnLoadMethodAttributes (193ms) + AfterProcessingInitializeOnLoad (29ms) + EditorAssembliesLoaded (3ms) + 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 40.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7406. +Memory consumption went from 386.9 MB to 386.7 MB. +Total: 14.785800 ms (FindLiveObjects: 0.410000 ms CreateObjectMapping: 0.205700 ms MarkObjects: 13.857300 ms DeleteObjects: 0.311500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.633 seconds +Refreshing native plugins compatible for Editor in 34.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.514 seconds +Domain Reload Profiling: 2136ms + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (419ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1515ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (691ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (318ms) + ProcessInitializeOnLoadMethodAttributes (241ms) + AfterProcessingInitializeOnLoad (32ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7421. +Memory consumption went from 388.9 MB to 388.7 MB. +Total: 15.911000 ms (FindLiveObjects: 0.564000 ms CreateObjectMapping: 0.430400 ms MarkObjects: 14.683400 ms DeleteObjects: 0.231800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 36.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.403 seconds +Domain Reload Profiling: 2041ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (63ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1404ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (305ms) + ProcessInitializeOnLoadMethodAttributes (201ms) + AfterProcessingInitializeOnLoad (27ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 38.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7436. +Memory consumption went from 390.7 MB to 390.5 MB. +Total: 15.080800 ms (FindLiveObjects: 0.417100 ms CreateObjectMapping: 0.193300 ms MarkObjects: 14.219500 ms DeleteObjects: 0.249300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 34.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.403 seconds +Domain Reload Profiling: 2033ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (363ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1404ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (306ms) + ProcessInitializeOnLoadMethodAttributes (198ms) + AfterProcessingInitializeOnLoad (29ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 41.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7451. +Memory consumption went from 392.7 MB to 392.5 MB. +Total: 15.413900 ms (FindLiveObjects: 0.462200 ms CreateObjectMapping: 0.260800 ms MarkObjects: 14.460300 ms DeleteObjects: 0.229300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 34.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.385 seconds +Domain Reload Profiling: 2009ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (61ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (427ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (18ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1386ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (635ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (303ms) + ProcessInitializeOnLoadMethodAttributes (201ms) + AfterProcessingInitializeOnLoad (29ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 45.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7466. +Memory consumption went from 394.6 MB to 394.5 MB. +Total: 16.824600 ms (FindLiveObjects: 0.522500 ms CreateObjectMapping: 0.345100 ms MarkObjects: 15.738800 ms DeleteObjects: 0.216900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.753 seconds +Refreshing native plugins compatible for Editor in 36.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.195 seconds +Domain Reload Profiling: 2938ms + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (509ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2198ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (559ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (179ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 7481. +Memory consumption went from 396.6 MB to 396.4 MB. +Total: 13.256400 ms (FindLiveObjects: 0.451100 ms CreateObjectMapping: 0.210200 ms MarkObjects: 12.383300 ms DeleteObjects: 0.211000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.689 seconds +Refreshing native plugins compatible for Editor in 33.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.379 seconds +Domain Reload Profiling: 2056ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (408ms) + LoadAssemblies (466ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1380ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (565ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (196ms) + AfterProcessingInitializeOnLoad (22ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7496. +Memory consumption went from 398.6 MB to 398.4 MB. +Total: 13.888600 ms (FindLiveObjects: 0.438400 ms CreateObjectMapping: 0.195100 ms MarkObjects: 13.048600 ms DeleteObjects: 0.205200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.728 seconds +Refreshing native plugins compatible for Editor in 36.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.916 seconds +Domain Reload Profiling: 2632ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (450ms) + LoadAssemblies (503ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1917ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (554ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (178ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7511. +Memory consumption went from 400.4 MB to 400.2 MB. +Total: 13.963300 ms (FindLiveObjects: 0.408900 ms CreateObjectMapping: 0.189200 ms MarkObjects: 13.099000 ms DeleteObjects: 0.265200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.525 seconds +Refreshing native plugins compatible for Editor in 39.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.462 seconds +Domain Reload Profiling: 3974ms + BeginReloadAssembly (554ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (20ms) + BackupInstance (0ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (338ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (82ms) + LoadAllAssembliesAndSetupDomain (832ms) + LoadAssemblies (904ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (5ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (2462ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (819ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (110ms) + ProcessInitializeOnLoadAttributes (413ms) + ProcessInitializeOnLoadMethodAttributes (227ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.1 KB). Loaded Objects now: 7527. +Memory consumption went from 402.5 MB to 402.3 MB. +Total: 20.034300 ms (FindLiveObjects: 0.480400 ms CreateObjectMapping: 0.218800 ms MarkObjects: 19.082100 ms DeleteObjects: 0.252000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 36.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.249 seconds +Domain Reload Profiling: 1927ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (443ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1250ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (584ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (288ms) + ProcessInitializeOnLoadMethodAttributes (182ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.1 KB). Loaded Objects now: 7542. +Memory consumption went from 404.4 MB to 404.2 MB. +Total: 13.118100 ms (FindLiveObjects: 0.416900 ms CreateObjectMapping: 0.185400 ms MarkObjects: 12.293800 ms DeleteObjects: 0.221100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.121 seconds +Refreshing native plugins compatible for Editor in 51.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.360 seconds +Domain Reload Profiling: 2464ms + BeginReloadAssembly (296ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (122ms) + LoadAllAssembliesAndSetupDomain (630ms) + LoadAssemblies (760ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1361ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (660ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (322ms) + ProcessInitializeOnLoadMethodAttributes (212ms) + AfterProcessingInitializeOnLoad (23ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(b964e9ee395740d6b0f8e42978c1ba35) path("Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs") state(2) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 40.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 7556. +Memory consumption went from 406.3 MB to 406.1 MB. +Total: 15.894700 ms (FindLiveObjects: 0.475500 ms CreateObjectMapping: 0.245700 ms MarkObjects: 14.855900 ms DeleteObjects: 0.315800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.824 seconds +Refreshing native plugins compatible for Editor in 52.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.632 seconds +Domain Reload Profiling: 2442ms + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (71ms) + LoadAllAssembliesAndSetupDomain (499ms) + LoadAssemblies (574ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1632ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (557ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (178ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.1 KB). Loaded Objects now: 7572. +Memory consumption went from 408.2 MB to 408.0 MB. +Total: 14.266100 ms (FindLiveObjects: 0.511900 ms CreateObjectMapping: 0.202100 ms MarkObjects: 13.306500 ms DeleteObjects: 0.244400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.730 seconds +Refreshing native plugins compatible for Editor in 36.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.093 seconds +Domain Reload Profiling: 2811ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (65ms) + LoadAllAssembliesAndSetupDomain (450ms) + LoadAssemblies (509ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (2094ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (587ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (285ms) + ProcessInitializeOnLoadMethodAttributes (184ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 36.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 7587. +Memory consumption went from 410.1 MB to 409.9 MB. +Total: 13.916600 ms (FindLiveObjects: 0.405600 ms CreateObjectMapping: 0.225700 ms MarkObjects: 12.993200 ms DeleteObjects: 0.290500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame2/Logs/AssetImportWorker1.log b/JNFrame2/Logs/AssetImportWorker1.log new file mode 100644 index 00000000..2a160a27 --- /dev/null +++ b/JNFrame2/Logs/AssetImportWorker1.log @@ -0,0 +1,957 @@ +Using pre-set license +Built from '2022.3/china_unity/release' branch; Version is '2022.3.16f1c1 (2f3f1b3bde89) revision 3096347'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +C:\APP\UnityEdit\2022.3.16f1c1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker1 +-projectPath +D:/Jisol/JisolGame/JNFrame2 +-logFile +Logs/AssetImportWorker1.log +-srvPort +58746 +Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 +D:/Jisol/JisolGame/JNFrame2 +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [38236] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3677003301 [EditorId] 3677003301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [38236] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3677003301 [EditorId] 3677003301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +[Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers. +Refreshing native plugins compatible for Editor in 79.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) +[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520) + Vendor: NVIDIA + VRAM: 5996 MB + Driver: 31.0.15.5176 +Initialize mono +Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed' +Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56768 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.016676 seconds. +- Loaded All Assemblies, in 0.363 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 320 ms +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.571 seconds +Domain Reload Profiling: 926ms + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (73ms) + LoadAllAssembliesAndSetupDomain (124ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (121ms) + TypeCache.Refresh (120ms) + TypeCache.ScanAssembly (108ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (572ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (530ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (411ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (78ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.992 seconds +Refreshing native plugins compatible for Editor in 42.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.991 seconds +Domain Reload Profiling: 1968ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (19ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (718ms) + LoadAssemblies (562ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (227ms) + TypeCache.ScanAssembly (207ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (7ms) + FinalizeReload (991ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (859ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (419ms) + ProcessInitializeOnLoadMethodAttributes (319ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5563 Unused Serialized files (Serialized files now loaded: 0) +Unloading 175 unused Assets / (231.0 KB). Loaded Objects now: 6011. +Memory consumption went from 210.3 MB to 210.1 MB. +Total: 15.175500 ms (FindLiveObjects: 0.332400 ms CreateObjectMapping: 0.186000 ms MarkObjects: 14.387700 ms DeleteObjects: 0.268200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22 + custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093 + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace +======================================================================== +Received Import Request. + Time since last request: 582933.751461 seconds. + path: Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset + artifactKey: Guid(25ef9a2206b693c4f9b93af896a038a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset using Guid(25ef9a2206b693c4f9b93af896a038a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c736e7e311c9561b7cd52d89e5928c43') in 0.009531 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.148 seconds +Refreshing native plugins compatible for Editor in 71.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.263 seconds +Domain Reload Profiling: 2369ms + BeginReloadAssembly (311ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + RebuildCommonClasses (59ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (101ms) + LoadAllAssembliesAndSetupDomain (622ms) + LoadAssemblies (755ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (3ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1264ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (548ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (177ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5545 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6027. +Memory consumption went from 208.5 MB to 208.3 MB. +Total: 13.069000 ms (FindLiveObjects: 0.405200 ms CreateObjectMapping: 0.183300 ms MarkObjects: 12.295100 ms DeleteObjects: 0.184500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.689 seconds +Refreshing native plugins compatible for Editor in 41.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.240 seconds +Domain Reload Profiling: 1916ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (67ms) + LoadAllAssembliesAndSetupDomain (392ms) + LoadAssemblies (457ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (27ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1242ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (585ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (209ms) + AfterProcessingInitializeOnLoad (21ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 37.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5546 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6042. +Memory consumption went from 210.7 MB to 210.5 MB. +Total: 13.674400 ms (FindLiveObjects: 0.526200 ms CreateObjectMapping: 0.200100 ms MarkObjects: 12.752700 ms DeleteObjects: 0.194600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.036 seconds +Refreshing native plugins compatible for Editor in 63.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.264 seconds +Domain Reload Profiling: 2273ms + BeginReloadAssembly (247ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (109ms) + LoadAllAssembliesAndSetupDomain (603ms) + LoadAssemblies (701ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1265ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (537ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (252ms) + ProcessInitializeOnLoadMethodAttributes (181ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 33.87 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6058. +Memory consumption went from 212.6 MB to 212.4 MB. +Total: 13.969700 ms (FindLiveObjects: 0.316700 ms CreateObjectMapping: 0.180000 ms MarkObjects: 13.263800 ms DeleteObjects: 0.208000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.669 seconds +Refreshing native plugins compatible for Editor in 35.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.268 seconds +Domain Reload Profiling: 1923ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (383ms) + LoadAssemblies (444ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1269ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (594ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (196ms) + AfterProcessingInitializeOnLoad (19ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6073. +Memory consumption went from 214.6 MB to 214.4 MB. +Total: 13.184200 ms (FindLiveObjects: 0.309300 ms CreateObjectMapping: 0.228100 ms MarkObjects: 12.424700 ms DeleteObjects: 0.220900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.128 seconds +Refreshing native plugins compatible for Editor in 72.68 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 2.109 seconds +Domain Reload Profiling: 3211ms + BeginReloadAssembly (280ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (134ms) + LoadAllAssembliesAndSetupDomain (636ms) + LoadAssemblies (752ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (39ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (2109ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (885ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (36ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (398ms) + ProcessInitializeOnLoadMethodAttributes (310ms) + AfterProcessingInitializeOnLoad (37ms) + EditorAssembliesLoaded (6ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 81.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6088. +Memory consumption went from 216.4 MB to 216.2 MB. +Total: 41.526400 ms (FindLiveObjects: 0.419100 ms CreateObjectMapping: 0.159700 ms MarkObjects: 40.669200 ms DeleteObjects: 0.276700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.106 seconds +Refreshing native plugins compatible for Editor in 74.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.512 seconds +Domain Reload Profiling: 2583ms + BeginReloadAssembly (292ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (127ms) + LoadAllAssembliesAndSetupDomain (599ms) + LoadAssemblies (704ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (45ms) + TypeCache.Refresh (19ms) + TypeCache.ScanAssembly (4ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (13ms) + FinalizeReload (1513ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (561ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (263ms) + ProcessInitializeOnLoadMethodAttributes (190ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6103. +Memory consumption went from 218.4 MB to 218.2 MB. +Total: 13.688100 ms (FindLiveObjects: 0.329900 ms CreateObjectMapping: 0.164800 ms MarkObjects: 12.991800 ms DeleteObjects: 0.200300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.607 seconds +Refreshing native plugins compatible for Editor in 35.11 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.345 seconds +Domain Reload Profiling: 1939ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (407ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (15ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1346ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (624ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (298ms) + ProcessInitializeOnLoadMethodAttributes (192ms) + AfterProcessingInitializeOnLoad (26ms) + EditorAssembliesLoaded (3ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 39.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6118. +Memory consumption went from 220.4 MB to 220.2 MB. +Total: 13.997200 ms (FindLiveObjects: 0.318000 ms CreateObjectMapping: 0.233700 ms MarkObjects: 13.227100 ms DeleteObjects: 0.217100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.648 seconds +Refreshing native plugins compatible for Editor in 46.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.398 seconds +Domain Reload Profiling: 2033ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (62ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (443ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1399ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (616ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (296ms) + ProcessInitializeOnLoadMethodAttributes (189ms) + AfterProcessingInitializeOnLoad (28ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6133. +Memory consumption went from 222.3 MB to 222.1 MB. +Total: 14.969600 ms (FindLiveObjects: 0.313900 ms CreateObjectMapping: 0.185500 ms MarkObjects: 14.221900 ms DeleteObjects: 0.247100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.185 seconds +Refreshing native plugins compatible for Editor in 64.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.181 seconds +Domain Reload Profiling: 2342ms + BeginReloadAssembly (322ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (130ms) + LoadAllAssembliesAndSetupDomain (653ms) + LoadAssemblies (802ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (46ms) + TypeCache.Refresh (26ms) + TypeCache.ScanAssembly (13ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1182ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (586ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (311ms) + ProcessInitializeOnLoadMethodAttributes (165ms) + AfterProcessingInitializeOnLoad (20ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 35.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6148. +Memory consumption went from 224.2 MB to 224.0 MB. +Total: 13.128200 ms (FindLiveObjects: 0.304400 ms CreateObjectMapping: 0.162400 ms MarkObjects: 12.464900 ms DeleteObjects: 0.195500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.793 seconds +Refreshing native plugins compatible for Editor in 36.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.154 seconds +Domain Reload Profiling: 1917ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (103ms) + LoadAllAssembliesAndSetupDomain (441ms) + LoadAssemblies (501ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (10ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1155ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (511ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (160ms) + AfterProcessingInitializeOnLoad (17ms) + EditorAssembliesLoaded (2ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found +Refreshing native plugins compatible for Editor in 34.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6163. +Memory consumption went from 226.1 MB to 225.9 MB. +Total: 15.235900 ms (FindLiveObjects: 0.332000 ms CreateObjectMapping: 0.211900 ms MarkObjects: 14.480200 ms DeleteObjects: 0.210800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.614 seconds +Refreshing native plugins compatible for Editor in 40.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android 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 +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.411 seconds +Domain Reload Profiling: 2012ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (345ms) + LoadAssemblies (420ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (17ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1411ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (610ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (27ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (301ms) + ProcessInitializeOnLoadMethodAttributes (187ms) + AfterProcessingInitializeOnLoad (21ms) + 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 42.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) +Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6178. +Memory consumption went from 228.1 MB to 227.9 MB. +Total: 14.918200 ms (FindLiveObjects: 0.447000 ms CreateObjectMapping: 0.192600 ms MarkObjects: 14.025800 ms DeleteObjects: 0.251400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/JNFrame2/Logs/AssetImportWorker2-prev.log b/JNFrame2/Logs/AssetImportWorker2-prev.log deleted file mode 100644 index fd2285e3..00000000 --- a/JNFrame2/Logs/AssetImportWorker2-prev.log +++ /dev/null @@ -1,2485 +0,0 @@ -Using pre-set license -Built from '2022.3/china_unity/release' branch; Version is '2022.3.16f1c1 (2f3f1b3bde89) revision 3096347'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\APP\UnityEdit\2022.3.16f1c1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker2 --projectPath -D:/Jisol/JisolGame/JNFrame2 --logFile -Logs/AssetImportWorker2.log --srvPort -57261 -Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2 -D:/Jisol/JisolGame/JNFrame2 -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [16976] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 2230979704 [EditorId] 2230979704 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [16976] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 2230979704 [EditorId] 2230979704 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -[Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers. -Refreshing native plugins compatible for Editor in 89.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89) -[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520) - Vendor: NVIDIA - VRAM: 5996 MB - Driver: 31.0.15.5176 -Initialize mono -Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed' -Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56656 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.013869 seconds. -- Loaded All Assemblies, in 0.329 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 255 ms -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.473 seconds -Domain Reload Profiling: 796ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (62ms) - LoadAllAssembliesAndSetupDomain (102ms) - LoadAssemblies (121ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (99ms) - TypeCache.Refresh (98ms) - TypeCache.ScanAssembly (88ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (473ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (438ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (332ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (72ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.876 seconds -Refreshing native plugins compatible for Editor in 45.12 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.348 seconds -Domain Reload Profiling: 2210ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (60ms) - LoadAllAssembliesAndSetupDomain (647ms) - LoadAssemblies (435ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (294ms) - TypeCache.Refresh (242ms) - TypeCache.ScanAssembly (217ms) - ScanForSourceGeneratedMonoScriptInfo (41ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1348ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1190ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (34ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (763ms) - ProcessInitializeOnLoadMethodAttributes (273ms) - AfterProcessingInitializeOnLoad (25ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 35.79 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5547 Unused Serialized files (Serialized files now loaded: 0) -Unloading 175 unused Assets / (231.3 KB). Loaded Objects now: 5995. -Memory consumption went from 210.1 MB to 209.9 MB. -Total: 15.733700 ms (FindLiveObjects: 0.578300 ms CreateObjectMapping: 0.220000 ms MarkObjects: 14.536000 ms DeleteObjects: 0.397700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 436944.232192 seconds. - path: Assets/Scripts/Samples/Samples.asmdef - artifactKey: Guid(6d70bd6fbbacf504c963523eea75777a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Samples/Samples.asmdef using Guid(6d70bd6fbbacf504c963523eea75777a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b20ead68abf2e39c7e8171135b2cf3c') in 0.002414 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.003215 seconds. - path: Assets/Scripts/Samples - artifactKey: Guid(957822c97150495f85e376a6a220fd78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Samples using Guid(957822c97150495f85e376a6a220fd78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '102a4962e96005c0d63943396cfb4437') in 0.000393 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: 8.461343 seconds. - path: Assets/Scripts/GASSamples/GASSamples.asmdef - artifactKey: Guid(5b05c448a9d6e154e8eb3f1ef2291f24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/GASSamples.asmdef using Guid(5b05c448a9d6e154e8eb3f1ef2291f24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f4a1ae8ce7d3ea70f212ded7dc0ab8c') in 0.001280 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.560291 seconds. - path: Assets/Scripts/GASSamples/Editor - artifactKey: Guid(53be96c533934ee7b486379f6f45bafa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor using Guid(53be96c533934ee7b486379f6f45bafa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb3a5a12012bdf09cb81152c33a8043e') in 0.000483 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: 5.871183 seconds. - path: Assets/Scripts/GASSamples/Editor/GAS - artifactKey: Guid(fbf21400b3864f29b6c0abab26b025f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GAS using Guid(fbf21400b3864f29b6c0abab26b025f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'caa268f4c0f5545abcb038e8d7ab7a3c') in 0.000556 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: 12.229687 seconds. - path: Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef - artifactKey: Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef using Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a8acd3f152f0dce6ada3db8af2619b2') in 0.000904 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: 26.529014 seconds. - path: Assets/HotScripts/GameScripts/GameScripts.asmdef - artifactKey: Guid(30cdc49ab6f9ba240b6b000711d4e038) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/GameScripts/GameScripts.asmdef using Guid(30cdc49ab6f9ba240b6b000711d4e038) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35e856f5bf9dda552e20f822705e56ab') in 0.000593 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.001130 seconds. - path: Assets/HotScripts/JNGame/Editor/JNGame.Editor.asmdef - artifactKey: Guid(5f32be912cdeb7c4f8a601d2040de4e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor/JNGame.Editor.asmdef using Guid(5f32be912cdeb7c4f8a601d2040de4e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7297e540607efc8193a8bd586b0bef79') in 0.000411 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.000010 seconds. - path: Assets/HotScripts/JNGame/Runtime/JNGame.Runtime.asmdef - artifactKey: Guid(a6f7937b7f28906409a3ea3ceb2316c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Runtime/JNGame.Runtime.asmdef using Guid(a6f7937b7f28906409a3ea3ceb2316c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1bff3538fc3b7ecd4d31fb146fb63663') in 0.000393 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: 32.283876 seconds. - path: Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef - artifactKey: Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef using Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '471ef13f365feb4afc719c505774cee9') in 0.000567 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.730088 seconds. - path: Assets/HotScripts/JNGame/Editor - artifactKey: Guid(6c507488b29c44aeba9cf9bd600ce661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/HotScripts/JNGame/Editor using Guid(6c507488b29c44aeba9cf9bd600ce661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c65fd559092855a4c6f7db76deb93ebf') 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: 19.482453 seconds. - path: Assets/Scripts/GASSamples/GASSamples.asmdef - artifactKey: Guid(5b05c448a9d6e154e8eb3f1ef2291f24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/GASSamples.asmdef using Guid(5b05c448a9d6e154e8eb3f1ef2291f24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0a6a9a2117998d5313ee0059225f428') in 0.000605 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: 8.532422 seconds. - path: Assets/Scripts/GASSamples/Editor/GAS/Ability - artifactKey: Guid(e8455bd06c174f28abd859715d4d4504) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GAS/Ability using Guid(e8455bd06c174f28abd859715d4d4504) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57ebb294a0cae2098a731116f9d5d141') in 0.000483 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.581404 seconds. - path: Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector - artifactKey: Guid(28929d3e41dc4dc4ace45485eb45849f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector using Guid(28929d3e41dc4dc4ace45485eb45849f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58fe55264e74da72bd74e5a179b3e0b6') in 0.000490 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.499035 seconds. - path: Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility - artifactKey: Guid(ac9ad0beca774e71beb0bb45da860226) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility using Guid(ac9ad0beca774e71beb0bb45da860226) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '047c767bae246c55826c093356faf2dd') in 0.000500 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.541809 seconds. - path: Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility/OngoingAbility_Debug_Inspector.cs - artifactKey: Guid(73bc2380baef40fa9340b5518186bb8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility/OngoingAbility_Debug_Inspector.cs using Guid(73bc2380baef40fa9340b5518186bb8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be2a51433e2f22996e35ed1aa44a8abb') in 0.000546 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: 34.425497 seconds. - path: Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef - artifactKey: Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef using Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fbe48c201165059d54e341bc81fbeda') in 0.000534 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 0.700 seconds -Refreshing native plugins compatible for Editor in 35.32 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.019 seconds -Domain Reload Profiling: 2704ms - BeginReloadAssembly (176ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (65ms) - LoadAllAssembliesAndSetupDomain (413ms) - LoadAssemblies (473ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (29ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (8ms) - FinalizeReload (2019ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (522ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (248ms) - ProcessInitializeOnLoadMethodAttributes (167ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 41.89 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6010. -Memory consumption went from 208.3 MB to 208.1 MB. -Total: 15.834800 ms (FindLiveObjects: 0.598000 ms CreateObjectMapping: 0.377700 ms MarkObjects: 14.590200 ms DeleteObjects: 0.267500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 17.476140 seconds. - path: Assets/Scripts/GASSamples/Scripts/Main.cs - artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '910f9cd2a0a527989b7f80e0afc4f30a') in 0.001937 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.095 seconds -Refreshing native plugins compatible for Editor in 72.37 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.035 seconds -Domain Reload Profiling: 3058ms - BeginReloadAssembly (262ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (103ms) - LoadAllAssembliesAndSetupDomain (607ms) - LoadAssemblies (715ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (41ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (13ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2036ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (842ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (38ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (372ms) - ProcessInitializeOnLoadMethodAttributes (267ms) - AfterProcessingInitializeOnLoad (43ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (48ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 79.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6025. -Memory consumption went from 210.3 MB to 210.1 MB. -Total: 18.753300 ms (FindLiveObjects: 0.411500 ms CreateObjectMapping: 0.167700 ms MarkObjects: 17.948700 ms DeleteObjects: 0.223900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 8.795142 seconds. - path: Assets/Scripts/GASSamples/Scripts/Main.cs - artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd990d9d7729e9db0957a0fc848921463') in 0.002961 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.091 seconds -Refreshing native plugins compatible for Editor in 62.61 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.577 seconds -Domain Reload Profiling: 2640ms - BeginReloadAssembly (268ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (111ms) - LoadAllAssembliesAndSetupDomain (636ms) - LoadAssemblies (757ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1577ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (532ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (188ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 34.79 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6040. -Memory consumption went from 212.2 MB to 212.0 MB. -Total: 12.358200 ms (FindLiveObjects: 0.337700 ms CreateObjectMapping: 0.228000 ms MarkObjects: 11.605700 ms DeleteObjects: 0.185800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 7.611274 seconds. - path: Assets/Scripts/GASSamples/Scripts/Main.cs - artifactKey: Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Scripts/Main.cs using Guid(0c3aa2f58b904ebe9fc64cc367c63d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8eae0305ccec38d0c5817e559c0be83') in 0.002008 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.147360 seconds. - path: Assets/Resources/GASSamples - artifactKey: Guid(ded57070405cfaa4f83d57d3d6a1f428) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/GASSamples using Guid(ded57070405cfaa4f83d57d3d6a1f428) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca85de0b1f0fcddedf600bf0ab385a13') in 0.000711 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: 8.933754 seconds. - path: Assets/Resources/Samples - artifactKey: Guid(af2308f3772036840a24618e20d4371f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Samples using Guid(af2308f3772036840a24618e20d4371f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1bd9f836b85a5f2991f64b060637477') in 0.000814 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.038545 seconds. - path: Assets/Resources/Scenes - artifactKey: Guid(767b3f261d3bcfe47a41b1b976333f52) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Scenes using Guid(767b3f261d3bcfe47a41b1b976333f52) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '265740686f1433fc0931a7e938747f8a') in 0.000464 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: 23.403254 seconds. - path: Assets/Resources/Battle - artifactKey: Guid(02b2a3322421b4546a838feaf2397e47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Battle using Guid(02b2a3322421b4546a838feaf2397e47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b89b9139be000fed403181f89594fd44') in 0.000571 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.038 seconds -Refreshing native plugins compatible for Editor in 67.48 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.044 seconds -Domain Reload Profiling: 3071ms - BeginReloadAssembly (299ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (57ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (82ms) - LoadAllAssembliesAndSetupDomain (611ms) - LoadAssemblies (754ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (13ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2045ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (881ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (37ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (390ms) - ProcessInitializeOnLoadMethodAttributes (319ms) - AfterProcessingInitializeOnLoad (34ms) - EditorAssembliesLoaded (5ms) - 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 60.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5529 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.7 KB). Loaded Objects now: 6055. -Memory consumption went from 214.2 MB to 214.0 MB. -Total: 19.856600 ms (FindLiveObjects: 0.380700 ms CreateObjectMapping: 0.163600 ms MarkObjects: 19.091100 ms DeleteObjects: 0.219700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.068 seconds -Refreshing native plugins compatible for Editor in 67.84 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.150 seconds -Domain Reload Profiling: 3171ms - BeginReloadAssembly (283ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (103ms) - LoadAllAssembliesAndSetupDomain (588ms) - LoadAssemblies (710ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (14ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (14ms) - FinalizeReload (2150ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (905ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (43ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (109ms) - ProcessInitializeOnLoadAttributes (389ms) - ProcessInitializeOnLoadMethodAttributes (315ms) - AfterProcessingInitializeOnLoad (41ms) - EditorAssembliesLoaded (6ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 72.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6071. -Memory consumption went from 216.3 MB to 216.1 MB. -Total: 32.965300 ms (FindLiveObjects: 0.438300 ms CreateObjectMapping: 0.167900 ms MarkObjects: 32.141900 ms DeleteObjects: 0.215900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.014 seconds -Refreshing native plugins compatible for Editor in 66.85 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.045 seconds -Domain Reload Profiling: 3036ms - BeginReloadAssembly (266ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (57ms) - LoadAllAssembliesAndSetupDomain (631ms) - LoadAssemblies (747ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2045ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (888ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (67ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (381ms) - ProcessInitializeOnLoadMethodAttributes (297ms) - AfterProcessingInitializeOnLoad (33ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 72.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6086. -Memory consumption went from 218.3 MB to 218.1 MB. -Total: 36.889300 ms (FindLiveObjects: 0.479300 ms CreateObjectMapping: 0.175700 ms MarkObjects: 36.006000 ms DeleteObjects: 0.226900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.155 seconds -Refreshing native plugins compatible for Editor in 69.08 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.534 seconds -Domain Reload Profiling: 2657ms - BeginReloadAssembly (317ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - RebuildCommonClasses (44ms) - RebuildNativeTypeToScriptingClass (14ms) - initialDomainReloadingComplete (115ms) - LoadAllAssembliesAndSetupDomain (632ms) - LoadAssemblies (793ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (40ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (12ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1535ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (576ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (266ms) - ProcessInitializeOnLoadMethodAttributes (192ms) - AfterProcessingInitializeOnLoad (22ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 35.83 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.6 KB). Loaded Objects now: 6101. -Memory consumption went from 220.2 MB to 220.0 MB. -Total: 13.704200 ms (FindLiveObjects: 0.326800 ms CreateObjectMapping: 0.226800 ms MarkObjects: 12.944500 ms DeleteObjects: 0.204900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.681 seconds -Refreshing native plugins compatible for Editor in 38.92 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.117 seconds -Domain Reload Profiling: 1783ms - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (70ms) - LoadAllAssembliesAndSetupDomain (386ms) - LoadAssemblies (454ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (25ms) - TypeCache.Refresh (10ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1118ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (512ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (163ms) - AfterProcessingInitializeOnLoad (25ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 32.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5531 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6116. -Memory consumption went from 222.1 MB to 221.9 MB. -Total: 13.313000 ms (FindLiveObjects: 0.313000 ms CreateObjectMapping: 0.147800 ms MarkObjects: 12.614500 ms DeleteObjects: 0.236500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.721 seconds -Refreshing native plugins compatible for Editor in 32.78 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.275 seconds -Domain Reload Profiling: 1979ms - BeginReloadAssembly (174ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (78ms) - LoadAllAssembliesAndSetupDomain (417ms) - LoadAssemblies (484ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (27ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (8ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1276ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (631ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (300ms) - ProcessInitializeOnLoadMethodAttributes (197ms) - AfterProcessingInitializeOnLoad (35ms) - EditorAssembliesLoaded (2ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 37.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5532 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.8 KB). Loaded Objects now: 6132. -Memory consumption went from 224.1 MB to 223.9 MB. -Total: 12.328400 ms (FindLiveObjects: 0.291000 ms CreateObjectMapping: 0.434900 ms MarkObjects: 11.396600 ms DeleteObjects: 0.204900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 284.229558 seconds. - path: Assets/Scripts/GASSamples/GASSamples.asmdef - artifactKey: Guid(5b05c448a9d6e154e8eb3f1ef2291f24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/GASSamples.asmdef using Guid(5b05c448a9d6e154e8eb3f1ef2291f24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a00e2fb82074df3462a9fa3e4f099af') in 0.001985 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: 8.150756 seconds. - path: Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef - artifactKey: Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/GASSamples/Editor/GASSamples.Editor.asmdef using Guid(1fa2098483891ae4a932af080478a6c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a27a3f8171262eb25bde70e1a3d27b0b') in 0.000696 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.106 seconds -Refreshing native plugins compatible for Editor in 61.30 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.127 seconds -Domain Reload Profiling: 2209ms - BeginReloadAssembly (270ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - RebuildCommonClasses (41ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (136ms) - LoadAllAssembliesAndSetupDomain (622ms) - LoadAssemblies (745ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (34ms) - TypeCache.Refresh (20ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1128ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (505ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (166ms) - AfterProcessingInitializeOnLoad (18ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 31.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5532 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6148. -Memory consumption went from 225.7 MB to 225.5 MB. -Total: 12.380800 ms (FindLiveObjects: 0.272400 ms CreateObjectMapping: 0.156200 ms MarkObjects: 11.755600 ms DeleteObjects: 0.195400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.700 seconds -Refreshing native plugins compatible for Editor in 37.10 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.279 seconds -Domain Reload Profiling: 1964ms - BeginReloadAssembly (175ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (77ms) - LoadAllAssembliesAndSetupDomain (397ms) - LoadAssemblies (461ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (29ms) - TypeCache.Refresh (13ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1280ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (576ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (266ms) - ProcessInitializeOnLoadMethodAttributes (196ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (5ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Script is not up to date after domain reload: guid(fb60ec3a5bba4f57ac82e4862a01860d) path("Assets/Scripts/GASSamples/Scripts/Sync/JNGASFrameSystem.cs") state(2) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 39.29 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5532 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.7 KB). Loaded Objects now: 6162. -Memory consumption went from 228.0 MB to 227.8 MB. -Total: 12.824600 ms (FindLiveObjects: 0.364800 ms CreateObjectMapping: 0.218800 ms MarkObjects: 11.962100 ms DeleteObjects: 0.278000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.677 seconds -Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.133 seconds -Domain Reload Profiling: 1795ms - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (72ms) - LoadAllAssembliesAndSetupDomain (383ms) - LoadAssemblies (447ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (28ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1133ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (529ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (181ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 32.79 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6178. -Memory consumption went from 229.9 MB to 229.7 MB. -Total: 12.437700 ms (FindLiveObjects: 0.288800 ms CreateObjectMapping: 0.164300 ms MarkObjects: 11.739300 ms DeleteObjects: 0.244100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.113 seconds -Refreshing native plugins compatible for Editor in 57.11 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.128 seconds -Domain Reload Profiling: 2199ms - BeginReloadAssembly (267ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - RebuildCommonClasses (92ms) - RebuildNativeTypeToScriptingClass (22ms) - initialDomainReloadingComplete (121ms) - LoadAllAssembliesAndSetupDomain (569ms) - LoadAssemblies (673ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (50ms) - TypeCache.Refresh (27ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1129ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (511ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (159ms) - AfterProcessingInitializeOnLoad (22ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 30.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6193. -Memory consumption went from 231.8 MB to 231.6 MB. -Total: 15.744000 ms (FindLiveObjects: 0.392800 ms CreateObjectMapping: 0.896800 ms MarkObjects: 14.219800 ms DeleteObjects: 0.233300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.732 seconds -Refreshing native plugins compatible for Editor in 35.38 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.200 seconds -Domain Reload Profiling: 1914ms - BeginReloadAssembly (183ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - RebuildCommonClasses (32ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (77ms) - LoadAllAssembliesAndSetupDomain (413ms) - LoadAssemblies (476ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (37ms) - TypeCache.Refresh (20ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1201ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (542ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (166ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 36.63 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6208. -Memory consumption went from 233.8 MB to 233.6 MB. -Total: 14.203400 ms (FindLiveObjects: 0.343400 ms CreateObjectMapping: 0.217700 ms MarkObjects: 13.420400 ms DeleteObjects: 0.220700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.106 seconds -Refreshing native plugins compatible for Editor in 99.17 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.188 seconds -Domain Reload Profiling: 2261ms - BeginReloadAssembly (258ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (21ms) - initialDomainReloadingComplete (110ms) - LoadAllAssembliesAndSetupDomain (649ms) - LoadAssemblies (741ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (58ms) - TypeCache.Refresh (36ms) - TypeCache.ScanAssembly (24ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1188ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (528ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (252ms) - ProcessInitializeOnLoadMethodAttributes (168ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 33.72 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6223. -Memory consumption went from 235.6 MB to 235.4 MB. -Total: 11.764600 ms (FindLiveObjects: 0.283300 ms CreateObjectMapping: 0.156600 ms MarkObjects: 11.143700 ms DeleteObjects: 0.180200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.045 seconds -Refreshing native plugins compatible for Editor in 81.75 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.153 seconds -Domain Reload Profiling: 3155ms - BeginReloadAssembly (246ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - RebuildCommonClasses (38ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (109ms) - LoadAllAssembliesAndSetupDomain (596ms) - LoadAssemblies (683ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (50ms) - TypeCache.Refresh (28ms) - TypeCache.ScanAssembly (14ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2154ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (865ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (36ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (99ms) - ProcessInitializeOnLoadAttributes (382ms) - ProcessInitializeOnLoadMethodAttributes (306ms) - AfterProcessingInitializeOnLoad (37ms) - EditorAssembliesLoaded (2ms) - 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 65.99 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6238. -Memory consumption went from 237.6 MB to 237.4 MB. -Total: 18.283100 ms (FindLiveObjects: 0.477100 ms CreateObjectMapping: 0.169000 ms MarkObjects: 17.370600 ms DeleteObjects: 0.264800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.074 seconds -Refreshing native plugins compatible for Editor in 67.23 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.998 seconds -Domain Reload Profiling: 3045ms - BeginReloadAssembly (302ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - RebuildCommonClasses (38ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (125ms) - LoadAllAssembliesAndSetupDomain (568ms) - LoadAssemblies (712ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (43ms) - TypeCache.Refresh (20ms) - TypeCache.ScanAssembly (3ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2000ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (847ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (36ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (387ms) - ProcessInitializeOnLoadMethodAttributes (273ms) - AfterProcessingInitializeOnLoad (48ms) - EditorAssembliesLoaded (7ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (39ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 74.70 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6253. -Memory consumption went from 239.6 MB to 239.4 MB. -Total: 17.416000 ms (FindLiveObjects: 0.430100 ms CreateObjectMapping: 0.164900 ms MarkObjects: 16.581100 ms DeleteObjects: 0.238200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.128 seconds -Refreshing native plugins compatible for Editor in 69.33 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.199 seconds -Domain Reload Profiling: 2303ms - BeginReloadAssembly (266ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (117ms) - LoadAllAssembliesAndSetupDomain (673ms) - LoadAssemblies (791ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (1200ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (541ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (186ms) - AfterProcessingInitializeOnLoad (25ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 41.19 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6268. -Memory consumption went from 241.5 MB to 241.3 MB. -Total: 14.387200 ms (FindLiveObjects: 0.597700 ms CreateObjectMapping: 0.328100 ms MarkObjects: 13.187800 ms DeleteObjects: 0.271900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.699 seconds -Refreshing native plugins compatible for Editor in 36.58 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.145 seconds -Domain Reload Profiling: 1830ms - BeginReloadAssembly (179ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (71ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (462ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (30ms) - TypeCache.Refresh (12ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1146ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (520ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (173ms) - AfterProcessingInitializeOnLoad (18ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 33.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6283. -Memory consumption went from 243.4 MB to 243.2 MB. -Total: 15.623400 ms (FindLiveObjects: 0.309900 ms CreateObjectMapping: 0.164700 ms MarkObjects: 14.910800 ms DeleteObjects: 0.236500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.072 seconds -Refreshing native plugins compatible for Editor in 67.76 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.218 seconds -Domain Reload Profiling: 3261ms - BeginReloadAssembly (271ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (106ms) - LoadAllAssembliesAndSetupDomain (618ms) - LoadAssemblies (737ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (43ms) - TypeCache.Refresh (17ms) - TypeCache.ScanAssembly (3ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (14ms) - FinalizeReload (2219ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (1007ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (37ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (197ms) - ProcessInitializeOnLoadAttributes (437ms) - ProcessInitializeOnLoadMethodAttributes (287ms) - AfterProcessingInitializeOnLoad (34ms) - EditorAssembliesLoaded (12ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 78.83 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6298. -Memory consumption went from 245.3 MB to 245.1 MB. -Total: 25.115900 ms (FindLiveObjects: 0.545400 ms CreateObjectMapping: 0.165900 ms MarkObjects: 23.886500 ms DeleteObjects: 0.516400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.125 seconds -Refreshing native plugins compatible for Editor in 68.91 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.028 seconds -Domain Reload Profiling: 3120ms - BeginReloadAssembly (269ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (96ms) - LoadAllAssembliesAndSetupDomain (694ms) - LoadAssemblies (812ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (38ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2028ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (889ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (36ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (394ms) - ProcessInitializeOnLoadMethodAttributes (323ms) - AfterProcessingInitializeOnLoad (38ms) - EditorAssembliesLoaded (1ms) - 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 70.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6313. -Memory consumption went from 247.3 MB to 247.1 MB. -Total: 26.519400 ms (FindLiveObjects: 0.422800 ms CreateObjectMapping: 0.203100 ms MarkObjects: 25.623000 ms DeleteObjects: 0.268900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.140 seconds -Refreshing native plugins compatible for Editor in 65.69 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 2.140 seconds -Domain Reload Profiling: 3258ms - BeginReloadAssembly (291ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (33ms) - initialDomainReloadingComplete (114ms) - LoadAllAssembliesAndSetupDomain (641ms) - LoadAssemblies (771ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (39ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (12ms) - FinalizeReload (2142ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (957ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (35ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (112ms) - ProcessInitializeOnLoadAttributes (375ms) - ProcessInitializeOnLoadMethodAttributes (376ms) - AfterProcessingInitializeOnLoad (43ms) - EditorAssembliesLoaded (13ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 67.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6328. -Memory consumption went from 249.2 MB to 249.0 MB. -Total: 17.237300 ms (FindLiveObjects: 0.429800 ms CreateObjectMapping: 0.154400 ms MarkObjects: 16.414800 ms DeleteObjects: 0.236600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.088 seconds -Refreshing native plugins compatible for Editor in 66.03 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.269 seconds -Domain Reload Profiling: 2255ms - BeginReloadAssembly (256ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (106ms) - LoadAllAssembliesAndSetupDomain (586ms) - LoadAssemblies (679ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (39ms) - TypeCache.Refresh (15ms) - TypeCache.ScanAssembly (2ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (12ms) - FinalizeReload (1269ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (510ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (159ms) - AfterProcessingInitializeOnLoad (18ms) - EditorAssembliesLoaded (5ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 30.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6343. -Memory consumption went from 251.1 MB to 250.9 MB. -Total: 12.770500 ms (FindLiveObjects: 0.279300 ms CreateObjectMapping: 0.155700 ms MarkObjects: 11.058400 ms DeleteObjects: 1.275700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.658 seconds -Refreshing native plugins compatible for Editor in 33.28 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.175 seconds -Domain Reload Profiling: 1819ms - BeginReloadAssembly (164ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (69ms) - LoadAllAssembliesAndSetupDomain (375ms) - LoadAssemblies (438ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (26ms) - TypeCache.Refresh (10ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1176ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (515ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (169ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 40.87 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6358. -Memory consumption went from 253.0 MB to 252.8 MB. -Total: 13.772200 ms (FindLiveObjects: 0.357500 ms CreateObjectMapping: 0.188300 ms MarkObjects: 12.970400 ms DeleteObjects: 0.254600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.677 seconds -Refreshing native plugins compatible for Editor in 36.39 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.178 seconds -Domain Reload Profiling: 1840ms - BeginReloadAssembly (174ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (72ms) - LoadAllAssembliesAndSetupDomain (383ms) - LoadAssemblies (444ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (28ms) - TypeCache.Refresh (11ms) - TypeCache.ScanAssembly (1ms) - ScanForSourceGeneratedMonoScriptInfo (7ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1178ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (540ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (254ms) - ProcessInitializeOnLoadMethodAttributes (174ms) - AfterProcessingInitializeOnLoad (18ms) - EditorAssembliesLoaded (7ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 34.16 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5533 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6373. -Memory consumption went from 254.9 MB to 254.7 MB. -Total: 12.873700 ms (FindLiveObjects: 0.394100 ms CreateObjectMapping: 0.189500 ms MarkObjects: 12.029200 ms DeleteObjects: 0.257600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.012 seconds -Refreshing native plugins compatible for Editor in 34.69 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.319 seconds -Domain Reload Profiling: 2318ms - BeginReloadAssembly (262ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (103ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (74ms) - LoadAllAssembliesAndSetupDomain (629ms) - LoadAssemblies (696ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (41ms) - TypeCache.Refresh (22ms) - TypeCache.ScanAssembly (10ms) - ScanForSourceGeneratedMonoScriptInfo (9ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1320ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (569ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (256ms) - ProcessInitializeOnLoadMethodAttributes (201ms) - AfterProcessingInitializeOnLoad (19ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 34.91 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5542 Unused Serialized files (Serialized files now loaded: 0) -Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6398. -Memory consumption went from 257.1 MB to 256.9 MB. -Total: 14.811500 ms (FindLiveObjects: 0.406300 ms CreateObjectMapping: 0.198300 ms MarkObjects: 13.968000 ms DeleteObjects: 0.237400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 5549.416708 seconds. - path: Assets/Resources/GASSamples/GASMain.unity - artifactKey: Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/GASSamples/GASMain.unity using Guid(6f1bec42463335e479078a78153b0bc7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28babb540a4eef4bd8b564cd87d28790') in 0.003456 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.788521 seconds. - path: Assets/Resources/GASSamples/Cube.prefab - artifactKey: Guid(2e5d0c510b71c714aaccc714aca99afc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/GASSamples/Cube.prefab using Guid(2e5d0c510b71c714aaccc714aca99afc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '048a5e3372be00d70eeca7353dbd0f42') in 0.077524 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 7 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.650 seconds -Refreshing native plugins compatible for Editor in 41.61 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.380 seconds -Domain Reload Profiling: 2018ms - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (63ms) - LoadAllAssembliesAndSetupDomain (373ms) - LoadAssemblies (443ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (18ms) - TypeCache.Refresh (8ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1381ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (614ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (296ms) - ProcessInitializeOnLoadMethodAttributes (197ms) - AfterProcessingInitializeOnLoad (24ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 38.47 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5541 Unused Serialized files (Serialized files now loaded: 0) -Unloading 133 unused Assets / (201.8 KB). Loaded Objects now: 6422. -Memory consumption went from 258.9 MB to 258.7 MB. -Total: 14.649400 ms (FindLiveObjects: 0.364400 ms CreateObjectMapping: 0.172500 ms MarkObjects: 13.873700 ms DeleteObjects: 0.237600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.897 seconds -Refreshing native plugins compatible for Editor in 43.06 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.594 seconds -Domain Reload Profiling: 2472ms - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (80ms) - LoadAllAssembliesAndSetupDomain (585ms) - LoadAssemblies (534ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (145ms) - TypeCache.Refresh (118ms) - TypeCache.ScanAssembly (94ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1594ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (673ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (309ms) - ProcessInitializeOnLoadMethodAttributes (222ms) - AfterProcessingInitializeOnLoad (37ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5541 Unused Serialized files (Serialized files now loaded: 0) -Unloading 133 unused Assets / (201.8 KB). Loaded Objects now: 6437. -Memory consumption went from 260.9 MB to 260.7 MB. -Total: 16.065300 ms (FindLiveObjects: 0.417400 ms CreateObjectMapping: 0.219100 ms MarkObjects: 15.152900 ms DeleteObjects: 0.274500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 1.225 seconds -Refreshing native plugins compatible for Editor in 48.31 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.636 seconds -Domain Reload Profiling: 2825ms - BeginReloadAssembly (372ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (59ms) - RebuildCommonClasses (47ms) - RebuildNativeTypeToScriptingClass (17ms) - initialDomainReloadingComplete (265ms) - LoadAllAssembliesAndSetupDomain (486ms) - LoadAssemblies (705ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (28ms) - TypeCache.Refresh (18ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1639ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (659ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (44ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (304ms) - ProcessInitializeOnLoadMethodAttributes (181ms) - AfterProcessingInitializeOnLoad (29ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 48.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5541 Unused Serialized files (Serialized files now loaded: 0) -Unloading 133 unused Assets / (203.0 KB). Loaded Objects now: 6452. -Memory consumption went from 262.8 MB to 262.6 MB. -Total: 16.123500 ms (FindLiveObjects: 0.353000 ms CreateObjectMapping: 0.211100 ms MarkObjects: 15.314700 ms DeleteObjects: 0.242900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -- Loaded All Assemblies, in 0.660 seconds -Refreshing native plugins compatible for Editor in 38.89 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android 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 -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.197 seconds -Domain Reload Profiling: 1845ms - BeginReloadAssembly (163ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (63ms) - LoadAllAssembliesAndSetupDomain (388ms) - LoadAssemblies (457ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (16ms) - TypeCache.Refresh (7ms) - TypeCache.ScanAssembly (0ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1198ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (547ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (257ms) - ProcessInitializeOnLoadMethodAttributes (182ms) - AfterProcessingInitializeOnLoad (21ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found -Refreshing native plugins compatible for Editor in 37.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5541 Unused Serialized files (Serialized files now loaded: 0) -Unloading 133 unused Assets / (202.0 KB). Loaded Objects now: 6467. -Memory consumption went from 264.7 MB to 264.5 MB. -Total: 14.962300 ms (FindLiveObjects: 0.415400 ms CreateObjectMapping: 0.230500 ms MarkObjects: 14.087600 ms DeleteObjects: 0.227800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly diff --git a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log new file mode 100644 index 00000000..e69de29b diff --git a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 62e95749..886226e0 100644 --- a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -14,22 +14,13 @@ 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 + 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 + 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 diff --git a/JNFrame2/ProjectSettings/AttributeAsset.asset b/JNFrame2/ProjectSettings/AttributeAsset.asset index ed3b1d32..b6aabe65 100644 --- a/JNFrame2/ProjectSettings/AttributeAsset.asset +++ b/JNFrame2/ProjectSettings/AttributeAsset.asset @@ -12,4 +12,13 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 0a2112111feb463caf561bfc7cfe18ab, type: 3} m_Name: m_EditorClassIdentifier: - attributes: [] + attributes: + - Name: HP + Comment: "\u8840\u91CF" + CalculateMode: 0 + SupportedOperation: 31 + DefaultValue: 0 + LimitMinValue: 0 + MinValue: -3.4028235e+38 + LimitMaxValue: 0 + MaxValue: 3.4028235e+38 diff --git a/JNFrame2/ProjectSettings/AttributeSetAsset.asset b/JNFrame2/ProjectSettings/AttributeSetAsset.asset index 635eee6a..45afc4be 100644 --- a/JNFrame2/ProjectSettings/AttributeSetAsset.asset +++ b/JNFrame2/ProjectSettings/AttributeSetAsset.asset @@ -13,4 +13,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: ERROR_DuplicatedAttributeSet: - AttributeSetConfigs: [] + AttributeSetConfigs: + - Name: BaseAttribute + AttributeNames: + - HP diff --git a/JNFrame2/ProjectSettings/GameplayTagsAsset.asset b/JNFrame2/ProjectSettings/GameplayTagsAsset.asset index b78eca4d..e9cb427d 100644 --- a/JNFrame2/ProjectSettings/GameplayTagsAsset.asset +++ b/JNFrame2/ProjectSettings/GameplayTagsAsset.asset @@ -16,12 +16,20 @@ MonoBehaviour: - _id: 1 _name: Root _depth: -1 - - _id: 2 - _name: Ability + - _id: 6 + _name: Buff + _depth: 0 + - _id: 5 + _name: DeBuff _depth: 0 Tags: - - _name: Ability - _hashCode: -523153736 - _shortName: Ability + - _name: Buff + _hashCode: 937056111 + _shortName: Buff + _ancestorHashCodes: + _ancestorNames: [] + - _name: DeBuff + _hashCode: -251087900 + _shortName: DeBuff _ancestorHashCodes: _ancestorNames: [] diff --git a/JNFrame2/UserSettings/Layouts/default-2022.dwlt b/JNFrame2/UserSettings/Layouts/default-2022.dwlt index a6e09e85..6b2e6a2e 100644 --- a/JNFrame2/UserSettings/Layouts/default-2022.dwlt +++ b/JNFrame2/UserSettings/Layouts/default-2022.dwlt @@ -14,16 +14,16 @@ MonoBehaviour: m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 - x: 0 - y: 43 - width: 1920 - height: 1037 + x: 8 + y: 51 + width: 1904 + height: 1021 m_ShowMode: 4 m_Title: "\u63A7\u5236\u53F0" m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} - m_Maximized: 1 + m_Maximized: 0 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -44,8 +44,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1920 - height: 1037 + width: 1904 + height: 1021 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 @@ -69,7 +69,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1920 + width: 1904 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -90,8 +90,8 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 1017 - width: 1920 + y: 1001 + width: 1904 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -114,12 +114,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 30 - width: 1920 - height: 987 + width: 1904 + height: 971 m_MinSize: {x: 400, y: 100} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 109 + controlID: 71 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1499 - height: 987 + width: 1343 + height: 971 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 1 - controlID: 73 + controlID: 72 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -165,12 +165,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1499 - height: 471 + width: 1343 + height: 514 m_MinSize: {x: 300, y: 50} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 50 + controlID: 49 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -188,8 +188,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 390 - height: 471 + width: 317 + height: 514 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 15} @@ -212,10 +212,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 390 + x: 317 y: 0 - width: 548 - height: 471 + width: 516 + height: 514 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 16} @@ -239,10 +239,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 938 + x: 833 y: 0 - width: 561 - height: 471 + width: 510 + height: 514 m_MinSize: {x: 102, y: 121} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 20} @@ -266,9 +266,9 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 471 - width: 1499 - height: 516 + y: 514 + width: 1343 + height: 457 m_MinSize: {x: 101, y: 121} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 14} @@ -292,10 +292,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1499 + x: 1343 y: 0 - width: 421 - height: 987 + width: 561 + height: 971 m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 19} @@ -358,10 +358,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 544 - width: 1498 - height: 495 + x: -32000 + y: -31456 + width: 1342 + height: 436 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -392,10 +392,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 73 - width: 389 - height: 450 + x: 8 + y: 81 + width: 316 + height: 493 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -409,9 +409,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 6a7e0000 - m_LastClickedID: 32362 - m_ExpandedIDs: 2aaaffff4ecfffff6a7e0000 + m_SelectedIDs: 5494fdff + m_LastClickedID: 0 + m_ExpandedIDs: 60f8feff6efafffff4ffffff08700000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -455,10 +455,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 390 - y: 73 - width: 546 - height: 450 + x: 325 + y: 81 + width: 514 + height: 493 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -938,9 +938,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 544 - width: 1498 - height: 495 + y: 595 + width: 1353 + height: 444 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -962,7 +962,7 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Resources/GASSamples + - Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib m_Globs: [] m_OriginalText: m_ImportLogFlags: 0 @@ -970,16 +970,16 @@ MonoBehaviour: m_ViewMode: 1 m_StartGridSize: 96 m_LastFolders: - - Assets/Resources/GASSamples + - Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib m_LastFoldersGridSize: 96 m_LastProjectPath: D:\Jisol\JisolGame\JNFrame2 m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 201} - m_SelectedIDs: 4a7a0000 - m_LastClickedID: 31306 - m_ExpandedIDs: 000000001c6700002867000084670000bc670000146800005e78000060780000627800006478000066780000687800006a7800006c7800006e78000070780000727800007478000076780000787800007a7800007c7800007e78000080780000827800008478000086780000ee780000fc78000000ca9a3b + scrollPos: {x: 0, y: 72} + m_SelectedIDs: fc720000 + m_LastClickedID: 29436 + m_ExpandedIDs: 00000000487000004a7000004e700000527000005470000056700000587000005a7000005c70000060700000627000006470000066700000687000006a7000006c7000006e700000be700000c2700000d4700000ec720000f072000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1007,7 +1007,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 000000005e78000060780000627800006478000066780000687800006a7800006c7800006e78000070780000727800007478000076780000787800007a7800007c7800007e78000080780000827800008478000086780000 + m_ExpandedIDs: 00000000487000004a7000004c7000004e70000050700000527000005470000056700000587000005a7000005c7000005e70000060700000627000006470000066700000687000006a7000006c7000006e700000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1032,8 +1032,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: 6a7e0000 - m_LastClickedInstanceID: 32362 + m_SelectedInstanceIDs: 5494fdff + m_LastClickedInstanceID: -158636 m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c623000000000000 m_RenameOverlay: @@ -1083,10 +1083,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1499 - y: 73 - width: 420 - height: 966 + x: 1351 + y: 81 + width: 560 + height: 950 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1130,10 +1130,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 938 - y: 73 - width: 559 - height: 450 + x: 841 + y: 81 + width: 508 + height: 493 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1152,7 +1152,7 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 559, y: 429} + m_TargetSize: {x: 508, y: 472} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -1167,10 +1167,10 @@ MonoBehaviour: m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -279.5 - m_HBaseRangeMax: 279.5 - m_VBaseRangeMin: -214.5 - m_VBaseRangeMax: 214.5 + m_HBaseRangeMin: -254 + m_HBaseRangeMax: 254 + m_VBaseRangeMin: -236 + m_VBaseRangeMax: 236 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -1188,23 +1188,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 559 - height: 429 + width: 508 + height: 472 m_Scale: {x: 1, y: 1} - m_Translation: {x: 279.5, y: 214.5} + m_Translation: {x: 254, y: 236} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -279.5 - y: -214.5 - width: 559 - height: 429 + x: -254 + y: -236 + width: 508 + height: 472 m_MinimalGUI: 1 m_defaultScale: 1 - m_LastWindowPixelSize: {x: 559, y: 450} + m_LastWindowPixelSize: {x: 508, y: 493} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 diff --git a/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache index 4eadb4cd..d5cb1469 100644 Binary files a/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/Assembly-CSharp-firstpass.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache index 61ec0e3d..aaed3429 100644 Binary files a/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/FairyGUI.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache new file mode 100644 index 00000000..68858aec Binary files /dev/null and b/JNFrame2/obj/Debug/GASSamples.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache index 1752bc37..4a32f477 100644 Binary files a/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/GameScripts.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache index 3c972501..ede04d17 100644 Binary files a/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/JNGame.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/JNGame.Root.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/JNGame.Root.csproj.AssemblyReference.cache index 94fee2e9..d9df6270 100644 Binary files a/JNFrame2/obj/Debug/JNGame.Root.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/JNGame.Root.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache index f2c5292d..f5e894ae 100644 Binary files a/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/JNGame.Runtime.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache index a950652e..e13912d5 100644 Binary files a/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/SHFrame.Editor.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache index 204336f0..93b360ab 100644 Binary files a/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/Samples.csproj.AssemblyReference.cache differ diff --git a/JNFrame2/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache b/JNFrame2/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache index de5bbf9a..69cdf4b5 100644 Binary files a/JNFrame2/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache and b/JNFrame2/obj/Debug/UniTask.TextMeshPro.csproj.AssemblyReference.cache differ