From 9303606b3138237a0fd940b4ac9ccce19e84c366 Mon Sep 17 00:00:00 2001
From: "PC-20230316NUNE\\Administrator" <2858626794@qq.com>
Date: Wed, 23 Oct 2024 20:13:31 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4GAS?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Track/AbilityTaskClipTrack/TaskClip.cs | 2 +-
.../GAS/PureGenUtils/PureGASEditorTools.cs | 6 +-
.../AbilityTask/OngoingAbilityTask.cs | 4 +-
.../Runtime/GAS/Runtime/JexGasManager.cs | 2 +-
.../Assets/Resources/GASSamples/GASMain.unity | 2 +-
.../OngoingAbility_Debug_Inspector.cs | 2 +
.../GASSamples/GAS/Binary/GA_Database.bytes | Bin 220 -> 150 bytes
.../GASSamples/GAS/Binary/GE_Database.bytes | Bin 81 -> 261 bytes
.../GameplayAbilityLib/JisolDemo1.asset | 16 +-
.../Config/GameplayEffectLib/GE_Player.asset | 37 +-
.../MMC_AttrModCalculation.asset | 2 +-
.../Scripts/GAS/MMC/AttrModCalculation.cs | 5 +-
.../GASSamples/Scripts/GAS/MMC/Pure.meta | 3 +
.../GAS/MMC/Pure/PureAttrModCalculation.cs | 13 +
.../MMC/Pure/PureAttrModCalculation.cs.meta | 3 +
.../OngoingAbility_Debug.cs | 14 +-
.../Scripts/GenCode/CodeGen_PureMMCExt.cs | 3 +
.../GenCode/CodeGen_ScriptableMMCExt.cs | 15 +
.../GenCode/CodeGen_ScriptableMMCExt.cs.meta | 11 +
.../CodeGen_ScriptableMMCExtSerialization.cs | 6 +
...eGen_ScriptableMMCExtSerialization.cs.meta | 11 +
JNFrame2/GASSamples.csproj | 3 +
JNFrame2/Logs/AssetImportWorker0-prev.log | 1595 ++++++++++++-
JNFrame2/Logs/AssetImportWorker0.log | 2062 +++++------------
JNFrame2/Logs/AssetImportWorker1-prev.log | 1567 ++++++++++++-
JNFrame2/Logs/AssetImportWorker1.log | 1994 +++++-----------
.../shadercompiler-AssetImportWorker0.log | 19 -
...hadercompiler-UnityShaderCompiler.exe0.log | 106 -
28 files changed, 4203 insertions(+), 3300 deletions(-)
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure.meta
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs.meta
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs.meta
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs
create mode 100644 JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs.meta
diff --git a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/Track/AbilityTaskClipTrack/TaskClip.cs b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/Track/AbilityTaskClipTrack/TaskClip.cs
index 0e385d24..e4b5e383 100644
--- a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/Track/AbilityTaskClipTrack/TaskClip.cs
+++ b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/Ability/AbilityTimelineEditor/Track/AbilityTaskClipTrack/TaskClip.cs
@@ -61,7 +61,7 @@ namespace GAS.Editor
{
if (frameIndex < startFrame || frameIndex > endFrame) return;
var ongoingAbilityTask = TaskClipData.Load();
- ongoingAbilityTask.OnEditorPreview( frameIndex, startFrame, endFrame);
+ ongoingAbilityTask.OnEditorPreview( AbilityTimelineEditorWindow.Instance.PreviewObject,frameIndex, startFrame, endFrame);
}
public override UnityEngine.Object DataInspector => TaskClipEditor.Create(this);
diff --git a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/PureGenUtils/PureGASEditorTools.cs b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/PureGenUtils/PureGASEditorTools.cs
index 45fb04f1..3350d95e 100644
--- a/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/PureGenUtils/PureGASEditorTools.cs
+++ b/JNFrame2/Assets/HotScripts/JNGame/Editor/GAS/PureGenUtils/PureGASEditorTools.cs
@@ -174,14 +174,16 @@ namespace GAS.Editor
var assembly = assemblies[i];
if (assembly == null) { continue; }
var assName = assembly.GetName().Name;
- if (!"GAS.UnityExt.Runtime".Equals(assName)) { continue; }
+ if ("JNGame.Runtime".Equals(assName)) { continue; }
+ if ("JNGame.Root".Equals(assName)) { continue; }
+ if ("JNGame.Editor".Equals(assName)) { continue; }
// 筛选非抽象的ModifierMagnitudeCalculation派生类
var lst = assembly.GetTypes().Where(
clsType => !clsType.IsAbstract && clsType.IsSubclassOf(typeof(ModifierMagnitudeCalculation)) && outFilter.IndexOf(clsType.Name) < 0
);
subTypeFromScriptableMMC.AddRange(lst);
}
- var dir = "Assets/GameScript/HotFix/GAS.UnityExt/Runtime/CodeGen";// gasSetting.LogicCodeGeneratePath;
+ var dir = gasSetting.LogicCodeGeneratePath;// gasSetting.LogicCodeGeneratePath;
CodeGenScriptableMMCInjecter.GenCode(new CodeGenInfo()
{
codeGenNameSpace = "JNGame.GAS",
diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/AbilityTask/OngoingAbilityTask.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/AbilityTask/OngoingAbilityTask.cs
index 99b85d9b..5fc91c53 100644
--- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/AbilityTask/OngoingAbilityTask.cs
+++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/Ability/TimelineAbility/AbilityTask/OngoingAbilityTask.cs
@@ -1,5 +1,6 @@
using JNGame.Serialization;
+using UnityEngine;
namespace GAS.Runtime
{
@@ -13,10 +14,11 @@ namespace GAS.Runtime
/// 编辑器预览用
/// 【注意】 覆写时,记得用UNITY_EDITOR宏包裹,这是预览表现用的函数,不该被编译。
///
+ ///
///
///
///
- public virtual void OnEditorPreview(int frame, int startFrame, int endFrame)
+ public virtual void OnEditorPreview(GameObject preview,int frame, int startFrame, int endFrame)
{
}
#endif
diff --git a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs
index 7c12aa8d..ae49ff7e 100644
--- a/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs
+++ b/JNFrame2/Assets/HotScripts/JNGame/Runtime/GAS/Runtime/JexGasManager.cs
@@ -18,7 +18,7 @@ namespace JNGame.Runtime.GAS.Runtime
#endif
//---------------- 全局信息 ------------------------------------------------------------------------------------------
- private static int _TimeLineAbilityTickTime = 20;
+ private static int _TimeLineAbilityTickTime = 100;
public static int TimeLineAbilityTickTime => _TimeLineAbilityTickTime;
public static int FrameRateValue => 1000 / _TimeLineAbilityTickTime;
diff --git a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity
index f0da5beb..303d774c 100644
--- a/JNFrame2/Assets/Resources/GASSamples/GASMain.unity
+++ b/JNFrame2/Assets/Resources/GASSamples/GASMain.unity
@@ -289,7 +289,7 @@ GameObject:
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
- m_IsActive: 0
+ m_IsActive: 1
--- !u!4 &1449950259
Transform:
m_ObjectHideFlags: 0
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility/OngoingAbility_Debug_Inspector.cs b/JNFrame2/Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility/OngoingAbility_Debug_Inspector.cs
index ea9ec7c4..9acec0d9 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility/OngoingAbility_Debug_Inspector.cs
+++ b/JNFrame2/Assets/Scripts/GASSamples/Editor/GAS/Ability/TaskInspector/OngoingAbility/OngoingAbility_Debug_Inspector.cs
@@ -23,11 +23,13 @@ namespace JNGame.GAS
private void OnStartChanged()
{
+ _task.start = start;
Save();
}
private void OnEndChanged()
{
+ _task.end = end;
Save();
}
diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes b/JNFrame2/Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes
index 2f99dcfa858417a8d7f30d918ae4d1144e40a0b1..7634d08857ea70813126d1398b53bcd60b0f82c8 100644
GIT binary patch
delta 61
zcmcb^IE`_FwLl~T69WqaCj$e69uQw-pEyy1xnbIjiHf4qObq-$ArT-30gw`R*Z6>(
I#LCnn09yD95dZ)H
literal 220
zcmZQ%;9_84@X9RC&v8l3%{N5l0j0158=&xf1{MYmu(T2B>
zocMs8#LCnnkg-e*{6J|Duwn)VPLNVps5A?MFjVRyJ5-)%ik-n6s+JLK0myzNTLF$C
B9Sr~g
diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes b/JNFrame2/Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes
index 7d98efcc76e07d3ad6595f5ad11508fd8c619ad6..1a6a4fd74d01ae339b8b346da336dfc0cff94556 100644
GIT binary patch
literal 261
zcmZQ%;ACK6aCeOl$VseBEnivCW(o!k
E00(t2B>(^b
literal 81
acmZQ%;ACK6aCeOl$VseBEn)<6C<6fR!UJRg
diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset
index 13fcc1d1..960b15be 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset
+++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset
@@ -27,16 +27,10 @@ MonoBehaviour:
frameCount: 60
durationalCues:
- trackName: "\u6301\u7EEDGameplayCue\u8F68\u9053"
- clipEvents:
- - startFrame: 0
- durationFrame: 53
- cue: {fileID: 11400000, guid: 0a77e9c8e20008944a99814e0b5a4aed, type: 2}
+ clipEvents: []
instantCues:
- trackName: "\u5373\u65F6Cue\u8F68\u9053"
- markEvents:
- - startFrame: 55
- cues:
- - {fileID: 11400000, guid: 041f193225d7b1e49a75af0003a4111b, type: 2}
+ markEvents: []
releaseGameplayEffect:
- trackName: "GameplayEffect\u91CA\u653E\u8F68\u9053"
markEvents: []
@@ -53,12 +47,12 @@ MonoBehaviour:
ongoingTasks:
- trackName: Task Clips
clipEvents:
- - startFrame: 19
- durationFrame: 20
+ - startFrame: 9
+ durationFrame: 46
ongoingTask:
taskData:
Type: JNGame.GAS.OngoingAbility_Debug
- Data: '{"start":{"x":{"rawValue":0,"MilliRawValue":0},"y":{"rawValue":0,"MilliRawValue":0},"z":{"rawValue":0,"MilliRawValue":0},"RawX":0,"RawY":0,"RawZ":0,"Magnitude":{"rawValue":0,"MilliRawValue":0},"SqrMagnitude":{"rawValue":0,"MilliRawValue":0},"RawSqrMagnitude":0},"end":{"x":{"rawValue":0,"MilliRawValue":0},"y":{"rawValue":0,"MilliRawValue":0},"z":{"rawValue":0,"MilliRawValue":0},"RawX":0,"RawY":0,"RawZ":0,"Magnitude":{"rawValue":0,"MilliRawValue":0},"SqrMagnitude":{"rawValue":0,"MilliRawValue":0},"RawSqrMagnitude":0},"TypeId":2001}'
+ Data: '{"start":{"x":{"rawValue":0,"MilliRawValue":0},"y":{"rawValue":0,"MilliRawValue":0},"z":{"rawValue":0,"MilliRawValue":0},"RawX":0,"RawY":0,"RawZ":0,"Magnitude":{"rawValue":0,"MilliRawValue":0},"SqrMagnitude":{"rawValue":0,"MilliRawValue":0},"RawSqrMagnitude":0},"end":{"x":{"rawValue":10000000,"MilliRawValue":10000},"y":{"rawValue":0,"MilliRawValue":0},"z":{"rawValue":0,"MilliRawValue":0},"RawX":10000000,"RawY":0,"RawZ":0,"Magnitude":{"rawValue":10000000,"MilliRawValue":10000},"SqrMagnitude":{"rawValue":100000000,"MilliRawValue":100000},"RawSqrMagnitude":100000000000000},"TypeId":2001}'
passiveGameplayEffects:
- trackName: Passive
clipEvents: []
diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset
index ca391169..36ab392b 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset
+++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_Player.asset
@@ -13,8 +13,8 @@ MonoBehaviour:
m_Name: GE_Player
m_EditorClassIdentifier: JNGame.Runtime:GAS.Runtime:GameplayEffectAsset
description:
- durationPolicy: 2
- duration: 0
+ durationPolicy: 3
+ duration: 1000
period: 0
periodExecutionId: 0
periodExecution: {fileID: 0}
@@ -29,9 +29,36 @@ MonoBehaviour:
clearStackOnOverflow: 0
overflowEffects: []
grantedAbilities: []
- modifiers: []
- assetTags: []
- grantedTags: []
+ modifiers:
+ - attributeName: AS_BaseAttribute.HP
+ attributeSetName: AS_BaseAttribute
+ attributeShortName: HP
+ modiferMagnitude:
+ rawValue: -10000000
+ operation: 0
+ mmc: {fileID: 11400000, guid: 331222964d02d1349b1a9c717605c8e9, type: 2}
+ assetTags:
+ - name: Buff
+ hashCode: 937056111
+ shortName: Buff
+ ancestorHashCodes:
+ ancestorNames: []
+ - name: DeBuff
+ hashCode: -251087900
+ shortName: DeBuff
+ ancestorHashCodes:
+ ancestorNames: []
+ grantedTags:
+ - name: Buff
+ hashCode: 937056111
+ shortName: Buff
+ ancestorHashCodes:
+ ancestorNames: []
+ - name: DeBuff
+ hashCode: -251087900
+ shortName: DeBuff
+ ancestorHashCodes:
+ ancestorNames: []
applicationRequiredTags: []
ongoingRequiredTags: []
removeGameplayEffectsWithTags: []
diff --git a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset
index 2627f975..d3e6d948 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset
+++ b/JNFrame2/Assets/Scripts/GASSamples/GAS/Config/ModMagnitudeCalculationLib/MMC_AttrModCalculation.asset
@@ -12,4 +12,4 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: b964e9ee395740d6b0f8e42978c1ba35, type: 3}
m_Name: MMC_AttrModCalculation
m_EditorClassIdentifier:
- Description: "\u57FA\u7840\u8FD0\u7B97"
+ description:
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs
index 07d25425..c9dd4be9 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs
@@ -2,14 +2,13 @@ using GAS.Runtime;
using JNGame.Math;
using UnityEngine;
-namespace GASSamples.Scripts.GAS.MMC
+namespace JNGame.GAS
{
-
///
/// 基础运算
///
[CreateAssetMenu(fileName = "AttrModCalculation", menuName = "GAS/MMC/AttrModCalculation")]
- public class AttrModCalculation : ModifierMagnitudeCalculation
+ public partial class AttrModCalculation : ModifierMagnitudeCalculation
{
public override LFloat CalculateMagnitude(GameplayEffectSpec spec, LFloat modifierMagnitude)
{
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure.meta
new file mode 100644
index 00000000..4ba243d3
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure.meta
@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 9fc319df13794dafaafc817e1f0d28e0
+timeCreated: 1729684521
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs
new file mode 100644
index 00000000..429d2b79
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs
@@ -0,0 +1,13 @@
+using GAS.Runtime;
+using JNGame.Math;
+
+namespace JNGame.GAS
+{
+ public partial class PureAttrModCalculation : PureModifierMagnitudeCalculation
+ {
+ public override LFloat CalculateMagnitude(GameplayEffectSpec spec, LFloat modifierMagnitude)
+ {
+ return modifierMagnitude;
+ }
+ }
+}
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs.meta
new file mode 100644
index 00000000..0b79f29a
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/MMC/Pure/PureAttrModCalculation.cs.meta
@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 245e55c61ef243a8a4fb6700840bbfbe
+timeCreated: 1729684529
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/OngoingAbilityTasks/OngoingAbility_Debug.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/OngoingAbilityTasks/OngoingAbility_Debug.cs
index 8c0aec48..0de0928b 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/OngoingAbilityTasks/OngoingAbility_Debug.cs
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GAS/OngoingAbilityTasks/OngoingAbility_Debug.cs
@@ -1,4 +1,5 @@
using GAS.Runtime;
+using GASSamples.Scripts.Game.GAS;
using JNGame.Math;
using UnityEngine;
@@ -15,13 +16,19 @@ namespace JNGame.GAS
/// 编辑器预览用
/// 【注意】 覆写时,记得用UNITY_EDITOR宏包裹,这是预览表现用的函数,不该被编译。
///
+ ///
///
///
///
- public override void OnEditorPreview(int frame, int startFrame, int endFrame)
+ public override void OnEditorPreview(GameObject preview,int frame, int startFrame, int endFrame)
{
Debug.Log($"OnEditorPreview {Vector3.Lerp(start.ToVector3(),end.ToVector3(),(float)frame / (float)endFrame)}");
- // _spec.Owner.gameObject.transform.position = Vector3.Lerp(start, end, (float)startFrame / endFrame);
+
+ if (frame >= startFrame && frame <= endFrame)
+ {
+ preview.transform.position = Vector3.Lerp(start.ToVector3(), end.ToVector3(), (float)(frame - startFrame) / endFrame);
+ }
+
}
#endif
@@ -37,7 +44,8 @@ namespace JNGame.GAS
public override void OnTick(int frameIndex, int startFrame, int endFrame)
{
- Debug.Log("OnTick");
+ Debug.Log($"OnTick {frameIndex} {startFrame} {endFrame}");
+ ((GAbilitySystemComponent)m_Spec.Owner).Entity.Transform.Position = LVector3.Lerp(start, end, (LFloat)(frameIndex - startFrame) / endFrame);
}
}
}
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_PureMMCExt.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_PureMMCExt.cs
index 36bab99b..6e973bc8 100644
--- a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_PureMMCExt.cs
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_PureMMCExt.cs
@@ -10,6 +10,7 @@ namespace JNGame.GAS
///
public enum EnumGameMMCType
{
+ PureAttrModCalculation = 11,
}
@@ -19,6 +20,7 @@ namespace JNGame.GAS
{
private partial void InternalMMCInject()
{
+ MMCFactory.Register((ushort)EnumGameMMCType.PureAttrModCalculation, () => new JNGame.GAS.PureAttrModCalculation());
}
}
@@ -27,6 +29,7 @@ namespace JNGame.GAS
#region MMC枚举ID自动生成
+ public partial class PureAttrModCalculation { public override ushort TypeId => (ushort)EnumGameMMCType.PureAttrModCalculation; }
#endregion
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs
new file mode 100644
index 00000000..a69dd694
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs
@@ -0,0 +1,15 @@
+
+// auto generate by tools, DO NOT Modify it!!!
+
+using GAS.Runtime;
+
+namespace JNGame.GAS
+{
+ #region MMC枚举ID自动生成
+
+ public partial class AttrModCalculation { public override ushort TypeId => (ushort)EnumGameMMCType.PureAttrModCalculation; }
+
+
+ #endregion
+
+}
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs.meta
new file mode 100644
index 00000000..b872b817
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExt.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 512ade587fbbbe74f9222d8706fc0d52
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs
new file mode 100644
index 00000000..278f549d
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs
@@ -0,0 +1,6 @@
+
+// auto generate by tools, DO NOT Modify it!!!
+
+using GAS.Runtime;
+using JNGame.Serialization;
+
\ No newline at end of file
diff --git a/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs.meta b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs.meta
new file mode 100644
index 00000000..f1c4ef57
--- /dev/null
+++ b/JNFrame2/Assets/Scripts/GASSamples/Scripts/GenCode/CodeGen_ScriptableMMCExtSerialization.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: f93367265969138459490f9610f26310
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/JNFrame2/GASSamples.csproj b/JNFrame2/GASSamples.csproj
index 4d66e253..3ecf8c85 100644
--- a/JNFrame2/GASSamples.csproj
+++ b/JNFrame2/GASSamples.csproj
@@ -88,6 +88,7 @@
+
@@ -102,11 +103,13 @@
+
+
diff --git a/JNFrame2/Logs/AssetImportWorker0-prev.log b/JNFrame2/Logs/AssetImportWorker0-prev.log
index f30cd63c..72c3dad0 100644
--- a/JNFrame2/Logs/AssetImportWorker0-prev.log
+++ b/JNFrame2/Logs/AssetImportWorker0-prev.log
@@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2
-logFile
Logs/AssetImportWorker0.log
-srvPort
-52918
+50224
Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
D:/myproject/JisolGame/JNFrame2
[UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,11 +49,11 @@ D:/myproject/JisolGame/JNFrame2
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
-Player connection [5988] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 10919385 [EditorId] 10919385 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [25340] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 529049750 [EditorId] 529049750 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
-Player connection [5988] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 10919385 [EditorId] 10919385 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [25340] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 529049750 [EditorId] 529049750 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
-Refreshing native plugins compatible for Editor in 188.21 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 105.17 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.1f1 (f18e0c1b5784)
[Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems
@@ -69,44 +69,44 @@ Initialize mono
Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed'
Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56556
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56720
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Registered in 0.005469 seconds.
-- Loaded All Assemblies, in 0.558 seconds
+Registered in 0.009304 seconds.
+- Loaded All Assemblies, in 0.660 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 5.613 seconds
-Domain Reload Profiling: 6170ms
- BeginReloadAssembly (116ms)
+- Finished resetting the current domain, in 0.451 seconds
+Domain Reload Profiling: 1105ms
+ BeginReloadAssembly (204ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (1ms)
- RebuildCommonClasses (36ms)
- RebuildNativeTypeToScriptingClass (9ms)
- initialDomainReloadingComplete (63ms)
- LoadAllAssembliesAndSetupDomain (332ms)
- LoadAssemblies (112ms)
+ CreateAndSetChildDomain (2ms)
+ RebuildCommonClasses (59ms)
+ RebuildNativeTypeToScriptingClass (20ms)
+ initialDomainReloadingComplete (115ms)
+ LoadAllAssembliesAndSetupDomain (256ms)
+ LoadAssemblies (201ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (325ms)
- TypeCache.Refresh (324ms)
- TypeCache.ScanAssembly (300ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
+ AnalyzeDomain (236ms)
+ TypeCache.Refresh (234ms)
+ TypeCache.ScanAssembly (211ms)
+ ScanForSourceGeneratedMonoScriptInfo (1ms)
ResolveRequiredComponents (1ms)
- FinalizeReload (5614ms)
+ FinalizeReload (451ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (5477ms)
+ SetupLoadedEditorAssemblies (351ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (30ms)
- SetLoadedEditorAssemblies (24ms)
+ InitializePlatformSupportModulesInManaged (15ms)
+ SetLoadedEditorAssemblies (12ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (5ms)
- ProcessInitializeOnLoadAttributes (4415ms)
- ProcessInitializeOnLoadMethodAttributes (1003ms)
+ BeforeProcessingInitializeOnLoad (4ms)
+ ProcessInitializeOnLoadAttributes (210ms)
+ ProcessInitializeOnLoadMethodAttributes (110ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
@@ -114,8 +114,8 @@ Domain Reload Profiling: 6170ms
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.730 seconds
-Refreshing native plugins compatible for Editor in 49.91 ms, found 3 plugins.
+- Loaded All Assemblies, in 2.009 seconds
+Refreshing native plugins compatible for Editor in 49.78 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Package Manager log level set to [2]
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
@@ -132,75 +132,78 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-Launched and connected shader compiler UnityShaderCompiler.exe after 0.20 seconds
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.11 seconds
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 3.697 seconds
-Domain Reload Profiling: 6389ms
- BeginReloadAssembly (226ms)
+- Finished resetting the current domain, in 2.134 seconds
+Domain Reload Profiling: 4135ms
+ BeginReloadAssembly (208ms)
ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
+ DisableScriptedObjects (8ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (30ms)
- RebuildCommonClasses (75ms)
- RebuildNativeTypeToScriptingClass (18ms)
- initialDomainReloadingComplete (151ms)
- LoadAllAssembliesAndSetupDomain (2222ms)
- LoadAssemblies (1448ms)
+ CreateAndSetChildDomain (37ms)
+ RebuildCommonClasses (46ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (81ms)
+ LoadAllAssembliesAndSetupDomain (1653ms)
+ LoadAssemblies (1105ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (876ms)
- TypeCache.Refresh (813ms)
- TypeCache.ScanAssembly (783ms)
- ScanForSourceGeneratedMonoScriptInfo (47ms)
- ResolveRequiredComponents (16ms)
- FinalizeReload (3698ms)
+ AnalyzeDomain (641ms)
+ TypeCache.Refresh (589ms)
+ TypeCache.ScanAssembly (561ms)
+ ScanForSourceGeneratedMonoScriptInfo (40ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2135ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (3284ms)
+ SetupLoadedEditorAssemblies (1875ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (17ms)
- SetLoadedEditorAssemblies (19ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (235ms)
- ProcessInitializeOnLoadAttributes (1298ms)
- ProcessInitializeOnLoadMethodAttributes (1659ms)
- AfterProcessingInitializeOnLoad (54ms)
- EditorAssembliesLoaded (2ms)
+ BeforeProcessingInitializeOnLoad (160ms)
+ ProcessInitializeOnLoadAttributes (903ms)
+ ProcessInitializeOnLoadMethodAttributes (785ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (44ms)
+ AwakeInstancesAfterBackupRestoration (14ms)
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 86.06 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 58.98 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5651 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 183 unused Assets / (232.9 KB). Loaded Objects now: 6101.
-Memory consumption went from 197.9 MB to 197.7 MB.
-Total: 39.739800 ms (FindLiveObjects: 0.638300 ms CreateObjectMapping: 0.524300 ms MarkObjects: 38.153800 ms DeleteObjects: 0.421700 ms)
+Unloading 5656 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 183 unused Assets / (232.8 KB). Loaded Objects now: 6106.
+Memory consumption went from 197.8 MB to 197.6 MB.
+Total: 25.361300 ms (FindLiveObjects: 0.473100 ms CreateObjectMapping: 0.451200 ms MarkObjects: 23.660100 ms DeleteObjects: 0.774300 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
========================================================================
Received Import Request.
- Time since last request: 31993.069522 seconds.
- path: Assets/Scripts/GASSamples/Scripts/App.cs
- artifactKey: Guid(f3e00a9df020484eb50717285a43b5ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/GASSamples/Scripts/App.cs using Guid(f3e00a9df020484eb50717285a43b5ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffb0d4db36034ca8c999158eaedb24b2') in 0.012296 seconds
+ Time since last request: 18904.685016 seconds.
+ path: Assets/Scripts/GASSamples/GAS/Binary
+ artifactKey: Guid(fca1ab4bbda0cb849907a4b17d669c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/Scripts/GASSamples/GAS/Binary using Guid(fca1ab4bbda0cb849907a4b17d669c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af688527f12be1b4bf8b4576d3e06b8f') in 0.003537 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.693 seconds
-Refreshing native plugins compatible for Editor in 33.03 ms, found 3 plugins.
+- Loaded All Assemblies, in 1.825 seconds
+Refreshing native plugins compatible for Editor in 41.83 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
@@ -217,48 +220,1458 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.680 seconds
-Domain Reload Profiling: 3367ms
- BeginReloadAssembly (277ms)
+- Finished resetting the current domain, in 2.323 seconds
+Domain Reload Profiling: 4140ms
+ BeginReloadAssembly (229ms)
ExecutionOrderSort (0ms)
- DisableScriptedObjects (7ms)
+ DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (133ms)
+ CreateAndSetChildDomain (86ms)
+ RebuildCommonClasses (55ms)
+ RebuildNativeTypeToScriptingClass (17ms)
+ initialDomainReloadingComplete (102ms)
+ LoadAllAssembliesAndSetupDomain (1412ms)
+ LoadAssemblies (976ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (522ms)
+ TypeCache.Refresh (509ms)
+ TypeCache.ScanAssembly (477ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2325ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1200ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (144ms)
+ ProcessInitializeOnLoadAttributes (616ms)
+ ProcessInitializeOnLoadMethodAttributes (407ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (7ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (32ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 41.95 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5639 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (204.9 KB). Loaded Objects now: 6121.
+Memory consumption went from 194.8 MB to 194.6 MB.
+Total: 22.875000 ms (FindLiveObjects: 0.694500 ms CreateObjectMapping: 0.662300 ms MarkObjects: 21.098100 ms DeleteObjects: 0.417700 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.151 seconds
+Refreshing native plugins compatible for Editor in 58.46 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 3.951 seconds
+Domain Reload Profiling: 6094ms
+ BeginReloadAssembly (249ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (112ms)
+ RebuildCommonClasses (37ms)
+ RebuildNativeTypeToScriptingClass (14ms)
+ initialDomainReloadingComplete (79ms)
+ LoadAllAssembliesAndSetupDomain (1763ms)
+ LoadAssemblies (1090ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (736ms)
+ TypeCache.Refresh (722ms)
+ TypeCache.ScanAssembly (692ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (3953ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (2335ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (242ms)
+ ProcessInitializeOnLoadAttributes (1329ms)
+ ProcessInitializeOnLoadMethodAttributes (724ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (42ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 107.91 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6136.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 32.310900 ms (FindLiveObjects: 1.066400 ms CreateObjectMapping: 1.292300 ms MarkObjects: 29.487300 ms DeleteObjects: 0.462100 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.960 seconds
+Refreshing native plugins compatible for Editor in 48.92 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.026 seconds
+Domain Reload Profiling: 3978ms
+ BeginReloadAssembly (309ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (131ms)
+ RebuildCommonClasses (44ms)
+ RebuildNativeTypeToScriptingClass (15ms)
+ initialDomainReloadingComplete (84ms)
+ LoadAllAssembliesAndSetupDomain (1499ms)
+ LoadAssemblies (977ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (620ms)
+ TypeCache.Refresh (606ms)
+ TypeCache.ScanAssembly (574ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (2027ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (962ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (140ms)
+ ProcessInitializeOnLoadAttributes (462ms)
+ ProcessInitializeOnLoadMethodAttributes (327ms)
+ AfterProcessingInitializeOnLoad (16ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (33ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 34.07 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6151.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 17.344500 ms (FindLiveObjects: 0.459400 ms CreateObjectMapping: 0.263300 ms MarkObjects: 16.360500 ms DeleteObjects: 0.258900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.464 seconds
+Refreshing native plugins compatible for Editor in 44.49 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 1.812 seconds
+Domain Reload Profiling: 3270ms
+ BeginReloadAssembly (218ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (87ms)
+ RebuildCommonClasses (36ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (69ms)
+ LoadAllAssembliesAndSetupDomain (1119ms)
+ LoadAssemblies (744ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (448ms)
+ TypeCache.Refresh (438ms)
+ TypeCache.ScanAssembly (417ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (10ms)
+ FinalizeReload (1814ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (875ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (6ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (128ms)
+ ProcessInitializeOnLoadAttributes (426ms)
+ ProcessInitializeOnLoadMethodAttributes (295ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (25ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 39.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6166.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 24.631900 ms (FindLiveObjects: 0.455900 ms CreateObjectMapping: 0.233300 ms MarkObjects: 23.563100 ms DeleteObjects: 0.377100 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Import Request.
+ Time since last request: 528.989586 seconds.
+ path: Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes
+ artifactKey: Guid(55f106e119a6897439630e254550d8fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes using Guid(55f106e119a6897439630e254550d8fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8686061f3ea32022c61632a61708e5') in 0.015688 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 1
+========================================================================
+Received Import Request.
+ Time since last request: 38.474520 seconds.
+ path: Assets/Scripts/GASSamples/GAS/Binary/ASC_Database.bytes
+ artifactKey: Guid(2a02b2265d30a464a989f2d4b3e9adac) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/Scripts/GASSamples/GAS/Binary/ASC_Database.bytes using Guid(2a02b2265d30a464a989f2d4b3e9adac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0592a01c25039da30220d9a672b7fb63') in 0.001777 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 1
+========================================================================
+Received Import Request.
+ Time since last request: 2.208963 seconds.
+ path: Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes
+ artifactKey: Guid(8f64d28cf3a48454c9421439e97c85fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes using Guid(8f64d28cf3a48454c9421439e97c85fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10be751bdb43f7f6d24c5f239f1ac377') in 0.002110 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 1
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.870 seconds
+Refreshing native plugins compatible for Editor in 39.54 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.208 seconds
+Domain Reload Profiling: 4071ms
+ BeginReloadAssembly (280ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (140ms)
+ RebuildCommonClasses (39ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (68ms)
+ LoadAllAssembliesAndSetupDomain (1462ms)
+ LoadAssemblies (987ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (546ms)
+ TypeCache.Refresh (534ms)
+ TypeCache.ScanAssembly (505ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2209ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1059ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (142ms)
+ ProcessInitializeOnLoadAttributes (571ms)
+ ProcessInitializeOnLoadMethodAttributes (317ms)
+ AfterProcessingInitializeOnLoad (12ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (24ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 45.63 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5639 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6182.
+Memory consumption went from 194.8 MB to 194.6 MB.
+Total: 22.985700 ms (FindLiveObjects: 0.689500 ms CreateObjectMapping: 0.285400 ms MarkObjects: 21.271900 ms DeleteObjects: 0.734900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.774 seconds
+Refreshing native plugins compatible for Editor in 47.51 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.110 seconds
+Domain Reload Profiling: 3877ms
+ BeginReloadAssembly (359ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (168ms)
+ RebuildCommonClasses (44ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (85ms)
+ LoadAllAssembliesAndSetupDomain (1266ms)
+ LoadAssemblies (930ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (436ms)
+ TypeCache.Refresh (421ms)
+ TypeCache.ScanAssembly (386ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (15ms)
+ FinalizeReload (2111ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1053ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (5ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (132ms)
+ ProcessInitializeOnLoadAttributes (517ms)
+ ProcessInitializeOnLoadMethodAttributes (378ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (28ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 31.77 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6197.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 16.651300 ms (FindLiveObjects: 0.375700 ms CreateObjectMapping: 0.209000 ms MarkObjects: 15.805300 ms DeleteObjects: 0.258400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.573 seconds
+Refreshing native plugins compatible for Editor in 39.65 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.129 seconds
+Domain Reload Profiling: 3717ms
+ BeginReloadAssembly (238ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (100ms)
RebuildCommonClasses (36ms)
RebuildNativeTypeToScriptingClass (12ms)
initialDomainReloadingComplete (72ms)
- LoadAllAssembliesAndSetupDomain (1290ms)
- LoadAssemblies (960ms)
+ LoadAllAssembliesAndSetupDomain (1208ms)
+ LoadAssemblies (850ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (395ms)
- TypeCache.Refresh (381ms)
- TypeCache.ScanAssembly (338ms)
- ScanForSourceGeneratedMonoScriptInfo (7ms)
- ResolveRequiredComponents (8ms)
- FinalizeReload (1680ms)
+ AnalyzeDomain (435ms)
+ TypeCache.Refresh (421ms)
+ TypeCache.ScanAssembly (393ms)
+ ScanForSourceGeneratedMonoScriptInfo (6ms)
+ ResolveRequiredComponents (9ms)
+ FinalizeReload (2151ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (873ms)
+ SetupLoadedEditorAssemblies (1065ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (7ms)
SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (115ms)
- ProcessInitializeOnLoadAttributes (396ms)
- ProcessInitializeOnLoadMethodAttributes (339ms)
- AfterProcessingInitializeOnLoad (9ms)
- EditorAssembliesLoaded (1ms)
+ BeforeProcessingInitializeOnLoad (126ms)
+ ProcessInitializeOnLoadAttributes (568ms)
+ ProcessInitializeOnLoadMethodAttributes (345ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (2ms)
ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (20ms)
+ AwakeInstancesAfterBackupRestoration (36ms)
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 75.42 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 33.33 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5635 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6117.
-Memory consumption went from 195.0 MB to 194.8 MB.
-Total: 33.105500 ms (FindLiveObjects: 0.856600 ms CreateObjectMapping: 1.832900 ms MarkObjects: 29.891000 ms DeleteObjects: 0.522700 ms)
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6212.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 28.266200 ms (FindLiveObjects: 0.657700 ms CreateObjectMapping: 0.469500 ms MarkObjects: 26.585700 ms DeleteObjects: 0.549500 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.810 seconds
+Refreshing native plugins compatible for Editor in 72.09 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.158 seconds
+Domain Reload Profiling: 3962ms
+ BeginReloadAssembly (240ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (103ms)
+ RebuildCommonClasses (41ms)
+ RebuildNativeTypeToScriptingClass (14ms)
+ initialDomainReloadingComplete (73ms)
+ LoadAllAssembliesAndSetupDomain (1434ms)
+ LoadAssemblies (861ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (643ms)
+ TypeCache.Refresh (625ms)
+ TypeCache.ScanAssembly (587ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (18ms)
+ FinalizeReload (2160ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1065ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (160ms)
+ ProcessInitializeOnLoadAttributes (533ms)
+ ProcessInitializeOnLoadMethodAttributes (337ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (4ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (37ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 54.40 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6227.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 25.569000 ms (FindLiveObjects: 1.030000 ms CreateObjectMapping: 0.864300 ms MarkObjects: 23.376000 ms DeleteObjects: 0.297300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.575 seconds
+Refreshing native plugins compatible for Editor in 57.09 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 1.910 seconds
+Domain Reload Profiling: 3478ms
+ BeginReloadAssembly (222ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (84ms)
+ RebuildCommonClasses (39ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (78ms)
+ LoadAllAssembliesAndSetupDomain (1216ms)
+ LoadAssemblies (831ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (462ms)
+ TypeCache.Refresh (441ms)
+ TypeCache.ScanAssembly (400ms)
+ ScanForSourceGeneratedMonoScriptInfo (1ms)
+ ResolveRequiredComponents (21ms)
+ FinalizeReload (1911ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (939ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (6ms)
+ SetLoadedEditorAssemblies (5ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (122ms)
+ ProcessInitializeOnLoadAttributes (459ms)
+ ProcessInitializeOnLoadMethodAttributes (333ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (34ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 35.37 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6242.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 16.493500 ms (FindLiveObjects: 0.445300 ms CreateObjectMapping: 0.234600 ms MarkObjects: 15.529700 ms DeleteObjects: 0.282300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.685 seconds
+Refreshing native plugins compatible for Editor in 46.22 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.315 seconds
+Domain Reload Profiling: 3994ms
+ BeginReloadAssembly (312ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (127ms)
+ RebuildCommonClasses (38ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (68ms)
+ LoadAllAssembliesAndSetupDomain (1248ms)
+ LoadAssemblies (848ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (476ms)
+ TypeCache.Refresh (464ms)
+ TypeCache.ScanAssembly (436ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (11ms)
+ FinalizeReload (2317ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1052ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (151ms)
+ ProcessInitializeOnLoadAttributes (496ms)
+ ProcessInitializeOnLoadMethodAttributes (373ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (24ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 39.72 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6257.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 27.219100 ms (FindLiveObjects: 0.767000 ms CreateObjectMapping: 0.525400 ms MarkObjects: 25.373100 ms DeleteObjects: 0.550700 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.438 seconds
+Refreshing native plugins compatible for Editor in 117.71 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 3.100 seconds
+Domain Reload Profiling: 5543ms
+ BeginReloadAssembly (255ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (102ms)
+ RebuildCommonClasses (51ms)
+ RebuildNativeTypeToScriptingClass (16ms)
+ initialDomainReloadingComplete (87ms)
+ LoadAllAssembliesAndSetupDomain (2018ms)
+ LoadAssemblies (1040ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (1064ms)
+ TypeCache.Refresh (1027ms)
+ TypeCache.ScanAssembly (986ms)
+ ScanForSourceGeneratedMonoScriptInfo (13ms)
+ ResolveRequiredComponents (24ms)
+ FinalizeReload (3116ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1480ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (11ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (225ms)
+ ProcessInitializeOnLoadAttributes (790ms)
+ ProcessInitializeOnLoadMethodAttributes (429ms)
+ AfterProcessingInitializeOnLoad (17ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (40ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 44.84 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6272.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 30.868500 ms (FindLiveObjects: 0.968000 ms CreateObjectMapping: 1.655300 ms MarkObjects: 27.665300 ms DeleteObjects: 0.576900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.875 seconds
+Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.181 seconds
+Domain Reload Profiling: 4045ms
+ BeginReloadAssembly (355ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (158ms)
+ RebuildCommonClasses (58ms)
+ RebuildNativeTypeToScriptingClass (15ms)
+ initialDomainReloadingComplete (129ms)
+ LoadAllAssembliesAndSetupDomain (1304ms)
+ LoadAssemblies (961ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (462ms)
+ TypeCache.Refresh (452ms)
+ TypeCache.ScanAssembly (425ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (10ms)
+ FinalizeReload (2184ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1103ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (166ms)
+ ProcessInitializeOnLoadAttributes (596ms)
+ ProcessInitializeOnLoadMethodAttributes (314ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (3ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (30ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 29.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6287.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 18.944800 ms (FindLiveObjects: 0.709500 ms CreateObjectMapping: 0.224000 ms MarkObjects: 17.692600 ms DeleteObjects: 0.316000 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.762 seconds
+Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.027 seconds
+Domain Reload Profiling: 3780ms
+ BeginReloadAssembly (324ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (10ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (145ms)
+ RebuildCommonClasses (47ms)
+ RebuildNativeTypeToScriptingClass (14ms)
+ initialDomainReloadingComplete (82ms)
+ LoadAllAssembliesAndSetupDomain (1284ms)
+ LoadAssemblies (966ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (424ms)
+ TypeCache.Refresh (408ms)
+ TypeCache.ScanAssembly (384ms)
+ ScanForSourceGeneratedMonoScriptInfo (4ms)
+ ResolveRequiredComponents (11ms)
+ FinalizeReload (2029ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1043ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (159ms)
+ ProcessInitializeOnLoadAttributes (519ms)
+ ProcessInitializeOnLoadMethodAttributes (337ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (43ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 37.84 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6302.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 17.861500 ms (FindLiveObjects: 0.600500 ms CreateObjectMapping: 0.441000 ms MarkObjects: 16.360200 ms DeleteObjects: 0.456300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.847 seconds
+Refreshing native plugins compatible for Editor in 41.44 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.236 seconds
+Domain Reload Profiling: 5075ms
+ BeginReloadAssembly (1485ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (39ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (1080ms)
+ RebuildCommonClasses (62ms)
+ RebuildNativeTypeToScriptingClass (16ms)
+ initialDomainReloadingComplete (92ms)
+ LoadAllAssembliesAndSetupDomain (1182ms)
+ LoadAssemblies (968ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (429ms)
+ TypeCache.Refresh (416ms)
+ TypeCache.ScanAssembly (394ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2238ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1138ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (7ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (149ms)
+ ProcessInitializeOnLoadAttributes (572ms)
+ ProcessInitializeOnLoadMethodAttributes (386ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (3ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (35ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 41.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6317.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 22.422000 ms (FindLiveObjects: 0.592500 ms CreateObjectMapping: 0.251200 ms MarkObjects: 21.246100 ms DeleteObjects: 0.329100 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.897 seconds
+Refreshing native plugins compatible for Editor in 59.69 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.727 seconds
+Domain Reload Profiling: 4621ms
+ BeginReloadAssembly (230ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (95ms)
+ RebuildCommonClasses (42ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (74ms)
+ LoadAllAssembliesAndSetupDomain (1531ms)
+ LoadAssemblies (972ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (623ms)
+ TypeCache.Refresh (609ms)
+ TypeCache.ScanAssembly (580ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (2729ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1307ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (11ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (200ms)
+ ProcessInitializeOnLoadAttributes (634ms)
+ ProcessInitializeOnLoadMethodAttributes (426ms)
+ AfterProcessingInitializeOnLoad (26ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (57ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 48.85 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6332.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 22.243800 ms (FindLiveObjects: 0.866300 ms CreateObjectMapping: 0.562800 ms MarkObjects: 20.256700 ms DeleteObjects: 0.555500 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.047 seconds
+Refreshing native plugins compatible for Editor in 43.88 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.306 seconds
+Domain Reload Profiling: 4334ms
+ BeginReloadAssembly (292ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (126ms)
+ RebuildCommonClasses (45ms)
+ RebuildNativeTypeToScriptingClass (16ms)
+ initialDomainReloadingComplete (144ms)
+ LoadAllAssembliesAndSetupDomain (1529ms)
+ LoadAssemblies (1075ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (554ms)
+ TypeCache.Refresh (542ms)
+ TypeCache.ScanAssembly (506ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2307ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1196ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (169ms)
+ ProcessInitializeOnLoadAttributes (653ms)
+ ProcessInitializeOnLoadMethodAttributes (343ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (37ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 72.10 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6347.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 30.033400 ms (FindLiveObjects: 0.859400 ms CreateObjectMapping: 0.999300 ms MarkObjects: 27.739700 ms DeleteObjects: 0.432300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.708 seconds
+Refreshing native plugins compatible for Editor in 44.94 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.444 seconds
+Domain Reload Profiling: 4141ms
+ BeginReloadAssembly (240ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (92ms)
+ RebuildCommonClasses (42ms)
+ RebuildNativeTypeToScriptingClass (14ms)
+ initialDomainReloadingComplete (79ms)
+ LoadAllAssembliesAndSetupDomain (1322ms)
+ LoadAssemblies (892ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (513ms)
+ TypeCache.Refresh (500ms)
+ TypeCache.ScanAssembly (469ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2445ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1181ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (182ms)
+ ProcessInitializeOnLoadAttributes (620ms)
+ ProcessInitializeOnLoadMethodAttributes (344ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (7ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (31ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 41.15 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6362.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 20.955400 ms (FindLiveObjects: 0.425800 ms CreateObjectMapping: 0.394500 ms MarkObjects: 19.657700 ms DeleteObjects: 0.475300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.970 seconds
+Refreshing native plugins compatible for Editor in 81.41 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.749 seconds
+Domain Reload Profiling: 4712ms
+ BeginReloadAssembly (226ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (82ms)
+ RebuildCommonClasses (34ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (72ms)
+ LoadAllAssembliesAndSetupDomain (1618ms)
+ LoadAssemblies (970ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (720ms)
+ TypeCache.Refresh (703ms)
+ TypeCache.ScanAssembly (657ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (17ms)
+ FinalizeReload (2750ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1320ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (13ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (178ms)
+ ProcessInitializeOnLoadAttributes (674ms)
+ ProcessInitializeOnLoadMethodAttributes (426ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (27ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 49.73 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6377.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 22.883100 ms (FindLiveObjects: 1.043600 ms CreateObjectMapping: 0.629800 ms MarkObjects: 20.880500 ms DeleteObjects: 0.326500 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.661 seconds
+Refreshing native plugins compatible for Editor in 47.22 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.443 seconds
+Domain Reload Profiling: 4093ms
+ BeginReloadAssembly (232ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (96ms)
+ RebuildCommonClasses (46ms)
+ RebuildNativeTypeToScriptingClass (15ms)
+ initialDomainReloadingComplete (83ms)
+ LoadAllAssembliesAndSetupDomain (1272ms)
+ LoadAssemblies (879ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (463ms)
+ TypeCache.Refresh (451ms)
+ TypeCache.ScanAssembly (423ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2445ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1144ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (168ms)
+ ProcessInitializeOnLoadAttributes (543ms)
+ ProcessInitializeOnLoadMethodAttributes (399ms)
+ AfterProcessingInitializeOnLoad (17ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (43ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 39.41 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.0 KB). Loaded Objects now: 6392.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 21.882600 ms (FindLiveObjects: 0.654800 ms CreateObjectMapping: 0.765900 ms MarkObjects: 19.909600 ms DeleteObjects: 0.551100 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
diff --git a/JNFrame2/Logs/AssetImportWorker0.log b/JNFrame2/Logs/AssetImportWorker0.log
index 72c3dad0..cee054cd 100644
--- a/JNFrame2/Logs/AssetImportWorker0.log
+++ b/JNFrame2/Logs/AssetImportWorker0.log
@@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2
-logFile
Logs/AssetImportWorker0.log
-srvPort
-50224
+62834
Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
D:/myproject/JisolGame/JNFrame2
[UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,11 +49,11 @@ D:/myproject/JisolGame/JNFrame2
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
-Player connection [25340] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 529049750 [EditorId] 529049750 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [31896] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1116651084 [EditorId] 1116651084 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
-Player connection [25340] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 529049750 [EditorId] 529049750 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [31896] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1116651084 [EditorId] 1116651084 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
-Refreshing native plugins compatible for Editor in 105.17 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 71.08 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.1f1 (f18e0c1b5784)
[Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems
@@ -69,44 +69,44 @@ Initialize mono
Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed'
Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56720
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56520
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Registered in 0.009304 seconds.
-- Loaded All Assemblies, in 0.660 seconds
+Registered in 0.008671 seconds.
+- Loaded All Assemblies, in 0.598 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 0.451 seconds
-Domain Reload Profiling: 1105ms
- BeginReloadAssembly (204ms)
+- Finished resetting the current domain, in 0.354 seconds
+Domain Reload Profiling: 948ms
+ BeginReloadAssembly (153ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (2ms)
- RebuildCommonClasses (59ms)
- RebuildNativeTypeToScriptingClass (20ms)
- initialDomainReloadingComplete (115ms)
- LoadAllAssembliesAndSetupDomain (256ms)
- LoadAssemblies (201ms)
+ CreateAndSetChildDomain (1ms)
+ RebuildCommonClasses (91ms)
+ RebuildNativeTypeToScriptingClass (16ms)
+ initialDomainReloadingComplete (96ms)
+ LoadAllAssembliesAndSetupDomain (237ms)
+ LoadAssemblies (147ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (236ms)
- TypeCache.Refresh (234ms)
- TypeCache.ScanAssembly (211ms)
+ AnalyzeDomain (227ms)
+ TypeCache.Refresh (226ms)
+ TypeCache.ScanAssembly (206ms)
ScanForSourceGeneratedMonoScriptInfo (1ms)
ResolveRequiredComponents (1ms)
- FinalizeReload (451ms)
+ FinalizeReload (355ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (351ms)
+ SetupLoadedEditorAssemblies (277ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (15ms)
- SetLoadedEditorAssemblies (12ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (11ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (4ms)
- ProcessInitializeOnLoadAttributes (210ms)
- ProcessInitializeOnLoadMethodAttributes (110ms)
+ BeforeProcessingInitializeOnLoad (3ms)
+ ProcessInitializeOnLoadAttributes (180ms)
+ ProcessInitializeOnLoadMethodAttributes (69ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
@@ -114,8 +114,8 @@ Domain Reload Profiling: 1105ms
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.009 seconds
-Refreshing native plugins compatible for Editor in 49.78 ms, found 3 plugins.
+- Loaded All Assemblies, in 1.920 seconds
+Refreshing native plugins compatible for Editor in 47.46 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Package Manager log level set to [2]
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
@@ -132,1318 +132,296 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-Launched and connected shader compiler UnityShaderCompiler.exe after 0.11 seconds
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.134 seconds
-Domain Reload Profiling: 4135ms
- BeginReloadAssembly (208ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (37ms)
- RebuildCommonClasses (46ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (81ms)
- LoadAllAssembliesAndSetupDomain (1653ms)
- LoadAssemblies (1105ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (641ms)
- TypeCache.Refresh (589ms)
- TypeCache.ScanAssembly (561ms)
- ScanForSourceGeneratedMonoScriptInfo (40ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2135ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1875ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (8ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (160ms)
- ProcessInitializeOnLoadAttributes (903ms)
- ProcessInitializeOnLoadMethodAttributes (785ms)
- AfterProcessingInitializeOnLoad (10ms)
- 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 58.98 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5656 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 183 unused Assets / (232.8 KB). Loaded Objects now: 6106.
-Memory consumption went from 197.8 MB to 197.6 MB.
-Total: 25.361300 ms (FindLiveObjects: 0.473100 ms CreateObjectMapping: 0.451200 ms MarkObjects: 23.660100 ms DeleteObjects: 0.774300 ms)
-
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Import Request.
- Time since last request: 18904.685016 seconds.
- path: Assets/Scripts/GASSamples/GAS/Binary
- artifactKey: Guid(fca1ab4bbda0cb849907a4b17d669c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/GASSamples/GAS/Binary using Guid(fca1ab4bbda0cb849907a4b17d669c5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af688527f12be1b4bf8b4576d3e06b8f') in 0.003537 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.825 seconds
-Refreshing native plugins compatible for Editor in 41.83 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.323 seconds
-Domain Reload Profiling: 4140ms
- BeginReloadAssembly (229ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (86ms)
- RebuildCommonClasses (55ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (102ms)
- LoadAllAssembliesAndSetupDomain (1412ms)
- LoadAssemblies (976ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (522ms)
- TypeCache.Refresh (509ms)
- TypeCache.ScanAssembly (477ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (2325ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1200ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (144ms)
- ProcessInitializeOnLoadAttributes (616ms)
- ProcessInitializeOnLoadMethodAttributes (407ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (7ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (32ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 41.95 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5639 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (204.9 KB). Loaded Objects now: 6121.
-Memory consumption went from 194.8 MB to 194.6 MB.
-Total: 22.875000 ms (FindLiveObjects: 0.694500 ms CreateObjectMapping: 0.662300 ms MarkObjects: 21.098100 ms DeleteObjects: 0.417700 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.151 seconds
-Refreshing native plugins compatible for Editor in 58.46 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 3.951 seconds
-Domain Reload Profiling: 6094ms
- BeginReloadAssembly (249ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (112ms)
- RebuildCommonClasses (37ms)
- RebuildNativeTypeToScriptingClass (14ms)
- initialDomainReloadingComplete (79ms)
- LoadAllAssembliesAndSetupDomain (1763ms)
- LoadAssemblies (1090ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (736ms)
- TypeCache.Refresh (722ms)
- TypeCache.ScanAssembly (692ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (3953ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (2335ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (8ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (242ms)
- ProcessInitializeOnLoadAttributes (1329ms)
- ProcessInitializeOnLoadMethodAttributes (724ms)
- AfterProcessingInitializeOnLoad (18ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (42ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 107.91 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6136.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 32.310900 ms (FindLiveObjects: 1.066400 ms CreateObjectMapping: 1.292300 ms MarkObjects: 29.487300 ms DeleteObjects: 0.462100 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.960 seconds
-Refreshing native plugins compatible for Editor in 48.92 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.026 seconds
-Domain Reload Profiling: 3978ms
- BeginReloadAssembly (309ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (131ms)
- RebuildCommonClasses (44ms)
- RebuildNativeTypeToScriptingClass (15ms)
- initialDomainReloadingComplete (84ms)
- LoadAllAssembliesAndSetupDomain (1499ms)
- LoadAssemblies (977ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (620ms)
- TypeCache.Refresh (606ms)
- TypeCache.ScanAssembly (574ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (2027ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (962ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (140ms)
- ProcessInitializeOnLoadAttributes (462ms)
- ProcessInitializeOnLoadMethodAttributes (327ms)
- AfterProcessingInitializeOnLoad (16ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (33ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 34.07 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6151.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 17.344500 ms (FindLiveObjects: 0.459400 ms CreateObjectMapping: 0.263300 ms MarkObjects: 16.360500 ms DeleteObjects: 0.258900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.464 seconds
-Refreshing native plugins compatible for Editor in 44.49 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.812 seconds
-Domain Reload Profiling: 3270ms
- BeginReloadAssembly (218ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (87ms)
- RebuildCommonClasses (36ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (69ms)
- LoadAllAssembliesAndSetupDomain (1119ms)
- LoadAssemblies (744ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (448ms)
- TypeCache.Refresh (438ms)
- TypeCache.ScanAssembly (417ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (10ms)
- FinalizeReload (1814ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (875ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (8ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (128ms)
- ProcessInitializeOnLoadAttributes (426ms)
- ProcessInitializeOnLoadMethodAttributes (295ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (25ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 39.93 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6166.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 24.631900 ms (FindLiveObjects: 0.455900 ms CreateObjectMapping: 0.233300 ms MarkObjects: 23.563100 ms DeleteObjects: 0.377100 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Import Request.
- Time since last request: 528.989586 seconds.
- path: Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes
- artifactKey: Guid(55f106e119a6897439630e254550d8fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/GASSamples/GAS/Binary/GA_Database.bytes using Guid(55f106e119a6897439630e254550d8fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8686061f3ea32022c61632a61708e5') in 0.015688 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 1
-========================================================================
-Received Import Request.
- Time since last request: 38.474520 seconds.
- path: Assets/Scripts/GASSamples/GAS/Binary/ASC_Database.bytes
- artifactKey: Guid(2a02b2265d30a464a989f2d4b3e9adac) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/GASSamples/GAS/Binary/ASC_Database.bytes using Guid(2a02b2265d30a464a989f2d4b3e9adac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0592a01c25039da30220d9a672b7fb63') in 0.001777 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 1
-========================================================================
-Received Import Request.
- Time since last request: 2.208963 seconds.
- path: Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes
- artifactKey: Guid(8f64d28cf3a48454c9421439e97c85fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/GASSamples/GAS/Binary/GE_Database.bytes using Guid(8f64d28cf3a48454c9421439e97c85fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10be751bdb43f7f6d24c5f239f1ac377') in 0.002110 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 1
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.870 seconds
-Refreshing native plugins compatible for Editor in 39.54 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.208 seconds
-Domain Reload Profiling: 4071ms
- BeginReloadAssembly (280ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (140ms)
- RebuildCommonClasses (39ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (68ms)
- LoadAllAssembliesAndSetupDomain (1462ms)
- LoadAssemblies (987ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (546ms)
- TypeCache.Refresh (534ms)
- TypeCache.ScanAssembly (505ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2209ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1059ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (9ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (142ms)
- ProcessInitializeOnLoadAttributes (571ms)
- ProcessInitializeOnLoadMethodAttributes (317ms)
- AfterProcessingInitializeOnLoad (12ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (24ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 45.63 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5639 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6182.
-Memory consumption went from 194.8 MB to 194.6 MB.
-Total: 22.985700 ms (FindLiveObjects: 0.689500 ms CreateObjectMapping: 0.285400 ms MarkObjects: 21.271900 ms DeleteObjects: 0.734900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.774 seconds
-Refreshing native plugins compatible for Editor in 47.51 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.110 seconds
-Domain Reload Profiling: 3877ms
- BeginReloadAssembly (359ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (168ms)
- RebuildCommonClasses (44ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (85ms)
- LoadAllAssembliesAndSetupDomain (1266ms)
- LoadAssemblies (930ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (436ms)
- TypeCache.Refresh (421ms)
- TypeCache.ScanAssembly (386ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (15ms)
- FinalizeReload (2111ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1053ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (132ms)
- ProcessInitializeOnLoadAttributes (517ms)
- ProcessInitializeOnLoadMethodAttributes (378ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (28ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 31.77 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6197.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 16.651300 ms (FindLiveObjects: 0.375700 ms CreateObjectMapping: 0.209000 ms MarkObjects: 15.805300 ms DeleteObjects: 0.258400 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.573 seconds
-Refreshing native plugins compatible for Editor in 39.65 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.129 seconds
-Domain Reload Profiling: 3717ms
- BeginReloadAssembly (238ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (100ms)
- RebuildCommonClasses (36ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (72ms)
- LoadAllAssembliesAndSetupDomain (1208ms)
- LoadAssemblies (850ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (435ms)
- TypeCache.Refresh (421ms)
- TypeCache.ScanAssembly (393ms)
- ScanForSourceGeneratedMonoScriptInfo (6ms)
- ResolveRequiredComponents (9ms)
- FinalizeReload (2151ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1065ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (126ms)
- ProcessInitializeOnLoadAttributes (568ms)
- ProcessInitializeOnLoadMethodAttributes (345ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (2ms)
- 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 33.33 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6212.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 28.266200 ms (FindLiveObjects: 0.657700 ms CreateObjectMapping: 0.469500 ms MarkObjects: 26.585700 ms DeleteObjects: 0.549500 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.810 seconds
-Refreshing native plugins compatible for Editor in 72.09 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.158 seconds
-Domain Reload Profiling: 3962ms
- BeginReloadAssembly (240ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (103ms)
- RebuildCommonClasses (41ms)
- RebuildNativeTypeToScriptingClass (14ms)
- initialDomainReloadingComplete (73ms)
- LoadAllAssembliesAndSetupDomain (1434ms)
- LoadAssemblies (861ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (643ms)
- TypeCache.Refresh (625ms)
- TypeCache.ScanAssembly (587ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (18ms)
- FinalizeReload (2160ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1065ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (160ms)
- ProcessInitializeOnLoadAttributes (533ms)
- ProcessInitializeOnLoadMethodAttributes (337ms)
- AfterProcessingInitializeOnLoad (14ms)
- EditorAssembliesLoaded (4ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (37ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 54.40 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6227.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 25.569000 ms (FindLiveObjects: 1.030000 ms CreateObjectMapping: 0.864300 ms MarkObjects: 23.376000 ms DeleteObjects: 0.297300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.575 seconds
-Refreshing native plugins compatible for Editor in 57.09 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.910 seconds
-Domain Reload Profiling: 3478ms
- BeginReloadAssembly (222ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (84ms)
- RebuildCommonClasses (39ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (78ms)
- LoadAllAssembliesAndSetupDomain (1216ms)
- LoadAssemblies (831ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (462ms)
- TypeCache.Refresh (441ms)
- TypeCache.ScanAssembly (400ms)
- ScanForSourceGeneratedMonoScriptInfo (1ms)
- ResolveRequiredComponents (21ms)
- FinalizeReload (1911ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (939ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (122ms)
- ProcessInitializeOnLoadAttributes (459ms)
- ProcessInitializeOnLoadMethodAttributes (333ms)
- AfterProcessingInitializeOnLoad (14ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (34ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 35.37 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6242.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 16.493500 ms (FindLiveObjects: 0.445300 ms CreateObjectMapping: 0.234600 ms MarkObjects: 15.529700 ms DeleteObjects: 0.282300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.685 seconds
-Refreshing native plugins compatible for Editor in 46.22 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.315 seconds
-Domain Reload Profiling: 3994ms
- BeginReloadAssembly (312ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (127ms)
- RebuildCommonClasses (38ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (68ms)
- LoadAllAssembliesAndSetupDomain (1248ms)
- LoadAssemblies (848ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (476ms)
- TypeCache.Refresh (464ms)
- TypeCache.ScanAssembly (436ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (11ms)
- FinalizeReload (2317ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1052ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (8ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (151ms)
- ProcessInitializeOnLoadAttributes (496ms)
- ProcessInitializeOnLoadMethodAttributes (373ms)
- AfterProcessingInitializeOnLoad (15ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (24ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 39.72 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6257.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 27.219100 ms (FindLiveObjects: 0.767000 ms CreateObjectMapping: 0.525400 ms MarkObjects: 25.373100 ms DeleteObjects: 0.550700 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.438 seconds
-Refreshing native plugins compatible for Editor in 117.71 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 3.100 seconds
-Domain Reload Profiling: 5543ms
- BeginReloadAssembly (255ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (102ms)
- RebuildCommonClasses (51ms)
- RebuildNativeTypeToScriptingClass (16ms)
- initialDomainReloadingComplete (87ms)
- LoadAllAssembliesAndSetupDomain (2018ms)
- LoadAssemblies (1040ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (1064ms)
- TypeCache.Refresh (1027ms)
- TypeCache.ScanAssembly (986ms)
- ScanForSourceGeneratedMonoScriptInfo (13ms)
- ResolveRequiredComponents (24ms)
- FinalizeReload (3116ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1480ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (11ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (225ms)
- ProcessInitializeOnLoadAttributes (790ms)
- ProcessInitializeOnLoadMethodAttributes (429ms)
- AfterProcessingInitializeOnLoad (17ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (40ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 44.84 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6272.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 30.868500 ms (FindLiveObjects: 0.968000 ms CreateObjectMapping: 1.655300 ms MarkObjects: 27.665300 ms DeleteObjects: 0.576900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.875 seconds
-Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.181 seconds
-Domain Reload Profiling: 4045ms
- BeginReloadAssembly (355ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (158ms)
- RebuildCommonClasses (58ms)
- RebuildNativeTypeToScriptingClass (15ms)
- initialDomainReloadingComplete (129ms)
- LoadAllAssembliesAndSetupDomain (1304ms)
- LoadAssemblies (961ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (462ms)
- TypeCache.Refresh (452ms)
- TypeCache.ScanAssembly (425ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (10ms)
- FinalizeReload (2184ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1103ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (166ms)
- ProcessInitializeOnLoadAttributes (596ms)
- ProcessInitializeOnLoadMethodAttributes (314ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (3ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (30ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 29.25 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6287.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 18.944800 ms (FindLiveObjects: 0.709500 ms CreateObjectMapping: 0.224000 ms MarkObjects: 17.692600 ms DeleteObjects: 0.316000 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.762 seconds
-Refreshing native plugins compatible for Editor in 33.75 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.027 seconds
-Domain Reload Profiling: 3780ms
- BeginReloadAssembly (324ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (10ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (145ms)
- RebuildCommonClasses (47ms)
- RebuildNativeTypeToScriptingClass (14ms)
- initialDomainReloadingComplete (82ms)
- LoadAllAssembliesAndSetupDomain (1284ms)
- LoadAssemblies (966ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (424ms)
- TypeCache.Refresh (408ms)
- TypeCache.ScanAssembly (384ms)
- ScanForSourceGeneratedMonoScriptInfo (4ms)
- ResolveRequiredComponents (11ms)
- FinalizeReload (2029ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1043ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (159ms)
- ProcessInitializeOnLoadAttributes (519ms)
- ProcessInitializeOnLoadMethodAttributes (337ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (43ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 37.84 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6302.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 17.861500 ms (FindLiveObjects: 0.600500 ms CreateObjectMapping: 0.441000 ms MarkObjects: 16.360200 ms DeleteObjects: 0.456300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.847 seconds
-Refreshing native plugins compatible for Editor in 41.44 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.236 seconds
-Domain Reload Profiling: 5075ms
- BeginReloadAssembly (1485ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (39ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (1080ms)
- RebuildCommonClasses (62ms)
- RebuildNativeTypeToScriptingClass (16ms)
- initialDomainReloadingComplete (92ms)
- LoadAllAssembliesAndSetupDomain (1182ms)
- LoadAssemblies (968ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (429ms)
- TypeCache.Refresh (416ms)
- TypeCache.ScanAssembly (394ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (2238ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1138ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (149ms)
- ProcessInitializeOnLoadAttributes (572ms)
- ProcessInitializeOnLoadMethodAttributes (386ms)
- AfterProcessingInitializeOnLoad (15ms)
- EditorAssembliesLoaded (3ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (35ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 41.25 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6317.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 22.422000 ms (FindLiveObjects: 0.592500 ms CreateObjectMapping: 0.251200 ms MarkObjects: 21.246100 ms DeleteObjects: 0.329100 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.897 seconds
-Refreshing native plugins compatible for Editor in 59.69 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.727 seconds
-Domain Reload Profiling: 4621ms
- BeginReloadAssembly (230ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (95ms)
- RebuildCommonClasses (42ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (74ms)
- LoadAllAssembliesAndSetupDomain (1531ms)
- LoadAssemblies (972ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (623ms)
- TypeCache.Refresh (609ms)
- TypeCache.ScanAssembly (580ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (2729ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1307ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (9ms)
- SetLoadedEditorAssemblies (11ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (200ms)
- ProcessInitializeOnLoadAttributes (634ms)
- ProcessInitializeOnLoadMethodAttributes (426ms)
- AfterProcessingInitializeOnLoad (26ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (57ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 48.85 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6332.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 22.243800 ms (FindLiveObjects: 0.866300 ms CreateObjectMapping: 0.562800 ms MarkObjects: 20.256700 ms DeleteObjects: 0.555500 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.047 seconds
-Refreshing native plugins compatible for Editor in 43.88 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.306 seconds
-Domain Reload Profiling: 4334ms
- BeginReloadAssembly (292ms)
+- Finished resetting the current domain, in 2.141 seconds
+Domain Reload Profiling: 4056ms
+ BeginReloadAssembly (173ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (7ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (126ms)
- RebuildCommonClasses (45ms)
- RebuildNativeTypeToScriptingClass (16ms)
- initialDomainReloadingComplete (144ms)
- LoadAllAssembliesAndSetupDomain (1529ms)
- LoadAssemblies (1075ms)
+ CreateAndSetChildDomain (30ms)
+ RebuildCommonClasses (44ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (81ms)
+ LoadAllAssembliesAndSetupDomain (1605ms)
+ LoadAssemblies (1021ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (554ms)
- TypeCache.Refresh (542ms)
- TypeCache.ScanAssembly (506ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2307ms)
+ AnalyzeDomain (658ms)
+ TypeCache.Refresh (598ms)
+ TypeCache.ScanAssembly (569ms)
+ ScanForSourceGeneratedMonoScriptInfo (44ms)
+ ResolveRequiredComponents (17ms)
+ FinalizeReload (2141ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1196ms)
+ SetupLoadedEditorAssemblies (1871ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (6ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (152ms)
+ ProcessInitializeOnLoadAttributes (905ms)
+ ProcessInitializeOnLoadMethodAttributes (785ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ 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 48.57 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5656 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 183 unused Assets / (232.8 KB). Loaded Objects now: 6106.
+Memory consumption went from 197.9 MB to 197.6 MB.
+Total: 24.388600 ms (FindLiveObjects: 0.425800 ms CreateObjectMapping: 0.465700 ms MarkObjects: 23.026000 ms DeleteObjects: 0.468600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Import Request.
+ Time since last request: 36307.997873 seconds.
+ path: Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs
+ artifactKey: Guid(b964e9ee395740d6b0f8e42978c1ba35) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/Scripts/GASSamples/Scripts/GAS/MMC/AttrModCalculation.cs using Guid(b964e9ee395740d6b0f8e42978c1ba35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5af45e0a85d48f967bcba09ec122c5b') in 0.003139 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.000054 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: '2817dcf1637ec1bc59891bfa337aa804') in 0.014639 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 3.072 seconds
+Refreshing native plugins compatible for Editor in 54.47 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 4.446 seconds
+Domain Reload Profiling: 7503ms
+ BeginReloadAssembly (467ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (170ms)
+ RebuildCommonClasses (93ms)
+ RebuildNativeTypeToScriptingClass (26ms)
+ initialDomainReloadingComplete (125ms)
+ LoadAllAssembliesAndSetupDomain (2345ms)
+ LoadAssemblies (1672ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (856ms)
+ TypeCache.Refresh (834ms)
+ TypeCache.ScanAssembly (798ms)
+ ScanForSourceGeneratedMonoScriptInfo (7ms)
+ ResolveRequiredComponents (15ms)
+ FinalizeReload (4447ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1341ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (194ms)
+ ProcessInitializeOnLoadAttributes (590ms)
+ ProcessInitializeOnLoadMethodAttributes (518ms)
+ AfterProcessingInitializeOnLoad (19ms)
+ EditorAssembliesLoaded (4ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (44ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 63.23 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6123.
+Memory consumption went from 194.9 MB to 194.7 MB.
+Total: 30.181500 ms (FindLiveObjects: 0.720100 ms CreateObjectMapping: 0.454700 ms MarkObjects: 28.204500 ms DeleteObjects: 0.797600 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.187 seconds
+Refreshing native plugins compatible for Editor in 51.88 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.690 seconds
+Domain Reload Profiling: 4870ms
+ BeginReloadAssembly (317ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (136ms)
+ RebuildCommonClasses (58ms)
+ RebuildNativeTypeToScriptingClass (17ms)
+ initialDomainReloadingComplete (89ms)
+ LoadAllAssembliesAndSetupDomain (1699ms)
+ LoadAssemblies (1150ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (650ms)
+ TypeCache.Refresh (621ms)
+ TypeCache.ScanAssembly (582ms)
+ ScanForSourceGeneratedMonoScriptInfo (11ms)
+ ResolveRequiredComponents (18ms)
+ FinalizeReload (2691ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1422ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (169ms)
- ProcessInitializeOnLoadAttributes (653ms)
- ProcessInitializeOnLoadMethodAttributes (343ms)
- AfterProcessingInitializeOnLoad (13ms)
+ ProcessInitializeOnLoadAttributes (721ms)
+ ProcessInitializeOnLoadMethodAttributes (496ms)
+ AfterProcessingInitializeOnLoad (19ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (49ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.91 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6138.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 34.343800 ms (FindLiveObjects: 0.982100 ms CreateObjectMapping: 1.875200 ms MarkObjects: 30.500100 ms DeleteObjects: 0.982600 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.070 seconds
+Refreshing native plugins compatible for Editor in 39.98 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.321 seconds
+Domain Reload Profiling: 4382ms
+ BeginReloadAssembly (288ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (122ms)
+ RebuildCommonClasses (52ms)
+ RebuildNativeTypeToScriptingClass (15ms)
+ initialDomainReloadingComplete (98ms)
+ LoadAllAssembliesAndSetupDomain (1606ms)
+ LoadAssemblies (1108ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (586ms)
+ TypeCache.Refresh (569ms)
+ TypeCache.ScanAssembly (533ms)
+ ScanForSourceGeneratedMonoScriptInfo (4ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2322ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1273ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (175ms)
+ ProcessInitializeOnLoadAttributes (598ms)
+ ProcessInitializeOnLoadMethodAttributes (469ms)
+ AfterProcessingInitializeOnLoad (14ms)
EditorAssembliesLoaded (2ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (37ms)
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 72.10 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 57.60 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6347.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 30.033400 ms (FindLiveObjects: 0.859400 ms CreateObjectMapping: 0.999300 ms MarkObjects: 27.739700 ms DeleteObjects: 0.432300 ms)
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.0 KB). Loaded Objects now: 6153.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 38.901200 ms (FindLiveObjects: 1.030600 ms CreateObjectMapping: 0.925700 ms MarkObjects: 36.219000 ms DeleteObjects: 0.722800 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
@@ -1460,8 +438,8 @@ AssetImportParameters requested are different than current active one (requested
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.708 seconds
-Refreshing native plugins compatible for Editor in 44.94 ms, found 3 plugins.
+- Loaded All Assemblies, in 2.274 seconds
+Refreshing native plugins compatible for Editor in 35.96 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
@@ -1478,200 +456,276 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.444 seconds
-Domain Reload Profiling: 4141ms
- BeginReloadAssembly (240ms)
+- Finished resetting the current domain, in 5.370 seconds
+Domain Reload Profiling: 7632ms
+ BeginReloadAssembly (475ms)
ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
+ DisableScriptedObjects (16ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (92ms)
- RebuildCommonClasses (42ms)
- RebuildNativeTypeToScriptingClass (14ms)
- initialDomainReloadingComplete (79ms)
- LoadAllAssembliesAndSetupDomain (1322ms)
- LoadAssemblies (892ms)
+ CreateAndSetChildDomain (247ms)
+ RebuildCommonClasses (78ms)
+ RebuildNativeTypeToScriptingClass (16ms)
+ initialDomainReloadingComplete (101ms)
+ LoadAllAssembliesAndSetupDomain (1590ms)
+ LoadAssemblies (1130ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (513ms)
- TypeCache.Refresh (500ms)
- TypeCache.ScanAssembly (469ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2445ms)
+ AnalyzeDomain (579ms)
+ TypeCache.Refresh (562ms)
+ TypeCache.ScanAssembly (526ms)
+ ScanForSourceGeneratedMonoScriptInfo (5ms)
+ ResolveRequiredComponents (11ms)
+ FinalizeReload (5372ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1181ms)
+ SetupLoadedEditorAssemblies (4311ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (7ms)
+ InitializePlatformSupportModulesInManaged (11ms)
+ SetLoadedEditorAssemblies (9ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (182ms)
- ProcessInitializeOnLoadAttributes (620ms)
- ProcessInitializeOnLoadMethodAttributes (344ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (7ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (31ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 41.15 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6362.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 20.955400 ms (FindLiveObjects: 0.425800 ms CreateObjectMapping: 0.394500 ms MarkObjects: 19.657700 ms DeleteObjects: 0.475300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.970 seconds
-Refreshing native plugins compatible for Editor in 81.41 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.749 seconds
-Domain Reload Profiling: 4712ms
- BeginReloadAssembly (226ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (82ms)
- RebuildCommonClasses (34ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (72ms)
- LoadAllAssembliesAndSetupDomain (1618ms)
- LoadAssemblies (970ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (720ms)
- TypeCache.Refresh (703ms)
- TypeCache.ScanAssembly (657ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (17ms)
- FinalizeReload (2750ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1320ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (13ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (178ms)
- ProcessInitializeOnLoadAttributes (674ms)
- ProcessInitializeOnLoadMethodAttributes (426ms)
- AfterProcessingInitializeOnLoad (18ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (27ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 49.73 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6377.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 22.883100 ms (FindLiveObjects: 1.043600 ms CreateObjectMapping: 0.629800 ms MarkObjects: 20.880500 ms DeleteObjects: 0.326500 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.661 seconds
-Refreshing native plugins compatible for Editor in 47.22 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.443 seconds
-Domain Reload Profiling: 4093ms
- BeginReloadAssembly (232ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (96ms)
- RebuildCommonClasses (46ms)
- RebuildNativeTypeToScriptingClass (15ms)
- initialDomainReloadingComplete (83ms)
- LoadAllAssembliesAndSetupDomain (1272ms)
- LoadAssemblies (879ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (463ms)
- TypeCache.Refresh (451ms)
- TypeCache.ScanAssembly (423ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2445ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1144ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (8ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (168ms)
- ProcessInitializeOnLoadAttributes (543ms)
- ProcessInitializeOnLoadMethodAttributes (399ms)
+ BeforeProcessingInitializeOnLoad (184ms)
+ ProcessInitializeOnLoadAttributes (996ms)
+ ProcessInitializeOnLoadMethodAttributes (3093ms)
AfterProcessingInitializeOnLoad (17ms)
EditorAssembliesLoaded (1ms)
ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (43ms)
+ 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.41 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 52.66 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.0 KB). Loaded Objects now: 6392.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 21.882600 ms (FindLiveObjects: 0.654800 ms CreateObjectMapping: 0.765900 ms MarkObjects: 19.909600 ms DeleteObjects: 0.551100 ms)
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6168.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 18.571500 ms (FindLiveObjects: 0.631500 ms CreateObjectMapping: 0.314300 ms MarkObjects: 17.389800 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.627 seconds
+Refreshing native plugins compatible for Editor in 492.78 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 5.712 seconds
+Domain Reload Profiling: 8331ms
+ BeginReloadAssembly (363ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (10ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (151ms)
+ RebuildCommonClasses (89ms)
+ RebuildNativeTypeToScriptingClass (18ms)
+ initialDomainReloadingComplete (105ms)
+ LoadAllAssembliesAndSetupDomain (2042ms)
+ LoadAssemblies (1139ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (1029ms)
+ TypeCache.Refresh (962ms)
+ TypeCache.ScanAssembly (837ms)
+ ScanForSourceGeneratedMonoScriptInfo (12ms)
+ ResolveRequiredComponents (55ms)
+ FinalizeReload (5714ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (2343ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (17ms)
+ SetLoadedEditorAssemblies (15ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (268ms)
+ ProcessInitializeOnLoadAttributes (896ms)
+ ProcessInitializeOnLoadMethodAttributes (1110ms)
+ AfterProcessingInitializeOnLoad (34ms)
+ EditorAssembliesLoaded (3ms)
+ 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 58.97 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5643 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.3 KB). Loaded Objects now: 6185.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 39.648000 ms (FindLiveObjects: 1.235600 ms CreateObjectMapping: 1.716100 ms MarkObjects: 36.110100 ms DeleteObjects: 0.582300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.194 seconds
+Refreshing native plugins compatible for Editor in 93.86 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.730 seconds
+Domain Reload Profiling: 4914ms
+ BeginReloadAssembly (331ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (111ms)
+ RebuildCommonClasses (67ms)
+ RebuildNativeTypeToScriptingClass (18ms)
+ initialDomainReloadingComplete (100ms)
+ LoadAllAssembliesAndSetupDomain (1668ms)
+ LoadAssemblies (1158ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (659ms)
+ TypeCache.Refresh (636ms)
+ TypeCache.ScanAssembly (590ms)
+ ScanForSourceGeneratedMonoScriptInfo (7ms)
+ ResolveRequiredComponents (15ms)
+ FinalizeReload (2731ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1201ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (11ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (158ms)
+ ProcessInitializeOnLoadAttributes (564ms)
+ ProcessInitializeOnLoadMethodAttributes (446ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (1ms)
+ 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.64 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5643 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6200.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 71.524300 ms (FindLiveObjects: 0.919100 ms CreateObjectMapping: 1.226600 ms MarkObjects: 67.850100 ms DeleteObjects: 1.525400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.174 seconds
+Refreshing native plugins compatible for Editor in 36.81 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.374 seconds
+Domain Reload Profiling: 4542ms
+ BeginReloadAssembly (376ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (174ms)
+ RebuildCommonClasses (82ms)
+ RebuildNativeTypeToScriptingClass (20ms)
+ initialDomainReloadingComplete (123ms)
+ LoadAllAssembliesAndSetupDomain (1563ms)
+ LoadAssemblies (1141ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (549ms)
+ TypeCache.Refresh (532ms)
+ TypeCache.ScanAssembly (495ms)
+ ScanForSourceGeneratedMonoScriptInfo (6ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2378ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1223ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (161ms)
+ ProcessInitializeOnLoadAttributes (589ms)
+ ProcessInitializeOnLoadMethodAttributes (441ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (2ms)
+ 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 59.94 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5643 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6215.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 26.859900 ms (FindLiveObjects: 1.147400 ms CreateObjectMapping: 1.133900 ms MarkObjects: 24.304700 ms DeleteObjects: 0.272000 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
diff --git a/JNFrame2/Logs/AssetImportWorker1-prev.log b/JNFrame2/Logs/AssetImportWorker1-prev.log
index 1737cbab..39d79702 100644
--- a/JNFrame2/Logs/AssetImportWorker1-prev.log
+++ b/JNFrame2/Logs/AssetImportWorker1-prev.log
@@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2
-logFile
Logs/AssetImportWorker1.log
-srvPort
-52918
+50224
Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
D:/myproject/JisolGame/JNFrame2
[UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,11 +49,11 @@ D:/myproject/JisolGame/JNFrame2
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
-Player connection [36540] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 3750933375 [EditorId] 3750933375 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [23288] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1065937437 [EditorId] 1065937437 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
-Player connection [36540] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 3750933375 [EditorId] 3750933375 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [23288] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1065937437 [EditorId] 1065937437 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
-Refreshing native plugins compatible for Editor in 71.37 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 120.49 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.1f1 (f18e0c1b5784)
[Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems
@@ -69,53 +69,53 @@ Initialize mono
Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed'
Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56724
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56512
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Registered in 0.009169 seconds.
-- Loaded All Assemblies, in 0.653 seconds
+Registered in 0.011258 seconds.
+- Loaded All Assemblies, in 0.611 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 5.839 seconds
-Domain Reload Profiling: 6493ms
- BeginReloadAssembly (98ms)
+- Finished resetting the current domain, in 0.434 seconds
+Domain Reload Profiling: 1041ms
+ BeginReloadAssembly (169ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms)
- RebuildCommonClasses (37ms)
- RebuildNativeTypeToScriptingClass (10ms)
- initialDomainReloadingComplete (79ms)
- LoadAllAssembliesAndSetupDomain (427ms)
- LoadAssemblies (96ms)
+ RebuildCommonClasses (70ms)
+ RebuildNativeTypeToScriptingClass (24ms)
+ initialDomainReloadingComplete (110ms)
+ LoadAllAssembliesAndSetupDomain (233ms)
+ LoadAssemblies (163ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (418ms)
- TypeCache.Refresh (417ms)
- TypeCache.ScanAssembly (377ms)
+ AnalyzeDomain (222ms)
+ TypeCache.Refresh (220ms)
+ TypeCache.ScanAssembly (196ms)
ScanForSourceGeneratedMonoScriptInfo (1ms)
ResolveRequiredComponents (1ms)
- FinalizeReload (5843ms)
+ FinalizeReload (435ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (5345ms)
+ SetupLoadedEditorAssemblies (348ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (37ms)
- SetLoadedEditorAssemblies (61ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (13ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (112ms)
- ProcessInitializeOnLoadAttributes (4820ms)
- ProcessInitializeOnLoadMethodAttributes (313ms)
- AfterProcessingInitializeOnLoad (1ms)
- EditorAssembliesLoaded (1ms)
+ BeforeProcessingInitializeOnLoad (4ms)
+ ProcessInitializeOnLoadAttributes (236ms)
+ ProcessInitializeOnLoadMethodAttributes (80ms)
+ AfterProcessingInitializeOnLoad (0ms)
+ EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms)
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.697 seconds
-Refreshing native plugins compatible for Editor in 41.20 ms, found 3 plugins.
+- Loaded All Assemblies, in 2.021 seconds
+Refreshing native plugins compatible for Editor in 54.49 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Package Manager log level set to [2]
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
@@ -132,67 +132,70 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 3.755 seconds
-Domain Reload Profiling: 6439ms
- BeginReloadAssembly (282ms)
+- Finished resetting the current domain, in 2.133 seconds
+Domain Reload Profiling: 4146ms
+ BeginReloadAssembly (205ms)
ExecutionOrderSort (0ms)
- DisableScriptedObjects (11ms)
+ DisableScriptedObjects (6ms)
BackupInstance (0ms)
- ReleaseScriptingObjects (1ms)
- CreateAndSetChildDomain (67ms)
- RebuildCommonClasses (129ms)
- RebuildNativeTypeToScriptingClass (69ms)
- initialDomainReloadingComplete (207ms)
- LoadAllAssembliesAndSetupDomain (1996ms)
- LoadAssemblies (1315ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (36ms)
+ RebuildCommonClasses (45ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (74ms)
+ LoadAllAssembliesAndSetupDomain (1675ms)
+ LoadAssemblies (1108ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (807ms)
- TypeCache.Refresh (759ms)
- TypeCache.ScanAssembly (731ms)
- ScanForSourceGeneratedMonoScriptInfo (38ms)
- ResolveRequiredComponents (11ms)
- FinalizeReload (3756ms)
+ AnalyzeDomain (656ms)
+ TypeCache.Refresh (606ms)
+ TypeCache.ScanAssembly (573ms)
+ ScanForSourceGeneratedMonoScriptInfo (36ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2133ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (3323ms)
+ SetupLoadedEditorAssemblies (1870ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (11ms)
- SetLoadedEditorAssemblies (10ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (193ms)
- ProcessInitializeOnLoadAttributes (1284ms)
- ProcessInitializeOnLoadMethodAttributes (1798ms)
- AfterProcessingInitializeOnLoad (25ms)
- EditorAssembliesLoaded (1ms)
+ BeforeProcessingInitializeOnLoad (172ms)
+ ProcessInitializeOnLoadAttributes (903ms)
+ ProcessInitializeOnLoadMethodAttributes (768ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (21ms)
+ AwakeInstancesAfterBackupRestoration (13ms)
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 65.04 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 61.01 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5651 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 183 unused Assets / (232.9 KB). Loaded Objects now: 6101.
-Memory consumption went from 197.9 MB to 197.7 MB.
-Total: 27.955700 ms (FindLiveObjects: 0.836400 ms CreateObjectMapping: 0.605300 ms MarkObjects: 26.061200 ms DeleteObjects: 0.450100 ms)
+Unloading 5656 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 183 unused Assets / (232.7 KB). Loaded Objects now: 6106.
+Memory consumption went from 197.8 MB to 197.6 MB.
+Total: 26.447200 ms (FindLiveObjects: 0.939200 ms CreateObjectMapping: 0.851600 ms MarkObjects: 24.035100 ms DeleteObjects: 0.618400 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.689 seconds
-Refreshing native plugins compatible for Editor in 32.71 ms, found 3 plugins.
+- Loaded All Assemblies, in 1.818 seconds
+Refreshing native plugins compatible for Editor in 46.59 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
@@ -209,48 +212,1434 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.686 seconds
-Domain Reload Profiling: 3417ms
- BeginReloadAssembly (285ms)
+- Finished resetting the current domain, in 2.225 seconds
+Domain Reload Profiling: 4038ms
+ BeginReloadAssembly (234ms)
ExecutionOrderSort (0ms)
- DisableScriptedObjects (7ms)
+ DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (135ms)
- RebuildCommonClasses (34ms)
- RebuildNativeTypeToScriptingClass (10ms)
- initialDomainReloadingComplete (66ms)
- LoadAllAssembliesAndSetupDomain (1287ms)
- LoadAssemblies (961ms)
+ CreateAndSetChildDomain (85ms)
+ RebuildCommonClasses (55ms)
+ RebuildNativeTypeToScriptingClass (15ms)
+ initialDomainReloadingComplete (99ms)
+ LoadAllAssembliesAndSetupDomain (1407ms)
+ LoadAssemblies (978ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (394ms)
- TypeCache.Refresh (380ms)
- TypeCache.ScanAssembly (335ms)
- ScanForSourceGeneratedMonoScriptInfo (6ms)
- ResolveRequiredComponents (8ms)
- FinalizeReload (1735ms)
+ AnalyzeDomain (516ms)
+ TypeCache.Refresh (501ms)
+ TypeCache.ScanAssembly (472ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (2228ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (869ms)
+ SetupLoadedEditorAssemblies (1169ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (149ms)
+ ProcessInitializeOnLoadAttributes (580ms)
+ ProcessInitializeOnLoadMethodAttributes (411ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (54ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 46.55 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6121.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 24.686200 ms (FindLiveObjects: 0.786500 ms CreateObjectMapping: 0.515600 ms MarkObjects: 22.861200 ms DeleteObjects: 0.519900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.154 seconds
+Refreshing native plugins compatible for Editor in 64.50 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 3.736 seconds
+Domain Reload Profiling: 5882ms
+ BeginReloadAssembly (254ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (105ms)
+ RebuildCommonClasses (40ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (81ms)
+ LoadAllAssembliesAndSetupDomain (1758ms)
+ LoadAssemblies (1095ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (738ms)
+ TypeCache.Refresh (724ms)
+ TypeCache.ScanAssembly (691ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (3737ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (2243ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (14ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (247ms)
+ ProcessInitializeOnLoadAttributes (1202ms)
+ ProcessInitializeOnLoadMethodAttributes (752ms)
+ AfterProcessingInitializeOnLoad (16ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (50ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 91.94 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6136.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 38.137600 ms (FindLiveObjects: 1.303200 ms CreateObjectMapping: 1.794000 ms MarkObjects: 34.357500 ms DeleteObjects: 0.680200 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.945 seconds
+Refreshing native plugins compatible for Editor in 49.63 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 1.915 seconds
+Domain Reload Profiling: 3851ms
+ BeginReloadAssembly (286ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (103ms)
+ RebuildCommonClasses (53ms)
+ RebuildNativeTypeToScriptingClass (22ms)
+ initialDomainReloadingComplete (85ms)
+ LoadAllAssembliesAndSetupDomain (1488ms)
+ LoadAssemblies (973ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (623ms)
+ TypeCache.Refresh (613ms)
+ TypeCache.ScanAssembly (585ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (10ms)
+ FinalizeReload (1917ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (950ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (7ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (141ms)
+ ProcessInitializeOnLoadAttributes (443ms)
+ ProcessInitializeOnLoadMethodAttributes (338ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (21ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 39.28 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6151.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 19.277600 ms (FindLiveObjects: 0.799000 ms CreateObjectMapping: 0.620800 ms MarkObjects: 17.594400 ms DeleteObjects: 0.261900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.483 seconds
+Refreshing native plugins compatible for Editor in 37.87 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 1.904 seconds
+Domain Reload Profiling: 3384ms
+ BeginReloadAssembly (214ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (84ms)
+ RebuildCommonClasses (41ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (73ms)
+ LoadAllAssembliesAndSetupDomain (1134ms)
+ LoadAssemblies (750ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (456ms)
+ TypeCache.Refresh (443ms)
+ TypeCache.ScanAssembly (419ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (1908ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (898ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (7ms)
SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (115ms)
- ProcessInitializeOnLoadAttributes (394ms)
- ProcessInitializeOnLoadMethodAttributes (337ms)
- AfterProcessingInitializeOnLoad (9ms)
+ BeforeProcessingInitializeOnLoad (130ms)
+ ProcessInitializeOnLoadAttributes (444ms)
+ ProcessInitializeOnLoadMethodAttributes (300ms)
+ AfterProcessingInitializeOnLoad (11ms)
EditorAssembliesLoaded (2ms)
ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (32ms)
+ AwakeInstancesAfterBackupRestoration (27ms)
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 75.52 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 30.29 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5636 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6117.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6166.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 16.679700 ms (FindLiveObjects: 0.610100 ms CreateObjectMapping: 0.307900 ms MarkObjects: 15.337400 ms DeleteObjects: 0.420400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.880 seconds
+Refreshing native plugins compatible for Editor in 42.08 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.140 seconds
+Domain Reload Profiling: 4017ms
+ BeginReloadAssembly (278ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (130ms)
+ RebuildCommonClasses (40ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (69ms)
+ LoadAllAssembliesAndSetupDomain (1475ms)
+ LoadAssemblies (996ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (555ms)
+ TypeCache.Refresh (543ms)
+ TypeCache.ScanAssembly (516ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2144ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1085ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (7ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (163ms)
+ ProcessInitializeOnLoadAttributes (526ms)
+ ProcessInitializeOnLoadMethodAttributes (364ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (25ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 92.54 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.0 KB). Loaded Objects now: 6181.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 38.591900 ms (FindLiveObjects: 1.173500 ms CreateObjectMapping: 1.196500 ms MarkObjects: 35.687300 ms DeleteObjects: 0.531400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.766 seconds
+Refreshing native plugins compatible for Editor in 47.07 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 1.963 seconds
+Domain Reload Profiling: 3724ms
+ BeginReloadAssembly (354ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (10ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (169ms)
+ RebuildCommonClasses (45ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (84ms)
+ LoadAllAssembliesAndSetupDomain (1264ms)
+ LoadAssemblies (921ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (433ms)
+ TypeCache.Refresh (419ms)
+ TypeCache.ScanAssembly (384ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (1966ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1003ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (129ms)
+ ProcessInitializeOnLoadAttributes (471ms)
+ ProcessInitializeOnLoadMethodAttributes (370ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (3ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (31ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 43.78 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6196.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 21.399600 ms (FindLiveObjects: 0.599100 ms CreateObjectMapping: 0.520100 ms MarkObjects: 19.517200 ms DeleteObjects: 0.759700 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
+ custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.567 seconds
+Refreshing native plugins compatible for Editor in 37.20 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.078 seconds
+Domain Reload Profiling: 3639ms
+ BeginReloadAssembly (232ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (96ms)
+ RebuildCommonClasses (35ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (70ms)
+ LoadAllAssembliesAndSetupDomain (1210ms)
+ LoadAssemblies (840ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (445ms)
+ TypeCache.Refresh (433ms)
+ TypeCache.ScanAssembly (407ms)
+ ScanForSourceGeneratedMonoScriptInfo (3ms)
+ ResolveRequiredComponents (9ms)
+ FinalizeReload (2079ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1069ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (131ms)
+ ProcessInitializeOnLoadAttributes (523ms)
+ ProcessInitializeOnLoadMethodAttributes (384ms)
+ AfterProcessingInitializeOnLoad (17ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (45ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 39.36 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6211.
Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 32.979700 ms (FindLiveObjects: 1.552000 ms CreateObjectMapping: 0.841400 ms MarkObjects: 29.841900 ms DeleteObjects: 0.739200 ms)
+Total: 24.281300 ms (FindLiveObjects: 0.940300 ms CreateObjectMapping: 0.552700 ms MarkObjects: 22.396100 ms DeleteObjects: 0.389700 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.833 seconds
+Refreshing native plugins compatible for Editor in 66.75 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.335 seconds
+Domain Reload Profiling: 4169ms
+ BeginReloadAssembly (237ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (93ms)
+ RebuildCommonClasses (39ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (75ms)
+ LoadAllAssembliesAndSetupDomain (1461ms)
+ LoadAssemblies (894ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (641ms)
+ TypeCache.Refresh (623ms)
+ TypeCache.ScanAssembly (585ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (17ms)
+ FinalizeReload (2344ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1124ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (157ms)
+ ProcessInitializeOnLoadAttributes (574ms)
+ ProcessInitializeOnLoadMethodAttributes (358ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (7ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (36ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 41.55 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6226.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 19.926400 ms (FindLiveObjects: 0.553800 ms CreateObjectMapping: 0.290100 ms MarkObjects: 18.634800 ms DeleteObjects: 0.445800 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.583 seconds
+Refreshing native plugins compatible for Editor in 60.74 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.004 seconds
+Domain Reload Profiling: 3581ms
+ BeginReloadAssembly (222ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (79ms)
+ RebuildCommonClasses (44ms)
+ RebuildNativeTypeToScriptingClass (16ms)
+ initialDomainReloadingComplete (75ms)
+ LoadAllAssembliesAndSetupDomain (1218ms)
+ LoadAssemblies (831ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (468ms)
+ TypeCache.Refresh (455ms)
+ TypeCache.ScanAssembly (401ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2007ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (996ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (6ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (118ms)
+ ProcessInitializeOnLoadAttributes (498ms)
+ ProcessInitializeOnLoadMethodAttributes (349ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (4ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (22ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 37.24 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6241.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 16.465500 ms (FindLiveObjects: 0.544000 ms CreateObjectMapping: 0.302100 ms MarkObjects: 15.285100 ms DeleteObjects: 0.330800 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.698 seconds
+Refreshing native plugins compatible for Editor in 47.43 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.193 seconds
+Domain Reload Profiling: 3886ms
+ BeginReloadAssembly (318ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (155ms)
+ RebuildCommonClasses (41ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (70ms)
+ LoadAllAssembliesAndSetupDomain (1250ms)
+ LoadAssemblies (857ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (479ms)
+ TypeCache.Refresh (465ms)
+ TypeCache.ScanAssembly (436ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2196ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1057ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (155ms)
+ ProcessInitializeOnLoadAttributes (490ms)
+ ProcessInitializeOnLoadMethodAttributes (381ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (3ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (28ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 76.97 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6256.
+Memory consumption went from 195.1 MB to 194.9 MB.
+Total: 21.246600 ms (FindLiveObjects: 0.693600 ms CreateObjectMapping: 1.113600 ms MarkObjects: 19.133100 ms DeleteObjects: 0.303900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.474 seconds
+Refreshing native plugins compatible for Editor in 120.46 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 3.242 seconds
+Domain Reload Profiling: 5716ms
+ BeginReloadAssembly (251ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (96ms)
+ RebuildCommonClasses (53ms)
+ RebuildNativeTypeToScriptingClass (19ms)
+ initialDomainReloadingComplete (83ms)
+ LoadAllAssembliesAndSetupDomain (2058ms)
+ LoadAssemblies (1065ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (1083ms)
+ TypeCache.Refresh (1043ms)
+ TypeCache.ScanAssembly (1000ms)
+ ScanForSourceGeneratedMonoScriptInfo (10ms)
+ ResolveRequiredComponents (31ms)
+ FinalizeReload (3251ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1508ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (10ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (187ms)
+ ProcessInitializeOnLoadAttributes (850ms)
+ ProcessInitializeOnLoadMethodAttributes (430ms)
+ AfterProcessingInitializeOnLoad (20ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (40ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 43.55 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6271.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 19.613700 ms (FindLiveObjects: 0.724400 ms CreateObjectMapping: 0.320700 ms MarkObjects: 18.238700 ms DeleteObjects: 0.327400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.876 seconds
+Refreshing native plugins compatible for Editor in 33.91 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.085 seconds
+Domain Reload Profiling: 3948ms
+ BeginReloadAssembly (351ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (9ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (149ms)
+ RebuildCommonClasses (65ms)
+ RebuildNativeTypeToScriptingClass (14ms)
+ initialDomainReloadingComplete (132ms)
+ LoadAllAssembliesAndSetupDomain (1300ms)
+ LoadAssemblies (962ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (454ms)
+ TypeCache.Refresh (443ms)
+ TypeCache.ScanAssembly (416ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2087ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1089ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (6ms)
+ SetLoadedEditorAssemblies (5ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (144ms)
+ ProcessInitializeOnLoadAttributes (584ms)
+ ProcessInitializeOnLoadMethodAttributes (340ms)
+ AfterProcessingInitializeOnLoad (10ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (25ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 39.77 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.3 KB). Loaded Objects now: 6286.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 18.089100 ms (FindLiveObjects: 0.784600 ms CreateObjectMapping: 0.937200 ms MarkObjects: 15.909300 ms DeleteObjects: 0.455900 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.728 seconds
+Refreshing native plugins compatible for Editor in 43.39 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 1.977 seconds
+Domain Reload Profiling: 3699ms
+ BeginReloadAssembly (313ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (136ms)
+ RebuildCommonClasses (48ms)
+ RebuildNativeTypeToScriptingClass (12ms)
+ initialDomainReloadingComplete (87ms)
+ LoadAllAssembliesAndSetupDomain (1257ms)
+ LoadAssemblies (931ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (423ms)
+ TypeCache.Refresh (407ms)
+ TypeCache.ScanAssembly (381ms)
+ ScanForSourceGeneratedMonoScriptInfo (3ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (1981ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1074ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (7ms)
+ SetLoadedEditorAssemblies (5ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (143ms)
+ ProcessInitializeOnLoadAttributes (498ms)
+ ProcessInitializeOnLoadMethodAttributes (400ms)
+ AfterProcessingInitializeOnLoad (18ms)
+ EditorAssembliesLoaded (3ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (24ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 37.25 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6301.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 18.350400 ms (FindLiveObjects: 0.588600 ms CreateObjectMapping: 0.258400 ms MarkObjects: 17.148900 ms DeleteObjects: 0.352800 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.876 seconds
+Refreshing native plugins compatible for Editor in 42.23 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.086 seconds
+Domain Reload Profiling: 4952ms
+ BeginReloadAssembly (1455ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (24ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (906ms)
+ RebuildCommonClasses (89ms)
+ RebuildNativeTypeToScriptingClass (17ms)
+ initialDomainReloadingComplete (103ms)
+ LoadAllAssembliesAndSetupDomain (1199ms)
+ LoadAssemblies (1080ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (429ms)
+ TypeCache.Refresh (417ms)
+ TypeCache.ScanAssembly (395ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2087ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1129ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (5ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (148ms)
+ ProcessInitializeOnLoadAttributes (521ms)
+ ProcessInitializeOnLoadMethodAttributes (427ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (32ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 64.22 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6316.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 25.783000 ms (FindLiveObjects: 0.678800 ms CreateObjectMapping: 0.499400 ms MarkObjects: 23.946800 ms DeleteObjects: 0.654700 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.875 seconds
+Refreshing native plugins compatible for Editor in 57.47 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.702 seconds
+Domain Reload Profiling: 4571ms
+ BeginReloadAssembly (225ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (89ms)
+ RebuildCommonClasses (42ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (77ms)
+ LoadAllAssembliesAndSetupDomain (1511ms)
+ LoadAssemblies (959ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (621ms)
+ TypeCache.Refresh (607ms)
+ TypeCache.ScanAssembly (579ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (14ms)
+ FinalizeReload (2703ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1327ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (9ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (204ms)
+ ProcessInitializeOnLoadAttributes (626ms)
+ ProcessInitializeOnLoadMethodAttributes (461ms)
+ AfterProcessingInitializeOnLoad (16ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (27ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 52.18 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6331.
+Memory consumption went from 195.2 MB to 195.0 MB.
+Total: 25.534800 ms (FindLiveObjects: 0.934100 ms CreateObjectMapping: 1.239900 ms MarkObjects: 22.739400 ms DeleteObjects: 0.619600 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.053 seconds
+Refreshing native plugins compatible for Editor in 46.83 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.453 seconds
+Domain Reload Profiling: 4483ms
+ BeginReloadAssembly (288ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (4ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (113ms)
+ RebuildCommonClasses (51ms)
+ RebuildNativeTypeToScriptingClass (15ms)
+ initialDomainReloadingComplete (152ms)
+ LoadAllAssembliesAndSetupDomain (1518ms)
+ LoadAssemblies (1074ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (544ms)
+ TypeCache.Refresh (533ms)
+ TypeCache.ScanAssembly (499ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (11ms)
+ FinalizeReload (2459ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1255ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (196ms)
+ ProcessInitializeOnLoadAttributes (662ms)
+ ProcessInitializeOnLoadMethodAttributes (354ms)
+ AfterProcessingInitializeOnLoad (17ms)
+ EditorAssembliesLoaded (6ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (32ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 46.99 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6346.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 27.665000 ms (FindLiveObjects: 1.249300 ms CreateObjectMapping: 1.573900 ms MarkObjects: 24.299400 ms DeleteObjects: 0.539100 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.685 seconds
+Refreshing native plugins compatible for Editor in 44.05 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.308 seconds
+Domain Reload Profiling: 3985ms
+ BeginReloadAssembly (235ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (83ms)
+ RebuildCommonClasses (39ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (73ms)
+ LoadAllAssembliesAndSetupDomain (1315ms)
+ LoadAssemblies (897ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (502ms)
+ TypeCache.Refresh (489ms)
+ TypeCache.ScanAssembly (453ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (13ms)
+ FinalizeReload (2309ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1143ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (7ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (161ms)
+ ProcessInitializeOnLoadAttributes (600ms)
+ ProcessInitializeOnLoadMethodAttributes (354ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (2ms)
+ ExecutionOrderSort2 (1ms)
+ AwakeInstancesAfterBackupRestoration (23ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 50.75 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6361.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 22.040700 ms (FindLiveObjects: 0.857700 ms CreateObjectMapping: 0.468100 ms MarkObjects: 20.122700 ms DeleteObjects: 0.590300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.963 seconds
+Refreshing native plugins compatible for Editor in 78.88 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.659 seconds
+Domain Reload Profiling: 4613ms
+ BeginReloadAssembly (216ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (80ms)
+ RebuildCommonClasses (36ms)
+ RebuildNativeTypeToScriptingClass (11ms)
+ initialDomainReloadingComplete (73ms)
+ LoadAllAssembliesAndSetupDomain (1617ms)
+ LoadAssemblies (958ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (724ms)
+ TypeCache.Refresh (709ms)
+ TypeCache.ScanAssembly (664ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (15ms)
+ FinalizeReload (2660ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1299ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (23ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (191ms)
+ ProcessInitializeOnLoadAttributes (638ms)
+ ProcessInitializeOnLoadMethodAttributes (419ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (46ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 70.35 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6376.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 29.913100 ms (FindLiveObjects: 0.734600 ms CreateObjectMapping: 0.625400 ms MarkObjects: 27.876000 ms DeleteObjects: 0.675300 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 1.674 seconds
+Refreshing native plugins compatible for Editor in 44.11 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.286 seconds
+Domain Reload Profiling: 3950ms
+ BeginReloadAssembly (233ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (92ms)
+ RebuildCommonClasses (41ms)
+ RebuildNativeTypeToScriptingClass (17ms)
+ initialDomainReloadingComplete (81ms)
+ LoadAllAssembliesAndSetupDomain (1291ms)
+ LoadAssemblies (889ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (477ms)
+ TypeCache.Refresh (465ms)
+ TypeCache.ScanAssembly (438ms)
+ ScanForSourceGeneratedMonoScriptInfo (0ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2287ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1122ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (7ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (170ms)
+ ProcessInitializeOnLoadAttributes (538ms)
+ ProcessInitializeOnLoadMethodAttributes (384ms)
+ AfterProcessingInitializeOnLoad (11ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (44ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 47.36 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6391.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 22.640700 ms (FindLiveObjects: 0.569000 ms CreateObjectMapping: 0.370000 ms MarkObjects: 21.203800 ms DeleteObjects: 0.495400 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
diff --git a/JNFrame2/Logs/AssetImportWorker1.log b/JNFrame2/Logs/AssetImportWorker1.log
index 39d79702..2c8d41a5 100644
--- a/JNFrame2/Logs/AssetImportWorker1.log
+++ b/JNFrame2/Logs/AssetImportWorker1.log
@@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame2
-logFile
Logs/AssetImportWorker1.log
-srvPort
-50224
+62834
Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
D:/myproject/JisolGame/JNFrame2
[UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,11 +49,11 @@ D:/myproject/JisolGame/JNFrame2
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
-Player connection [23288] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1065937437 [EditorId] 1065937437 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [17212] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 4040273054 [EditorId] 4040273054 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
-Player connection [23288] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 1065937437 [EditorId] 1065937437 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [17212] Host "[IP] 192.168.1.115 [Port] 0 [Flags] 2 [Guid] 4040273054 [EditorId] 4040273054 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
-Refreshing native plugins compatible for Editor in 120.49 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 75.53 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.1f1 (f18e0c1b5784)
[Subsystems] Discovering subsystems at path D:/Unity/2022.3.1f1/Editor/Data/Resources/UnitySubsystems
@@ -69,44 +69,44 @@ Initialize mono
Mono path[0] = 'D:/Unity/2022.3.1f1/Editor/Data/Managed'
Mono path[1] = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/Unity/2022.3.1f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56512
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56228
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Registered in 0.011258 seconds.
-- Loaded All Assemblies, in 0.611 seconds
+Registered in 0.009736 seconds.
+- Loaded All Assemblies, in 0.511 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 0.434 seconds
-Domain Reload Profiling: 1041ms
- BeginReloadAssembly (169ms)
+- Finished resetting the current domain, in 0.377 seconds
+Domain Reload Profiling: 885ms
+ BeginReloadAssembly (148ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms)
- RebuildCommonClasses (70ms)
- RebuildNativeTypeToScriptingClass (24ms)
- initialDomainReloadingComplete (110ms)
- LoadAllAssembliesAndSetupDomain (233ms)
- LoadAssemblies (163ms)
+ RebuildCommonClasses (56ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (91ms)
+ LoadAllAssembliesAndSetupDomain (199ms)
+ LoadAssemblies (144ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (222ms)
- TypeCache.Refresh (220ms)
- TypeCache.ScanAssembly (196ms)
+ AnalyzeDomain (190ms)
+ TypeCache.Refresh (188ms)
+ TypeCache.ScanAssembly (172ms)
ScanForSourceGeneratedMonoScriptInfo (1ms)
ResolveRequiredComponents (1ms)
- FinalizeReload (435ms)
+ FinalizeReload (378ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (348ms)
+ SetupLoadedEditorAssemblies (296ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
- SetLoadedEditorAssemblies (13ms)
+ SetLoadedEditorAssemblies (9ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (4ms)
- ProcessInitializeOnLoadAttributes (236ms)
- ProcessInitializeOnLoadMethodAttributes (80ms)
+ ProcessInitializeOnLoadAttributes (185ms)
+ ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
@@ -114,8 +114,8 @@ Domain Reload Profiling: 1041ms
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.021 seconds
-Refreshing native plugins compatible for Editor in 54.49 ms, found 3 plugins.
+- Loaded All Assemblies, in 1.951 seconds
+Refreshing native plugins compatible for Editor in 40.75 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Package Manager log level set to [2]
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
@@ -134,48 +134,48 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.133 seconds
-Domain Reload Profiling: 4146ms
- BeginReloadAssembly (205ms)
+- Finished resetting the current domain, in 2.171 seconds
+Domain Reload Profiling: 4111ms
+ BeginReloadAssembly (200ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (6ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (36ms)
- RebuildCommonClasses (45ms)
+ RebuildCommonClasses (54ms)
RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (74ms)
- LoadAllAssembliesAndSetupDomain (1675ms)
- LoadAssemblies (1108ms)
+ initialDomainReloadingComplete (79ms)
+ LoadAllAssembliesAndSetupDomain (1593ms)
+ LoadAssemblies (1012ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (656ms)
- TypeCache.Refresh (606ms)
- TypeCache.ScanAssembly (573ms)
- ScanForSourceGeneratedMonoScriptInfo (36ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (2133ms)
+ AnalyzeDomain (667ms)
+ TypeCache.Refresh (618ms)
+ TypeCache.ScanAssembly (590ms)
+ ScanForSourceGeneratedMonoScriptInfo (38ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2172ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1870ms)
+ SetupLoadedEditorAssemblies (1918ms)
LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (8ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (6ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (172ms)
- ProcessInitializeOnLoadAttributes (903ms)
- ProcessInitializeOnLoadMethodAttributes (768ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
+ BeforeProcessingInitializeOnLoad (147ms)
+ ProcessInitializeOnLoadAttributes (983ms)
+ ProcessInitializeOnLoadMethodAttributes (758ms)
+ AfterProcessingInitializeOnLoad (15ms)
+ EditorAssembliesLoaded (1ms)
ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (13ms)
+ 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 61.01 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 51.81 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5656 Unused Serialized files (Serialized files now loaded: 0)
Unloading 183 unused Assets / (232.7 KB). Loaded Objects now: 6106.
-Memory consumption went from 197.8 MB to 197.6 MB.
-Total: 26.447200 ms (FindLiveObjects: 0.939200 ms CreateObjectMapping: 0.851600 ms MarkObjects: 24.035100 ms DeleteObjects: 0.618400 ms)
+Memory consumption went from 198.0 MB to 197.8 MB.
+Total: 19.591700 ms (FindLiveObjects: 0.874700 ms CreateObjectMapping: 0.410800 ms MarkObjects: 18.005200 ms DeleteObjects: 0.299000 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
@@ -194,8 +194,8 @@ AssetImportParameters requested are different than current active one (requested
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.818 seconds
-Refreshing native plugins compatible for Editor in 46.59 ms, found 3 plugins.
+- Loaded All Assemblies, in 3.099 seconds
+Refreshing native plugins compatible for Editor in 52.81 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
@@ -212,1434 +212,504 @@ UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.225 seconds
-Domain Reload Profiling: 4038ms
- BeginReloadAssembly (234ms)
+- Finished resetting the current domain, in 4.461 seconds
+Domain Reload Profiling: 7575ms
+ BeginReloadAssembly (499ms)
ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
+ DisableScriptedObjects (15ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (85ms)
- RebuildCommonClasses (55ms)
- RebuildNativeTypeToScriptingClass (15ms)
- initialDomainReloadingComplete (99ms)
- LoadAllAssembliesAndSetupDomain (1407ms)
- LoadAssemblies (978ms)
+ CreateAndSetChildDomain (174ms)
+ RebuildCommonClasses (85ms)
+ RebuildNativeTypeToScriptingClass (30ms)
+ initialDomainReloadingComplete (118ms)
+ LoadAllAssembliesAndSetupDomain (2352ms)
+ LoadAssemblies (1687ms)
RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (516ms)
- TypeCache.Refresh (501ms)
- TypeCache.ScanAssembly (472ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (2228ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1169ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (149ms)
- ProcessInitializeOnLoadAttributes (580ms)
- ProcessInitializeOnLoadMethodAttributes (411ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (54ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 46.55 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6121.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 24.686200 ms (FindLiveObjects: 0.786500 ms CreateObjectMapping: 0.515600 ms MarkObjects: 22.861200 ms DeleteObjects: 0.519900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.154 seconds
-Refreshing native plugins compatible for Editor in 64.50 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 3.736 seconds
-Domain Reload Profiling: 5882ms
- BeginReloadAssembly (254ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (105ms)
- RebuildCommonClasses (40ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (81ms)
- LoadAllAssembliesAndSetupDomain (1758ms)
- LoadAssemblies (1095ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (738ms)
- TypeCache.Refresh (724ms)
- TypeCache.ScanAssembly (691ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (3737ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (2243ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
- SetLoadedEditorAssemblies (14ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (247ms)
- ProcessInitializeOnLoadAttributes (1202ms)
- ProcessInitializeOnLoadMethodAttributes (752ms)
- AfterProcessingInitializeOnLoad (16ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (50ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 91.94 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6136.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 38.137600 ms (FindLiveObjects: 1.303200 ms CreateObjectMapping: 1.794000 ms MarkObjects: 34.357500 ms DeleteObjects: 0.680200 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.945 seconds
-Refreshing native plugins compatible for Editor in 49.63 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.915 seconds
-Domain Reload Profiling: 3851ms
- BeginReloadAssembly (286ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (103ms)
- RebuildCommonClasses (53ms)
- RebuildNativeTypeToScriptingClass (22ms)
- initialDomainReloadingComplete (85ms)
- LoadAllAssembliesAndSetupDomain (1488ms)
- LoadAssemblies (973ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (623ms)
- TypeCache.Refresh (613ms)
- TypeCache.ScanAssembly (585ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (10ms)
- FinalizeReload (1917ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (950ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (141ms)
- ProcessInitializeOnLoadAttributes (443ms)
- ProcessInitializeOnLoadMethodAttributes (338ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (21ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 39.28 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6151.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 19.277600 ms (FindLiveObjects: 0.799000 ms CreateObjectMapping: 0.620800 ms MarkObjects: 17.594400 ms DeleteObjects: 0.261900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.483 seconds
-Refreshing native plugins compatible for Editor in 37.87 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.904 seconds
-Domain Reload Profiling: 3384ms
- BeginReloadAssembly (214ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (84ms)
- RebuildCommonClasses (41ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (73ms)
- LoadAllAssembliesAndSetupDomain (1134ms)
- LoadAssemblies (750ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (456ms)
- TypeCache.Refresh (443ms)
- TypeCache.ScanAssembly (419ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (1908ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (898ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (130ms)
- ProcessInitializeOnLoadAttributes (444ms)
- ProcessInitializeOnLoadMethodAttributes (300ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (27ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 30.29 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6166.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 16.679700 ms (FindLiveObjects: 0.610100 ms CreateObjectMapping: 0.307900 ms MarkObjects: 15.337400 ms DeleteObjects: 0.420400 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.880 seconds
-Refreshing native plugins compatible for Editor in 42.08 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.140 seconds
-Domain Reload Profiling: 4017ms
- BeginReloadAssembly (278ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (130ms)
- RebuildCommonClasses (40ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (69ms)
- LoadAllAssembliesAndSetupDomain (1475ms)
- LoadAssemblies (996ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (555ms)
- TypeCache.Refresh (543ms)
- TypeCache.ScanAssembly (516ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2144ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1085ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (163ms)
- ProcessInitializeOnLoadAttributes (526ms)
- ProcessInitializeOnLoadMethodAttributes (364ms)
- AfterProcessingInitializeOnLoad (18ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (25ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 92.54 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.0 KB). Loaded Objects now: 6181.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 38.591900 ms (FindLiveObjects: 1.173500 ms CreateObjectMapping: 1.196500 ms MarkObjects: 35.687300 ms DeleteObjects: 0.531400 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.766 seconds
-Refreshing native plugins compatible for Editor in 47.07 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.963 seconds
-Domain Reload Profiling: 3724ms
- BeginReloadAssembly (354ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (10ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (169ms)
- RebuildCommonClasses (45ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (84ms)
- LoadAllAssembliesAndSetupDomain (1264ms)
- LoadAssemblies (921ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (433ms)
- TypeCache.Refresh (419ms)
- TypeCache.ScanAssembly (384ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (1966ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1003ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (9ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (129ms)
- ProcessInitializeOnLoadAttributes (471ms)
- ProcessInitializeOnLoadMethodAttributes (370ms)
- AfterProcessingInitializeOnLoad (14ms)
- EditorAssembliesLoaded (3ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (31ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 43.78 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6196.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 21.399600 ms (FindLiveObjects: 0.599100 ms CreateObjectMapping: 0.520100 ms MarkObjects: 19.517200 ms DeleteObjects: 0.759700 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
- custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.567 seconds
-Refreshing native plugins compatible for Editor in 37.20 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.078 seconds
-Domain Reload Profiling: 3639ms
- BeginReloadAssembly (232ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (96ms)
- RebuildCommonClasses (35ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (70ms)
- LoadAllAssembliesAndSetupDomain (1210ms)
- LoadAssemblies (840ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (445ms)
- TypeCache.Refresh (433ms)
- TypeCache.ScanAssembly (407ms)
- ScanForSourceGeneratedMonoScriptInfo (3ms)
- ResolveRequiredComponents (9ms)
- FinalizeReload (2079ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1069ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (131ms)
- ProcessInitializeOnLoadAttributes (523ms)
- ProcessInitializeOnLoadMethodAttributes (384ms)
- AfterProcessingInitializeOnLoad (17ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (45ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 39.36 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6211.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 24.281300 ms (FindLiveObjects: 0.940300 ms CreateObjectMapping: 0.552700 ms MarkObjects: 22.396100 ms DeleteObjects: 0.389700 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.833 seconds
-Refreshing native plugins compatible for Editor in 66.75 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.335 seconds
-Domain Reload Profiling: 4169ms
- BeginReloadAssembly (237ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (93ms)
- RebuildCommonClasses (39ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (75ms)
- LoadAllAssembliesAndSetupDomain (1461ms)
- LoadAssemblies (894ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (641ms)
- TypeCache.Refresh (623ms)
- TypeCache.ScanAssembly (585ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
+ AnalyzeDomain (863ms)
+ TypeCache.Refresh (840ms)
+ TypeCache.ScanAssembly (802ms)
+ ScanForSourceGeneratedMonoScriptInfo (6ms)
ResolveRequiredComponents (17ms)
- FinalizeReload (2344ms)
+ FinalizeReload (4491ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1124ms)
+ SetupLoadedEditorAssemblies (1378ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (157ms)
- ProcessInitializeOnLoadAttributes (574ms)
- ProcessInitializeOnLoadMethodAttributes (358ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (7ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (36ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 41.55 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6226.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 19.926400 ms (FindLiveObjects: 0.553800 ms CreateObjectMapping: 0.290100 ms MarkObjects: 18.634800 ms DeleteObjects: 0.445800 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.583 seconds
-Refreshing native plugins compatible for Editor in 60.74 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.004 seconds
-Domain Reload Profiling: 3581ms
- BeginReloadAssembly (222ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (7ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (79ms)
- RebuildCommonClasses (44ms)
- RebuildNativeTypeToScriptingClass (16ms)
- initialDomainReloadingComplete (75ms)
- LoadAllAssembliesAndSetupDomain (1218ms)
- LoadAssemblies (831ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (468ms)
- TypeCache.Refresh (455ms)
- TypeCache.ScanAssembly (401ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (2007ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (996ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (118ms)
- ProcessInitializeOnLoadAttributes (498ms)
- ProcessInitializeOnLoadMethodAttributes (349ms)
- AfterProcessingInitializeOnLoad (14ms)
- EditorAssembliesLoaded (4ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (22ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 37.24 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6241.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 16.465500 ms (FindLiveObjects: 0.544000 ms CreateObjectMapping: 0.302100 ms MarkObjects: 15.285100 ms DeleteObjects: 0.330800 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.698 seconds
-Refreshing native plugins compatible for Editor in 47.43 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.193 seconds
-Domain Reload Profiling: 3886ms
- BeginReloadAssembly (318ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (155ms)
- RebuildCommonClasses (41ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (70ms)
- LoadAllAssembliesAndSetupDomain (1250ms)
- LoadAssemblies (857ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (479ms)
- TypeCache.Refresh (465ms)
- TypeCache.ScanAssembly (436ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (2196ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1057ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (9ms)
- SetLoadedEditorAssemblies (6ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (155ms)
- ProcessInitializeOnLoadAttributes (490ms)
- ProcessInitializeOnLoadMethodAttributes (381ms)
- AfterProcessingInitializeOnLoad (13ms)
- EditorAssembliesLoaded (3ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (28ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 76.97 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6256.
-Memory consumption went from 195.1 MB to 194.9 MB.
-Total: 21.246600 ms (FindLiveObjects: 0.693600 ms CreateObjectMapping: 1.113600 ms MarkObjects: 19.133100 ms DeleteObjects: 0.303900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.474 seconds
-Refreshing native plugins compatible for Editor in 120.46 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 3.242 seconds
-Domain Reload Profiling: 5716ms
- BeginReloadAssembly (251ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (96ms)
- RebuildCommonClasses (53ms)
- RebuildNativeTypeToScriptingClass (19ms)
- initialDomainReloadingComplete (83ms)
- LoadAllAssembliesAndSetupDomain (2058ms)
- LoadAssemblies (1065ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (1083ms)
- TypeCache.Refresh (1043ms)
- TypeCache.ScanAssembly (1000ms)
- ScanForSourceGeneratedMonoScriptInfo (10ms)
- ResolveRequiredComponents (31ms)
- FinalizeReload (3251ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1508ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (9ms)
- SetLoadedEditorAssemblies (10ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (187ms)
- ProcessInitializeOnLoadAttributes (850ms)
- ProcessInitializeOnLoadMethodAttributes (430ms)
- AfterProcessingInitializeOnLoad (20ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (40ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 43.55 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6271.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 19.613700 ms (FindLiveObjects: 0.724400 ms CreateObjectMapping: 0.320700 ms MarkObjects: 18.238700 ms DeleteObjects: 0.327400 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.876 seconds
-Refreshing native plugins compatible for Editor in 33.91 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.085 seconds
-Domain Reload Profiling: 3948ms
- BeginReloadAssembly (351ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (9ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (149ms)
- RebuildCommonClasses (65ms)
- RebuildNativeTypeToScriptingClass (14ms)
- initialDomainReloadingComplete (132ms)
- LoadAllAssembliesAndSetupDomain (1300ms)
- LoadAssemblies (962ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (454ms)
- TypeCache.Refresh (443ms)
- TypeCache.ScanAssembly (416ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2087ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1089ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (144ms)
- ProcessInitializeOnLoadAttributes (584ms)
- ProcessInitializeOnLoadMethodAttributes (340ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (25ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 39.77 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (206.3 KB). Loaded Objects now: 6286.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 18.089100 ms (FindLiveObjects: 0.784600 ms CreateObjectMapping: 0.937200 ms MarkObjects: 15.909300 ms DeleteObjects: 0.455900 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.728 seconds
-Refreshing native plugins compatible for Editor in 43.39 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 1.977 seconds
-Domain Reload Profiling: 3699ms
- BeginReloadAssembly (313ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (8ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (136ms)
- RebuildCommonClasses (48ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (87ms)
- LoadAllAssembliesAndSetupDomain (1257ms)
- LoadAssemblies (931ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (423ms)
- TypeCache.Refresh (407ms)
- TypeCache.ScanAssembly (381ms)
- ScanForSourceGeneratedMonoScriptInfo (3ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (1981ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1074ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (143ms)
- ProcessInitializeOnLoadAttributes (498ms)
- ProcessInitializeOnLoadMethodAttributes (400ms)
- AfterProcessingInitializeOnLoad (18ms)
- EditorAssembliesLoaded (3ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (24ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 37.25 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6301.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 18.350400 ms (FindLiveObjects: 0.588600 ms CreateObjectMapping: 0.258400 ms MarkObjects: 17.148900 ms DeleteObjects: 0.352800 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.876 seconds
-Refreshing native plugins compatible for Editor in 42.23 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.086 seconds
-Domain Reload Profiling: 4952ms
- BeginReloadAssembly (1455ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (24ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (906ms)
- RebuildCommonClasses (89ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (103ms)
- LoadAllAssembliesAndSetupDomain (1199ms)
- LoadAssemblies (1080ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (429ms)
- TypeCache.Refresh (417ms)
- TypeCache.ScanAssembly (395ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2087ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1129ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (5ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (148ms)
- ProcessInitializeOnLoadAttributes (521ms)
- ProcessInitializeOnLoadMethodAttributes (427ms)
- AfterProcessingInitializeOnLoad (15ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (32ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 64.22 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6316.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 25.783000 ms (FindLiveObjects: 0.678800 ms CreateObjectMapping: 0.499400 ms MarkObjects: 23.946800 ms DeleteObjects: 0.654700 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.875 seconds
-Refreshing native plugins compatible for Editor in 57.47 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.702 seconds
-Domain Reload Profiling: 4571ms
- BeginReloadAssembly (225ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (89ms)
- RebuildCommonClasses (42ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (77ms)
- LoadAllAssembliesAndSetupDomain (1511ms)
- LoadAssemblies (959ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (621ms)
- TypeCache.Refresh (607ms)
- TypeCache.ScanAssembly (579ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (2703ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1327ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (9ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (204ms)
- ProcessInitializeOnLoadAttributes (626ms)
- ProcessInitializeOnLoadMethodAttributes (461ms)
- AfterProcessingInitializeOnLoad (16ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (27ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 52.18 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.2 KB). Loaded Objects now: 6331.
-Memory consumption went from 195.2 MB to 195.0 MB.
-Total: 25.534800 ms (FindLiveObjects: 0.934100 ms CreateObjectMapping: 1.239900 ms MarkObjects: 22.739400 ms DeleteObjects: 0.619600 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 2.053 seconds
-Refreshing native plugins compatible for Editor in 46.83 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.453 seconds
-Domain Reload Profiling: 4483ms
- BeginReloadAssembly (288ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (113ms)
- RebuildCommonClasses (51ms)
- RebuildNativeTypeToScriptingClass (15ms)
- initialDomainReloadingComplete (152ms)
- LoadAllAssembliesAndSetupDomain (1518ms)
- LoadAssemblies (1074ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (544ms)
- TypeCache.Refresh (533ms)
- TypeCache.ScanAssembly (499ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (11ms)
- FinalizeReload (2459ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1255ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (8ms)
RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (196ms)
- ProcessInitializeOnLoadAttributes (662ms)
- ProcessInitializeOnLoadMethodAttributes (354ms)
- AfterProcessingInitializeOnLoad (17ms)
- EditorAssembliesLoaded (6ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (32ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 46.99 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6346.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 27.665000 ms (FindLiveObjects: 1.249300 ms CreateObjectMapping: 1.573900 ms MarkObjects: 24.299400 ms DeleteObjects: 0.539100 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.685 seconds
-Refreshing native plugins compatible for Editor in 44.05 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.308 seconds
-Domain Reload Profiling: 3985ms
- BeginReloadAssembly (235ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (83ms)
- RebuildCommonClasses (39ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (73ms)
- LoadAllAssembliesAndSetupDomain (1315ms)
- LoadAssemblies (897ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (502ms)
- TypeCache.Refresh (489ms)
- TypeCache.ScanAssembly (453ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (2309ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1143ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (161ms)
- ProcessInitializeOnLoadAttributes (600ms)
- ProcessInitializeOnLoadMethodAttributes (354ms)
- AfterProcessingInitializeOnLoad (11ms)
- EditorAssembliesLoaded (2ms)
- ExecutionOrderSort2 (1ms)
- AwakeInstancesAfterBackupRestoration (23ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 50.75 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6361.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 22.040700 ms (FindLiveObjects: 0.857700 ms CreateObjectMapping: 0.468100 ms MarkObjects: 20.122700 ms DeleteObjects: 0.590300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.963 seconds
-Refreshing native plugins compatible for Editor in 78.88 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.659 seconds
-Domain Reload Profiling: 4613ms
- BeginReloadAssembly (216ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (80ms)
- RebuildCommonClasses (36ms)
- RebuildNativeTypeToScriptingClass (11ms)
- initialDomainReloadingComplete (73ms)
- LoadAllAssembliesAndSetupDomain (1617ms)
- LoadAssemblies (958ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (724ms)
- TypeCache.Refresh (709ms)
- TypeCache.ScanAssembly (664ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (15ms)
- FinalizeReload (2660ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1299ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (12ms)
- SetLoadedEditorAssemblies (23ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (191ms)
- ProcessInitializeOnLoadAttributes (638ms)
- ProcessInitializeOnLoadMethodAttributes (419ms)
- AfterProcessingInitializeOnLoad (15ms)
- EditorAssembliesLoaded (1ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (46ms)
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 70.35 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6376.
-Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 29.913100 ms (FindLiveObjects: 0.734600 ms CreateObjectMapping: 0.625400 ms MarkObjects: 27.876000 ms DeleteObjects: 0.675300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
- custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
- custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
- custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
- custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
- custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
- custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
- custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
- custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
- custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
- custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in 1.674 seconds
-Refreshing native plugins compatible for Editor in 44.11 ms, found 3 plugins.
-Native extension for WindowsStandalone target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-AutoRegister
-UnityEngine.StackTraceUtility:ExtractStackTrace ()
-UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
-UnityEngine.Logger:Log (UnityEngine.LogType,object)
-UnityEngine.Debug:Log (object)
-JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
-System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
-UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
-
-(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
-
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in 2.286 seconds
-Domain Reload Profiling: 3950ms
- BeginReloadAssembly (233ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (92ms)
- RebuildCommonClasses (41ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (81ms)
- LoadAllAssembliesAndSetupDomain (1291ms)
- LoadAssemblies (889ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (477ms)
- TypeCache.Refresh (465ms)
- TypeCache.ScanAssembly (438ms)
- ScanForSourceGeneratedMonoScriptInfo (0ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (2287ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (1122ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (10ms)
- SetLoadedEditorAssemblies (7ms)
- RefreshPlugins (0ms)
- BeforeProcessingInitializeOnLoad (170ms)
- ProcessInitializeOnLoadAttributes (538ms)
- ProcessInitializeOnLoadMethodAttributes (384ms)
- AfterProcessingInitializeOnLoad (11ms)
+ BeforeProcessingInitializeOnLoad (194ms)
+ ProcessInitializeOnLoadAttributes (589ms)
+ ProcessInitializeOnLoadMethodAttributes (561ms)
+ AfterProcessingInitializeOnLoad (16ms)
EditorAssembliesLoaded (1ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (44ms)
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
-Refreshing native plugins compatible for Editor in 47.36 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 63.15 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 5640 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6391.
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6122.
Memory consumption went from 195.3 MB to 195.1 MB.
-Total: 22.640700 ms (FindLiveObjects: 0.569000 ms CreateObjectMapping: 0.370000 ms MarkObjects: 21.203800 ms DeleteObjects: 0.495400 ms)
+Total: 32.891000 ms (FindLiveObjects: 0.788400 ms CreateObjectMapping: 0.762200 ms MarkObjects: 30.416100 ms DeleteObjects: 0.921700 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.186 seconds
+Refreshing native plugins compatible for Editor in 48.03 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.610 seconds
+Domain Reload Profiling: 4795ms
+ BeginReloadAssembly (310ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (8ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (133ms)
+ RebuildCommonClasses (56ms)
+ RebuildNativeTypeToScriptingClass (17ms)
+ initialDomainReloadingComplete (94ms)
+ LoadAllAssembliesAndSetupDomain (1701ms)
+ LoadAssemblies (1141ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (658ms)
+ TypeCache.Refresh (632ms)
+ TypeCache.ScanAssembly (587ms)
+ ScanForSourceGeneratedMonoScriptInfo (7ms)
+ ResolveRequiredComponents (19ms)
+ FinalizeReload (2616ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1380ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (170ms)
+ ProcessInitializeOnLoadAttributes (721ms)
+ ProcessInitializeOnLoadMethodAttributes (451ms)
+ AfterProcessingInitializeOnLoad (17ms)
+ EditorAssembliesLoaded (6ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (53ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/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.53 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.3 KB). Loaded Objects now: 6137.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 34.131700 ms (FindLiveObjects: 1.077400 ms CreateObjectMapping: 1.027700 ms MarkObjects: 31.540900 ms DeleteObjects: 0.483800 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.078 seconds
+Refreshing native plugins compatible for Editor in 42.15 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.322 seconds
+Domain Reload Profiling: 4390ms
+ BeginReloadAssembly (298ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (125ms)
+ RebuildCommonClasses (58ms)
+ RebuildNativeTypeToScriptingClass (13ms)
+ initialDomainReloadingComplete (96ms)
+ LoadAllAssembliesAndSetupDomain (1603ms)
+ LoadAssemblies (1114ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (579ms)
+ TypeCache.Refresh (563ms)
+ TypeCache.ScanAssembly (527ms)
+ ScanForSourceGeneratedMonoScriptInfo (4ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (2322ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1282ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (8ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (185ms)
+ ProcessInitializeOnLoadAttributes (580ms)
+ ProcessInitializeOnLoadMethodAttributes (484ms)
+ AfterProcessingInitializeOnLoad (16ms)
+ EditorAssembliesLoaded (3ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (37ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 57.08 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6152.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 36.416200 ms (FindLiveObjects: 1.636600 ms CreateObjectMapping: 1.047500 ms MarkObjects: 32.691500 ms DeleteObjects: 1.002000 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.257 seconds
+Refreshing native plugins compatible for Editor in 37.98 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 5.218 seconds
+Domain Reload Profiling: 7465ms
+ BeginReloadAssembly (463ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (12ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (232ms)
+ RebuildCommonClasses (75ms)
+ RebuildNativeTypeToScriptingClass (18ms)
+ initialDomainReloadingComplete (101ms)
+ LoadAllAssembliesAndSetupDomain (1589ms)
+ LoadAssemblies (1125ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (576ms)
+ TypeCache.Refresh (560ms)
+ TypeCache.ScanAssembly (526ms)
+ ScanForSourceGeneratedMonoScriptInfo (4ms)
+ ResolveRequiredComponents (12ms)
+ FinalizeReload (5219ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (4151ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (10ms)
+ SetLoadedEditorAssemblies (6ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (181ms)
+ ProcessInitializeOnLoadAttributes (972ms)
+ ProcessInitializeOnLoadMethodAttributes (2959ms)
+ AfterProcessingInitializeOnLoad (22ms)
+ EditorAssembliesLoaded (1ms)
+ 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 60.39 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.1 KB). Loaded Objects now: 6167.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 32.945000 ms (FindLiveObjects: 0.804100 ms CreateObjectMapping: 0.912000 ms MarkObjects: 30.549200 ms DeleteObjects: 0.677400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.567 seconds
+Refreshing native plugins compatible for Editor in 584.74 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 5.741 seconds
+Domain Reload Profiling: 8300ms
+ BeginReloadAssembly (353ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (10ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (141ms)
+ RebuildCommonClasses (90ms)
+ RebuildNativeTypeToScriptingClass (19ms)
+ initialDomainReloadingComplete (112ms)
+ LoadAllAssembliesAndSetupDomain (1983ms)
+ LoadAssemblies (1134ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (981ms)
+ TypeCache.Refresh (867ms)
+ TypeCache.ScanAssembly (781ms)
+ ScanForSourceGeneratedMonoScriptInfo (82ms)
+ ResolveRequiredComponents (32ms)
+ FinalizeReload (5742ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (2334ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (16ms)
+ SetLoadedEditorAssemblies (11ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (262ms)
+ ProcessInitializeOnLoadAttributes (888ms)
+ ProcessInitializeOnLoadMethodAttributes (1134ms)
+ AfterProcessingInitializeOnLoad (22ms)
+ EditorAssembliesLoaded (1ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (45ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 57.31 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5643 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6184.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 42.818700 ms (FindLiveObjects: 2.200700 ms CreateObjectMapping: 1.608400 ms MarkObjects: 38.130600 ms DeleteObjects: 0.874800 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.185 seconds
+Refreshing native plugins compatible for Editor in 99.94 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.686 seconds
+Domain Reload Profiling: 4863ms
+ BeginReloadAssembly (345ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (114ms)
+ RebuildCommonClasses (64ms)
+ RebuildNativeTypeToScriptingClass (20ms)
+ initialDomainReloadingComplete (92ms)
+ LoadAllAssembliesAndSetupDomain (1653ms)
+ LoadAssemblies (1149ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (658ms)
+ TypeCache.Refresh (632ms)
+ TypeCache.ScanAssembly (591ms)
+ ScanForSourceGeneratedMonoScriptInfo (6ms)
+ ResolveRequiredComponents (19ms)
+ FinalizeReload (2688ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1197ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (8ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (163ms)
+ ProcessInitializeOnLoadAttributes (565ms)
+ ProcessInitializeOnLoadMethodAttributes (427ms)
+ AfterProcessingInitializeOnLoad (14ms)
+ EditorAssembliesLoaded (7ms)
+ 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 59.22 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5643 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (206.2 KB). Loaded Objects now: 6199.
+Memory consumption went from 195.3 MB to 195.1 MB.
+Total: 55.583500 ms (FindLiveObjects: 1.435700 ms CreateObjectMapping: 3.745300 ms MarkObjects: 49.016100 ms DeleteObjects: 1.382600 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in 2.164 seconds
+Refreshing native plugins compatible for Editor in 39.06 ms, found 3 plugins.
+Native extension for WindowsStandalone target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+AutoRegister
+UnityEngine.StackTraceUtility:ExtractStackTrace ()
+UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
+UnityEngine.Logger:Log (UnityEngine.LogType,object)
+UnityEngine.Debug:Log (object)
+JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
+System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
+UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
+
+(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
+
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in 2.355 seconds
+Domain Reload Profiling: 4522ms
+ BeginReloadAssembly (368ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (166ms)
+ RebuildCommonClasses (82ms)
+ RebuildNativeTypeToScriptingClass (21ms)
+ initialDomainReloadingComplete (123ms)
+ LoadAllAssembliesAndSetupDomain (1562ms)
+ LoadAssemblies (1134ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ AnalyzeDomain (547ms)
+ TypeCache.Refresh (532ms)
+ TypeCache.ScanAssembly (496ms)
+ ScanForSourceGeneratedMonoScriptInfo (5ms)
+ ResolveRequiredComponents (10ms)
+ FinalizeReload (2365ms)
+ ReleaseScriptCaches (0ms)
+ RebuildScriptCaches (0ms)
+ SetupLoadedEditorAssemblies (1195ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (9ms)
+ SetLoadedEditorAssemblies (9ms)
+ RefreshPlugins (0ms)
+ BeforeProcessingInitializeOnLoad (159ms)
+ ProcessInitializeOnLoadAttributes (588ms)
+ ProcessInitializeOnLoadMethodAttributes (411ms)
+ AfterProcessingInitializeOnLoad (13ms)
+ EditorAssembliesLoaded (6ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (34ms)
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
+Refreshing native plugins compatible for Editor in 59.87 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 5643 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 136 unused Assets / (205.1 KB). Loaded Objects now: 6214.
+Memory consumption went from 195.4 MB to 195.2 MB.
+Total: 33.066600 ms (FindLiveObjects: 0.823700 ms CreateObjectMapping: 0.497600 ms MarkObjects: 31.378400 ms DeleteObjects: 0.363500 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
diff --git a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log
index 8f94b07e..c5c74b9f 100644
--- a/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log
+++ b/JNFrame2/Logs/shadercompiler-AssetImportWorker0.log
@@ -4,22 +4,3 @@ Cmd: initializeCompiler
Cmd: preprocess
insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
-
-Quitting shader compiler process
-
diff --git a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log
index 94a8a6ea..c910a807 100644
--- a/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log
+++ b/JNFrame2/Logs/shadercompiler-UnityShaderCompiler.exe0.log
@@ -1,75 +1,6 @@
Base path: 'D:/Unity/2022.3.1f1/Editor/Data', plugins path 'D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines'
Cmd: initializeCompiler
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-
Cmd: preprocess
insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
@@ -98,43 +29,6 @@ Cmd: preprocess
insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
Cmd: preprocess
insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-
-Cmd: preprocess
- insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
-
-Cmd: shutdown