mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
提交
This commit is contained in:
parent
0827295804
commit
6cf78b53bb
File diff suppressed because it is too large
Load Diff
@ -43,13 +43,13 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="Assets\Plugins\Sirenix\Odin Inspector\Assets\Editor\Bootstrap License.txt" />
|
<None Include="Assets\Plugins\Sirenix\Odin Inspector\Assets\Editor\Bootstrap License.txt" />
|
||||||
<Reference Include="UnityEngine">
|
<Reference Include="UnityEngine">
|
||||||
<HintPath>D:\Unity\2022.3.1f1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
|
<HintPath>C:\APP\UnityEdit\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="UnityEngine.CoreModule">
|
<Reference Include="UnityEngine.CoreModule">
|
||||||
<HintPath>D:\Unity\2022.3.1f1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll</HintPath>
|
<HintPath>C:\APP\UnityEdit\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="UnityEditor">
|
<Reference Include="UnityEditor">
|
||||||
<HintPath>D:\Unity\2022.3.1f1\Editor\Data\Managed\UnityEngine\UnityEditor.dll</HintPath>
|
<HintPath>C:\APP\UnityEdit\2022.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using JNGame.Game;
|
using JNGame.Game;
|
||||||
using JNGame.GAS;
|
using JNGame.GAS;
|
||||||
|
using JNGame.Runtime.GAS.Runtime;
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
namespace GAS.Editor
|
namespace GAS.Editor
|
||||||
@ -179,8 +180,8 @@ namespace GAS.Editor
|
|||||||
if (IsPlaying)
|
if (IsPlaying)
|
||||||
{
|
{
|
||||||
if (_selected == null || _selected.EntityId == 0)
|
if (_selected == null || _selected.EntityId == 0)
|
||||||
_selected = GameplayAbilitySystem.GAS.AbilitySystemComponents.Count > 0
|
_selected = JexGasManager.Editor.AbilitySystemComponents.Count > 0
|
||||||
? GameplayAbilitySystem.GAS.AbilitySystemComponents[0] as AbilitySystemComponent
|
? JexGasManager.Editor.AbilitySystemComponents[0] as AbilitySystemComponent
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
RefreshAscInfo();
|
RefreshAscInfo();
|
||||||
@ -201,7 +202,7 @@ namespace GAS.Editor
|
|||||||
if (!IsPlaying) return;
|
if (!IsPlaying) return;
|
||||||
|
|
||||||
menuScrollPos = EditorGUILayout.BeginScrollView(menuScrollPos, GUI.skin.box);
|
menuScrollPos = EditorGUILayout.BeginScrollView(menuScrollPos, GUI.skin.box);
|
||||||
foreach (var iasc in GameplayAbilitySystem.GAS.AbilitySystemComponents)
|
foreach (var iasc in JexGasManager.Editor.AbilitySystemComponents)
|
||||||
{
|
{
|
||||||
var asc = (AbilitySystemComponent)iasc;
|
var asc = (AbilitySystemComponent)iasc;
|
||||||
var presetName = asc.Preset != null ? asc.Preset.Name : "NoPreset";
|
var presetName = asc.Preset != null ? asc.Preset.Name : "NoPreset";
|
||||||
@ -211,7 +212,6 @@ namespace GAS.Editor
|
|||||||
RefreshAscInfo();
|
RefreshAscInfo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EditorGUILayout.EndScrollView();
|
EditorGUILayout.EndScrollView();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ namespace GAS.Runtime
|
|||||||
{
|
{
|
||||||
Debug.Log("error");
|
Debug.Log("error");
|
||||||
}
|
}
|
||||||
m_CueIndex = workingContext.OwnerAbility.Owner.OnCueAdd(workingContext.OwnerAbility, cueAssetLocation);
|
m_CueIndex = workingContext.OwnerAbility.Owner.OnCueAdd(workingContext.OwnerAbility, cueAssetLocation,this.durationalFrame);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnEnd(TimelineWorkingContext workingContext)
|
protected override void OnEnd(TimelineWorkingContext workingContext)
|
||||||
|
@ -0,0 +1,51 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using GAS.General;
|
||||||
|
|
||||||
|
namespace GAS.Runtime
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Cue 处理
|
||||||
|
/// </summary>
|
||||||
|
public abstract partial class AbilitySystemComponent : IAbilitySystemComponent, IPool
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AbilitySpec 唯一Id
|
||||||
|
/// </summary>
|
||||||
|
private Dictionary<AbilitySpec, int> AbilitySpecId = new();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ability的Timeline轨道触发了持续型Cue的添加
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="abilitySpec"></param>
|
||||||
|
/// <param name="cueAssetLocation">Cue资源地址</param>
|
||||||
|
/// <param name="durationTime">持续时间</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public int OnCueAdd(AbilitySpec abilitySpec, string cueAssetLocation, int durationTime)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ability的Timeline轨道触发了持续型Cue的移除
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="abilitySpec"></param>
|
||||||
|
/// <param name="cueClipIndex"></param>
|
||||||
|
public void OnCueRemove(AbilitySpec abilitySpec, int cueClipIndex)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ability的Timeline轨道触发了瞬时Cue的触发
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="abilitySpec"></param>
|
||||||
|
/// <param name="cueAssetLocations"></param>
|
||||||
|
public void OnCueExecute(AbilitySpec abilitySpec, string[] cueAssetLocations)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fd84ebd1383e4e009578ebd2daae3200
|
||||||
|
timeCreated: 1729704061
|
@ -8,7 +8,7 @@ using UnityEngine;
|
|||||||
|
|
||||||
namespace GAS.Runtime
|
namespace GAS.Runtime
|
||||||
{
|
{
|
||||||
public abstract class AbilitySystemComponent : IAbilitySystemComponent, IPool
|
public abstract partial class AbilitySystemComponent : IAbilitySystemComponent, IPool
|
||||||
{
|
{
|
||||||
public int SelfNumber;
|
public int SelfNumber;
|
||||||
|
|
||||||
@ -42,6 +42,20 @@ namespace GAS.Runtime
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public LFloat BoundRadius { get; protected set; } = LFloat.One;
|
public LFloat BoundRadius { get; protected set; } = LFloat.One;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 当前唯一Id
|
||||||
|
/// </summary>
|
||||||
|
private int UniqueId = 0;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取当前类下一个唯一Id
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public int GetUniqueId()
|
||||||
|
{
|
||||||
|
return UniqueId++;
|
||||||
|
}
|
||||||
|
|
||||||
public void OnAwake()
|
public void OnAwake()
|
||||||
{
|
{
|
||||||
Prepare();
|
Prepare();
|
||||||
@ -327,28 +341,6 @@ namespace GAS.Runtime
|
|||||||
/// <param name="geSpec"></param>
|
/// <param name="geSpec"></param>
|
||||||
public abstract void OnGERelease(GameplayEffectSpec geSpec);
|
public abstract void OnGERelease(GameplayEffectSpec geSpec);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Ability的Timeline轨道触发了持续型Cue的添加
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="abilitySpec"></param>
|
|
||||||
/// <param name="cueAssetLocation"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public abstract int OnCueAdd(AbilitySpec abilitySpec, string cueAssetLocation);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Ability的Timeline轨道触发了持续型Cue的移除
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="abilitySpec"></param>
|
|
||||||
/// <param name="cueClipIndex"></param>
|
|
||||||
public abstract void OnCueRemove(AbilitySpec abilitySpec, int cueClipIndex);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Ability的Timeline轨道触发了瞬时Cue的触发
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="abilitySpec"></param>
|
|
||||||
/// <param name="cueAssetLocations"></param>
|
|
||||||
public abstract void OnCueExecute(AbilitySpec abilitySpec, string[] cueAssetLocations);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ability结束激活
|
/// Ability结束激活
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,94 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
using GAS.Runtime;
|
|
||||||
|
|
||||||
namespace GAS
|
|
||||||
{
|
|
||||||
public class GameplayAbilitySystem
|
|
||||||
{
|
|
||||||
private static GameplayAbilitySystem _gas;
|
|
||||||
|
|
||||||
private GameplayAbilitySystem()
|
|
||||||
{
|
|
||||||
const int capacity = 1024;
|
|
||||||
AbilitySystemComponents = new List<AbilitySystemComponent>(capacity);
|
|
||||||
_cachedAbilitySystemComponents = new List<AbilitySystemComponent>(capacity);
|
|
||||||
// GASTimer.InitStartTimestamp();
|
|
||||||
|
|
||||||
// GasHost = new GameObject("GAS Host").AddComponent<GasHost>();
|
|
||||||
// GasHost.hideFlags = HideFlags.HideAndDontSave;
|
|
||||||
// Object.DontDestroyOnLoad(GasHost.gameObject);
|
|
||||||
// GasHost.gameObject.SetActive(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<AbilitySystemComponent> AbilitySystemComponents { get; }
|
|
||||||
|
|
||||||
private readonly List<AbilitySystemComponent> _cachedAbilitySystemComponents;
|
|
||||||
|
|
||||||
// private GasHost GasHost { get; }
|
|
||||||
|
|
||||||
public static GameplayAbilitySystem GAS
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
_gas ??= new GameplayAbilitySystem();
|
|
||||||
return _gas;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// public bool IsPaused => !GasHost.enabled;
|
|
||||||
|
|
||||||
public void Register(AbilitySystemComponent abilitySystemComponent)
|
|
||||||
{
|
|
||||||
// if (!GasHost.enabled)
|
|
||||||
// {
|
|
||||||
// Debug.LogWarning("[EX] GAS is paused, can't register new ASC!");
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
if (AbilitySystemComponents.Contains(abilitySystemComponent)) return;
|
|
||||||
AbilitySystemComponents.Add(abilitySystemComponent);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool Unregister(AbilitySystemComponent abilitySystemComponent)
|
|
||||||
{
|
|
||||||
// if (!GasHost.enabled)
|
|
||||||
// {
|
|
||||||
// Debug.LogWarning("[EX] GAS is paused, can't unregister ASC!");
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
return AbilitySystemComponents.Remove(abilitySystemComponent);
|
|
||||||
}
|
|
||||||
|
|
||||||
// public void Pause()
|
|
||||||
// {
|
|
||||||
// GasHost.enabled = false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// public void Unpause()
|
|
||||||
// {
|
|
||||||
// GasHost.enabled = true;
|
|
||||||
// }
|
|
||||||
|
|
||||||
public void ClearComponents()
|
|
||||||
{
|
|
||||||
AbilitySystemComponents.Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
// public void Tick()
|
|
||||||
// {
|
|
||||||
// Profiler.BeginSample($"{nameof(GameplayAbilitySystem)}::Tick()");
|
|
||||||
|
|
||||||
// _cachedAbilitySystemComponents.AddRange(AbilitySystemComponents);
|
|
||||||
|
|
||||||
// foreach (var abilitySystemComponent in _cachedAbilitySystemComponents)
|
|
||||||
// {
|
|
||||||
// abilitySystemComponent.Tick();
|
|
||||||
// }
|
|
||||||
|
|
||||||
// _cachedAbilitySystemComponents.Clear();
|
|
||||||
|
|
||||||
// Profiler.EndSample();
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 98a325bbe54441739d7e05e89817e9a5
|
|
||||||
timeCreated: 1701861619
|
|
@ -0,0 +1,198 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
|
||||||
|
namespace JNGame.Sync.System.Data
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 事件型数据系统
|
||||||
|
/// 用于通知客户端
|
||||||
|
/// </summary>
|
||||||
|
public abstract class SEventDataSystem : SDataSystemBase
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 服务器事件
|
||||||
|
/// </summary>
|
||||||
|
private Queue<SEvent> ServerEvents = new();
|
||||||
|
/// <summary>
|
||||||
|
/// 客户端事件
|
||||||
|
/// </summary>
|
||||||
|
private Queue<SEvent> ClientEvents = new();
|
||||||
|
|
||||||
|
public SEventDataEnum Type;
|
||||||
|
public bool isServer => Type is SEventDataEnum.ServerClient or SEventDataEnum.Server;
|
||||||
|
public bool isClient => Type is SEventDataEnum.ServerClient or SEventDataEnum.Client;
|
||||||
|
|
||||||
|
//待插入的数据
|
||||||
|
protected Queue<byte[]> WaitUBytes = new ();
|
||||||
|
|
||||||
|
public SEventDataSystem(SEventDataEnum type)
|
||||||
|
{
|
||||||
|
Type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void OnSyncStart()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
public override void OnSyncUpdate(int dt)
|
||||||
|
{
|
||||||
|
|
||||||
|
while (WaitUBytes.Count > 0)
|
||||||
|
{
|
||||||
|
OnUByteUpdate(WaitUBytes.Dequeue());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isServer)
|
||||||
|
{
|
||||||
|
if (ServerEvents.Count <= 0) return;
|
||||||
|
using (MemoryStream ms = new MemoryStream())
|
||||||
|
{
|
||||||
|
using (BinaryWriter writer = new BinaryWriter(ms))
|
||||||
|
{
|
||||||
|
int count = ServerEvents.Count;
|
||||||
|
//写入数量
|
||||||
|
writer.Write(count);
|
||||||
|
for (int i = count - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
var data = ServerEvents.Dequeue().ToByteArray();
|
||||||
|
//写入数据大小
|
||||||
|
writer.Write(data.Length);
|
||||||
|
//写入数据
|
||||||
|
writer.Write(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 发送完整的字节数组
|
||||||
|
OnSendUBytes(ms.ToArray());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 发送字节数据
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="bytes"></param>
|
||||||
|
/// <returns>是否清空UBytes</returns>
|
||||||
|
public abstract void OnSendUBytes(byte[] bytes);
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 插入字节
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public void OnInsertUBytes(byte[] bytes)
|
||||||
|
{
|
||||||
|
WaitUBytes.Enqueue(bytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 提交更新到ClientEvents
|
||||||
|
/// </summary>
|
||||||
|
private void OnUByteUpdate(byte[] dequeue)
|
||||||
|
{
|
||||||
|
using (MemoryStream ms = new MemoryStream(dequeue))
|
||||||
|
{
|
||||||
|
using (BinaryReader reader = new BinaryReader(ms))
|
||||||
|
{
|
||||||
|
// 读取 数量
|
||||||
|
int count = reader.ReadInt32();
|
||||||
|
for (int i = count - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
// 读取 数据 字段的长度
|
||||||
|
int length = reader.ReadInt32();
|
||||||
|
// 读取 数据
|
||||||
|
ClientEvents.Enqueue(SEvent.FromByteArray(reader.ReadBytes(length)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddEvent(int type,byte[] data)
|
||||||
|
{
|
||||||
|
//只有服务器才可以添加事件
|
||||||
|
if (isServer)
|
||||||
|
{
|
||||||
|
ServerEvents.Enqueue(new SEvent()
|
||||||
|
{
|
||||||
|
Type = type,
|
||||||
|
Data = data,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class SEvent
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 数据类型
|
||||||
|
/// </summary>
|
||||||
|
public int Type;
|
||||||
|
/// <summary>
|
||||||
|
/// 数据
|
||||||
|
/// </summary>
|
||||||
|
public byte[] Data;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 将 SEvent 对象转换为字节数组
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>SEvent 对象的字节表示</returns>
|
||||||
|
public byte[] ToByteArray()
|
||||||
|
{
|
||||||
|
using (MemoryStream ms = new MemoryStream())
|
||||||
|
{
|
||||||
|
using (BinaryWriter writer = new BinaryWriter(ms))
|
||||||
|
{
|
||||||
|
// 写入 Type 字段,使用小端字节序
|
||||||
|
writer.Write(Type);
|
||||||
|
// 写入 Data 字段的长度
|
||||||
|
writer.Write(Data?.Length ?? 0);
|
||||||
|
// 写入 Data 字段的数据
|
||||||
|
if (Data != null)
|
||||||
|
{
|
||||||
|
writer.Write(Data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 返回完整的字节数组
|
||||||
|
return ms.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 从字节数组还原 SEvent 对象
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="byteArray">包含 SEvent 数据的字节数组</param>
|
||||||
|
/// <returns>还原后的 SEvent 对象</returns>
|
||||||
|
public static SEvent FromByteArray(byte[] byteArray)
|
||||||
|
{
|
||||||
|
if (byteArray == null || byteArray.Length < 8)
|
||||||
|
{
|
||||||
|
throw new ArgumentException("字节数组长度不足");
|
||||||
|
}
|
||||||
|
using (MemoryStream ms = new MemoryStream(byteArray))
|
||||||
|
{
|
||||||
|
using (BinaryReader reader = new BinaryReader(ms))
|
||||||
|
{
|
||||||
|
// 读取 Type 字段
|
||||||
|
int type = reader.ReadInt32();
|
||||||
|
// 读取 Data 字段的长度
|
||||||
|
int dataLength = reader.ReadInt32();
|
||||||
|
// 读取 Data 字段的数据
|
||||||
|
byte[] data = reader.ReadBytes(dataLength);
|
||||||
|
// 返回还原后的 SEvent 对象
|
||||||
|
return new SEvent { Type = type, Data = data };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum SEventDataEnum
|
||||||
|
{
|
||||||
|
Server,
|
||||||
|
Client,
|
||||||
|
ServerClient,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9b2443b1ebaf4f66b259d21757cc3c7e
|
||||||
|
timeCreated: 1729705001
|
Binary file not shown.
@ -26,7 +26,7 @@ namespace JNGame.GAS
|
|||||||
|
|
||||||
if (frame >= startFrame && frame <= endFrame)
|
if (frame >= startFrame && frame <= endFrame)
|
||||||
{
|
{
|
||||||
preview.transform.position = Vector3.Lerp(start.ToVector3(), end.ToVector3(), (float)(frame - startFrame) / endFrame);
|
preview.transform.position = Vector3.Lerp(start.ToVector3(), end.ToVector3(), (float)(frame - startFrame) / (endFrame - startFrame));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -34,7 +34,7 @@ namespace JNGame.GAS
|
|||||||
|
|
||||||
public override void OnStart(int startFrame)
|
public override void OnStart(int startFrame)
|
||||||
{
|
{
|
||||||
Debug.Log("OnEnd");
|
Debug.Log("OnStart");
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnEnd(int endFrame)
|
public override void OnEnd(int endFrame)
|
||||||
@ -45,7 +45,7 @@ namespace JNGame.GAS
|
|||||||
public override void OnTick(int frameIndex, int startFrame, int endFrame)
|
public override void OnTick(int frameIndex, int startFrame, int endFrame)
|
||||||
{
|
{
|
||||||
Debug.Log($"OnTick {frameIndex} {startFrame} {endFrame}");
|
Debug.Log($"OnTick {frameIndex} {startFrame} {endFrame}");
|
||||||
((GAbilitySystemComponent)m_Spec.Owner).Entity.Transform.Position = LVector3.Lerp(start, end, (LFloat)(frameIndex - startFrame) / endFrame);
|
((GAbilitySystemComponent)m_Spec.Owner).Entity.Transform.Position = LVector3.Lerp(start, end, (LFloat)(frameIndex - startFrame) / (endFrame - startFrame));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
using JNGame.Sync.System.Data;
|
||||||
|
using NotImplementedException = System.NotImplementedException;
|
||||||
|
|
||||||
|
namespace GASSamples.Scripts.Game.Logic.Data
|
||||||
|
{
|
||||||
|
public class GEventDataSystem : SEventDataSystem
|
||||||
|
{
|
||||||
|
public GEventDataSystem(SEventDataEnum type) : base(type)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void OnSendUBytes(byte[] bytes)
|
||||||
|
{
|
||||||
|
OnInsertUBytes(bytes);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 62c8d2be3a26419791fb6456f47f82a2
|
||||||
|
timeCreated: 1729707100
|
@ -48,22 +48,6 @@ namespace GASSamples.Scripts.Game.GAS
|
|||||||
Debug.Log("OnGERelease");
|
Debug.Log("OnGERelease");
|
||||||
}
|
}
|
||||||
|
|
||||||
public override int OnCueAdd(AbilitySpec abilitySpec, string cueAssetLocation)
|
|
||||||
{
|
|
||||||
Debug.Log("OnCueAdd");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void OnCueRemove(AbilitySpec abilitySpec, int cueClipIndex)
|
|
||||||
{
|
|
||||||
Debug.Log("OnCueRemove");
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void OnCueExecute(AbilitySpec abilitySpec, string[] cueAssetLocations)
|
|
||||||
{
|
|
||||||
Debug.Log("OnCueExecute");
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void OnAbilityEnd(AbilitySpec abilitySpec)
|
public override void OnAbilityEnd(AbilitySpec abilitySpec)
|
||||||
{
|
{
|
||||||
Debug.Log("OnAbilityEnd");
|
Debug.Log("OnAbilityEnd");
|
||||||
|
@ -9,6 +9,7 @@ using GASSamples.Scripts.Game.View;
|
|||||||
using JNGame.Sync.Entity;
|
using JNGame.Sync.Entity;
|
||||||
using JNGame.Sync.Frame;
|
using JNGame.Sync.Frame;
|
||||||
using JNGame.Sync.System;
|
using JNGame.Sync.System;
|
||||||
|
using JNGame.Sync.System.Data;
|
||||||
|
|
||||||
namespace DefaultNamespace
|
namespace DefaultNamespace
|
||||||
{
|
{
|
||||||
@ -30,6 +31,7 @@ namespace DefaultNamespace
|
|||||||
public override SDataSystemBase[] NewDataSystems()
|
public override SDataSystemBase[] NewDataSystems()
|
||||||
{
|
{
|
||||||
return new SDataSystemBase[] {
|
return new SDataSystemBase[] {
|
||||||
|
new GEventDataSystem(SEventDataSystem.SEventDataEnum.ServerClient),
|
||||||
new JNGASBoxDataSystem(),
|
new JNGASBoxDataSystem(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,741 +0,0 @@
|
|||||||
Using pre-set license
|
|
||||||
Built from '2022.3/staging' branch; Version is '2022.3.1f1 (f18e0c1b5784) revision 15830540'; Using compiler version '192829333'; Build Type 'Release'
|
|
||||||
OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'zh' Physical Memory: 32651 MB
|
|
||||||
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
|
|
||||||
|
|
||||||
COMMAND LINE ARGUMENTS:
|
|
||||||
D:\Unity\2022.3.1f1\Editor\Unity.exe
|
|
||||||
-adb2
|
|
||||||
-batchMode
|
|
||||||
-noUpm
|
|
||||||
-name
|
|
||||||
AssetImportWorker0
|
|
||||||
-projectPath
|
|
||||||
D:/myproject/JisolGame/JNFrame2
|
|
||||||
-logFile
|
|
||||||
Logs/AssetImportWorker0.log
|
|
||||||
-srvPort
|
|
||||||
62834
|
|
||||||
Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
|
|
||||||
D:/myproject/JisolGame/JNFrame2
|
|
||||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
|
||||||
"memorysetup-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-cache-allocator-block-size=4194304"
|
|
||||||
"memorysetup-typetree-allocator-block-size=2097152"
|
|
||||||
"memorysetup-profiler-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-profiler-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-profiler-allocator-block-size=16777216"
|
|
||||||
"memorysetup-profiler-editor-allocator-block-size=1048576"
|
|
||||||
"memorysetup-temp-allocator-size-main=16777216"
|
|
||||||
"memorysetup-job-temp-allocator-block-size=2097152"
|
|
||||||
"memorysetup-job-temp-allocator-block-size-background=1048576"
|
|
||||||
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-main=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-background-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-job-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-preload-manager=33554432"
|
|
||||||
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-audio-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-gfx=262144"
|
|
||||||
Player connection [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 [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 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
|
|
||||||
[Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame2/Assets
|
|
||||||
GfxDevice: creating device client; threaded=0; jobified=0
|
|
||||||
Direct3D:
|
|
||||||
Version: Direct3D 11.0 [level 11.1]
|
|
||||||
Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
|
|
||||||
Vendor: NVIDIA
|
|
||||||
VRAM: 5966 MB
|
|
||||||
Driver: 32.0.15.6094
|
|
||||||
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: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.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.354 seconds
|
|
||||||
Domain Reload Profiling: 948ms
|
|
||||||
BeginReloadAssembly (153ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (0ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (1ms)
|
|
||||||
RebuildCommonClasses (91ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (16ms)
|
|
||||||
initialDomainReloadingComplete (96ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (237ms)
|
|
||||||
LoadAssemblies (147ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (227ms)
|
|
||||||
TypeCache.Refresh (226ms)
|
|
||||||
TypeCache.ScanAssembly (206ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (1ms)
|
|
||||||
ResolveRequiredComponents (1ms)
|
|
||||||
FinalizeReload (355ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (277ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (14ms)
|
|
||||||
SetLoadedEditorAssemblies (11ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (3ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (180ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (69ms)
|
|
||||||
AfterProcessingInitializeOnLoad (0ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (0ms)
|
|
||||||
========================================================================
|
|
||||||
Worker process is ready to serve import requests
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- 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
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
AutoRegister
|
|
||||||
UnityEngine.StackTraceUtility:ExtractStackTrace ()
|
|
||||||
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
|
|
||||||
UnityEngine.Logger:Log (UnityEngine.LogType,object)
|
|
||||||
UnityEngine.Debug:Log (object)
|
|
||||||
JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
|
|
||||||
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
|
|
||||||
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
|
|
||||||
|
|
||||||
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
|
|
||||||
|
|
||||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 2.141 seconds
|
|
||||||
Domain Reload Profiling: 4056ms
|
|
||||||
BeginReloadAssembly (173ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (7ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (30ms)
|
|
||||||
RebuildCommonClasses (44ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (12ms)
|
|
||||||
initialDomainReloadingComplete (81ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (1605ms)
|
|
||||||
LoadAssemblies (1021ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (658ms)
|
|
||||||
TypeCache.Refresh (598ms)
|
|
||||||
TypeCache.ScanAssembly (569ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (44ms)
|
|
||||||
ResolveRequiredComponents (17ms)
|
|
||||||
FinalizeReload (2141ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (1871ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (10ms)
|
|
||||||
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 (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 57.60 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 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):
|
|
||||||
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.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).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
AutoRegister
|
|
||||||
UnityEngine.StackTraceUtility:ExtractStackTrace ()
|
|
||||||
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
|
|
||||||
UnityEngine.Logger:Log (UnityEngine.LogType,object)
|
|
||||||
UnityEngine.Debug:Log (object)
|
|
||||||
JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
|
|
||||||
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
|
|
||||||
UnityEditor.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.370 seconds
|
|
||||||
Domain Reload Profiling: 7632ms
|
|
||||||
BeginReloadAssembly (475ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (16ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (247ms)
|
|
||||||
RebuildCommonClasses (78ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (16ms)
|
|
||||||
initialDomainReloadingComplete (101ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (1590ms)
|
|
||||||
LoadAssemblies (1130ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (579ms)
|
|
||||||
TypeCache.Refresh (562ms)
|
|
||||||
TypeCache.ScanAssembly (526ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (5ms)
|
|
||||||
ResolveRequiredComponents (11ms)
|
|
||||||
FinalizeReload (5372ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (4311ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (11ms)
|
|
||||||
SetLoadedEditorAssemblies (9ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (184ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (996ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (3093ms)
|
|
||||||
AfterProcessingInitializeOnLoad (17ms)
|
|
||||||
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 52.66 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 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):
|
|
||||||
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 ->
|
|
File diff suppressed because it is too large
Load Diff
@ -1,725 +0,0 @@
|
|||||||
Using pre-set license
|
|
||||||
Built from '2022.3/staging' branch; Version is '2022.3.1f1 (f18e0c1b5784) revision 15830540'; Using compiler version '192829333'; Build Type 'Release'
|
|
||||||
OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'zh' Physical Memory: 32651 MB
|
|
||||||
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
|
|
||||||
|
|
||||||
COMMAND LINE ARGUMENTS:
|
|
||||||
D:\Unity\2022.3.1f1\Editor\Unity.exe
|
|
||||||
-adb2
|
|
||||||
-batchMode
|
|
||||||
-noUpm
|
|
||||||
-name
|
|
||||||
AssetImportWorker1
|
|
||||||
-projectPath
|
|
||||||
D:/myproject/JisolGame/JNFrame2
|
|
||||||
-logFile
|
|
||||||
Logs/AssetImportWorker1.log
|
|
||||||
-srvPort
|
|
||||||
62834
|
|
||||||
Successfully changed project path to: D:/myproject/JisolGame/JNFrame2
|
|
||||||
D:/myproject/JisolGame/JNFrame2
|
|
||||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
|
||||||
"memorysetup-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-cache-allocator-block-size=4194304"
|
|
||||||
"memorysetup-typetree-allocator-block-size=2097152"
|
|
||||||
"memorysetup-profiler-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-profiler-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-profiler-allocator-block-size=16777216"
|
|
||||||
"memorysetup-profiler-editor-allocator-block-size=1048576"
|
|
||||||
"memorysetup-temp-allocator-size-main=16777216"
|
|
||||||
"memorysetup-job-temp-allocator-block-size=2097152"
|
|
||||||
"memorysetup-job-temp-allocator-block-size-background=1048576"
|
|
||||||
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-main=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-background-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-job-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-preload-manager=33554432"
|
|
||||||
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-audio-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-gfx=262144"
|
|
||||||
Player connection [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 [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 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
|
|
||||||
[Subsystems] Discovering subsystems at path D:/myproject/JisolGame/JNFrame2/Assets
|
|
||||||
GfxDevice: creating device client; threaded=0; jobified=0
|
|
||||||
Direct3D:
|
|
||||||
Version: Direct3D 11.0 [level 11.1]
|
|
||||||
Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
|
|
||||||
Vendor: NVIDIA
|
|
||||||
VRAM: 5966 MB
|
|
||||||
Driver: 32.0.15.6094
|
|
||||||
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: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.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.377 seconds
|
|
||||||
Domain Reload Profiling: 885ms
|
|
||||||
BeginReloadAssembly (148ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (0ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (1ms)
|
|
||||||
RebuildCommonClasses (56ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (13ms)
|
|
||||||
initialDomainReloadingComplete (91ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (199ms)
|
|
||||||
LoadAssemblies (144ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (190ms)
|
|
||||||
TypeCache.Refresh (188ms)
|
|
||||||
TypeCache.ScanAssembly (172ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (1ms)
|
|
||||||
ResolveRequiredComponents (1ms)
|
|
||||||
FinalizeReload (378ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (296ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (14ms)
|
|
||||||
SetLoadedEditorAssemblies (9ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (4ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (185ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (84ms)
|
|
||||||
AfterProcessingInitializeOnLoad (0ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (0ms)
|
|
||||||
========================================================================
|
|
||||||
Worker process is ready to serve import requests
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- 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
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
AutoRegister
|
|
||||||
UnityEngine.StackTraceUtility:ExtractStackTrace ()
|
|
||||||
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
|
|
||||||
UnityEngine.Logger:Log (UnityEngine.LogType,object)
|
|
||||||
UnityEngine.Debug:Log (object)
|
|
||||||
JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
|
|
||||||
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
|
|
||||||
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
|
|
||||||
|
|
||||||
(Filename: Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs Line: 16)
|
|
||||||
|
|
||||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- 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 (54ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (13ms)
|
|
||||||
initialDomainReloadingComplete (79ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (1593ms)
|
|
||||||
LoadAssemblies (1012ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (667ms)
|
|
||||||
TypeCache.Refresh (618ms)
|
|
||||||
TypeCache.ScanAssembly (590ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (38ms)
|
|
||||||
ResolveRequiredComponents (12ms)
|
|
||||||
FinalizeReload (2172ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (1918ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (9ms)
|
|
||||||
SetLoadedEditorAssemblies (6ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (147ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (983ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (758ms)
|
|
||||||
AfterProcessingInitializeOnLoad (15ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (15ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 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 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 ->
|
|
||||||
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 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).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
AutoRegister
|
|
||||||
UnityEngine.StackTraceUtility:ExtractStackTrace ()
|
|
||||||
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
|
|
||||||
UnityEngine.Logger:Log (UnityEngine.LogType,object)
|
|
||||||
UnityEngine.Debug:Log (object)
|
|
||||||
JNGame.GAS.GASInjector/AutoInject:.cctor () (at Assets/Scripts/GASSamples/Scripts/GAS/GASInjector.cs:16)
|
|
||||||
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
|
|
||||||
UnityEditor.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.461 seconds
|
|
||||||
Domain Reload Profiling: 7575ms
|
|
||||||
BeginReloadAssembly (499ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (15ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (174ms)
|
|
||||||
RebuildCommonClasses (85ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (30ms)
|
|
||||||
initialDomainReloadingComplete (118ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (2352ms)
|
|
||||||
LoadAssemblies (1687ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (863ms)
|
|
||||||
TypeCache.Refresh (840ms)
|
|
||||||
TypeCache.ScanAssembly (802ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (6ms)
|
|
||||||
ResolveRequiredComponents (17ms)
|
|
||||||
FinalizeReload (4491ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (1378ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (8ms)
|
|
||||||
SetLoadedEditorAssemblies (8ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
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 63.15 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5641 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 136 unused Assets / (205.0 KB). Loaded Objects now: 6122.
|
|
||||||
Memory consumption went from 195.3 MB to 195.1 MB.
|
|
||||||
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):
|
|
||||||
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 ->
|
|
@ -1,6 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
@ -1,34 +1,6 @@
|
|||||||
Base path: 'D:/Unity/2022.3.1f1/Editor/Data', plugins path 'D:/Unity/2022.3.1f1/Editor/Data/PlaybackEngines'
|
Base path: 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data', plugins path 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines'
|
||||||
Cmd: initializeCompiler
|
Cmd: initializeCompiler
|
||||||
|
|
||||||
Cmd: preprocess
|
Cmd: preprocess
|
||||||
insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
|
insize=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=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
|
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.modules.ai": "1.0.0"
|
"com.unity.modules.ai": "1.0.0"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.cinemachine": {
|
"com.unity.cinemachine": {
|
||||||
"version": "2.10.1",
|
"version": "2.10.1",
|
||||||
@ -42,41 +42,41 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.test-framework": "1.1.31"
|
"com.unity.test-framework": "1.1.31"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.collab-proxy": {
|
"com.unity.collab-proxy": {
|
||||||
"version": "2.2.0",
|
"version": "2.2.0",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.editorcoroutines": {
|
"com.unity.editorcoroutines": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.ext.nunit": {
|
"com.unity.ext.nunit": {
|
||||||
"version": "1.0.6",
|
"version": "1.0.6",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.feature.development": {
|
"com.unity.feature.development": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.ide.visualstudio": "2.0.18",
|
"com.unity.ide.visualstudio": "2.0.22",
|
||||||
"com.unity.ide.rider": "3.0.21",
|
"com.unity.ide.rider": "3.0.27",
|
||||||
"com.unity.ide.vscode": "1.2.5",
|
"com.unity.ide.vscode": "1.2.5",
|
||||||
"com.unity.editorcoroutines": "1.0.0",
|
"com.unity.editorcoroutines": "1.0.0",
|
||||||
"com.unity.performance.profile-analyzer": "1.2.2",
|
"com.unity.performance.profile-analyzer": "1.2.2",
|
||||||
"com.unity.test-framework": "1.1.33",
|
"com.unity.test-framework": "1.1.33",
|
||||||
"com.unity.testtools.codecoverage": "1.2.3"
|
"com.unity.testtools.codecoverage": "1.2.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.ide.rider": {
|
"com.unity.ide.rider": {
|
||||||
@ -86,7 +86,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.ext.nunit": "1.0.6"
|
"com.unity.ext.nunit": "1.0.6"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.ide.visualstudio": {
|
"com.unity.ide.visualstudio": {
|
||||||
"version": "2.0.22",
|
"version": "2.0.22",
|
||||||
@ -95,35 +95,35 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.test-framework": "1.1.9"
|
"com.unity.test-framework": "1.1.9"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.ide.vscode": {
|
"com.unity.ide.vscode": {
|
||||||
"version": "1.2.5",
|
"version": "1.2.5",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.performance.profile-analyzer": {
|
"com.unity.performance.profile-analyzer": {
|
||||||
"version": "1.2.2",
|
"version": "1.2.2",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.scriptablebuildpipeline": {
|
"com.unity.scriptablebuildpipeline": {
|
||||||
"version": "2.1.3",
|
"version": "2.1.3",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.settings-manager": {
|
"com.unity.settings-manager": {
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"depth": 2,
|
"depth": 2,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.test-framework": {
|
"com.unity.test-framework": {
|
||||||
"version": "1.1.33",
|
"version": "1.1.33",
|
||||||
@ -134,17 +134,17 @@
|
|||||||
"com.unity.modules.imgui": "1.0.0",
|
"com.unity.modules.imgui": "1.0.0",
|
||||||
"com.unity.modules.jsonserialize": "1.0.0"
|
"com.unity.modules.jsonserialize": "1.0.0"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.testtools.codecoverage": {
|
"com.unity.testtools.codecoverage": {
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.test-framework": "1.0.16",
|
"com.unity.test-framework": "1.0.16",
|
||||||
"com.unity.settings-manager": "1.0.1"
|
"com.unity.settings-manager": "1.0.1"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.textmeshpro": {
|
"com.unity.textmeshpro": {
|
||||||
"version": "3.0.6",
|
"version": "3.0.6",
|
||||||
@ -153,19 +153,19 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.ugui": "1.0.0"
|
"com.unity.ugui": "1.0.0"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.timeline": {
|
"com.unity.timeline": {
|
||||||
"version": "1.7.6",
|
"version": "1.7.6",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.modules.audio": "1.0.0",
|
|
||||||
"com.unity.modules.director": "1.0.0",
|
"com.unity.modules.director": "1.0.0",
|
||||||
"com.unity.modules.animation": "1.0.0",
|
"com.unity.modules.animation": "1.0.0",
|
||||||
|
"com.unity.modules.audio": "1.0.0",
|
||||||
"com.unity.modules.particlesystem": "1.0.0"
|
"com.unity.modules.particlesystem": "1.0.0"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.ugui": {
|
"com.unity.ugui": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
@ -184,7 +184,7 @@
|
|||||||
"com.unity.ugui": "1.0.0",
|
"com.unity.ugui": "1.0.0",
|
||||||
"com.unity.modules.jsonserialize": "1.0.0"
|
"com.unity.modules.jsonserialize": "1.0.0"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.cn"
|
||||||
},
|
},
|
||||||
"com.unity.modules.ai": {
|
"com.unity.modules.ai": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
|
@ -21,7 +21,7 @@ MonoBehaviour:
|
|||||||
m_Registries:
|
m_Registries:
|
||||||
- m_Id: main
|
- m_Id: main
|
||||||
m_Name:
|
m_Name:
|
||||||
m_Url: https://packages.unity.com
|
m_Url: https://packages.unity.cn
|
||||||
m_Scopes: []
|
m_Scopes: []
|
||||||
m_IsDefault: 1
|
m_IsDefault: 1
|
||||||
m_Capabilities: 7
|
m_Capabilities: 7
|
||||||
@ -39,6 +39,6 @@ MonoBehaviour:
|
|||||||
m_RegistryInfoDraft:
|
m_RegistryInfoDraft:
|
||||||
m_Modified: 0
|
m_Modified: 0
|
||||||
m_ErrorMessage:
|
m_ErrorMessage:
|
||||||
m_UserModificationsInstanceId: -834
|
m_UserModificationsInstanceId: -838
|
||||||
m_OriginalInstanceId: -838
|
m_OriginalInstanceId: -842
|
||||||
m_LoadAssets: 0
|
m_LoadAssets: 0
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
m_EditorVersion: 2022.3.1f1
|
m_EditorVersion: 2022.3.16f1c1
|
||||||
m_EditorVersionWithRevision: 2022.3.1f1 (f18e0c1b5784)
|
m_EditorVersionWithRevision: 2022.3.16f1c1 (2f3f1b3bde89)
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user