mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
提交编辑器确定数据
This commit is contained in:
parent
cbacd5a501
commit
0371576f87
3
JNFrame2/Assets/HotScripts/JNGame/Editor/Math.meta
Normal file
3
JNFrame2/Assets/HotScripts/JNGame/Editor/Math.meta
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 51922f216cbd4930b00d06d6a29f20f5
|
||||||
|
timeCreated: 1729451383
|
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* @FileName: EditorLFloat.cs
|
||||||
|
* @Date: 2024-04-20 20:06:14
|
||||||
|
* @LastEditTime: 2024-04-21 13:07:09
|
||||||
|
* @Description: 编辑器绘制定点数
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
using JNGame.Math;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
|
||||||
|
[CustomPropertyDrawer(typeof(LFloat))]
|
||||||
|
public class EditorLFloat : PropertyDrawer
|
||||||
|
{
|
||||||
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var xProperty = property.FindPropertyRelative("rawValue");
|
||||||
|
float LabelWidth = EditorGUIUtility.labelWidth;
|
||||||
|
var labelRect = new Rect(position.x, position.y, LabelWidth, position.height);
|
||||||
|
EditorGUI.LabelField(labelRect, label);
|
||||||
|
float filedWid = (position.width - LabelWidth);
|
||||||
|
float initX = position.x + LabelWidth;
|
||||||
|
var valRect = new Rect(initX, position.y, filedWid, position.height);
|
||||||
|
var fVal = EditorGUI.FloatField(valRect, xProperty.longValue * 1.0f / LFloat.Precision);
|
||||||
|
xProperty.longValue = ((long)(fVal * LFloat.Precision));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1cde07f51182ff8468222d53e8b68a3b
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
* @FileName: EditorLVector2.cs
|
||||||
|
* @Date: 2024-04-20 20:06:14
|
||||||
|
* @LastEditTime: 2024-04-21 13:05:56
|
||||||
|
* @Description: 编辑器下绘制定点数2D向量
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
using JNGame.Math;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
|
||||||
|
[CustomPropertyDrawer(typeof(LVector2))]
|
||||||
|
public class EditorLVector2 : PropertyDrawer
|
||||||
|
{
|
||||||
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var xProperty = property.FindPropertyRelative("x");
|
||||||
|
var yProperty = property.FindPropertyRelative("y");
|
||||||
|
float LabelWidth = EditorGUIUtility.labelWidth; // 向量属性名标签宽度
|
||||||
|
float innerLabelWid = EditorLVectorDrawTool.LableWid; // 向量内部XYZ标准宽度
|
||||||
|
float innnerSpaceWid = 10; // 向量内部XYZ属性绘制间距
|
||||||
|
var labelRect = new Rect(position.x, position.y, LabelWidth, position.height);
|
||||||
|
EditorGUI.LabelField(labelRect, label);
|
||||||
|
float filedWid = (position.width - LabelWidth - innnerSpaceWid) / 2 - innerLabelWid;
|
||||||
|
float initX = position.x + LabelWidth;
|
||||||
|
float offset = 0;
|
||||||
|
EditorLVectorDrawTool.DrawFieldLFloat(position, initX, ref offset, innerLabelWid, filedWid, xProperty, new GUIContent("X"));
|
||||||
|
offset += innnerSpaceWid;
|
||||||
|
EditorLVectorDrawTool.DrawFieldLFloat(position, initX, ref offset, innerLabelWid, filedWid, yProperty, new GUIContent("Y"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9d216843f46a51749af90b7caf51e94b
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -0,0 +1,33 @@
|
|||||||
|
/*
|
||||||
|
* @FileName: EditorLVector2Int.cs
|
||||||
|
* @Date: 2024-04-20 20:06:14
|
||||||
|
* @LastEditTime: 2024-04-21 13:04:55
|
||||||
|
* @Description: 编辑器下绘制2D整数向量
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
using JNGame.Math;
|
||||||
|
using UnityEditor;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
[CustomPropertyDrawer(typeof(LVector2Int))]
|
||||||
|
public class EditorLVector2Int : PropertyDrawer
|
||||||
|
{
|
||||||
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var xProperty = property.FindPropertyRelative("x");
|
||||||
|
var yProperty = property.FindPropertyRelative("y");
|
||||||
|
float LabelWidth = EditorGUIUtility.labelWidth; // 向量属性名标签宽度
|
||||||
|
float innerLableWid = EditorLVectorDrawTool.LableWid; // 向量内部XYZ标准宽度
|
||||||
|
float innerSpaceWid = 10; // 向量内部XYZ属性绘制间距
|
||||||
|
var labelRect = new Rect(position.x, position.y, LabelWidth, position.height);
|
||||||
|
EditorGUI.LabelField(labelRect, label);
|
||||||
|
float filedWid = (position.width - LabelWidth - innerSpaceWid ) / 2 - innerLableWid;
|
||||||
|
float initX = position.x + LabelWidth;
|
||||||
|
float offset = 0;
|
||||||
|
EditorLVectorDrawTool.DrawFieldInt(position, initX, ref offset, innerLableWid, filedWid, xProperty, new GUIContent("X"));
|
||||||
|
offset += innerSpaceWid;
|
||||||
|
EditorLVectorDrawTool.DrawFieldInt(position, initX, ref offset, innerLableWid, filedWid, yProperty, new GUIContent("Y"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4d2e4e3df57fbb54baa4a96387b8a5a3
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* @FileName: EditorLVector3.cs
|
||||||
|
* @Date: 2024-04-20 20:06:14
|
||||||
|
* @LastEditTime: 2024-04-21 13:06:21
|
||||||
|
* @Description: 编辑器下绘制定点数3D向量
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
using JNGame.Math;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
|
||||||
|
|
||||||
|
[CustomPropertyDrawer(typeof(LVector3))]
|
||||||
|
public class EditorLVector3 : PropertyDrawer
|
||||||
|
{
|
||||||
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var xProperty = property.FindPropertyRelative("x");
|
||||||
|
var yProperty = property.FindPropertyRelative("y");
|
||||||
|
var zProperty = property.FindPropertyRelative("z");
|
||||||
|
float LabelWidth = EditorGUIUtility.labelWidth; // 向量属性名标签宽度
|
||||||
|
float innerLableWid = EditorLVectorDrawTool.LableWid; // 向量内部xyz属性标签宽度
|
||||||
|
float innerSpaceWid = 10; // 向量内部XYZ属性绘制间距
|
||||||
|
var labelRect = new Rect(position.x, position.y, LabelWidth, position.height);
|
||||||
|
EditorGUI.LabelField(labelRect, label);
|
||||||
|
float filedWid = (position.width - LabelWidth - innerSpaceWid * 2) / 3 - innerLableWid;
|
||||||
|
float initX = position.x + LabelWidth;
|
||||||
|
float offset = 0;
|
||||||
|
EditorLVectorDrawTool.DrawFieldLFloat(position, initX, ref offset, innerLableWid, filedWid, xProperty, new GUIContent("X"));
|
||||||
|
offset += innerSpaceWid;
|
||||||
|
EditorLVectorDrawTool.DrawFieldLFloat(position, initX, ref offset, innerLableWid, filedWid, yProperty, new GUIContent("Y"));
|
||||||
|
offset += innerSpaceWid;
|
||||||
|
EditorLVectorDrawTool.DrawFieldLFloat(position, initX, ref offset, innerLableWid, filedWid, zProperty, new GUIContent("Z"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 85b5253c1064906439345bb0bdfd40d4
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* @FileName: EditorLVector3Int.cs
|
||||||
|
* @Date: 2024-04-20 20:06:14
|
||||||
|
* @LastEditTime: 2024-04-21 13:06:39
|
||||||
|
* @Description: 绘制整数3D向量
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
using JNGame.Math;
|
||||||
|
using UnityEditor;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
[CustomPropertyDrawer(typeof(LVector3Int))]
|
||||||
|
public class EditorLVector3Int : PropertyDrawer
|
||||||
|
{
|
||||||
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var xProperty = property.FindPropertyRelative("x");
|
||||||
|
var yProperty = property.FindPropertyRelative("y");
|
||||||
|
var zProperty = property.FindPropertyRelative("z");
|
||||||
|
float LabelWidth = EditorGUIUtility.labelWidth; // 向量属性名标签宽度
|
||||||
|
float innerLableWid = EditorLVectorDrawTool.LableWid; // 向量内部XYZ标准宽度
|
||||||
|
float innerSpaceWid = 10; // 向量内部XYZ属性绘制间距
|
||||||
|
var labelRect = new Rect(position.x, position.y, LabelWidth, position.height);
|
||||||
|
EditorGUI.LabelField(labelRect, label);
|
||||||
|
float filedWid = (position.width - LabelWidth - innerSpaceWid * 2) / 3 - innerLableWid;
|
||||||
|
float initX = position.x + LabelWidth;
|
||||||
|
float offset = 0;
|
||||||
|
EditorLVectorDrawTool.DrawFieldInt(position, initX, ref offset, innerLableWid, filedWid, xProperty, new GUIContent("X"));
|
||||||
|
offset += innerSpaceWid;
|
||||||
|
EditorLVectorDrawTool.DrawFieldInt(position, initX, ref offset, innerLableWid, filedWid, yProperty, new GUIContent("Y"));
|
||||||
|
offset += innerSpaceWid;
|
||||||
|
EditorLVectorDrawTool.DrawFieldInt(position, initX, ref offset, innerLableWid, filedWid, zProperty, new GUIContent("Z"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fe44ed4b9a2ec9b4fa98cc8de406a1ef
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* @FileName: EditorLVectorDrawTool.cs
|
||||||
|
* @Date: 2024-04-20 20:06:14
|
||||||
|
* @LastEditTime: 2024-04-21 12:54:43
|
||||||
|
* @Description: 定点数向量辅助绘制
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
using JNGame.Math;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
|
||||||
|
public static class EditorLVectorDrawTool
|
||||||
|
{
|
||||||
|
public const float LableWidthOffset = 45;
|
||||||
|
public const float LableWid = 20;
|
||||||
|
|
||||||
|
public static void DrawFieldLFloat(Rect position, float initX, ref float offset, float lableWid, float filedWid,
|
||||||
|
SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var lableRect = new Rect(initX + offset, position.y, lableWid, position.height);
|
||||||
|
EditorGUI.LabelField(lableRect, label.text);
|
||||||
|
var valRect = new Rect(initX + offset + lableWid, position.y, filedWid, position.height);
|
||||||
|
var rawProperty = property.FindPropertyRelative("rawValue");
|
||||||
|
var fVal = EditorGUI.FloatField(valRect, rawProperty.longValue * 1.0f / LFloat.Precision);
|
||||||
|
rawProperty.longValue = (long)(fVal * LFloat.Precision);
|
||||||
|
offset += filedWid + lableWid;
|
||||||
|
}
|
||||||
|
public static void DrawFieldInt(Rect position, float initX, ref float offset, float lableWid, float filedWid,
|
||||||
|
SerializedProperty property, GUIContent label)
|
||||||
|
{
|
||||||
|
var lableRect = new Rect(initX + offset, position.y, lableWid, position.height);
|
||||||
|
EditorGUI.LabelField(lableRect, label.text);
|
||||||
|
var valRect = new Rect(initX + offset + lableWid, position.y, filedWid, position.height);
|
||||||
|
var fVal = EditorGUI.IntField(valRect, property.intValue);
|
||||||
|
property.intValue = (int)(fVal);
|
||||||
|
offset += filedWid + lableWid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8de5a0082785b684aa51934e5c8d8818
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -13,7 +13,7 @@ namespace JNGame.Math
|
|||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 基于long定点数
|
/// 基于long定点数
|
||||||
/// </summary>
|
/// </summary>LFloat
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public struct LFloat : IEquatable<LFloat>, IComparable<LFloat>
|
public struct LFloat : IEquatable<LFloat>, IComparable<LFloat>
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using JNGame.Math;
|
||||||
using Sirenix.OdinInspector;
|
using Sirenix.OdinInspector;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
@ -54,11 +55,11 @@ namespace GAS.Runtime
|
|||||||
[InfoBox("计算逻辑与ScalableFloatModCalculation一致, 公式:AttributeValue * k + b")]
|
[InfoBox("计算逻辑与ScalableFloatModCalculation一致, 公式:AttributeValue * k + b")]
|
||||||
[TabGroup("Default", "AttributeBasedModCalculation")]
|
[TabGroup("Default", "AttributeBasedModCalculation")]
|
||||||
[LabelText("系数(k)")]
|
[LabelText("系数(k)")]
|
||||||
public float k = 1;
|
public LFloat k = 1;
|
||||||
|
|
||||||
[TabGroup("Default", "AttributeBasedModCalculation")]
|
[TabGroup("Default", "AttributeBasedModCalculation")]
|
||||||
[LabelText("常量(b)")]
|
[LabelText("常量(b)")]
|
||||||
public float b = 0;
|
public LFloat b = 0;
|
||||||
|
|
||||||
public override float CalculateMagnitude(GameplayEffectSpec spec, float modifierMagnitude)
|
public override float CalculateMagnitude(GameplayEffectSpec spec, float modifierMagnitude)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 49241b5db40b450f934fb9de0841b2fc
|
|
||||||
timeCreated: 1729415696
|
|
@ -1,3 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 7f1317ff9b314419b0e48ae76657c960
|
|
||||||
timeCreated: 1729415730
|
|
@ -1,28 +0,0 @@
|
|||||||
using System;
|
|
||||||
using JNGame.Math;
|
|
||||||
using Sirenix.OdinInspector;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace JNGame.Runtime.Odin.TypeCustomize
|
|
||||||
{
|
|
||||||
[Serializable]
|
|
||||||
public class OdinLVector3
|
|
||||||
{
|
|
||||||
[LabelText("X (x1000)")]
|
|
||||||
public int X;
|
|
||||||
[LabelText("Y (x1000)")]
|
|
||||||
public int Y;
|
|
||||||
[LabelText("Z (x1000)")]
|
|
||||||
public int Z;
|
|
||||||
|
|
||||||
public Vector3 ToVector3()
|
|
||||||
{
|
|
||||||
return (new LVector3(true, X * LFloat.RateOfOldPrecision, Y * LFloat.RateOfOldPrecision, Z * LFloat.RateOfOldPrecision)).ToVector3();
|
|
||||||
}
|
|
||||||
|
|
||||||
public LVector3 ToLVector3()
|
|
||||||
{
|
|
||||||
return (new LVector3(true, X * LFloat.RateOfOldPrecision, Y * LFloat.RateOfOldPrecision, Z * LFloat.RateOfOldPrecision));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: bfdfa8bae636419282b29d0cfb4d9239
|
|
||||||
timeCreated: 1729415750
|
|
@ -289,7 +289,7 @@ GameObject:
|
|||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_NavMeshLayer: 0
|
m_NavMeshLayer: 0
|
||||||
m_StaticEditorFlags: 0
|
m_StaticEditorFlags: 0
|
||||||
m_IsActive: 0
|
m_IsActive: 1
|
||||||
--- !u!4 &1449950259
|
--- !u!4 &1449950259
|
||||||
Transform:
|
Transform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -16,10 +16,16 @@ MonoBehaviour:
|
|||||||
RequiredTags: []
|
RequiredTags: []
|
||||||
ImmunityTags: []
|
ImmunityTags: []
|
||||||
start:
|
start:
|
||||||
X: 0
|
x:
|
||||||
Y: 0
|
rawValue: 0
|
||||||
Z: 0
|
y:
|
||||||
|
rawValue: 0
|
||||||
|
z:
|
||||||
|
rawValue: 0
|
||||||
end:
|
end:
|
||||||
X: 10000
|
x:
|
||||||
Y: 0
|
rawValue: 10000000
|
||||||
Z: 0
|
y:
|
||||||
|
rawValue: 0
|
||||||
|
z:
|
||||||
|
rawValue: 0
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: c712e05924784c5593896e5c7c1d2708, type: 3}
|
||||||
|
m_Name: MMC_AttributeBasedModCalculation
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
Description:
|
||||||
|
captureType: 0
|
||||||
|
attributeFromType: 0
|
||||||
|
attributeName: AS_BaseAttribute.HP
|
||||||
|
attributeSetName: AS_BaseAttribute
|
||||||
|
attributeShortName: HP
|
||||||
|
k:
|
||||||
|
rawValue: 1580000
|
||||||
|
b:
|
||||||
|
rawValue: 0
|
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 71b523e86dd62c942b51606055e200bc
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -1,9 +1,6 @@
|
|||||||
using GAS.General;
|
using GAS.Runtime;
|
||||||
using GAS.Runtime;
|
|
||||||
using GASSamples.Scripts;
|
|
||||||
using GASSamples.Scripts.Game.GAS;
|
using GASSamples.Scripts.Game.GAS;
|
||||||
using JNGame.Math;
|
using JNGame.Math;
|
||||||
using JNGame.Runtime.Odin.TypeCustomize;
|
|
||||||
using Sirenix.OdinInspector;
|
using Sirenix.OdinInspector;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
@ -14,10 +11,10 @@ namespace Demo.Scripts.GAS.GameplayCue
|
|||||||
|
|
||||||
[BoxGroup]
|
[BoxGroup]
|
||||||
[LabelText("开始位置")]
|
[LabelText("开始位置")]
|
||||||
public OdinLVector3 start;
|
public LVector3 start;
|
||||||
[BoxGroup]
|
[BoxGroup]
|
||||||
[LabelText("结束位置")]
|
[LabelText("结束位置")]
|
||||||
public OdinLVector3 end;
|
public LVector3 end;
|
||||||
|
|
||||||
public override GameplayCueDurationalSpec CreateSpec(GameplayCueParameters parameters)
|
public override GameplayCueDurationalSpec CreateSpec(GameplayCueParameters parameters)
|
||||||
{
|
{
|
||||||
@ -70,7 +67,7 @@ namespace Demo.Scripts.GAS.GameplayCue
|
|||||||
{
|
{
|
||||||
|
|
||||||
Debug.Log($"GameplayCueDurational_PlayerDemo01_Spec OnTick {frame}");
|
Debug.Log($"GameplayCueDurational_PlayerDemo01_Spec OnTick {frame}");
|
||||||
((GAbilitySystemComponent)Owner).Entity.Transform.Position = LVector3.Lerp(cue.start.ToLVector3(), cue.end.ToLVector3(), (LFloat)(frame - startFrame) / endFrame);
|
((GAbilitySystemComponent)Owner).Entity.Transform.Position = LVector3.Lerp(cue.start, cue.end, (LFloat)(frame - startFrame) / endFrame);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -123,6 +123,7 @@
|
|||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\ContextObserver\ContextObserverInspector.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\ContextObserver\ContextObserverInspector.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\AttributeSet\AttributeSetClassGen.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\AttributeSet\AttributeSetClassGen.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\BoolTypeDrawer.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\BoolTypeDrawer.cs" />
|
||||||
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Math\EditorLVector2Int.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\AbilityTaskMarkTrack\TaskMark.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\AbilityTaskMarkTrack\TaskMark.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\TaskInspector\InstantTaskInspector.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\TaskInspector\InstantTaskInspector.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Tags\GameplayTagsAsset.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Tags\GameplayTagsAsset.cs" />
|
||||||
@ -170,6 +171,7 @@
|
|||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\General\CustomReorderableList.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\General\CustomReorderableList.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\InstantCueTrack\InstantCueTrack.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\InstantCueTrack\InstantCueTrack.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\VisualElement\DragAreaManipulator.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\VisualElement\DragAreaManipulator.cs" />
|
||||||
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Math\EditorLVectorDrawTool.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityOverview.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityOverview.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\TrackMarkBase.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\TrackMarkBase.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\2DPathFinding\MapConfigExporter.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\2DPathFinding\MapConfigExporter.cs" />
|
||||||
@ -183,9 +185,11 @@
|
|||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\RectTypeDrawer.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\RectTypeDrawer.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\VisualElement\TrackInspectorUtil.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\VisualElement\TrackInspectorUtil.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\AttributeSet\AttributeSetAsset.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\AttributeSet\AttributeSetAsset.cs" />
|
||||||
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Math\EditorLVector3.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\UnityObjectTypeDrawer.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\UnityObjectTypeDrawer.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\ReleaseGameplayEffectTrack\ReleaseGameplayEffectTrackEditor.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\ReleaseGameplayEffectTrack\ReleaseGameplayEffectTrackEditor.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\ReleaseGameplayEffectTrack\ReleaseGameplayEffectTrack.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\ReleaseGameplayEffectTrack\ReleaseGameplayEffectTrack.cs" />
|
||||||
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Math\EditorLVector3Int.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.Unity.Editor\src\Menu\EntitasMenuItems.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.Unity.Editor\src\Menu\EntitasMenuItems.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\DurationalCueTrack\DurationalCueClip.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\DurationalCueTrack\DurationalCueClip.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.Unity.Editor\src\EntitasPreferencesWindow.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.Unity.Editor\src\EntitasPreferencesWindow.cs" />
|
||||||
@ -198,6 +202,8 @@
|
|||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityEditorUtil.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityEditorUtil.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\Vector2TypeDrawer.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\Vector2TypeDrawer.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\AbilityTaskClipTrackPassive\PassiveTaskClipEventTrackEditor.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\AbilityTaskClipTrackPassive\PassiveTaskClipEventTrackEditor.cs" />
|
||||||
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Math\EditorLFloat.cs" />
|
||||||
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Math\EditorLVector2.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\ReleaseGameplayEffectTrack\ReleaseGameplayEffectMark.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\GAS\Ability\AbilityTimelineEditor\Track\ReleaseGameplayEffectTrack\ReleaseGameplayEffectMark.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\HashSetTypeDrawer.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\Entity\TypeDrawer\HashSetTypeDrawer.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\EntitasHierarchyIcon.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Editor\Entitas\Entitas.VisualDebugging.Unity.Editor\src\EntitasHierarchyIcon.cs" />
|
||||||
|
@ -315,7 +315,6 @@
|
|||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\Sync\System\Data\STileDataSystem.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Runtime\Sync\System\Data\STileDataSystem.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\Entitas\Core\Entitas\src\EntityIndex\EntityIndexException.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Runtime\Entitas\Core\Entitas\src\EntityIndex\EntityIndexException.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\Entitas\Core\Entitas\src\Matcher\Interfaces\INoneOfMatcher.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Runtime\Entitas\Core\Entitas\src\Matcher\Interfaces\INoneOfMatcher.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\Odin\TypeCustomize\OdinLVector3.cs" />
|
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\Entitas\Core\Entitas.CodeGeneration.Attributes\src\ContextAttribute.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Runtime\Entitas\Core\Entitas.CodeGeneration.Attributes\src\ContextAttribute.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\GAS\Runtime\Effects\GameplayEffectData.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Runtime\GAS\Runtime\Effects\GameplayEffectData.cs" />
|
||||||
<Compile Include="Assets\HotScripts\JNGame\Runtime\Network\Util\NDataUtil.cs" />
|
<Compile Include="Assets\HotScripts\JNGame\Runtime\Network\Util\NDataUtil.cs" />
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,965 +0,0 @@
|
|||||||
Using pre-set license
|
|
||||||
Built from '2022.3/china_unity/release' branch; Version is '2022.3.16f1c1 (2f3f1b3bde89) revision 3096347'; Using compiler version '192829333'; Build Type 'Release'
|
|
||||||
OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB
|
|
||||||
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
|
|
||||||
|
|
||||||
COMMAND LINE ARGUMENTS:
|
|
||||||
C:\APP\UnityEdit\2022.3.16f1c1\Editor\Unity.exe
|
|
||||||
-adb2
|
|
||||||
-batchMode
|
|
||||||
-noUpm
|
|
||||||
-name
|
|
||||||
AssetImportWorker0
|
|
||||||
-projectPath
|
|
||||||
D:/Jisol/JisolGame/JNFrame2
|
|
||||||
-logFile
|
|
||||||
Logs/AssetImportWorker0.log
|
|
||||||
-srvPort
|
|
||||||
58746
|
|
||||||
Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2
|
|
||||||
D:/Jisol/JisolGame/JNFrame2
|
|
||||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
|
||||||
"memorysetup-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-cache-allocator-block-size=4194304"
|
|
||||||
"memorysetup-typetree-allocator-block-size=2097152"
|
|
||||||
"memorysetup-profiler-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-profiler-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-profiler-allocator-block-size=16777216"
|
|
||||||
"memorysetup-profiler-editor-allocator-block-size=1048576"
|
|
||||||
"memorysetup-temp-allocator-size-main=16777216"
|
|
||||||
"memorysetup-job-temp-allocator-block-size=2097152"
|
|
||||||
"memorysetup-job-temp-allocator-block-size-background=1048576"
|
|
||||||
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-main=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-background-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-job-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-preload-manager=33554432"
|
|
||||||
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-audio-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-gfx=262144"
|
|
||||||
Player connection [45888] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 1126597679 [EditorId] 1126597679 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
|
|
||||||
|
|
||||||
Player connection [45888] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 1126597679 [EditorId] 1126597679 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
|
|
||||||
|
|
||||||
[Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers.
|
|
||||||
Refreshing native plugins compatible for Editor in 80.99 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89)
|
|
||||||
[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems
|
|
||||||
[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets
|
|
||||||
GfxDevice: creating device client; threaded=0; jobified=0
|
|
||||||
Direct3D:
|
|
||||||
Version: Direct3D 11.0 [level 11.1]
|
|
||||||
Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520)
|
|
||||||
Vendor: NVIDIA
|
|
||||||
VRAM: 5996 MB
|
|
||||||
Driver: 31.0.15.5176
|
|
||||||
Initialize mono
|
|
||||||
Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed'
|
|
||||||
Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
|
|
||||||
Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc'
|
|
||||||
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56396
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
Registering precompiled unity dll's ...
|
|
||||||
Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
|
|
||||||
Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
|
||||||
Registered in 0.014255 seconds.
|
|
||||||
- Loaded All Assemblies, in 0.358 seconds
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
Android Extension - Scanning For ADB Devices 348 ms
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 0.598 seconds
|
|
||||||
Domain Reload Profiling: 949ms
|
|
||||||
BeginReloadAssembly (122ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (0ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (1ms)
|
|
||||||
RebuildCommonClasses (26ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (72ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (121ms)
|
|
||||||
LoadAssemblies (116ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (118ms)
|
|
||||||
TypeCache.Refresh (117ms)
|
|
||||||
TypeCache.ScanAssembly (105ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (0ms)
|
|
||||||
FinalizeReload (599ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (558ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (438ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (1ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (79ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (36ms)
|
|
||||||
AfterProcessingInitializeOnLoad (0ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (0ms)
|
|
||||||
========================================================================
|
|
||||||
Worker process is ready to serve import requests
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.992 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 40.96 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
Package Manager log level set to [2]
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 0.995 seconds
|
|
||||||
Domain Reload Profiling: 1973ms
|
|
||||||
BeginReloadAssembly (157ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (4ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (19ms)
|
|
||||||
RebuildCommonClasses (29ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (65ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (719ms)
|
|
||||||
LoadAssemblies (562ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (257ms)
|
|
||||||
TypeCache.Refresh (227ms)
|
|
||||||
TypeCache.ScanAssembly (207ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (20ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (995ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (863ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (26ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (71ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (417ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (326ms)
|
|
||||||
AfterProcessingInitializeOnLoad (20ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (8ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 39.04 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5563 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 175 unused Assets / (231.6 KB). Loaded Objects now: 6011.
|
|
||||||
Memory consumption went from 210.3 MB to 210.1 MB.
|
|
||||||
Total: 15.154300 ms (FindLiveObjects: 0.329600 ms CreateObjectMapping: 0.192300 ms MarkObjects: 14.360500 ms DeleteObjects: 0.270700 ms)
|
|
||||||
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
|
|
||||||
custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.207 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 76.20 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.222 seconds
|
|
||||||
Domain Reload Profiling: 2377ms
|
|
||||||
BeginReloadAssembly (342ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (6ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (64ms)
|
|
||||||
RebuildCommonClasses (47ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (14ms)
|
|
||||||
initialDomainReloadingComplete (142ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (605ms)
|
|
||||||
LoadAssemblies (768ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (39ms)
|
|
||||||
TypeCache.Refresh (16ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (10ms)
|
|
||||||
ResolveRequiredComponents (11ms)
|
|
||||||
FinalizeReload (1228ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (558ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (26ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (61ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (264ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (180ms)
|
|
||||||
AfterProcessingInitializeOnLoad (23ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (7ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 38.04 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5546 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6026.
|
|
||||||
Memory consumption went from 208.8 MB to 208.6 MB.
|
|
||||||
Total: 13.008100 ms (FindLiveObjects: 0.313100 ms CreateObjectMapping: 0.179600 ms MarkObjects: 12.289000 ms DeleteObjects: 0.224800 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.698 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 42.93 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.231 seconds
|
|
||||||
Domain Reload Profiling: 1915ms
|
|
||||||
BeginReloadAssembly (184ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (47ms)
|
|
||||||
RebuildCommonClasses (25ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (67ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (399ms)
|
|
||||||
LoadAssemblies (462ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (30ms)
|
|
||||||
TypeCache.Refresh (13ms)
|
|
||||||
TypeCache.ScanAssembly (2ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (9ms)
|
|
||||||
ResolveRequiredComponents (8ms)
|
|
||||||
FinalizeReload (1232ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (588ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (23ms)
|
|
||||||
SetLoadedEditorAssemblies (4ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (65ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (262ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (213ms)
|
|
||||||
AfterProcessingInitializeOnLoad (21ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (11ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 37.84 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5546 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6041.
|
|
||||||
Memory consumption went from 210.7 MB to 210.5 MB.
|
|
||||||
Total: 13.774300 ms (FindLiveObjects: 0.425800 ms CreateObjectMapping: 0.208500 ms MarkObjects: 12.912700 ms DeleteObjects: 0.226300 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Import Request.
|
|
||||||
Time since last request: 582979.347410 seconds.
|
|
||||||
path: Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset
|
|
||||||
artifactKey: Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
|
||||||
Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayAbilityLib/JisolDemo1.asset using Guid(b78ae002fbbf510419a39987f22201f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f39606425d838568877c54fab67f29d5') in 0.014472 seconds
|
|
||||||
Number of updated asset objects reloaded before import = 0
|
|
||||||
Number of asset objects unloaded after import = 4
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.158 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 67.44 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.221 seconds
|
|
||||||
Domain Reload Profiling: 2272ms
|
|
||||||
BeginReloadAssembly (234ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (53ms)
|
|
||||||
RebuildCommonClasses (88ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (13ms)
|
|
||||||
initialDomainReloadingComplete (128ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (587ms)
|
|
||||||
LoadAssemblies (668ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (40ms)
|
|
||||||
TypeCache.Refresh (16ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (10ms)
|
|
||||||
ResolveRequiredComponents (11ms)
|
|
||||||
FinalizeReload (1221ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (568ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (22ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (61ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (263ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (202ms)
|
|
||||||
AfterProcessingInitializeOnLoad (18ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (9ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 32.34 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5546 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6058.
|
|
||||||
Memory consumption went from 212.4 MB to 212.2 MB.
|
|
||||||
Total: 12.524200 ms (FindLiveObjects: 0.296500 ms CreateObjectMapping: 0.208100 ms MarkObjects: 11.830000 ms DeleteObjects: 0.188300 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.679 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 34.04 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.238 seconds
|
|
||||||
Domain Reload Profiling: 1907ms
|
|
||||||
BeginReloadAssembly (174ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (42ms)
|
|
||||||
RebuildCommonClasses (25ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (9ms)
|
|
||||||
initialDomainReloadingComplete (65ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (392ms)
|
|
||||||
LoadAssemblies (455ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (28ms)
|
|
||||||
TypeCache.Refresh (13ms)
|
|
||||||
TypeCache.ScanAssembly (2ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1242ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (583ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (24ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (72ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (282ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (180ms)
|
|
||||||
AfterProcessingInitializeOnLoad (19ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (10ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 34.22 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.9 KB). Loaded Objects now: 6073.
|
|
||||||
Memory consumption went from 214.6 MB to 214.4 MB.
|
|
||||||
Total: 13.714000 ms (FindLiveObjects: 0.311200 ms CreateObjectMapping: 0.182400 ms MarkObjects: 12.999700 ms DeleteObjects: 0.219500 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Import Request.
|
|
||||||
Time since last request: 139.234409 seconds.
|
|
||||||
path: Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset
|
|
||||||
artifactKey: Guid(2aa1d58fb62dc104484f4f2bf1673303) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
|
||||||
Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayCueLib/GCue_PlayerDemo02.asset using Guid(2aa1d58fb62dc104484f4f2bf1673303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72adfdcc06dafd5d51312a46454b1398') in 0.010225 seconds
|
|
||||||
Number of updated asset objects reloaded before import = 0
|
|
||||||
Number of asset objects unloaded after import = 1
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.143 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 78.54 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 2.155 seconds
|
|
||||||
Domain Reload Profiling: 3259ms
|
|
||||||
BeginReloadAssembly (281ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (4ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (61ms)
|
|
||||||
RebuildCommonClasses (37ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (12ms)
|
|
||||||
initialDomainReloadingComplete (128ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (645ms)
|
|
||||||
LoadAssemblies (764ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (39ms)
|
|
||||||
TypeCache.Refresh (16ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (9ms)
|
|
||||||
ResolveRequiredComponents (12ms)
|
|
||||||
FinalizeReload (2156ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (891ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (38ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (96ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (417ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (281ms)
|
|
||||||
AfterProcessingInitializeOnLoad (44ms)
|
|
||||||
EditorAssembliesLoaded (12ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (38ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 78.43 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5546 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.0 KB). Loaded Objects now: 6088.
|
|
||||||
Memory consumption went from 216.2 MB to 216.0 MB.
|
|
||||||
Total: 21.245700 ms (FindLiveObjects: 0.459200 ms CreateObjectMapping: 0.189400 ms MarkObjects: 20.339000 ms DeleteObjects: 0.256800 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.157 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 69.54 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.514 seconds
|
|
||||||
Domain Reload Profiling: 2639ms
|
|
||||||
BeginReloadAssembly (299ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (65ms)
|
|
||||||
RebuildCommonClasses (57ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (12ms)
|
|
||||||
initialDomainReloadingComplete (140ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (617ms)
|
|
||||||
LoadAssemblies (737ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (41ms)
|
|
||||||
TypeCache.Refresh (17ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (10ms)
|
|
||||||
ResolveRequiredComponents (12ms)
|
|
||||||
FinalizeReload (1514ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (584ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (24ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (62ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (274ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (187ms)
|
|
||||||
AfterProcessingInitializeOnLoad (33ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (14ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 34.01 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6103.
|
|
||||||
Memory consumption went from 218.4 MB to 218.2 MB.
|
|
||||||
Total: 13.156900 ms (FindLiveObjects: 0.349800 ms CreateObjectMapping: 0.207800 ms MarkObjects: 12.366100 ms DeleteObjects: 0.231600 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.614 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 35.17 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.357 seconds
|
|
||||||
Domain Reload Profiling: 1957ms
|
|
||||||
BeginReloadAssembly (168ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (40ms)
|
|
||||||
RebuildCommonClasses (24ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (60ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (340ms)
|
|
||||||
LoadAssemblies (411ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (16ms)
|
|
||||||
TypeCache.Refresh (7ms)
|
|
||||||
TypeCache.ScanAssembly (0ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1358ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (637ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (28ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (75ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (301ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (203ms)
|
|
||||||
AfterProcessingInitializeOnLoad (26ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (16ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 40.37 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6118.
|
|
||||||
Memory consumption went from 220.4 MB to 220.2 MB.
|
|
||||||
Total: 13.961900 ms (FindLiveObjects: 0.359800 ms CreateObjectMapping: 0.231600 ms MarkObjects: 13.129700 ms DeleteObjects: 0.239800 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.658 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 53.43 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.399 seconds
|
|
||||||
Domain Reload Profiling: 2044ms
|
|
||||||
BeginReloadAssembly (166ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (39ms)
|
|
||||||
RebuildCommonClasses (24ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (61ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (387ms)
|
|
||||||
LoadAssemblies (458ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (17ms)
|
|
||||||
TypeCache.Refresh (7ms)
|
|
||||||
TypeCache.ScanAssembly (0ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (9ms)
|
|
||||||
FinalizeReload (1400ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (633ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (29ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (71ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (295ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (212ms)
|
|
||||||
AfterProcessingInitializeOnLoad (22ms)
|
|
||||||
EditorAssembliesLoaded (2ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (9ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 38.59 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (204.0 KB). Loaded Objects now: 6133.
|
|
||||||
Memory consumption went from 222.3 MB to 222.1 MB.
|
|
||||||
Total: 14.744500 ms (FindLiveObjects: 0.482600 ms CreateObjectMapping: 0.163500 ms MarkObjects: 13.794300 ms DeleteObjects: 0.302800 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.142 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 65.41 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.243 seconds
|
|
||||||
Domain Reload Profiling: 2357ms
|
|
||||||
BeginReloadAssembly (310ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (48ms)
|
|
||||||
RebuildCommonClasses (42ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (12ms)
|
|
||||||
initialDomainReloadingComplete (136ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (613ms)
|
|
||||||
LoadAssemblies (770ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (46ms)
|
|
||||||
TypeCache.Refresh (26ms)
|
|
||||||
TypeCache.ScanAssembly (13ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (12ms)
|
|
||||||
FinalizeReload (1243ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (599ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (22ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (65ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (284ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (201ms)
|
|
||||||
AfterProcessingInitializeOnLoad (24ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (19ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 34.68 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.9 KB). Loaded Objects now: 6148.
|
|
||||||
Memory consumption went from 224.2 MB to 224.0 MB.
|
|
||||||
Total: 13.265300 ms (FindLiveObjects: 0.356200 ms CreateObjectMapping: 0.204400 ms MarkObjects: 12.480900 ms DeleteObjects: 0.222500 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.798 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 36.92 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.175 seconds
|
|
||||||
Domain Reload Profiling: 1946ms
|
|
||||||
BeginReloadAssembly (186ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (47ms)
|
|
||||||
RebuildCommonClasses (25ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (103ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (448ms)
|
|
||||||
LoadAssemblies (510ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (35ms)
|
|
||||||
TypeCache.Refresh (19ms)
|
|
||||||
TypeCache.ScanAssembly (9ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1176ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (534ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (23ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (62ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (255ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (173ms)
|
|
||||||
AfterProcessingInitializeOnLoad (19ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (15ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 34.35 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.8 KB). Loaded Objects now: 6163.
|
|
||||||
Memory consumption went from 226.1 MB to 225.9 MB.
|
|
||||||
Total: 14.449700 ms (FindLiveObjects: 0.483100 ms CreateObjectMapping: 0.263100 ms MarkObjects: 13.488400 ms DeleteObjects: 0.214100 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.627 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 42.25 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.419 seconds
|
|
||||||
Domain Reload Profiling: 2033ms
|
|
||||||
BeginReloadAssembly (171ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (39ms)
|
|
||||||
RebuildCommonClasses (25ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (59ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (352ms)
|
|
||||||
LoadAssemblies (426ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (17ms)
|
|
||||||
TypeCache.Refresh (7ms)
|
|
||||||
TypeCache.ScanAssembly (0ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1419ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (649ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (26ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (74ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (313ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (209ms)
|
|
||||||
AfterProcessingInitializeOnLoad (23ms)
|
|
||||||
EditorAssembliesLoaded (2ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (10ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 43.24 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (204.1 KB). Loaded Objects now: 6178.
|
|
||||||
Memory consumption went from 228.1 MB to 227.9 MB.
|
|
||||||
Total: 14.459400 ms (FindLiveObjects: 0.377900 ms CreateObjectMapping: 0.219400 ms MarkObjects: 13.657800 ms DeleteObjects: 0.203000 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
File diff suppressed because it is too large
Load Diff
@ -1,957 +0,0 @@
|
|||||||
Using pre-set license
|
|
||||||
Built from '2022.3/china_unity/release' branch; Version is '2022.3.16f1c1 (2f3f1b3bde89) revision 3096347'; Using compiler version '192829333'; Build Type 'Release'
|
|
||||||
OS: 'Windows 11 (10.0.22631) 64bit Core' Language: 'zh' Physical Memory: 16088 MB
|
|
||||||
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
|
|
||||||
|
|
||||||
COMMAND LINE ARGUMENTS:
|
|
||||||
C:\APP\UnityEdit\2022.3.16f1c1\Editor\Unity.exe
|
|
||||||
-adb2
|
|
||||||
-batchMode
|
|
||||||
-noUpm
|
|
||||||
-name
|
|
||||||
AssetImportWorker1
|
|
||||||
-projectPath
|
|
||||||
D:/Jisol/JisolGame/JNFrame2
|
|
||||||
-logFile
|
|
||||||
Logs/AssetImportWorker1.log
|
|
||||||
-srvPort
|
|
||||||
58746
|
|
||||||
Successfully changed project path to: D:/Jisol/JisolGame/JNFrame2
|
|
||||||
D:/Jisol/JisolGame/JNFrame2
|
|
||||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
|
||||||
"memorysetup-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-main-allocator-block-size=16777216"
|
|
||||||
"memorysetup-gfx-thread-allocator-block-size=16777216"
|
|
||||||
"memorysetup-cache-allocator-block-size=4194304"
|
|
||||||
"memorysetup-typetree-allocator-block-size=2097152"
|
|
||||||
"memorysetup-profiler-bucket-allocator-granularity=16"
|
|
||||||
"memorysetup-profiler-bucket-allocator-bucket-count=8"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-size=33554432"
|
|
||||||
"memorysetup-profiler-bucket-allocator-block-count=8"
|
|
||||||
"memorysetup-profiler-allocator-block-size=16777216"
|
|
||||||
"memorysetup-profiler-editor-allocator-block-size=1048576"
|
|
||||||
"memorysetup-temp-allocator-size-main=16777216"
|
|
||||||
"memorysetup-job-temp-allocator-block-size=2097152"
|
|
||||||
"memorysetup-job-temp-allocator-block-size-background=1048576"
|
|
||||||
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-main=262144"
|
|
||||||
"memorysetup-allocator-temp-initial-block-size-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-background-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-job-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-preload-manager=33554432"
|
|
||||||
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-audio-worker=65536"
|
|
||||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
|
||||||
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
|
|
||||||
"memorysetup-temp-allocator-size-gfx=262144"
|
|
||||||
Player connection [38236] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3677003301 [EditorId] 3677003301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
|
|
||||||
|
|
||||||
Player connection [38236] Host "[IP] 192.168.31.185 [Port] 0 [Flags] 2 [Guid] 3677003301 [EditorId] 3677003301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-5RP3AKU) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
|
|
||||||
|
|
||||||
[Physics::Module] Initialized MultithreadedJobDispatcher with 19 workers.
|
|
||||||
Refreshing native plugins compatible for Editor in 79.83 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89)
|
|
||||||
[Subsystems] Discovering subsystems at path C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems
|
|
||||||
[Subsystems] Discovering subsystems at path D:/Jisol/JisolGame/JNFrame2/Assets
|
|
||||||
GfxDevice: creating device client; threaded=0; jobified=0
|
|
||||||
Direct3D:
|
|
||||||
Version: Direct3D 11.0 [level 11.1]
|
|
||||||
Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520)
|
|
||||||
Vendor: NVIDIA
|
|
||||||
VRAM: 5996 MB
|
|
||||||
Driver: 31.0.15.5176
|
|
||||||
Initialize mono
|
|
||||||
Mono path[0] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/Managed'
|
|
||||||
Mono path[1] = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
|
|
||||||
Mono config path = 'C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc'
|
|
||||||
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56768
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
Registering precompiled unity dll's ...
|
|
||||||
Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
|
|
||||||
Register platform support module: C:/APP/UnityEdit/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
|
||||||
Registered in 0.016676 seconds.
|
|
||||||
- Loaded All Assemblies, in 0.363 seconds
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
Android Extension - Scanning For ADB Devices 320 ms
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 0.571 seconds
|
|
||||||
Domain Reload Profiling: 926ms
|
|
||||||
BeginReloadAssembly (123ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (0ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (1ms)
|
|
||||||
RebuildCommonClasses (28ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (73ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (124ms)
|
|
||||||
LoadAssemblies (116ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (121ms)
|
|
||||||
TypeCache.Refresh (120ms)
|
|
||||||
TypeCache.ScanAssembly (108ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (0ms)
|
|
||||||
FinalizeReload (572ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (530ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (411ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (1ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (78ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (37ms)
|
|
||||||
AfterProcessingInitializeOnLoad (0ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (0ms)
|
|
||||||
========================================================================
|
|
||||||
Worker process is ready to serve import requests
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.992 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 42.30 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
Package Manager log level set to [2]
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 0.991 seconds
|
|
||||||
Domain Reload Profiling: 1968ms
|
|
||||||
BeginReloadAssembly (156ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (4ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (19ms)
|
|
||||||
RebuildCommonClasses (29ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (9ms)
|
|
||||||
initialDomainReloadingComplete (66ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (718ms)
|
|
||||||
LoadAssemblies (562ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (256ms)
|
|
||||||
TypeCache.Refresh (227ms)
|
|
||||||
TypeCache.ScanAssembly (207ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (20ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (991ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (859ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (26ms)
|
|
||||||
SetLoadedEditorAssemblies (4ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (71ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (419ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (319ms)
|
|
||||||
AfterProcessingInitializeOnLoad (20ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (7ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 39.09 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5563 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 175 unused Assets / (231.0 KB). Loaded Objects now: 6011.
|
|
||||||
Memory consumption went from 210.3 MB to 210.1 MB.
|
|
||||||
Total: 15.175500 ms (FindLiveObjects: 0.332400 ms CreateObjectMapping: 0.186000 ms MarkObjects: 14.387700 ms DeleteObjects: 0.268200 ms)
|
|
||||||
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:scripting/monoscript/fileName/m_generatorPluginAttribute.cs: b059e60ee6785702b3dbf85733765f7f -> bef7912753b2bc58bba0d70946e69a22
|
|
||||||
custom:scripting/monoscript/fileName/m_generatorAttribute.cs: 9a3832caedb205d9d2bd83dcddfd1f7d -> 4d18a73bcdf3c1dd8d7046481e79d093
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:scripting/monoscript/fileName/m_generatorPackageAttribute.cs: e10470c8d55ee14386c756ed32808741 -> c0108c2656ca6f9f00b8de673fb8aace
|
|
||||||
========================================================================
|
|
||||||
Received Import Request.
|
|
||||||
Time since last request: 582933.751461 seconds.
|
|
||||||
path: Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset
|
|
||||||
artifactKey: Guid(25ef9a2206b693c4f9b93af896a038a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
|
||||||
Start importing Assets/Scripts/GASSamples/GAS/Config/GameplayEffectLib/GE_JisolDemo1.asset using Guid(25ef9a2206b693c4f9b93af896a038a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c736e7e311c9561b7cd52d89e5928c43') in 0.009531 seconds
|
|
||||||
Number of updated asset objects reloaded before import = 0
|
|
||||||
Number of asset objects unloaded after import = 3
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.148 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 71.73 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.263 seconds
|
|
||||||
Domain Reload Profiling: 2369ms
|
|
||||||
BeginReloadAssembly (311ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (6ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (64ms)
|
|
||||||
RebuildCommonClasses (59ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (13ms)
|
|
||||||
initialDomainReloadingComplete (101ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (622ms)
|
|
||||||
LoadAssemblies (755ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (39ms)
|
|
||||||
TypeCache.Refresh (16ms)
|
|
||||||
TypeCache.ScanAssembly (3ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (10ms)
|
|
||||||
ResolveRequiredComponents (12ms)
|
|
||||||
FinalizeReload (1264ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (548ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (24ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (63ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (262ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (177ms)
|
|
||||||
AfterProcessingInitializeOnLoad (19ms)
|
|
||||||
EditorAssembliesLoaded (0ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (8ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 39.64 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5545 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6027.
|
|
||||||
Memory consumption went from 208.5 MB to 208.3 MB.
|
|
||||||
Total: 13.069000 ms (FindLiveObjects: 0.405200 ms CreateObjectMapping: 0.183300 ms MarkObjects: 12.295100 ms DeleteObjects: 0.184500 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.689 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 41.28 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.240 seconds
|
|
||||||
Domain Reload Profiling: 1916ms
|
|
||||||
BeginReloadAssembly (183ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (48ms)
|
|
||||||
RebuildCommonClasses (25ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (67ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (392ms)
|
|
||||||
LoadAssemblies (457ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (27ms)
|
|
||||||
TypeCache.Refresh (12ms)
|
|
||||||
TypeCache.ScanAssembly (2ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (8ms)
|
|
||||||
FinalizeReload (1242ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (585ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (23ms)
|
|
||||||
SetLoadedEditorAssemblies (4ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (64ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (264ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (209ms)
|
|
||||||
AfterProcessingInitializeOnLoad (21ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (11ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 37.46 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5546 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.4 KB). Loaded Objects now: 6042.
|
|
||||||
Memory consumption went from 210.7 MB to 210.5 MB.
|
|
||||||
Total: 13.674400 ms (FindLiveObjects: 0.526200 ms CreateObjectMapping: 0.200100 ms MarkObjects: 12.752700 ms DeleteObjects: 0.194600 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.036 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 63.83 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.264 seconds
|
|
||||||
Domain Reload Profiling: 2273ms
|
|
||||||
BeginReloadAssembly (247ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (50ms)
|
|
||||||
RebuildCommonClasses (37ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (12ms)
|
|
||||||
initialDomainReloadingComplete (109ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (603ms)
|
|
||||||
LoadAssemblies (701ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (40ms)
|
|
||||||
TypeCache.Refresh (17ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (11ms)
|
|
||||||
ResolveRequiredComponents (12ms)
|
|
||||||
FinalizeReload (1265ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (537ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (24ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (60ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (252ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (181ms)
|
|
||||||
AfterProcessingInitializeOnLoad (18ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (10ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 33.87 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6058.
|
|
||||||
Memory consumption went from 212.6 MB to 212.4 MB.
|
|
||||||
Total: 13.969700 ms (FindLiveObjects: 0.316700 ms CreateObjectMapping: 0.180000 ms MarkObjects: 13.263800 ms DeleteObjects: 0.208000 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.669 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 35.91 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.268 seconds
|
|
||||||
Domain Reload Profiling: 1923ms
|
|
||||||
BeginReloadAssembly (173ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (44ms)
|
|
||||||
RebuildCommonClasses (24ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (66ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (383ms)
|
|
||||||
LoadAssemblies (444ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (29ms)
|
|
||||||
TypeCache.Refresh (13ms)
|
|
||||||
TypeCache.ScanAssembly (2ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1269ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (594ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (24ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (72ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (279ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (196ms)
|
|
||||||
AfterProcessingInitializeOnLoad (19ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (9ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 35.11 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.3 KB). Loaded Objects now: 6073.
|
|
||||||
Memory consumption went from 214.6 MB to 214.4 MB.
|
|
||||||
Total: 13.184200 ms (FindLiveObjects: 0.309300 ms CreateObjectMapping: 0.228100 ms MarkObjects: 12.424700 ms DeleteObjects: 0.220900 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.128 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 72.68 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 2.109 seconds
|
|
||||||
Domain Reload Profiling: 3211ms
|
|
||||||
BeginReloadAssembly (280ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (60ms)
|
|
||||||
RebuildCommonClasses (38ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (13ms)
|
|
||||||
initialDomainReloadingComplete (134ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (636ms)
|
|
||||||
LoadAssemblies (752ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (39ms)
|
|
||||||
TypeCache.Refresh (17ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (10ms)
|
|
||||||
ResolveRequiredComponents (11ms)
|
|
||||||
FinalizeReload (2109ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (885ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (36ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (95ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (398ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (310ms)
|
|
||||||
AfterProcessingInitializeOnLoad (37ms)
|
|
||||||
EditorAssembliesLoaded (6ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (13ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 81.30 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6088.
|
|
||||||
Memory consumption went from 216.4 MB to 216.2 MB.
|
|
||||||
Total: 41.526400 ms (FindLiveObjects: 0.419100 ms CreateObjectMapping: 0.159700 ms MarkObjects: 40.669200 ms DeleteObjects: 0.276700 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.106 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 74.65 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.512 seconds
|
|
||||||
Domain Reload Profiling: 2583ms
|
|
||||||
BeginReloadAssembly (292ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (6ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (68ms)
|
|
||||||
RebuildCommonClasses (38ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (14ms)
|
|
||||||
initialDomainReloadingComplete (127ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (599ms)
|
|
||||||
LoadAssemblies (704ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (45ms)
|
|
||||||
TypeCache.Refresh (19ms)
|
|
||||||
TypeCache.ScanAssembly (4ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (11ms)
|
|
||||||
ResolveRequiredComponents (13ms)
|
|
||||||
FinalizeReload (1513ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (561ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (22ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (61ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (263ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (190ms)
|
|
||||||
AfterProcessingInitializeOnLoad (20ms)
|
|
||||||
EditorAssembliesLoaded (2ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (8ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 35.11 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6103.
|
|
||||||
Memory consumption went from 218.4 MB to 218.2 MB.
|
|
||||||
Total: 13.688100 ms (FindLiveObjects: 0.329900 ms CreateObjectMapping: 0.164800 ms MarkObjects: 12.991800 ms DeleteObjects: 0.200300 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.607 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 35.11 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.345 seconds
|
|
||||||
Domain Reload Profiling: 1939ms
|
|
||||||
BeginReloadAssembly (167ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (40ms)
|
|
||||||
RebuildCommonClasses (24ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (7ms)
|
|
||||||
initialDomainReloadingComplete (60ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (334ms)
|
|
||||||
LoadAssemblies (407ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (15ms)
|
|
||||||
TypeCache.Refresh (7ms)
|
|
||||||
TypeCache.ScanAssembly (0ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1346ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (624ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (29ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (74ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (298ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (192ms)
|
|
||||||
AfterProcessingInitializeOnLoad (26ms)
|
|
||||||
EditorAssembliesLoaded (3ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (16ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 39.65 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6118.
|
|
||||||
Memory consumption went from 220.4 MB to 220.2 MB.
|
|
||||||
Total: 13.997200 ms (FindLiveObjects: 0.318000 ms CreateObjectMapping: 0.233700 ms MarkObjects: 13.227100 ms DeleteObjects: 0.217100 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.648 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 46.09 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.398 seconds
|
|
||||||
Domain Reload Profiling: 2033ms
|
|
||||||
BeginReloadAssembly (166ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (42ms)
|
|
||||||
RebuildCommonClasses (24ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (7ms)
|
|
||||||
initialDomainReloadingComplete (62ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (375ms)
|
|
||||||
LoadAssemblies (443ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (17ms)
|
|
||||||
TypeCache.Refresh (8ms)
|
|
||||||
TypeCache.ScanAssembly (0ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (8ms)
|
|
||||||
FinalizeReload (1399ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (616ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (28ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (70ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (296ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (189ms)
|
|
||||||
AfterProcessingInitializeOnLoad (28ms)
|
|
||||||
EditorAssembliesLoaded (2ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (18ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 39.01 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.2 KB). Loaded Objects now: 6133.
|
|
||||||
Memory consumption went from 222.3 MB to 222.1 MB.
|
|
||||||
Total: 14.969600 ms (FindLiveObjects: 0.313900 ms CreateObjectMapping: 0.185500 ms MarkObjects: 14.221900 ms DeleteObjects: 0.247100 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 1.185 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 64.54 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.181 seconds
|
|
||||||
Domain Reload Profiling: 2342ms
|
|
||||||
BeginReloadAssembly (322ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (5ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (52ms)
|
|
||||||
RebuildCommonClasses (38ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (17ms)
|
|
||||||
initialDomainReloadingComplete (130ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (653ms)
|
|
||||||
LoadAssemblies (802ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (46ms)
|
|
||||||
TypeCache.Refresh (26ms)
|
|
||||||
TypeCache.ScanAssembly (13ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (11ms)
|
|
||||||
FinalizeReload (1182ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (586ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (26ms)
|
|
||||||
SetLoadedEditorAssemblies (3ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (59ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (311ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (165ms)
|
|
||||||
AfterProcessingInitializeOnLoad (20ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (12ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 35.57 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (202.3 KB). Loaded Objects now: 6148.
|
|
||||||
Memory consumption went from 224.2 MB to 224.0 MB.
|
|
||||||
Total: 13.128200 ms (FindLiveObjects: 0.304400 ms CreateObjectMapping: 0.162400 ms MarkObjects: 12.464900 ms DeleteObjects: 0.195500 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.793 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 36.45 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.154 seconds
|
|
||||||
Domain Reload Profiling: 1917ms
|
|
||||||
BeginReloadAssembly (186ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (48ms)
|
|
||||||
RebuildCommonClasses (24ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (103ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (441ms)
|
|
||||||
LoadAssemblies (501ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (36ms)
|
|
||||||
TypeCache.Refresh (20ms)
|
|
||||||
TypeCache.ScanAssembly (10ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (7ms)
|
|
||||||
ResolveRequiredComponents (7ms)
|
|
||||||
FinalizeReload (1155ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (511ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (22ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (61ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (247ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (160ms)
|
|
||||||
AfterProcessingInitializeOnLoad (17ms)
|
|
||||||
EditorAssembliesLoaded (2ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (11ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 34.35 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6163.
|
|
||||||
Memory consumption went from 226.1 MB to 225.9 MB.
|
|
||||||
Total: 15.235900 ms (FindLiveObjects: 0.332000 ms CreateObjectMapping: 0.211900 ms MarkObjects: 14.480200 ms DeleteObjects: 0.210800 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
========================================================================
|
|
||||||
Received Prepare
|
|
||||||
Begin MonoManager ReloadAssembly
|
|
||||||
- Loaded All Assemblies, in 0.614 seconds
|
|
||||||
Refreshing native plugins compatible for Editor in 40.50 ms, found 3 plugins.
|
|
||||||
Native extension for WindowsStandalone target not found
|
|
||||||
Native extension for Android target not found
|
|
||||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
|
||||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
|
||||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
|
||||||
Mono: successfully reloaded assembly
|
|
||||||
- Finished resetting the current domain, in 1.411 seconds
|
|
||||||
Domain Reload Profiling: 2012ms
|
|
||||||
BeginReloadAssembly (166ms)
|
|
||||||
ExecutionOrderSort (0ms)
|
|
||||||
DisableScriptedObjects (3ms)
|
|
||||||
BackupInstance (0ms)
|
|
||||||
ReleaseScriptingObjects (0ms)
|
|
||||||
CreateAndSetChildDomain (37ms)
|
|
||||||
RebuildCommonClasses (23ms)
|
|
||||||
RebuildNativeTypeToScriptingClass (8ms)
|
|
||||||
initialDomainReloadingComplete (58ms)
|
|
||||||
LoadAllAssembliesAndSetupDomain (345ms)
|
|
||||||
LoadAssemblies (420ms)
|
|
||||||
RebuildTransferFunctionScriptingTraits (0ms)
|
|
||||||
AnalyzeDomain (17ms)
|
|
||||||
TypeCache.Refresh (7ms)
|
|
||||||
TypeCache.ScanAssembly (0ms)
|
|
||||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
|
||||||
ResolveRequiredComponents (8ms)
|
|
||||||
FinalizeReload (1411ms)
|
|
||||||
ReleaseScriptCaches (0ms)
|
|
||||||
RebuildScriptCaches (0ms)
|
|
||||||
SetupLoadedEditorAssemblies (610ms)
|
|
||||||
LogAssemblyErrors (0ms)
|
|
||||||
InitializePlatformSupportModulesInManaged (27ms)
|
|
||||||
SetLoadedEditorAssemblies (2ms)
|
|
||||||
RefreshPlugins (0ms)
|
|
||||||
BeforeProcessingInitializeOnLoad (71ms)
|
|
||||||
ProcessInitializeOnLoadAttributes (301ms)
|
|
||||||
ProcessInitializeOnLoadMethodAttributes (187ms)
|
|
||||||
AfterProcessingInitializeOnLoad (21ms)
|
|
||||||
EditorAssembliesLoaded (1ms)
|
|
||||||
ExecutionOrderSort2 (0ms)
|
|
||||||
AwakeInstancesAfterBackupRestoration (24ms)
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Shader 'FairyGUI/TextMeshPro/Distance Field': fallback shader 'TextMeshPro/Mobile/Distance Field' not found
|
|
||||||
Refreshing native plugins compatible for Editor in 42.43 ms, found 3 plugins.
|
|
||||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
|
||||||
Unloading 5547 Unused Serialized files (Serialized files now loaded: 0)
|
|
||||||
Unloading 134 unused Assets / (203.4 KB). Loaded Objects now: 6178.
|
|
||||||
Memory consumption went from 228.1 MB to 227.9 MB.
|
|
||||||
Total: 14.918200 ms (FindLiveObjects: 0.447000 ms CreateObjectMapping: 0.192600 ms MarkObjects: 14.025800 ms DeleteObjects: 0.251400 ms)
|
|
||||||
|
|
||||||
Prepare: number of updated asset objects reloaded= 0
|
|
||||||
AssetImportParameters requested are different than current active one (requested -> active):
|
|
||||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
|
||||||
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
|
|
||||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
|
||||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
|
||||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
|
||||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
|
||||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
|
||||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
|
||||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
|
||||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
|
||||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
|
||||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
||||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
|
@ -10,18 +10,3 @@ Cmd: preprocess
|
|||||||
Cmd: preprocess
|
Cmd: preprocess
|
||||||
insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
|
insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
|
||||||
|
|
||||||
Cmd: preprocess
|
|
||||||
insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
|
|
||||||
|
|
||||||
Cmd: preprocess
|
|
||||||
insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
|
|
||||||
|
|
||||||
Cmd: preprocess
|
|
||||||
insize=4032 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=195
|
|
||||||
|
|
||||||
Cmd: preprocess
|
|
||||||
insize=1516 file=/ surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=295
|
|
||||||
|
|
||||||
Cmd: preprocess
|
|
||||||
insize=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
|
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -14,16 +14,16 @@ MonoBehaviour:
|
|||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_PixelRect:
|
m_PixelRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 8
|
x: 0
|
||||||
y: 51
|
y: 43
|
||||||
width: 1904
|
width: 1920
|
||||||
height: 1021
|
height: 1037
|
||||||
m_ShowMode: 4
|
m_ShowMode: 4
|
||||||
m_Title: "\u63A7\u5236\u53F0"
|
m_Title: GASAsset Aggregator
|
||||||
m_RootView: {fileID: 2}
|
m_RootView: {fileID: 2}
|
||||||
m_MinSize: {x: 875, y: 300}
|
m_MinSize: {x: 875, y: 371}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_Maximized: 0
|
m_Maximized: 1
|
||||||
--- !u!114 &2
|
--- !u!114 &2
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@ -44,8 +44,8 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1904
|
width: 1920
|
||||||
height: 1021
|
height: 1037
|
||||||
m_MinSize: {x: 875, y: 300}
|
m_MinSize: {x: 875, y: 300}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_UseTopView: 1
|
m_UseTopView: 1
|
||||||
@ -69,7 +69,7 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1904
|
width: 1920
|
||||||
height: 30
|
height: 30
|
||||||
m_MinSize: {x: 0, y: 0}
|
m_MinSize: {x: 0, y: 0}
|
||||||
m_MaxSize: {x: 0, y: 0}
|
m_MaxSize: {x: 0, y: 0}
|
||||||
@ -90,8 +90,8 @@ MonoBehaviour:
|
|||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 1001
|
y: 1017
|
||||||
width: 1904
|
width: 1920
|
||||||
height: 20
|
height: 20
|
||||||
m_MinSize: {x: 0, y: 0}
|
m_MinSize: {x: 0, y: 0}
|
||||||
m_MaxSize: {x: 0, y: 0}
|
m_MaxSize: {x: 0, y: 0}
|
||||||
@ -114,12 +114,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 30
|
y: 30
|
||||||
width: 1904
|
width: 1920
|
||||||
height: 971
|
height: 987
|
||||||
m_MinSize: {x: 400, y: 100}
|
m_MinSize: {x: 400, y: 100}
|
||||||
m_MaxSize: {x: 32384, y: 16192}
|
m_MaxSize: {x: 32384, y: 16192}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 71
|
controlID: 48
|
||||||
--- !u!114 &6
|
--- !u!114 &6
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@ -139,12 +139,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1343
|
width: 1569
|
||||||
height: 971
|
height: 987
|
||||||
m_MinSize: {x: 300, y: 100}
|
m_MinSize: {x: 300, y: 100}
|
||||||
m_MaxSize: {x: 24288, y: 16192}
|
m_MaxSize: {x: 24288, y: 16192}
|
||||||
vertical: 1
|
vertical: 1
|
||||||
controlID: 72
|
controlID: 49
|
||||||
--- !u!114 &7
|
--- !u!114 &7
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@ -165,12 +165,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1343
|
width: 1569
|
||||||
height: 514
|
height: 370
|
||||||
m_MinSize: {x: 300, y: 50}
|
m_MinSize: {x: 300, y: 50}
|
||||||
m_MaxSize: {x: 24288, y: 8096}
|
m_MaxSize: {x: 24288, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 49
|
controlID: 50
|
||||||
--- !u!114 &8
|
--- !u!114 &8
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@ -188,13 +188,13 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 317
|
width: 359
|
||||||
height: 514
|
height: 370
|
||||||
m_MinSize: {x: 201, y: 221}
|
m_MinSize: {x: 201, y: 221}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 15}
|
m_ActualView: {fileID: 17}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 15}
|
- {fileID: 17}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &9
|
--- !u!114 &9
|
||||||
@ -212,16 +212,16 @@ MonoBehaviour:
|
|||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 317
|
x: 359
|
||||||
y: 0
|
y: 0
|
||||||
width: 516
|
width: 659
|
||||||
height: 514
|
height: 370
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 202, y: 221}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 16}
|
m_ActualView: {fileID: 18}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 16}
|
- {fileID: 18}
|
||||||
- {fileID: 17}
|
- {fileID: 19}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 1
|
m_LastSelected: 1
|
||||||
--- !u!114 &10
|
--- !u!114 &10
|
||||||
@ -239,15 +239,15 @@ MonoBehaviour:
|
|||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 833
|
x: 1018
|
||||||
y: 0
|
y: 0
|
||||||
width: 510
|
width: 551
|
||||||
height: 514
|
height: 370
|
||||||
m_MinSize: {x: 102, y: 121}
|
m_MinSize: {x: 102, y: 121}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 20}
|
m_ActualView: {fileID: 22}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 20}
|
- {fileID: 22}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &11
|
--- !u!114 &11
|
||||||
@ -260,23 +260,25 @@ MonoBehaviour:
|
|||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 1
|
m_EditorHideFlags: 1
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
m_Name: ConsoleWindow
|
m_Name: GASAssetAggregator
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 514
|
y: 370
|
||||||
width: 1343
|
width: 1569
|
||||||
height: 457
|
height: 617
|
||||||
m_MinSize: {x: 101, y: 121}
|
m_MinSize: {x: 101, y: 121}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 14}
|
m_ActualView: {fileID: 13}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 18}
|
- {fileID: 20}
|
||||||
|
- {fileID: 16}
|
||||||
- {fileID: 14}
|
- {fileID: 14}
|
||||||
m_Selected: 1
|
- {fileID: 13}
|
||||||
m_LastSelected: 0
|
m_Selected: 3
|
||||||
|
m_LastSelected: 2
|
||||||
--- !u!114 &12
|
--- !u!114 &12
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@ -292,19 +294,153 @@ MonoBehaviour:
|
|||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1343
|
x: 1569
|
||||||
y: 0
|
y: 0
|
||||||
width: 561
|
width: 351
|
||||||
height: 971
|
height: 987
|
||||||
m_MinSize: {x: 276, y: 71}
|
m_MinSize: {x: 276, y: 71}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 19}
|
m_ActualView: {fileID: 21}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 19}
|
- {fileID: 15}
|
||||||
- {fileID: 13}
|
- {fileID: 21}
|
||||||
m_Selected: 0
|
m_Selected: 1
|
||||||
m_LastSelected: 1
|
m_LastSelected: 0
|
||||||
--- !u!114 &13
|
--- !u!114 &13
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 59a3cfef5e254d3d8e63b6cfc84ec221, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 100, y: 100}
|
||||||
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: GASAsset Aggregator
|
||||||
|
m_Image: {fileID: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 443
|
||||||
|
width: 1568
|
||||||
|
height: 596
|
||||||
|
m_SerializedDataModeController:
|
||||||
|
m_DataMode: 0
|
||||||
|
m_PreferredDataMode: 0
|
||||||
|
m_SupportedDataModes:
|
||||||
|
isAutomatic: 1
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
|
m_OverlaysVisible: 1
|
||||||
|
serializationData:
|
||||||
|
SerializedFormat: 2
|
||||||
|
SerializedBytes:
|
||||||
|
ReferencedUnityObjects: []
|
||||||
|
SerializedBytesString:
|
||||||
|
Prefab: {fileID: 0}
|
||||||
|
PrefabModificationsReferencedUnityObjects: []
|
||||||
|
PrefabModifications: []
|
||||||
|
SerializationNodes:
|
||||||
|
- Name: inspectorTargetSerialized
|
||||||
|
Entry: 6
|
||||||
|
Data:
|
||||||
|
labelWidth: 0.33
|
||||||
|
windowPadding: {x: 4, y: 4, z: 4, w: 4}
|
||||||
|
useScrollView: 1
|
||||||
|
drawUnityEditorPreview: 0
|
||||||
|
wrappedAreaMaxHeight: 1000
|
||||||
|
menuTreeConfig:
|
||||||
|
AutoScrollOnSelectionChanged: 1
|
||||||
|
DrawScrollView: 1
|
||||||
|
AutoHandleKeyboardNavigation: 1
|
||||||
|
DrawSearchToolbar: 1
|
||||||
|
UseCachedExpandedStates: 1
|
||||||
|
AutoFocusSearchBar: 1
|
||||||
|
SelectMenuItemsOnMouseDown: 0
|
||||||
|
ScrollPos: {x: 0, y: 0}
|
||||||
|
SearchTerm:
|
||||||
|
SearchToolbarHeight: 24
|
||||||
|
EXPERIMENTAL_INTERNAL_DrawFlatTreeFastNoLayout: 0
|
||||||
|
ConfirmSlecectionOnDoubleClick: 1
|
||||||
|
menuWidth: 240
|
||||||
|
selectedItems:
|
||||||
|
- A- Mod Magnitude Calculation/MMC_AttributeBasedModCalculation
|
||||||
|
resizableMenuWidth: 1
|
||||||
|
--- !u!114 &14
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fdb20e1777ef464d86716c3505cab9a6, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 100, y: 100}
|
||||||
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: EX Gameplay Ability System Watcher
|
||||||
|
m_Image: {fileID: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 443
|
||||||
|
width: 1568
|
||||||
|
height: 596
|
||||||
|
m_SerializedDataModeController:
|
||||||
|
m_DataMode: 0
|
||||||
|
m_PreferredDataMode: 0
|
||||||
|
m_SupportedDataModes:
|
||||||
|
isAutomatic: 1
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
|
m_OverlaysVisible: 1
|
||||||
|
serializationData:
|
||||||
|
SerializedFormat: 2
|
||||||
|
SerializedBytes:
|
||||||
|
ReferencedUnityObjects: []
|
||||||
|
SerializedBytesString:
|
||||||
|
Prefab: {fileID: 0}
|
||||||
|
PrefabModificationsReferencedUnityObjects: []
|
||||||
|
PrefabModifications: []
|
||||||
|
SerializationNodes:
|
||||||
|
- Name: inspectorTargetSerialized
|
||||||
|
Entry: 6
|
||||||
|
Data:
|
||||||
|
labelWidth: 0.33
|
||||||
|
windowPadding: {x: 4, y: 4, z: 4, w: 4}
|
||||||
|
useScrollView: 1
|
||||||
|
drawUnityEditorPreview: 0
|
||||||
|
wrappedAreaMaxHeight: 1000
|
||||||
|
windowTitle: <size=18><b>EX Gameplay Ability System Watcher</b></size>
|
||||||
|
tips: "\u8BE5\u7A97\u53E3\u7528\u4E8E\u76D1\u89C6GAS\u8FD0\u884C\u72B6\u6001,\u5EFA\u8BAE\u5728\u8C03\u8BD5GAS\u7684\u89D2\u8272\u80FD\u529B\uFF0C\u6548\u679C\u65F6\u6253\u5F00\u8BE5\u7A97\u53E3\u3002"
|
||||||
|
onlyForGameRunning: "<size=20><b><color=yellow>\u76D1\u89C6\u5668\u53EA\u5728\u6E38\u620F\u8FD0\u884C\u65F6\u53EF\u7528.</color></b></size>"
|
||||||
|
Navis: NAVI
|
||||||
|
IID: 0
|
||||||
|
instance: {fileID: 0}
|
||||||
|
Level: 1
|
||||||
|
Abilities:
|
||||||
|
- 'JisolDemo1 | Lv.0 '
|
||||||
|
Attributes:
|
||||||
|
- "AttributeSet: AS_BaseAttribute \u2193"
|
||||||
|
- ' - HP = 0.00(0.00 + 0.00)'
|
||||||
|
Effects: []
|
||||||
|
FixedTag: []
|
||||||
|
DynamicTag: []
|
||||||
|
--- !u!114 &15
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -324,10 +460,10 @@ MonoBehaviour:
|
|||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1469
|
x: 1618
|
||||||
y: 73
|
y: 19
|
||||||
width: 450
|
width: 302
|
||||||
height: 918
|
height: 966
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -338,7 +474,7 @@ MonoBehaviour:
|
|||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
--- !u!114 &14
|
--- !u!114 &16
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -358,10 +494,10 @@ MonoBehaviour:
|
|||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: -32000
|
x: 0
|
||||||
y: -31456
|
y: 443
|
||||||
width: 1342
|
width: 1568
|
||||||
height: 436
|
height: 596
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -372,7 +508,7 @@ MonoBehaviour:
|
|||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
--- !u!114 &15
|
--- !u!114 &17
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -392,10 +528,10 @@ MonoBehaviour:
|
|||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 8
|
x: 0
|
||||||
y: 81
|
y: 73
|
||||||
width: 316
|
width: 358
|
||||||
height: 493
|
height: 349
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -409,9 +545,9 @@ MonoBehaviour:
|
|||||||
m_SceneHierarchy:
|
m_SceneHierarchy:
|
||||||
m_TreeViewState:
|
m_TreeViewState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs: 5494fdff
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 60f8feff6efafffff4ffffff08700000
|
m_ExpandedIDs: c2faffffec6f000000700000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@ -435,7 +571,7 @@ MonoBehaviour:
|
|||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_CurrentSortingName: TransformSorting
|
m_CurrentSortingName: TransformSorting
|
||||||
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||||
--- !u!114 &16
|
--- !u!114 &18
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -455,10 +591,10 @@ MonoBehaviour:
|
|||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 325
|
x: 359
|
||||||
y: 81
|
y: 73
|
||||||
width: 514
|
width: 657
|
||||||
height: 493
|
height: 349
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -804,9 +940,9 @@ MonoBehaviour:
|
|||||||
m_PlayAudio: 0
|
m_PlayAudio: 0
|
||||||
m_AudioPlay: 0
|
m_AudioPlay: 0
|
||||||
m_Position:
|
m_Position:
|
||||||
m_Target: {x: 0, y: 0, z: 0}
|
m_Target: {x: 8.55008, y: 1.2594314, z: -1.5387268}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 0, y: 0, z: 0}
|
m_Value: {x: 8.55008, y: 1.2594314, z: -1.5387268}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
@ -852,9 +988,9 @@ MonoBehaviour:
|
|||||||
m_GridAxis: 1
|
m_GridAxis: 1
|
||||||
m_gridOpacity: 0.5
|
m_gridOpacity: 0.5
|
||||||
m_Rotation:
|
m_Rotation:
|
||||||
m_Target: {x: -0.1675168, y: 0.0035475881, z: -0.00060564454, w: -0.9858772}
|
m_Target: {x: -0.13147172, y: -0.22194101, z: 0.030212298, w: -0.9656983}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: -0.1675144, y: 0.0035475374, z: -0.00060563587, w: -0.9858631}
|
m_Value: {x: -0.13146985, y: -0.22193784, z: 0.030211866, w: -0.9656845}
|
||||||
m_Size:
|
m_Size:
|
||||||
m_Target: 10
|
m_Target: 10
|
||||||
speed: 2
|
speed: 2
|
||||||
@ -883,7 +1019,7 @@ MonoBehaviour:
|
|||||||
m_SceneVisActive: 1
|
m_SceneVisActive: 1
|
||||||
m_LastLockedObject: {fileID: 0}
|
m_LastLockedObject: {fileID: 0}
|
||||||
m_ViewIsLockedToObject: 0
|
m_ViewIsLockedToObject: 0
|
||||||
--- !u!114 &17
|
--- !u!114 &19
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -917,7 +1053,7 @@ MonoBehaviour:
|
|||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
--- !u!114 &18
|
--- !u!114 &20
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -938,9 +1074,9 @@ MonoBehaviour:
|
|||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 595
|
y: 443
|
||||||
width: 1353
|
width: 1568
|
||||||
height: 444
|
height: 596
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -976,10 +1112,10 @@ MonoBehaviour:
|
|||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_FolderTreeState:
|
m_FolderTreeState:
|
||||||
scrollPos: {x: 0, y: 72}
|
scrollPos: {x: 0, y: 196}
|
||||||
m_SelectedIDs: fc720000
|
m_SelectedIDs: 7e710000
|
||||||
m_LastClickedID: 29436
|
m_LastClickedID: 29054
|
||||||
m_ExpandedIDs: 00000000487000004a7000004e700000527000005470000056700000587000005a7000005c70000060700000627000006470000066700000687000006a7000006c7000006e700000be700000c2700000d4700000ec720000f072000000ca9a3b
|
m_ExpandedIDs: 0000000040700000427000004470000046700000487000004a7000004c7000004e70000050700000527000005470000056700000587000005a7000005c7000005e70000060700000627000006470000066700000687000006a710000be7e0000c07e000000ca9a3b
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@ -1007,7 +1143,7 @@ MonoBehaviour:
|
|||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs:
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 00000000487000004a7000004c7000004e70000050700000527000005470000056700000587000005a7000005c7000005e70000060700000627000006470000066700000687000006a7000006c7000006e700000
|
m_ExpandedIDs: 0000000040700000427000004470000046700000487000004a7000004c7000004e70000050700000527000005470000056700000587000005a7000005c7000005e7000006070000062700000647000006670000068700000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@ -1032,8 +1168,8 @@ MonoBehaviour:
|
|||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_ResourceFile:
|
m_ResourceFile:
|
||||||
m_ListAreaState:
|
m_ListAreaState:
|
||||||
m_SelectedInstanceIDs: 5494fdff
|
m_SelectedInstanceIDs:
|
||||||
m_LastClickedInstanceID: -158636
|
m_LastClickedInstanceID: 0
|
||||||
m_HadKeyboardFocusLastEvent: 1
|
m_HadKeyboardFocusLastEvent: 1
|
||||||
m_ExpandedInstanceIDs: c623000000000000
|
m_ExpandedInstanceIDs: c623000000000000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
@ -1063,7 +1199,7 @@ MonoBehaviour:
|
|||||||
m_GridSize: 96
|
m_GridSize: 96
|
||||||
m_SkipHiddenPackages: 0
|
m_SkipHiddenPackages: 0
|
||||||
m_DirectoriesAreaWidth: 295
|
m_DirectoriesAreaWidth: 295
|
||||||
--- !u!114 &19
|
--- !u!114 &21
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -1083,10 +1219,10 @@ MonoBehaviour:
|
|||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1351
|
x: 1569
|
||||||
y: 81
|
y: 73
|
||||||
width: 560
|
width: 350
|
||||||
height: 950
|
height: 966
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -1110,7 +1246,7 @@ MonoBehaviour:
|
|||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_PreviewWindow: {fileID: 0}
|
m_PreviewWindow: {fileID: 0}
|
||||||
--- !u!114 &20
|
--- !u!114 &22
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -1130,10 +1266,10 @@ MonoBehaviour:
|
|||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 841
|
x: 1018
|
||||||
y: 81
|
y: 73
|
||||||
width: 508
|
width: 549
|
||||||
height: 493
|
height: 349
|
||||||
m_SerializedDataModeController:
|
m_SerializedDataModeController:
|
||||||
m_DataMode: 0
|
m_DataMode: 0
|
||||||
m_PreferredDataMode: 0
|
m_PreferredDataMode: 0
|
||||||
@ -1152,7 +1288,7 @@ MonoBehaviour:
|
|||||||
m_ShowGizmos: 0
|
m_ShowGizmos: 0
|
||||||
m_TargetDisplay: 0
|
m_TargetDisplay: 0
|
||||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
m_TargetSize: {x: 508, y: 472}
|
m_TargetSize: {x: 549, y: 328}
|
||||||
m_TextureFilterMode: 0
|
m_TextureFilterMode: 0
|
||||||
m_TextureHideFlags: 61
|
m_TextureHideFlags: 61
|
||||||
m_RenderIMGUI: 1
|
m_RenderIMGUI: 1
|
||||||
@ -1167,10 +1303,10 @@ MonoBehaviour:
|
|||||||
m_VRangeLocked: 0
|
m_VRangeLocked: 0
|
||||||
hZoomLockedByDefault: 0
|
hZoomLockedByDefault: 0
|
||||||
vZoomLockedByDefault: 0
|
vZoomLockedByDefault: 0
|
||||||
m_HBaseRangeMin: -254
|
m_HBaseRangeMin: -274.5
|
||||||
m_HBaseRangeMax: 254
|
m_HBaseRangeMax: 274.5
|
||||||
m_VBaseRangeMin: -236
|
m_VBaseRangeMin: -164
|
||||||
m_VBaseRangeMax: 236
|
m_VBaseRangeMax: 164
|
||||||
m_HAllowExceedBaseRangeMin: 1
|
m_HAllowExceedBaseRangeMin: 1
|
||||||
m_HAllowExceedBaseRangeMax: 1
|
m_HAllowExceedBaseRangeMax: 1
|
||||||
m_VAllowExceedBaseRangeMin: 1
|
m_VAllowExceedBaseRangeMin: 1
|
||||||
@ -1188,23 +1324,23 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 21
|
y: 21
|
||||||
width: 508
|
width: 549
|
||||||
height: 472
|
height: 328
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Translation: {x: 254, y: 236}
|
m_Translation: {x: 274.5, y: 164}
|
||||||
m_MarginLeft: 0
|
m_MarginLeft: 0
|
||||||
m_MarginRight: 0
|
m_MarginRight: 0
|
||||||
m_MarginTop: 0
|
m_MarginTop: 0
|
||||||
m_MarginBottom: 0
|
m_MarginBottom: 0
|
||||||
m_LastShownAreaInsideMargins:
|
m_LastShownAreaInsideMargins:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: -254
|
x: -274.5
|
||||||
y: -236
|
y: -164
|
||||||
width: 508
|
width: 549
|
||||||
height: 472
|
height: 328
|
||||||
m_MinimalGUI: 1
|
m_MinimalGUI: 1
|
||||||
m_defaultScale: 1
|
m_defaultScale: 1
|
||||||
m_LastWindowPixelSize: {x: 508, y: 493}
|
m_LastWindowPixelSize: {x: 549, y: 349}
|
||||||
m_ClearInEditMode: 1
|
m_ClearInEditMode: 1
|
||||||
m_NoCameraWarning: 1
|
m_NoCameraWarning: 1
|
||||||
m_LowResolutionForAspectRatios: 01000000000000000000
|
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user