From 70bc621f790ff382a6a7c905690536100f388c36 Mon Sep 17 00:00:00 2001 From: yzx Date: Tue, 25 Mar 2025 17:39:36 +0800 Subject: [PATCH] no message --- .../.idea.UnityFramework/.idea/workspace.xml | 65 +- Assembly-CSharp.csproj | 2 + Assets/Framework/Editor/ProcessScoreWindow.cs | 47 +- .../Framework/Editor/SceneStepEditorWindow.cs | 214 +- Assets/Framework/GameLauncher.cs | 2 +- Assets/Framework/Manager/ProcessManager.cs | 313 +- .../ProcessMode/ProcessStepDescription.cs | 60 +- Assets/StreamingAssets/DataConfig/新流程.json | 30 + Assets/StreamingAssets/DataConfig/测试.json | 93 + .../StreamingAssets/DataConfig/测试.json.meta | 7 + Assets/test.cs | 11 +- Assets/测试_ProcessEvents.cs | 37 + Assets/测试_ProcessEvents.cs.meta | 11 + Logs/AssetImportWorker0.log | 4450 +++++++++++++++++ Logs/AssetImportWorker1.log | 3513 +++++++++++++ 15 files changed, 8713 insertions(+), 142 deletions(-) create mode 100644 Assets/StreamingAssets/DataConfig/测试.json create mode 100644 Assets/StreamingAssets/DataConfig/测试.json.meta create mode 100644 Assets/测试_ProcessEvents.cs create mode 100644 Assets/测试_ProcessEvents.cs.meta diff --git a/.idea/.idea.UnityFramework/.idea/workspace.xml b/.idea/.idea.UnityFramework/.idea/workspace.xml index b256369..94fa3ba 100644 --- a/.idea/.idea.UnityFramework/.idea/workspace.xml +++ b/.idea/.idea.UnityFramework/.idea/workspace.xml @@ -6,9 +6,15 @@ - + + + + + + + + - @@ -132,49 +140,4 @@ - - - - - file://$PROJECT_DIR$/Assets/Framework/Manager/ProcessManager.cs - 185 - - - - - - - - - file://$PROJECT_DIR$/Assets/Framework/Manager/ProcessManager.cs - 270 - - - - - - - - - file://$PROJECT_DIR$/Assets/Framework/Manager/ProcessManager.cs - 625 - - - - - - - - - - \ No newline at end of file diff --git a/Assembly-CSharp.csproj b/Assembly-CSharp.csproj index ab8a509..ad88b56 100644 --- a/Assembly-CSharp.csproj +++ b/Assembly-CSharp.csproj @@ -56,6 +56,7 @@ + @@ -72,6 +73,7 @@ + diff --git a/Assets/Framework/Editor/ProcessScoreWindow.cs b/Assets/Framework/Editor/ProcessScoreWindow.cs index 2cc0029..5695175 100644 --- a/Assets/Framework/Editor/ProcessScoreWindow.cs +++ b/Assets/Framework/Editor/ProcessScoreWindow.cs @@ -133,23 +133,42 @@ public class ProcessScoreWindow : EditorWindow // 显示错误点击信息 if (processManager._incorrectClicksPerStep.TryGetValue(i, out var incorrectClicks)) { - EditorGUILayout.LabelField("错误点击:", warningStyle); - EditorGUILayout.LabelField($"次数: {incorrectClicks.Count}"); - EditorGUILayout.LabelField($"物体: {string.Join(", ", incorrectClicks)}"); - - float scorePerObject = action.Score / action.TargetObjects.Count; - float deductedScore = action.Score - scorePerObject * incorrectClicks.Count; - deductedScore = Mathf.Max(0, deductedScore); - - EditorGUILayout.LabelField($"实际得分: {deductedScore:F2}/{action.Score}"); - } - else if (step.IsCompleted) - { - EditorGUILayout.LabelField($"实际得分: {action.Score}/{action.Score} (完美完成)"); + // 只显示当前动作的错误点击 + var currentActionErrors = incorrectClicks + .Where(error => action.TargetObjects.Any(target => target.ObjectName == error)) + .ToList(); + + if (currentActionErrors.Count > 0) + { + EditorGUILayout.LabelField("错误点击:", warningStyle); + EditorGUILayout.LabelField($"次数: {currentActionErrors.Count}"); + EditorGUILayout.LabelField($"物体: {string.Join(", ", currentActionErrors)}"); + + float scorePerObject = action.Score / action.TargetObjects.Count; + float deductedScore = action.Score - scorePerObject * currentActionErrors.Count; + deductedScore = Mathf.Max(0, deductedScore); + + EditorGUILayout.LabelField($"实际得分: {deductedScore:F2}/{action.Score}"); + } + else + { + EditorGUILayout.LabelField($"实际得分: {action.Score}/{action.Score} (完美完成)"); + } } else { - EditorGUILayout.LabelField($"实际得分: 0/{action.Score} (未完成)", warningStyle); + // 添加调试信息 + EditorGUILayout.LabelField($"当前索引: {action.CurrentObjectIndex}"); + EditorGUILayout.LabelField($"目标数量: {action.TargetObjects.Count}"); + + if (action.CurrentObjectIndex >= action.TargetObjects.Count) + { + EditorGUILayout.LabelField($"实际得分: {action.Score}/{action.Score} (完美完成)"); + } + else + { + EditorGUILayout.LabelField($"实际得分: 0/{action.Score} (未完成)", warningStyle); + } } EditorGUILayout.EndVertical(); diff --git a/Assets/Framework/Editor/SceneStepEditorWindow.cs b/Assets/Framework/Editor/SceneStepEditorWindow.cs index 23c0e31..ffb6853 100644 --- a/Assets/Framework/Editor/SceneStepEditorWindow.cs +++ b/Assets/Framework/Editor/SceneStepEditorWindow.cs @@ -297,11 +297,42 @@ namespace DefaultNamespace.ProcessMode if (!saveConfirmed) return; + // 在序列化之前,根据动作类型清理不需要的数据 + foreach (var step in steps) + { + foreach (var action in step.Actions) + { + if (action.ActionType == ProcessActionType.默认) + { + // 如果是默认类型,清除判断题和多选题数据 + action.JudgmentQuestions = null; + action.MultipleChoiceQuestions = null; + } + else if (action.ActionType == ProcessActionType.选择题) + { + // 如果是判断题类型,清除目标对象和多选题数据 + action.TargetObjects = new List<(string ObjectName, ProcessTargetType Type)>(); + action.MultipleChoiceQuestions = null; + action.IsSequential = false; + } + else if (action.ActionType == ProcessActionType.多选题) + { + // 如果是多选题类型,清除目标对象和判断题数据 + action.TargetObjects = new List<(string ObjectName, ProcessTargetType Type)>(); + action.JudgmentQuestions = null; + action.IsSequential = false; + } + } + } + // 保存 JSON 数据 string json = JsonConvert.SerializeObject(steps, Formatting.Indented); File.WriteAllText(configFilePath, json); EditorUtility.DisplayDialog("保存成功", "配置已保存到 " + selectedFileName, "确定"); + + // 重新加载文件以刷新界面 + LoadProcessFile(); } private void DrawSaveButton() @@ -359,12 +390,36 @@ namespace DefaultNamespace.ProcessMode { action.Title = EditorGUILayout.TextField("标题", action.Title); action.Description = EditorGUILayout.TextField("描述", action.Description); - action.IsSequential = EditorGUILayout.Toggle("按顺序点击", action.IsSequential); - action.Score = EditorGUILayout.FloatField("分数", action.Score); - action.RequireCorrectCompletion = EditorGUILayout.Toggle("需要正确完成", action.RequireCorrectCompletion); + + // 添加动作类型选择 + action.ActionType = (ProcessActionType)EditorGUILayout.EnumPopup("动作类型", action.ActionType); - GUILayout.Space(5); - DrawTargetObjects(action); + // 根据动作类型显示不同的配置界面 + if (action.ActionType == ProcessActionType.默认) + { + action.IsSequential = EditorGUILayout.Toggle("按顺序点击", action.IsSequential); + action.Score = EditorGUILayout.FloatField("分数", action.Score); + action.RequireCorrectCompletion = EditorGUILayout.Toggle("需要正确完成", action.RequireCorrectCompletion); + + GUILayout.Space(5); + DrawTargetObjects(action); + } + else if (action.ActionType == ProcessActionType.选择题) + { + action.Score = EditorGUILayout.FloatField("分数", action.Score); + action.RequireCorrectCompletion = EditorGUILayout.Toggle("需要正确完成", action.RequireCorrectCompletion); + + GUILayout.Space(10); + DrawJudgmentQuestions(action); + } + else if (action.ActionType == ProcessActionType.多选题) + { + action.Score = EditorGUILayout.FloatField("分数", action.Score); + action.RequireCorrectCompletion = EditorGUILayout.Toggle("需要正确完成", action.RequireCorrectCompletion); + + GUILayout.Space(10); + DrawMultipleChoiceQuestions(action); + } } private void DrawTargetObjects(ProcessStepDescription action) @@ -403,6 +458,155 @@ namespace DefaultNamespace.ProcessMode GUILayout.EndHorizontal(); } + private void DrawJudgmentQuestions(ProcessStepDescription action) + { + GUILayout.Label("判断题配置", EditorStyles.boldLabel); + + // 确保 JudgmentQuestions 列表已初始化 + if (action.JudgmentQuestions == null) + { + action.JudgmentQuestions = new List(); + } + + // 显示所有判断题 + for (int i = 0; i < action.JudgmentQuestions.Count; i++) + { + GUILayout.BeginVertical(EditorStyles.helpBox); + + GUILayout.BeginHorizontal(); + GUILayout.Label($"题目 {i + 1}", EditorStyles.boldLabel); + + // 删除按钮 + if (GUILayout.Button("-", GUILayout.Width(30))) + { + action.JudgmentQuestions.RemoveAt(i); + GUILayout.EndHorizontal(); + GUILayout.EndVertical(); + continue; + } + GUILayout.EndHorizontal(); + + GUILayout.Space(5); + + // 题目输入 + action.JudgmentQuestions[i].Question = EditorGUILayout.TextField("题目内容", action.JudgmentQuestions[i].Question); + + // 正确答案输入框 + action.JudgmentQuestions[i].CorrectAnswer = EditorGUILayout.TextField("正确答案", action.JudgmentQuestions[i].CorrectAnswer); + + GUILayout.EndVertical(); + GUILayout.Space(5); + } + + // 添加新题目按钮 + GUILayout.BeginHorizontal(); + GUILayout.FlexibleSpace(); + if (GUILayout.Button("添加判断题", GUILayout.Width(300))) + { + action.JudgmentQuestions.Add(new JudgmentQuestionConfig + { + Question = "", + CorrectAnswer = "" + }); + } + GUILayout.FlexibleSpace(); + GUILayout.EndHorizontal(); + } + + private void DrawMultipleChoiceQuestions(ProcessStepDescription action) + { + GUILayout.Label("多选题配置", EditorStyles.boldLabel); + + // 确保 MultipleChoiceQuestions 列表已初始化 + if (action.MultipleChoiceQuestions == null) + { + action.MultipleChoiceQuestions = new List(); + } + + // 显示所有多选题 + for (int i = 0; i < action.MultipleChoiceQuestions.Count; i++) + { + GUILayout.BeginVertical(EditorStyles.helpBox); + + GUILayout.BeginHorizontal(); + GUILayout.Label($"题目 {i + 1}", EditorStyles.boldLabel); + + // 删除按钮 + if (GUILayout.Button("-", GUILayout.Width(30))) + { + action.MultipleChoiceQuestions.RemoveAt(i); + GUILayout.EndHorizontal(); + GUILayout.EndVertical(); + continue; + } + GUILayout.EndHorizontal(); + + GUILayout.Space(5); + + // 题目输入 + action.MultipleChoiceQuestions[i].Question = EditorGUILayout.TextField("题目内容", action.MultipleChoiceQuestions[i].Question); + + // 选项列表 + GUILayout.Label("选项列表", EditorStyles.boldLabel); + for (int j = 0; j < action.MultipleChoiceQuestions[i].Options.Count; j++) + { + GUILayout.BeginHorizontal(); + + // 选项内容 + action.MultipleChoiceQuestions[i].Options[j] = EditorGUILayout.TextField($"选项 {j + 1}", action.MultipleChoiceQuestions[i].Options[j]); + + // 是否为正确答案 + bool isCorrect = action.MultipleChoiceQuestions[i].CorrectAnswers.Contains(action.MultipleChoiceQuestions[i].Options[j]); + bool newIsCorrect = EditorGUILayout.Toggle("是正确答案", isCorrect, GUILayout.Width(100)); + + if (newIsCorrect != isCorrect) + { + if (newIsCorrect) + { + if (!action.MultipleChoiceQuestions[i].CorrectAnswers.Contains(action.MultipleChoiceQuestions[i].Options[j])) + { + action.MultipleChoiceQuestions[i].CorrectAnswers.Add(action.MultipleChoiceQuestions[i].Options[j]); + } + } + else + { + action.MultipleChoiceQuestions[i].CorrectAnswers.Remove(action.MultipleChoiceQuestions[i].Options[j]); + } + } + + // 删除选项按钮 + if (GUILayout.Button("-", GUILayout.Width(30))) + { + action.MultipleChoiceQuestions[i].Options.RemoveAt(j); + action.MultipleChoiceQuestions[i].CorrectAnswers.Remove(action.MultipleChoiceQuestions[i].Options[j]); + GUILayout.EndHorizontal(); + continue; + } + + GUILayout.EndHorizontal(); + } + + // 添加选项按钮 + if (GUILayout.Button("添加选项", GUILayout.Width(100))) + { + action.MultipleChoiceQuestions[i].Options.Add(""); + } + + GUILayout.EndVertical(); + GUILayout.Space(5); + } + + // 添加新题目按钮 + GUILayout.BeginHorizontal(); + GUILayout.FlexibleSpace(); + if (GUILayout.Button("添加多选题", GUILayout.Width(300))) + { + action.MultipleChoiceQuestions.Add(new MultipleChoiceConfig()); + } + GUILayout.FlexibleSpace(); + GUILayout.EndHorizontal(); + } + private void AddNewStep() { steps.Add(new ProcessStep("新步骤", new List())); diff --git a/Assets/Framework/GameLauncher.cs b/Assets/Framework/GameLauncher.cs index 8bcf9b5..6d9fd76 100644 --- a/Assets/Framework/GameLauncher.cs +++ b/Assets/Framework/GameLauncher.cs @@ -65,7 +65,7 @@ public class GameLauncher : MonoBehaviour MotionEngine.GetModule().InitializeFirstStep( - System.IO.File.ReadAllText(Application.streamingAssetsPath + "/DataConfig/新流程.json"), + System.IO.File.ReadAllText(Application.streamingAssetsPath + "/DataConfig/测试.json"), ProcessMode.Teaching); // //获取所有ProcessAction 属性 diff --git a/Assets/Framework/Manager/ProcessManager.cs b/Assets/Framework/Manager/ProcessManager.cs index 426584e..ffc50a6 100644 --- a/Assets/Framework/Manager/ProcessManager.cs +++ b/Assets/Framework/Manager/ProcessManager.cs @@ -177,6 +177,129 @@ namespace DefaultNamespace.ProcessMode #region 点击处理逻辑 + /// + /// 处理点击事件 - 多选题答案集合版本 + /// + public bool HandleClick(List selectedAnswers) + { + string type = _currentMode.ToString(); + + if (!_processes.ContainsKey(type)) return false; + + ProcessCollection processCollection = _processes[type]; + if (_currentStepIndex >= processCollection.Steps.Count) return false; + + ProcessStep step = processCollection.Steps[_currentStepIndex]; + ProcessStepDescription currentAction = step.Actions[_currentActionIndex]; + + // 只处理多选题类型 + if (currentAction.ActionType != ProcessActionType.多选题) + { + Debug.LogWarning("当前动作不是多选题类型!"); + return false; + } + + // 确保有多选题配置 + if (currentAction.MultipleChoiceQuestions == null || currentAction.MultipleChoiceQuestions.Count == 0) + { + Debug.LogWarning("当前动作没有配置多选题!"); + return false; + } + + // 获取当前要回答的多选题 + if (currentAction.CurrentObjectIndex >= currentAction.MultipleChoiceQuestions.Count) + { + Debug.LogWarning("已经回答完所有多选题!"); + return false; + } + + var currentQuestion = currentAction.MultipleChoiceQuestions[currentAction.CurrentObjectIndex]; + + // 检查答案正确性 + var correctAnswers = currentQuestion.Options; // 直接使用选项列表作为正确答案 + var selectedAnswersSet = new HashSet(selectedAnswers); + var correctAnswersSet = new HashSet(correctAnswers); + + // 找出未选择的正确答案(算作错误) + var unselectedCorrectAnswers = correctAnswersSet.Where(correct => !selectedAnswersSet.Contains(correct)).ToList(); + + // 找出多选的错误答案 + var extraWrongAnswers = selectedAnswersSet.Where(selected => !correctAnswersSet.Contains(selected)).ToList(); + + // 计算错误答案总数 + int wrongAnswersCount = unselectedCorrectAnswers.Count + extraWrongAnswers.Count; + + // 只有当没有错误答案时才算正确 + bool isCorrect = wrongAnswersCount == 0; + + // 记录用户的选择 + currentAction.ClickedObjects.Clear(); + currentAction.ClickedObjects.AddRange(selectedAnswers); + + if (isCorrect) + { + Debug.Log($"回答正确!问题:{currentQuestion.Question}"); + Debug.Log($"选择的答案:{string.Join(", ", selectedAnswers)}"); + Debug.Log($"正确答案:{string.Join(", ", correctAnswers)}"); + currentAction.CurrentObjectIndex++; // 移动到下一题 + currentAction.ClickedObjects.Clear(); // 清空选择,准备下一题 + + // 如果所有题目都回答完了 + if (currentAction.CurrentObjectIndex >= currentAction.MultipleChoiceQuestions.Count) + { + CompleteAction(step, currentAction); + } + return true; + } + else + { + // 记录错误信息 + Debug.Log($"回答错误!问题:{currentQuestion.Question}"); + Debug.Log($"选择的答案:{string.Join(", ", selectedAnswers)}"); + Debug.Log($"正确答案:{string.Join(", ", correctAnswers)}"); + + // 记录未选择的正确答案 + foreach (var unselectedAnswer in unselectedCorrectAnswers) + { + Debug.Log($"未选择正确答案:{unselectedAnswer}"); + OnStepProcessDescriptionMessage?.Invoke($"未选择正确答案:{unselectedAnswer}"); + AddIncorrectClick(_currentStepIndex, unselectedAnswer); + } + + // 记录多选的错误答案 + foreach (var extraAnswer in extraWrongAnswers) + { + Debug.Log($"多选错误答案:{extraAnswer}"); + OnStepProcessDescriptionMessage?.Invoke($"多选错误答案:{extraAnswer}"); + AddIncorrectClick(_currentStepIndex, extraAnswer); + } + + OnStepProcessDescriptionMessage?.Invoke($"回答错误,正确答案:{string.Join(", ", correctAnswers)}"); + + // 如果不要求正确完成,且在练习或考核模式下 + if (!currentAction.RequireCorrectCompletion && IsInPracticeOrAssessment()) + { + currentAction.CurrentObjectIndex++; + currentAction.ClickedObjects.Clear(); + + if (currentAction.CurrentObjectIndex >= currentAction.MultipleChoiceQuestions.Count) + { + CompleteAction(step, currentAction); + } + return true; + } + else if (currentAction.RequireCorrectCompletion) + { + // 如果要求正确完成,清空当前作答记录,重新开始当前题目 + currentAction.ClickedObjects.Clear(); + OnStepProcessDescriptionMessage?.Invoke($"需要正确完成此题,请重新作答"); + return false; + } + } + + return true; + } + /// /// 处理点击事件 /// @@ -193,7 +316,93 @@ namespace DefaultNamespace.ProcessMode ProcessStep step = processCollection.Steps[_currentStepIndex]; ProcessStepDescription currentAction = step.Actions[_currentActionIndex]; - return HandleOtherModeClick(step, currentAction, clickedObject); + // 根据动作类型进行不同的处理 + if (currentAction.ActionType == ProcessActionType.默认) + { + return HandleOtherModeClick(step, currentAction, clickedObject); + } + else if (currentAction.ActionType == ProcessActionType.选择题) + { + return HandleJudgmentQuestionClick(step, currentAction, clickedObject); + } + else if (currentAction.ActionType == ProcessActionType.多选题) + { + // 对于多选题,如果是单个点击,添加或移除选项 + if (!currentAction.ClickedObjects.Contains(clickedObject)) + { + currentAction.ClickedObjects.Add(clickedObject); + } + else + { + currentAction.ClickedObjects.Remove(clickedObject); + } + return true; + } + + return false; + } + + /// + /// 处理判断题类型的点击 + /// + private bool HandleJudgmentQuestionClick(ProcessStep step, ProcessStepDescription currentAction, string userAnswer) + { + // 确保有判断题配置 + if (currentAction.JudgmentQuestions == null || currentAction.JudgmentQuestions.Count == 0) + { + Debug.LogWarning("当前动作没有配置判断题!"); + return false; + } + + // 获取当前要回答的判断题 + if (currentAction.CurrentObjectIndex >= currentAction.JudgmentQuestions.Count) + { + Debug.LogWarning("已经回答完所有判断题!"); + return false; + } + + var currentQuestion = currentAction.JudgmentQuestions[currentAction.CurrentObjectIndex]; + bool isCorrect = currentQuestion.CorrectAnswer == userAnswer; + + if (isCorrect) + { + Debug.Log($"回答正确!问题:{currentQuestion.Question},答案:{userAnswer}"); + currentAction.ClickedObjects.Add(userAnswer); // 记录已回答 + currentAction.CurrentObjectIndex++; // 移动到下一题 + + // 如果所有题目都回答完了 + if (currentAction.CurrentObjectIndex >= currentAction.JudgmentQuestions.Count) + { + CompleteAction(step, currentAction); + } + return true; + } + else + { + Debug.Log($"回答错误!问题:{currentQuestion.Question},你的答案:{userAnswer},正确答案:{currentQuestion.CorrectAnswer}"); + OnStepProcessDescriptionMessage?.Invoke($"回答错误,正确答案:{currentQuestion.CorrectAnswer}"); + AddIncorrectClick(_currentStepIndex, userAnswer); + + // 如果不要求正确完成,且在练习或考核模式下 + if (!currentAction.RequireCorrectCompletion && IsInPracticeOrAssessment()) + { + currentAction.ClickedObjects.Add(userAnswer); + currentAction.CurrentObjectIndex++; + + if (currentAction.CurrentObjectIndex >= currentAction.JudgmentQuestions.Count) + { + CompleteAction(step, currentAction); + } + return true; + } + else if (currentAction.RequireCorrectCompletion) + { + // 如果要求正确完成,清空当前作答记录,重新开始当前题目 + currentAction.ClickedObjects.Clear(); + OnStepProcessDescriptionMessage?.Invoke($"需要正确完成此题,请重新作答"); + } + return false; + } } /// @@ -320,8 +529,11 @@ namespace DefaultNamespace.ProcessMode currentAction.ClickedObjects.Add(clickedObject); currentAction.CurrentObjectIndex++; + Debug.Log($"当前动作进度:{currentAction.CurrentObjectIndex}/{currentAction.TargetObjects.Count}"); + if (currentAction.CurrentObjectIndex >= currentAction.TargetObjects.Count) { + Debug.Log($"动作完成!当前索引:{currentAction.CurrentObjectIndex},目标数量:{currentAction.TargetObjects.Count}"); CompleteAction(step, currentAction); } else @@ -723,11 +935,7 @@ namespace DefaultNamespace.ProcessMode for (int i = 0; i < steps.Count; i++) { var step = steps[i]; - float stepPossibleScore = 0; // 步骤满分 - float stepActualScore = 0; // 步骤实际得分 - Debug.Log($"\n===== 步骤 {i + 1}: {step.StepDescription} ====="); - Debug.Log($"完成状态: {(step.IsCompleted ? "已完成" : "未完成")}"); // 遍历步骤中的所有动作 for (int j = 0; j < step.Actions.Count; j++) @@ -737,72 +945,51 @@ namespace DefaultNamespace.ProcessMode Debug.Log($"描述: {action.Description}"); Debug.Log($"满分: {action.Score}"); - // 列出所有目标物体 - Debug.Log("目标物体:"); - foreach (var target in action.TargetObjects) + // 计算动作得分 + float actionScore = 0; + + // 检查当前动作是否有错误点击 + var currentActionErrors = _incorrectClicksPerStep + .Where(kvp => kvp.Key == i) + .SelectMany(kvp => kvp.Value) + .ToList(); + + // 如果动作已完成(所有目标都已点击) + if (action.CurrentObjectIndex >= action.TargetObjects.Count) { - Debug.Log($"- {target.ObjectName} (类型: {target.Type})"); + // 如果没有错误点击,得满分 + if (currentActionErrors.Count == 0) + { + actionScore = action.Score; + Debug.Log($"动作完成且无错误,得满分:{actionScore}"); + } + else + { + // 有错误点击,计算扣分 + float scorePerError = action.Score / action.TargetObjects.Count; + float deductedScore = scorePerError * currentActionErrors.Count; + actionScore = Math.Max(0, action.Score - deductedScore); + + Debug.Log($"动作完成但有错误:"); + Debug.Log($"错误点击次数: {currentActionErrors.Count}"); + Debug.Log($"错误点击的物体: {string.Join(", ", currentActionErrors)}"); + Debug.Log($"每个错误扣分: {scorePerError}"); + Debug.Log($"总扣分: {deductedScore}"); + Debug.Log($"实际得分: {actionScore}"); + } + } + else + { + // 动作未完成,得分为0 + Debug.Log($"动作未完成,得分为0"); } - stepPossibleScore += action.Score; - - // 如果步骤未完成 - if (!step.IsCompleted) - { - Debug.Log($"实际得分: 0 (未完成)"); - continue; - } - - // 如果有错误点击 - if (_incorrectClicksPerStep.TryGetValue(i, out var incorrectClicks)) - { - float scorePerObject = action.Score / action.TargetObjects.Count; - float deductedScore = action.Score - scorePerObject * incorrectClicks.Count; - deductedScore = Math.Max(0, deductedScore); - - Debug.Log($"错误点击次数: {incorrectClicks.Count}"); - Debug.Log($"错误点击的物体: {string.Join(", ", incorrectClicks)}"); - Debug.Log($"扣除分数: {(action.Score - deductedScore):F2}"); - Debug.Log($"实际得分: {deductedScore:F2}"); - - stepActualScore += deductedScore; - } - else // 无错误完成 - { - Debug.Log($"实际得分: {action.Score} (完美完成)"); - stepActualScore += action.Score; - } - } - - totalScore += stepActualScore; - - // 记录评分步骤 - if (_currentMode == ProcessMode.Assessment) - { - _submitScoreSteps.Add(new SubmitScoreStep - { - stepName = step.StepDescription, - testPoint = step.Actions[0].Description, - setScore = (int)stepPossibleScore, - score = (int)stepActualScore - }); - } - - Debug.Log($"\n----- 步骤 {i + 1} 总结 -----"); - Debug.Log($"步骤名称: {step.StepDescription}"); - Debug.Log($"动作数量: {step.Actions.Count}"); - Debug.Log($"满分: {stepPossibleScore:F2}"); - Debug.Log($"实际得分: {stepActualScore:F2}"); - Debug.Log($"完成状态: {(step.IsCompleted ? "已完成" : "未完成")}"); - if (_incorrectClicksPerStep.ContainsKey(i)) - { - Debug.Log($"错误点击次数: {_incorrectClicksPerStep[i].Count}"); + totalScore += actionScore; } } Debug.Log("\n========== 评分总结 =========="); Debug.Log($"总分: {totalScore:F2}"); - Debug.Log($"完成步骤数: {steps.Count(s => s.IsCompleted)}/{steps.Count}"); Debug.Log($"有错误步骤数: {_incorrectClicksPerStep.Count}"); Debug.Log("============================\n"); diff --git a/Assets/Framework/ProcessMode/ProcessStepDescription.cs b/Assets/Framework/ProcessMode/ProcessStepDescription.cs index 74e8885..75c4d9a 100644 --- a/Assets/Framework/ProcessMode/ProcessStepDescription.cs +++ b/Assets/Framework/ProcessMode/ProcessStepDescription.cs @@ -6,6 +6,41 @@ using UnityEngine.Events; namespace Framework.ProcessMode { + /// + /// 动作类型枚举 + /// + public enum ProcessActionType + { + 默认, // 默认类型 + 选择题, // 判断题类型 + 多选题 // 多选题类型 + } + + /// + /// 判断题配置 + /// + public class JudgmentQuestionConfig + { + public string Question { get; set; } // 题目 + public string CorrectAnswer { get; set; } // 正确答案 + } + + /// + /// 多选题配置 + /// + public class MultipleChoiceConfig + { + public string Question { get; set; } // 题目 + public List Options { get; set; } // 选项列表 + public List CorrectAnswers { get; set; } // 正确答案列表(可以多选) + + public MultipleChoiceConfig() + { + Options = new List(); + CorrectAnswers = new List(); + } + } + /// /// 流程步骤描述类 /// @@ -17,6 +52,21 @@ namespace Framework.ProcessMode public class ProcessStepDescription { + /// + /// 动作类型 + /// + public ProcessActionType ActionType { get; set; } + + /// + /// 判断题配置列表 + /// + public List JudgmentQuestions { get; set; } + + /// + /// 多选题配置列表 + /// + public List MultipleChoiceQuestions { get; set; } + /// /// 动作标题,用于对动作的简单描述 /// @@ -96,7 +146,7 @@ namespace Framework.ProcessMode /// 动作标题 public ProcessStepDescription(List<(string ObjectName, ProcessTargetType Type)> targetObjects, Action action, string description, bool isSequential, string stepDescription, float score = 0, string title = "新动作") { - Title = title; // 动作标题 + Title = title; TargetObjects = targetObjects ?? new List<(string, ProcessTargetType)>(); Action = action; Description = description; @@ -106,9 +156,13 @@ namespace Framework.ProcessMode FeedbackDisplayed = false; StepDescription = stepDescription; Score = score; - RequireCorrectCompletion = true; // 默认为需要正确完成 + RequireCorrectCompletion = true; + TargetObjectEvents = new Dictionary(); - TargetObjectEvents= new Dictionary(); + // 初始化新增字段 + ActionType = ProcessActionType.默认; + JudgmentQuestions = new List(); + MultipleChoiceQuestions = new List(); } /// diff --git a/Assets/StreamingAssets/DataConfig/新流程.json b/Assets/StreamingAssets/DataConfig/新流程.json index 2a9045c..6210aca 100644 --- a/Assets/StreamingAssets/DataConfig/新流程.json +++ b/Assets/StreamingAssets/DataConfig/新流程.json @@ -3,6 +3,8 @@ "StepDescription": "任务要求", "Actions": [ { + "ActionType": 0, + "JudgmentQuestions": null, "Title": "进入仿真系统,弹框显示任务要求", "TargetObjects": [ { @@ -32,6 +34,32 @@ "StepDescription": "收货前准备", "Actions": [ { + "ActionType": 1, + "JudgmentQuestions": [ + { + "Question": "自行选择行进路线", + "CorrectAnswer": "步行至安全帽存放区" + } + ], + "Title": "选择行进路线", + "TargetObjects": [], + "Action": null, + "Description": "选择行进路线", + "IsSequential": false, + "ClickedObjects": [], + "CurrentObjectIndex": 0, + "FeedbackDisplayed": false, + "StepDescription": "", + "Score": 0.0, + "SceneName": null, + "RequiresSceneSwitch": false, + "TargetObjectEvents": {}, + "ProcessStepIndex": 0, + "RequireCorrectCompletion": true + }, + { + "ActionType": 0, + "JudgmentQuestions": null, "Title": "领取并佩戴安全帽", "TargetObjects": [ { @@ -61,6 +89,8 @@ "StepDescription": "卸货", "Actions": [ { + "ActionType": 0, + "JudgmentQuestions": null, "Title": "单据验收", "TargetObjects": [ { diff --git a/Assets/StreamingAssets/DataConfig/测试.json b/Assets/StreamingAssets/DataConfig/测试.json new file mode 100644 index 0000000..ac84443 --- /dev/null +++ b/Assets/StreamingAssets/DataConfig/测试.json @@ -0,0 +1,93 @@ +[ + { + "StepDescription": "新步骤", + "Actions": [ + { + "ActionType": 0, + "JudgmentQuestions": null, + "MultipleChoiceQuestions": null, + "Title": "新动作", + "TargetObjects": [ + { + "Item1": "对象1", + "Item2": 0 + }, + { + "Item1": "对象2", + "Item2": 1 + } + ], + "Action": null, + "Description": "", + "IsSequential": false, + "ClickedObjects": [], + "CurrentObjectIndex": 0, + "FeedbackDisplayed": false, + "StepDescription": "", + "Score": 11.0, + "SceneName": null, + "RequiresSceneSwitch": false, + "TargetObjectEvents": {}, + "ProcessStepIndex": 0, + "RequireCorrectCompletion": true + }, + { + "ActionType": 1, + "JudgmentQuestions": [ + { + "Question": "我是判断题", + "CorrectAnswer": "正确" + } + ], + "MultipleChoiceQuestions": null, + "Title": "新动作", + "TargetObjects": [], + "Action": null, + "Description": "", + "IsSequential": false, + "ClickedObjects": [], + "CurrentObjectIndex": 0, + "FeedbackDisplayed": false, + "StepDescription": "", + "Score": 22.0, + "SceneName": null, + "RequiresSceneSwitch": false, + "TargetObjectEvents": {}, + "ProcessStepIndex": 0, + "RequireCorrectCompletion": true + }, + { + "ActionType": 2, + "JudgmentQuestions": null, + "MultipleChoiceQuestions": [ + { + "Question": "我是多选题", + "Options": [ + "1", + "2", + "3" + ], + "CorrectAnswers": [] + } + ], + "Title": "新动作", + "TargetObjects": [], + "Action": null, + "Description": "", + "IsSequential": false, + "ClickedObjects": [], + "CurrentObjectIndex": 0, + "FeedbackDisplayed": false, + "StepDescription": "", + "Score": 33.0, + "SceneName": null, + "RequiresSceneSwitch": false, + "TargetObjectEvents": {}, + "ProcessStepIndex": 0, + "RequireCorrectCompletion": true + } + ], + "IsCompleted": false, + "StepNumber": 0 + } +] \ No newline at end of file diff --git a/Assets/StreamingAssets/DataConfig/测试.json.meta b/Assets/StreamingAssets/DataConfig/测试.json.meta new file mode 100644 index 0000000..537fad9 --- /dev/null +++ b/Assets/StreamingAssets/DataConfig/测试.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f234aaa8022727a4d9aebb37fbec132d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/test.cs b/Assets/test.cs index 4c23344..6f469fe 100644 --- a/Assets/test.cs +++ b/Assets/test.cs @@ -26,12 +26,13 @@ public class test : MonoBehaviour public void HHHH() { // MotionEngine.GetModule().JumpToProcessAsync(4,1); - MotionEngine.GetModule().HandleClick("1"); - MotionEngine.GetModule().HandleClick("2"); - MotionEngine.GetModule().HandleClick("3"); - MotionEngine.GetModule().HandleClick(""); + MotionEngine.GetModule().HandleClick("1"); + MotionEngine.GetModule().HandleClick("2"); + MotionEngine.GetModule().HandleClick("ȷ"); + MotionEngine.GetModule().HandleClick(new List(){"1","2","3","4"}); + // MotionEngine.GetModule().HandleClick(new List(){"3"}); // MotionEngine.GetModule().HandleClick("2"); - MotionEngine.GetModule().CalculateTotalScore(); + MotionEngine.GetModule().CalculateTotalScore(); // MotionEngine.GetModule().HandleClick("1"); // MotionEngine.GetModule().HandleClick("2"); // MotionEngine.GetModule().HandleClick("3"); diff --git a/Assets/测试_ProcessEvents.cs b/Assets/测试_ProcessEvents.cs new file mode 100644 index 0000000..db938e7 --- /dev/null +++ b/Assets/测试_ProcessEvents.cs @@ -0,0 +1,37 @@ +using UnityEngine; +using UnityEngine.SceneManagement; +using Framework.ProcessMode; +using Framework.Dto; + +/// +/// 测试 流程事件处理类 +/// +public class 测试ProcessEvents : MonoBehaviour +{ + [ProcessAction] + public void RegisterProcessEvents() + { + /// + /// 步骤 1: 新步骤 + /// 动作 1: 新动作 + /// 目标对象: 对象1 + /// + EventRegistrationCenter.AddEventsToAllStepEvents(new EventStepInfo(0, 0, "对象1", () => + { + // 在这里加入事件处理逻辑 + Debug.Log("执行事件:步骤 1 -> 动作 1 -> 对象1"); + })); + + /// + /// 步骤 1: 新步骤 + /// 动作 1: 新动作 + /// 目标对象: 对象2 + /// + EventRegistrationCenter.AddEventsToAllStepEvents(new EventStepInfo(0, 0, "对象2", () => + { + // 在这里加入事件处理逻辑 + Debug.Log("执行事件:步骤 1 -> 动作 1 -> 对象2"); + })); + + } +} diff --git a/Assets/测试_ProcessEvents.cs.meta b/Assets/测试_ProcessEvents.cs.meta new file mode 100644 index 0000000..d81bf2e --- /dev/null +++ b/Assets/测试_ProcessEvents.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3bd3db593220f784fac95b607eb2c8b3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 9b96f89..0afcc05 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -186,3 +186,4453 @@ Received Import Request. Start importing Assets/Framework/Editor/ProcessScoreWindow.cs using Guid(bef7c2ad81824e19a2320b85a5dbf747) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d5f04f3caa0dcfe14642b201264f2b3') in 0.021463 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 33.266 seconds +Refreshing native plugins compatible for Editor in 5.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 49.752 seconds +Domain Reload Profiling: 83034ms + BeginReloadAssembly (11262ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (508ms) + BackupInstance (0ms) + ReleaseScriptingObjects (44ms) + CreateAndSetChildDomain (6490ms) + RebuildCommonClasses (94ms) + RebuildNativeTypeToScriptingClass (31ms) + initialDomainReloadingComplete (405ms) + LoadAllAssembliesAndSetupDomain (21489ms) + LoadAssemblies (22504ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (546ms) + TypeCache.Refresh (395ms) + TypeCache.ScanAssembly (59ms) + ScanForSourceGeneratedMonoScriptInfo (82ms) + ResolveRequiredComponents (67ms) + FinalizeReload (49753ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1831ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (47ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (247ms) + ProcessInitializeOnLoadAttributes (1418ms) + ProcessInitializeOnLoadMethodAttributes (88ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(a94224bff105493481a59665629737be) path("Assets/Framework/Editor/SceneStepEditorWindow.cs") state(2) +Script is not up to date after domain reload: guid(f69314a2c8ae4f2f9463f3d3a29d7a30) path("Assets/Framework/ProcessMode/ProcessStepDescription.cs") state(2) +Refreshing native plugins compatible for Editor in 5.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3627 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4114. +Memory consumption went from 142.6 MB to 142.6 MB. +Total: 512.688800 ms (FindLiveObjects: 0.717600 ms CreateObjectMapping: 0.128500 ms MarkObjects: 511.738600 ms DeleteObjects: 0.102100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.102 seconds +Refreshing native plugins compatible for Editor in 5.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.466 seconds +Domain Reload Profiling: 2563ms + BeginReloadAssembly (342ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (670ms) + LoadAssemblies (888ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (28ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1467ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (553ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (387ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 4.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4118. +Memory consumption went from 144.8 MB to 144.8 MB. +Total: 3.345500 ms (FindLiveObjects: 0.441400 ms CreateObjectMapping: 0.110000 ms MarkObjects: 2.742900 ms DeleteObjects: 0.050200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.681 seconds +Refreshing native plugins compatible for Editor in 6.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.266 seconds +Domain Reload Profiling: 1942ms + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1267ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (157ms) + ProcessInitializeOnLoadAttributes (428ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4121. +Memory consumption went from 146.8 MB to 146.7 MB. +Total: 2.989100 ms (FindLiveObjects: 0.482100 ms CreateObjectMapping: 0.130400 ms MarkObjects: 2.328700 ms DeleteObjects: 0.046800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.653 seconds +Refreshing native plugins compatible for Editor in 5.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.183 seconds +Domain Reload Profiling: 1831ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (443ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1184ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (597ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (110ms) + ProcessInitializeOnLoadAttributes (430ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4124. +Memory consumption went from 148.7 MB to 148.7 MB. +Total: 3.276100 ms (FindLiveObjects: 0.427200 ms CreateObjectMapping: 0.108100 ms MarkObjects: 2.689600 ms DeleteObjects: 0.050100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: 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: 92434.456300 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.431780 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.056277 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001071 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011381 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000879 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010684 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000873 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009780 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000909 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009190 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000874 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009548 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000876 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009762 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001280 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009497 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000838 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010551 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000859 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009875 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000871 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012493 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000883 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009599 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000870 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009657 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001877 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.013846 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001032 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.016896 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001075 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010042 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000870 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011040 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001013 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.013110 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000940 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.013473 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000965 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.026262 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001641 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012254 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000920 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010302 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000856 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010982 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000851 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012747 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001914 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012348 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000859 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009943 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000825 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009568 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000876 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009801 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000839 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010033 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001062 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009391 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000794 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010299 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000843 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010478 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000881 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012329 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001262 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009871 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000851 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009872 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000836 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012345 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000950 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010145 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.002034 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.014907 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001210 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.013368 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001202 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012197 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000978 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010601 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000895 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009528 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000987 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010233 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000830 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010525 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000951 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009527 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000932 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010417 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000861 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010948 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.020203 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.008098 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001051 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009891 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000849 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010212 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000855 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.014847 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000826 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009721 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000861 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009309 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000816 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011085 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000848 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010127 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000920 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010247 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000999 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011080 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000903 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011969 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000945 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011881 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001621 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.012024 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000888 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011558 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.046526 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009803 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001345 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.017045 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001025 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011117 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001239 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.013047 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000927 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.016270 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001930 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011256 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000797 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011130 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000855 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.011111 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000839 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009664 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000822 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010163 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000820 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010803 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001526 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.016480 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000889 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.013810 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000889 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.010667 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000868 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009760 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000806 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009860 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000833 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.009644 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000832 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.021762 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.003400 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.021015 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.001407 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.015197 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000951 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.016640 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.000883 seconds +Import Error Code:(4) +Message: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' + ERROR: Build asset version error: assets/streamingassets/dataconfig/新流程.json in SourceAssetDB has modification time of '2025-03-25T01:23:37.6096627Z' while content on disk has modification time of '2025-03-25T02:07:20.2619826Z' +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.193905 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8db52664ca263f94a7663ae2441d69ed') in 0.001176 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 5.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.165 seconds +Domain Reload Profiling: 1832ms + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1165ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (566ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (395ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3628 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4128. +Memory consumption went from 150.5 MB to 150.4 MB. +Total: 3.028000 ms (FindLiveObjects: 0.471000 ms CreateObjectMapping: 0.103400 ms MarkObjects: 2.400600 ms DeleteObjects: 0.052000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: 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: 239.115953 seconds. + path: Assets/StreamingAssets/DataConfig/新流程.json + artifactKey: Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets/DataConfig/新流程.json using Guid(43f598bb5c201414b80d26074dee531f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e2ebd5f28f91f7491c347bcd8ec622d') in 0.014299 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.240 seconds +Refreshing native plugins compatible for Editor in 5.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 6.901 seconds +Domain Reload Profiling: 8135ms + BeginReloadAssembly (389ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (177ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (747ms) + LoadAssemblies (836ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (37ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (6901ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (453ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 16.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3628 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4131. +Memory consumption went from 152.4 MB to 152.4 MB. +Total: 4.142400 ms (FindLiveObjects: 0.610000 ms CreateObjectMapping: 0.106900 ms MarkObjects: 3.223700 ms DeleteObjects: 0.200600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.699 seconds +Refreshing native plugins compatible for Editor in 13.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.133 seconds +Domain Reload Profiling: 1827ms + BeginReloadAssembly (216ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (461ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1134ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (569ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (399ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4134. +Memory consumption went from 154.6 MB to 154.5 MB. +Total: 3.031100 ms (FindLiveObjects: 0.434900 ms CreateObjectMapping: 0.116500 ms MarkObjects: 2.431700 ms DeleteObjects: 0.046900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.677 seconds +Refreshing native plugins compatible for Editor in 5.56 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.200 seconds +Domain Reload Profiling: 1871ms + BeginReloadAssembly (222ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1200ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (569ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (397ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4137. +Memory consumption went from 156.5 MB to 156.5 MB. +Total: 3.795900 ms (FindLiveObjects: 0.399900 ms CreateObjectMapping: 0.107700 ms MarkObjects: 3.174400 ms DeleteObjects: 0.112100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.674 seconds +Refreshing native plugins compatible for Editor in 6.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.207 seconds +Domain Reload Profiling: 1876ms + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (15ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (383ms) + LoadAssemblies (455ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1207ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (594ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (394ms) + ProcessInitializeOnLoadMethodAttributes (65ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4140. +Memory consumption went from 158.4 MB to 158.4 MB. +Total: 4.455000 ms (FindLiveObjects: 0.726100 ms CreateObjectMapping: 0.135900 ms MarkObjects: 3.536300 ms DeleteObjects: 0.055200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 5.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.197 seconds +Domain Reload Profiling: 1842ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1198ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (577ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (404ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4143. +Memory consumption went from 160.3 MB to 160.3 MB. +Total: 5.152900 ms (FindLiveObjects: 0.546200 ms CreateObjectMapping: 0.146200 ms MarkObjects: 4.389000 ms DeleteObjects: 0.069800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.845 seconds +Refreshing native plugins compatible for Editor in 6.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.408 seconds +Domain Reload Profiling: 2249ms + BeginReloadAssembly (268ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (61ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (446ms) + LoadAssemblies (548ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (48ms) + TypeCache.Refresh (24ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1410ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (641ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (447ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4147. +Memory consumption went from 162.3 MB to 162.2 MB. +Total: 3.508600 ms (FindLiveObjects: 0.559900 ms CreateObjectMapping: 0.128300 ms MarkObjects: 2.763000 ms DeleteObjects: 0.055200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: 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: 15138.343020 seconds. + path: Assets/测试_ProcessEvents.cs + artifactKey: Guid(3bd3db593220f784fac95b607eb2c8b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/测试_ProcessEvents.cs using Guid(3bd3db593220f784fac95b607eb2c8b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87a7bc4136ab63f4d6fc50d20ca1b7b3') in 0.002880 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.599 seconds +Refreshing native plugins compatible for Editor in 5.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.200 seconds +Domain Reload Profiling: 1794ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (399ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1201ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (591ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (416ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4150. +Memory consumption went from 163.9 MB to 163.9 MB. +Total: 4.075700 ms (FindLiveObjects: 0.607600 ms CreateObjectMapping: 0.110700 ms MarkObjects: 3.250500 ms DeleteObjects: 0.105300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.667 seconds +Refreshing native plugins compatible for Editor in 5.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.158 seconds +Domain Reload Profiling: 1819ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (387ms) + LoadAssemblies (450ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1159ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (576ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (397ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4153. +Memory consumption went from 166.1 MB to 166.1 MB. +Total: 3.111900 ms (FindLiveObjects: 0.465800 ms CreateObjectMapping: 0.102500 ms MarkObjects: 2.481000 ms DeleteObjects: 0.061400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 6.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.280 seconds +Domain Reload Profiling: 1933ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (457ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1280ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (614ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (432ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 6.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4156. +Memory consumption went from 168.0 MB to 168.0 MB. +Total: 3.319500 ms (FindLiveObjects: 0.533600 ms CreateObjectMapping: 0.138800 ms MarkObjects: 2.579300 ms DeleteObjects: 0.067000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 6.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.174 seconds +Domain Reload Profiling: 1819ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1174ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (575ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (398ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4159. +Memory consumption went from 170.0 MB to 169.9 MB. +Total: 3.103100 ms (FindLiveObjects: 0.458400 ms CreateObjectMapping: 0.128400 ms MarkObjects: 2.450000 ms DeleteObjects: 0.065000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.619 seconds +Refreshing native plugins compatible for Editor in 6.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.142 seconds +Domain Reload Profiling: 1756ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (412ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1142ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (571ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (400ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4162. +Memory consumption went from 171.9 MB to 171.8 MB. +Total: 3.043500 ms (FindLiveObjects: 0.442100 ms CreateObjectMapping: 0.105600 ms MarkObjects: 2.443300 ms DeleteObjects: 0.051400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.666 seconds +Refreshing native plugins compatible for Editor in 7.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1871ms + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (452ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1211ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (593ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (412ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 6.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4165. +Memory consumption went from 173.8 MB to 173.8 MB. +Total: 3.112900 ms (FindLiveObjects: 0.435500 ms CreateObjectMapping: 0.118300 ms MarkObjects: 2.508200 ms DeleteObjects: 0.050100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.618 seconds +Refreshing native plugins compatible for Editor in 6.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.265 seconds +Domain Reload Profiling: 1876ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (427ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1266ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (609ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (420ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4168. +Memory consumption went from 175.7 MB to 175.7 MB. +Total: 3.370900 ms (FindLiveObjects: 0.450500 ms CreateObjectMapping: 0.109400 ms MarkObjects: 2.747800 ms DeleteObjects: 0.061600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.760 seconds +Refreshing native plugins compatible for Editor in 5.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.191 seconds +Domain Reload Profiling: 1945ms + BeginReloadAssembly (280ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (128ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (378ms) + LoadAssemblies (463ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1192ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (578ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (398ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4171. +Memory consumption went from 177.6 MB to 177.6 MB. +Total: 3.364500 ms (FindLiveObjects: 0.463400 ms CreateObjectMapping: 0.106800 ms MarkObjects: 2.681100 ms DeleteObjects: 0.110500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.728 seconds +Refreshing native plugins compatible for Editor in 6.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.218 seconds +Domain Reload Profiling: 1938ms + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (428ms) + LoadAssemblies (505ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1219ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (572ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (395ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4174. +Memory consumption went from 179.6 MB to 179.5 MB. +Total: 2.976800 ms (FindLiveObjects: 0.436100 ms CreateObjectMapping: 0.122700 ms MarkObjects: 2.368400 ms DeleteObjects: 0.048600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.778 seconds +Refreshing native plugins compatible for Editor in 8.12 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.307 seconds +Domain Reload Profiling: 2078ms + BeginReloadAssembly (254ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (416ms) + LoadAssemblies (523ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1308ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (624ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (419ms) + ProcessInitializeOnLoadMethodAttributes (45ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4177. +Memory consumption went from 181.5 MB to 181.4 MB. +Total: 3.155000 ms (FindLiveObjects: 0.549400 ms CreateObjectMapping: 0.109400 ms MarkObjects: 2.438800 ms DeleteObjects: 0.055900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.855 seconds +Refreshing native plugins compatible for Editor in 9.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.194 seconds +Domain Reload Profiling: 2041ms + BeginReloadAssembly (273ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (49ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (589ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1195ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (590ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (407ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 9.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4180. +Memory consumption went from 183.4 MB to 183.4 MB. +Total: 3.118100 ms (FindLiveObjects: 0.453800 ms CreateObjectMapping: 0.126700 ms MarkObjects: 2.470400 ms DeleteObjects: 0.065800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.668 seconds +Refreshing native plugins compatible for Editor in 6.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.210 seconds +Domain Reload Profiling: 1873ms + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (383ms) + LoadAssemblies (461ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (32ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1211ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (604ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (401ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4183. +Memory consumption went from 185.3 MB to 185.3 MB. +Total: 3.059700 ms (FindLiveObjects: 0.433500 ms CreateObjectMapping: 0.124600 ms MarkObjects: 2.446100 ms DeleteObjects: 0.054600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.622 seconds +Refreshing native plugins compatible for Editor in 7.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.263 seconds +Domain Reload Profiling: 1880ms + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (333ms) + LoadAssemblies (404ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1264ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (593ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (412ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4186. +Memory consumption went from 187.2 MB to 187.2 MB. +Total: 4.360800 ms (FindLiveObjects: 0.524400 ms CreateObjectMapping: 0.151400 ms MarkObjects: 3.581500 ms DeleteObjects: 0.102000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 6.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.222 seconds +Domain Reload Profiling: 1884ms + BeginReloadAssembly (198ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (451ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1222ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (581ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (405ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4189. +Memory consumption went from 189.1 MB to 189.1 MB. +Total: 3.314800 ms (FindLiveObjects: 0.717900 ms CreateObjectMapping: 0.119100 ms MarkObjects: 2.426700 ms DeleteObjects: 0.049900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.633 seconds +Refreshing native plugins compatible for Editor in 6.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.289 seconds +Domain Reload Profiling: 1917ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1290ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (622ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (429ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4192. +Memory consumption went from 191.1 MB to 191.0 MB. +Total: 4.822400 ms (FindLiveObjects: 0.736300 ms CreateObjectMapping: 0.135900 ms MarkObjects: 3.851100 ms DeleteObjects: 0.097200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.693 seconds +Refreshing native plugins compatible for Editor in 7.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.242 seconds +Domain Reload Profiling: 1928ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (407ms) + LoadAssemblies (476ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1243ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (581ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (404ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4195. +Memory consumption went from 193.0 MB to 193.0 MB. +Total: 3.706800 ms (FindLiveObjects: 0.701500 ms CreateObjectMapping: 0.138400 ms MarkObjects: 2.803200 ms DeleteObjects: 0.062300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.672 seconds +Refreshing native plugins compatible for Editor in 6.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.322 seconds +Domain Reload Profiling: 1984ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (67ms) + LoadAllAssembliesAndSetupDomain (362ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1323ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (615ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (430ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4198. +Memory consumption went from 194.9 MB to 194.9 MB. +Total: 3.200900 ms (FindLiveObjects: 0.500100 ms CreateObjectMapping: 0.106300 ms MarkObjects: 2.538800 ms DeleteObjects: 0.054900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.615 seconds +Refreshing native plugins compatible for Editor in 5.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.152 seconds +Domain Reload Profiling: 1763ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (343ms) + LoadAssemblies (406ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1153ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (576ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (401ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4201. +Memory consumption went from 196.8 MB to 196.8 MB. +Total: 3.048100 ms (FindLiveObjects: 0.435700 ms CreateObjectMapping: 0.112000 ms MarkObjects: 2.449800 ms DeleteObjects: 0.049400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 6.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (438ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1212ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (597ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (415ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 6.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4204. +Memory consumption went from 198.8 MB to 198.7 MB. +Total: 3.819000 ms (FindLiveObjects: 0.461600 ms CreateObjectMapping: 0.118500 ms MarkObjects: 3.113100 ms DeleteObjects: 0.124400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.721 seconds +Refreshing native plugins compatible for Editor in 6.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.283 seconds +Domain Reload Profiling: 1998ms + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (434ms) + LoadAssemblies (501ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1283ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (597ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (416ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4207. +Memory consumption went from 200.7 MB to 200.7 MB. +Total: 3.508500 ms (FindLiveObjects: 0.462300 ms CreateObjectMapping: 0.110700 ms MarkObjects: 2.846300 ms DeleteObjects: 0.087700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 6.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.317 seconds +Domain Reload Profiling: 1938ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (427ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1317ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (456ms) + ProcessInitializeOnLoadMethodAttributes (43ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4210. +Memory consumption went from 202.6 MB to 202.6 MB. +Total: 3.277100 ms (FindLiveObjects: 0.472800 ms CreateObjectMapping: 0.150700 ms MarkObjects: 2.590000 ms DeleteObjects: 0.062400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 6.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.256 seconds +Domain Reload Profiling: 1881ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (355ms) + LoadAssemblies (418ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1257ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (636ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (140ms) + ProcessInitializeOnLoadAttributes (433ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.9 KB). Loaded Objects now: 4213. +Memory consumption went from 204.5 MB to 204.5 MB. +Total: 3.383400 ms (FindLiveObjects: 0.553600 ms CreateObjectMapping: 0.116200 ms MarkObjects: 2.645800 ms DeleteObjects: 0.066700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.619 seconds +Refreshing native plugins compatible for Editor in 7.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.275 seconds +Domain Reload Profiling: 1890ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (422ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1276ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (639ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (44ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4216. +Memory consumption went from 206.4 MB to 206.4 MB. +Total: 3.972400 ms (FindLiveObjects: 0.673400 ms CreateObjectMapping: 0.139300 ms MarkObjects: 3.085100 ms DeleteObjects: 0.073200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.629 seconds +Refreshing native plugins compatible for Editor in 5.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.215 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (357ms) + LoadAssemblies (426ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1216ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (580ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4219. +Memory consumption went from 208.4 MB to 208.3 MB. +Total: 3.510700 ms (FindLiveObjects: 0.517200 ms CreateObjectMapping: 0.122200 ms MarkObjects: 2.802300 ms DeleteObjects: 0.067300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 6.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.270 seconds +Domain Reload Profiling: 1896ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1271ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (613ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (428ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 6.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4222. +Memory consumption went from 210.3 MB to 210.3 MB. +Total: 3.232200 ms (FindLiveObjects: 0.532300 ms CreateObjectMapping: 0.146800 ms MarkObjects: 2.497000 ms DeleteObjects: 0.054800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.899 seconds +Refreshing native plugins compatible for Editor in 5.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 10.755 seconds +Domain Reload Profiling: 11650ms + BeginReloadAssembly (317ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (114ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (478ms) + LoadAssemblies (576ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (9ms) + FinalizeReload (10756ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (652ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (453ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4225. +Memory consumption went from 212.2 MB to 212.2 MB. +Total: 5.662000 ms (FindLiveObjects: 0.704700 ms CreateObjectMapping: 0.137700 ms MarkObjects: 4.657000 ms DeleteObjects: 0.159400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 5.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.320 seconds +Domain Reload Profiling: 1951ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (350ms) + LoadAssemblies (426ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (14ms) + FinalizeReload (1321ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (453ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4228. +Memory consumption went from 214.1 MB to 214.1 MB. +Total: 5.441000 ms (FindLiveObjects: 0.796800 ms CreateObjectMapping: 0.174700 ms MarkObjects: 4.356300 ms DeleteObjects: 0.110900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.675 seconds +Refreshing native plugins compatible for Editor in 5.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.363 seconds +Domain Reload Profiling: 2032ms + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (446ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (20ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1364ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (703ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (137ms) + ProcessInitializeOnLoadAttributes (488ms) + ProcessInitializeOnLoadMethodAttributes (51ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 7.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4231. +Memory consumption went from 216.0 MB to 216.0 MB. +Total: 5.894700 ms (FindLiveObjects: 0.801000 ms CreateObjectMapping: 0.317400 ms MarkObjects: 4.650400 ms DeleteObjects: 0.124300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 5.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.349 seconds +Domain Reload Profiling: 2034ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (412ms) + LoadAssemblies (489ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1350ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (651ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (466ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4234. +Memory consumption went from 218.0 MB to 217.9 MB. +Total: 3.064200 ms (FindLiveObjects: 0.443500 ms CreateObjectMapping: 0.132100 ms MarkObjects: 2.438500 ms DeleteObjects: 0.049100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.666 seconds +Refreshing native plugins compatible for Editor in 5.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.203 seconds +Domain Reload Profiling: 1865ms + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (459ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1204ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (610ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (417ms) + ProcessInitializeOnLoadMethodAttributes (43ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4237. +Memory consumption went from 219.9 MB to 219.8 MB. +Total: 3.387900 ms (FindLiveObjects: 0.512300 ms CreateObjectMapping: 0.144600 ms MarkObjects: 2.665900 ms DeleteObjects: 0.063900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.622 seconds +Refreshing native plugins compatible for Editor in 5.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.289 seconds +Domain Reload Profiling: 1907ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (339ms) + LoadAssemblies (418ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1290ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (657ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (468ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4240. +Memory consumption went from 221.8 MB to 221.8 MB. +Total: 3.758200 ms (FindLiveObjects: 0.767900 ms CreateObjectMapping: 0.183400 ms MarkObjects: 2.727600 ms DeleteObjects: 0.077900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.736 seconds +Refreshing native plugins compatible for Editor in 5.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.226 seconds +Domain Reload Profiling: 1955ms + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (427ms) + LoadAssemblies (496ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (42ms) + TypeCache.Refresh (18ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (12ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1227ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (584ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (403ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(f4be05ca0d93a2842bcc1867ac568211) path("Assets/test.cs") state(2) +Refreshing native plugins compatible for Editor in 6.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4242. +Memory consumption went from 223.7 MB to 223.7 MB. +Total: 3.147900 ms (FindLiveObjects: 0.418400 ms CreateObjectMapping: 0.180100 ms MarkObjects: 2.459600 ms DeleteObjects: 0.087600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 7.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.174 seconds +Domain Reload Profiling: 1817ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (431ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1174ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (586ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (405ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4246. +Memory consumption went from 225.6 MB to 225.6 MB. +Total: 4.211900 ms (FindLiveObjects: 0.503800 ms CreateObjectMapping: 0.115400 ms MarkObjects: 3.521400 ms DeleteObjects: 0.069900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.643 seconds +Refreshing native plugins compatible for Editor in 6.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.309 seconds +Domain Reload Profiling: 1946ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (444ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1309ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (624ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (432ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4249. +Memory consumption went from 227.6 MB to 227.5 MB. +Total: 3.147900 ms (FindLiveObjects: 0.522300 ms CreateObjectMapping: 0.124600 ms MarkObjects: 2.443400 ms DeleteObjects: 0.056700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 6.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.300 seconds +Domain Reload Profiling: 1984ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (410ms) + LoadAssemblies (487ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1300ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (627ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (441ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4252. +Memory consumption went from 229.5 MB to 229.4 MB. +Total: 3.579200 ms (FindLiveObjects: 0.435900 ms CreateObjectMapping: 0.107800 ms MarkObjects: 2.972900 ms DeleteObjects: 0.061400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.665 seconds +Refreshing native plugins compatible for Editor in 5.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.178 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (386ms) + LoadAssemblies (456ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1179ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (586ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4255. +Memory consumption went from 231.4 MB to 231.4 MB. +Total: 2.908200 ms (FindLiveObjects: 0.436100 ms CreateObjectMapping: 0.107700 ms MarkObjects: 2.318600 ms DeleteObjects: 0.044900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.619 seconds +Refreshing native plugins compatible for Editor in 6.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.259 seconds +Domain Reload Profiling: 1874ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (428ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1259ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (623ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (437ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4258. +Memory consumption went from 233.3 MB to 233.3 MB. +Total: 3.179100 ms (FindLiveObjects: 0.583300 ms CreateObjectMapping: 0.112800 ms MarkObjects: 2.433300 ms DeleteObjects: 0.048300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 5.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.191 seconds +Domain Reload Profiling: 1792ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (348ms) + LoadAssemblies (406ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1192ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (579ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (398ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4261. +Memory consumption went from 235.2 MB to 235.2 MB. +Total: 3.364600 ms (FindLiveObjects: 0.464200 ms CreateObjectMapping: 0.132700 ms MarkObjects: 2.715000 ms DeleteObjects: 0.051600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.620 seconds +Refreshing native plugins compatible for Editor in 5.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.269 seconds +Domain Reload Profiling: 1883ms + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (354ms) + LoadAssemblies (429ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1270ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (610ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (426ms) + ProcessInitializeOnLoadMethodAttributes (43ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4264. +Memory consumption went from 237.2 MB to 237.1 MB. +Total: 3.168900 ms (FindLiveObjects: 0.525500 ms CreateObjectMapping: 0.142500 ms MarkObjects: 2.450100 ms DeleteObjects: 0.049800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.656 seconds +Refreshing native plugins compatible for Editor in 5.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.150 seconds +Domain Reload Profiling: 1800ms + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (592ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (410ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4267. +Memory consumption went from 239.1 MB to 239.0 MB. +Total: 4.625000 ms (FindLiveObjects: 1.067700 ms CreateObjectMapping: 0.257500 ms MarkObjects: 3.234100 ms DeleteObjects: 0.062700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.624 seconds +Refreshing native plugins compatible for Editor in 6.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.306 seconds +Domain Reload Profiling: 1924ms + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1306ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (644ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (447ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4270. +Memory consumption went from 241.0 MB to 241.0 MB. +Total: 3.446300 ms (FindLiveObjects: 0.522500 ms CreateObjectMapping: 0.129100 ms MarkObjects: 2.724300 ms DeleteObjects: 0.069300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.672 seconds +Refreshing native plugins compatible for Editor in 5.93 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.241 seconds +Domain Reload Profiling: 1905ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (396ms) + LoadAssemblies (465ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1241ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (623ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (433ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4273. +Memory consumption went from 242.9 MB to 242.9 MB. +Total: 2.944800 ms (FindLiveObjects: 0.429600 ms CreateObjectMapping: 0.115000 ms MarkObjects: 2.350900 ms DeleteObjects: 0.047900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 5.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.266 seconds +Domain Reload Profiling: 1897ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1266ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (604ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4276. +Memory consumption went from 244.8 MB to 244.8 MB. +Total: 3.593000 ms (FindLiveObjects: 0.563700 ms CreateObjectMapping: 0.129000 ms MarkObjects: 2.634100 ms DeleteObjects: 0.265000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/Logs/AssetImportWorker1.log b/Logs/AssetImportWorker1.log index 22c2752..a4f3430 100644 --- a/Logs/AssetImportWorker1.log +++ b/Logs/AssetImportWorker1.log @@ -178,3 +178,3516 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 40.621 seconds +Refreshing native plugins compatible for Editor in 6.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 43.650 seconds +Domain Reload Profiling: 84270ms + BeginReloadAssembly (10505ms) + ExecutionOrderSort (31ms) + DisableScriptedObjects (429ms) + BackupInstance (0ms) + ReleaseScriptingObjects (60ms) + CreateAndSetChildDomain (5590ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (313ms) + LoadAllAssembliesAndSetupDomain (29745ms) + LoadAssemblies (29758ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (1213ms) + TypeCache.Refresh (876ms) + TypeCache.ScanAssembly (67ms) + ScanForSourceGeneratedMonoScriptInfo (222ms) + ResolveRequiredComponents (113ms) + FinalizeReload (43654ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (1322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (92ms) + SetLoadedEditorAssemblies (50ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (227ms) + ProcessInitializeOnLoadAttributes (812ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Script is not up to date after domain reload: guid(a94224bff105493481a59665629737be) path("Assets/Framework/Editor/SceneStepEditorWindow.cs") state(2) +Script is not up to date after domain reload: guid(f69314a2c8ae4f2f9463f3d3a29d7a30) path("Assets/Framework/ProcessMode/ProcessStepDescription.cs") state(2) +Refreshing native plugins compatible for Editor in 5.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3628 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4114. +Memory consumption went from 143.0 MB to 142.9 MB. +Total: 256.857100 ms (FindLiveObjects: 0.641900 ms CreateObjectMapping: 0.131400 ms MarkObjects: 255.977400 ms DeleteObjects: 0.104100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.308 seconds +Refreshing native plugins compatible for Editor in 6.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 2501ms + BeginReloadAssembly (292ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (927ms) + LoadAssemblies (1108ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (563ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (397ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4118. +Memory consumption went from 144.9 MB to 144.9 MB. +Total: 3.066100 ms (FindLiveObjects: 0.474300 ms CreateObjectMapping: 0.111800 ms MarkObjects: 2.418500 ms DeleteObjects: 0.059700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.717 seconds +Refreshing native plugins compatible for Editor in 5.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.117 seconds +Domain Reload Profiling: 1828ms + BeginReloadAssembly (262ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (362ms) + LoadAssemblies (510ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1117ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (564ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (392ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 6.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4121. +Memory consumption went from 146.8 MB to 146.8 MB. +Total: 3.121900 ms (FindLiveObjects: 0.442800 ms CreateObjectMapping: 0.135000 ms MarkObjects: 2.484900 ms DeleteObjects: 0.057600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 6.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.115 seconds +Domain Reload Profiling: 1760ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (364ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1116ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (568ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (110ms) + ProcessInitializeOnLoadAttributes (401ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4124. +Memory consumption went from 148.8 MB to 148.7 MB. +Total: 3.135100 ms (FindLiveObjects: 0.436600 ms CreateObjectMapping: 0.118100 ms MarkObjects: 2.528100 ms DeleteObjects: 0.051000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.695 seconds +Refreshing native plugins compatible for Editor in 5.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.146 seconds +Domain Reload Profiling: 1835ms + BeginReloadAssembly (217ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (477ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1147ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (574ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (402ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4127. +Memory consumption went from 150.7 MB to 150.7 MB. +Total: 3.698500 ms (FindLiveObjects: 0.522200 ms CreateObjectMapping: 0.126700 ms MarkObjects: 2.988300 ms DeleteObjects: 0.059700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.303 seconds +Refreshing native plugins compatible for Editor in 5.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 6.901 seconds +Domain Reload Profiling: 8198ms + BeginReloadAssembly (377ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (176ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (824ms) + LoadAssemblies (912ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (10ms) + FinalizeReload (6901ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (454ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 3.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4130. +Memory consumption went from 152.6 MB to 152.6 MB. +Total: 3.098800 ms (FindLiveObjects: 0.205300 ms CreateObjectMapping: 0.090500 ms MarkObjects: 2.712100 ms DeleteObjects: 0.089700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.699 seconds +Refreshing native plugins compatible for Editor in 6.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (50ms) + LoadAllAssembliesAndSetupDomain (384ms) + LoadAssemblies (468ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (574ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (400ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4133. +Memory consumption went from 154.5 MB to 154.5 MB. +Total: 3.640300 ms (FindLiveObjects: 0.508300 ms CreateObjectMapping: 0.127300 ms MarkObjects: 2.943200 ms DeleteObjects: 0.060200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.646 seconds +Refreshing native plugins compatible for Editor in 5.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.217 seconds +Domain Reload Profiling: 1858ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (357ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1218ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (592ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (395ms) + ProcessInitializeOnLoadMethodAttributes (61ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4136. +Memory consumption went from 156.5 MB to 156.4 MB. +Total: 3.442100 ms (FindLiveObjects: 0.619200 ms CreateObjectMapping: 0.158100 ms MarkObjects: 2.613700 ms DeleteObjects: 0.049500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.722 seconds +Refreshing native plugins compatible for Editor in 6.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.122 seconds +Domain Reload Profiling: 1837ms + BeginReloadAssembly (236ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (380ms) + LoadAssemblies (499ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1123ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (564ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (397ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4139. +Memory consumption went from 158.4 MB to 158.3 MB. +Total: 3.822300 ms (FindLiveObjects: 0.474900 ms CreateObjectMapping: 0.105000 ms MarkObjects: 3.180900 ms DeleteObjects: 0.059900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.687 seconds +Refreshing native plugins compatible for Editor in 5.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.153 seconds +Domain Reload Profiling: 1835ms + BeginReloadAssembly (214ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (27ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1154ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (574ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (401ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 6.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4142. +Memory consumption went from 160.3 MB to 160.3 MB. +Total: 2.948200 ms (FindLiveObjects: 0.436100 ms CreateObjectMapping: 0.105000 ms MarkObjects: 2.358200 ms DeleteObjects: 0.047600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.143 seconds +Refreshing native plugins compatible for Editor in 6.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.317 seconds +Domain Reload Profiling: 2453ms + BeginReloadAssembly (619ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (406ms) + LoadAssemblies (884ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1317ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (626ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (433ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 4.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4146. +Memory consumption went from 162.2 MB to 162.2 MB. +Total: 3.285700 ms (FindLiveObjects: 0.409700 ms CreateObjectMapping: 0.107400 ms MarkObjects: 2.719600 ms DeleteObjects: 0.048100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.601 seconds +Refreshing native plugins compatible for Editor in 5.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.187 seconds +Domain Reload Profiling: 1782ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (408ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (7ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1187ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (588ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (413ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 5.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4149. +Memory consumption went from 164.2 MB to 164.1 MB. +Total: 4.771800 ms (FindLiveObjects: 1.025700 ms CreateObjectMapping: 0.789000 ms MarkObjects: 2.896800 ms DeleteObjects: 0.059000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 5.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.143 seconds +Domain Reload Profiling: 1795ms + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1144ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (576ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (398ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4152. +Memory consumption went from 166.1 MB to 166.1 MB. +Total: 2.951200 ms (FindLiveObjects: 0.455500 ms CreateObjectMapping: 0.115800 ms MarkObjects: 2.292000 ms DeleteObjects: 0.086800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 6.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.280 seconds +Domain Reload Profiling: 1933ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (456ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1280ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (614ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (432ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4155. +Memory consumption went from 168.0 MB to 168.0 MB. +Total: 3.073200 ms (FindLiveObjects: 0.475900 ms CreateObjectMapping: 0.103600 ms MarkObjects: 2.438500 ms DeleteObjects: 0.054000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.751 seconds +Refreshing native plugins compatible for Editor in 5.95 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.227 seconds +Domain Reload Profiling: 1974ms + BeginReloadAssembly (210ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (443ms) + LoadAssemblies (530ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (40ms) + TypeCache.Refresh (21ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1228ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (578ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (405ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4158. +Memory consumption went from 169.9 MB to 169.9 MB. +Total: 3.327100 ms (FindLiveObjects: 0.410800 ms CreateObjectMapping: 0.100300 ms MarkObjects: 2.764500 ms DeleteObjects: 0.050300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 5.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.119 seconds +Domain Reload Profiling: 1764ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1120ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (561ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (391ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4161. +Memory consumption went from 171.9 MB to 171.8 MB. +Total: 3.044500 ms (FindLiveObjects: 0.419300 ms CreateObjectMapping: 0.104800 ms MarkObjects: 2.470600 ms DeleteObjects: 0.048600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.668 seconds +Refreshing native plugins compatible for Editor in 7.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.228 seconds +Domain Reload Profiling: 1890ms + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (374ms) + LoadAssemblies (453ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1229ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (609ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (428ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4164. +Memory consumption went from 173.8 MB to 173.7 MB. +Total: 3.050500 ms (FindLiveObjects: 0.432300 ms CreateObjectMapping: 0.108200 ms MarkObjects: 2.463900 ms DeleteObjects: 0.045300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.635 seconds +Refreshing native plugins compatible for Editor in 6.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.262 seconds +Domain Reload Profiling: 1891ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1263ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (607ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (418ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 6.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4167. +Memory consumption went from 175.7 MB to 175.7 MB. +Total: 4.280400 ms (FindLiveObjects: 0.581700 ms CreateObjectMapping: 0.129600 ms MarkObjects: 3.505700 ms DeleteObjects: 0.062000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.657 seconds +Refreshing native plugins compatible for Editor in 6.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.211 seconds +Domain Reload Profiling: 1863ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (369ms) + LoadAssemblies (444ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1212ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (580ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (401ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 5.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4170. +Memory consumption went from 177.6 MB to 177.6 MB. +Total: 3.075700 ms (FindLiveObjects: 0.443700 ms CreateObjectMapping: 0.128300 ms MarkObjects: 2.451600 ms DeleteObjects: 0.050900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.728 seconds +Refreshing native plugins compatible for Editor in 6.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.218 seconds +Domain Reload Profiling: 1938ms + BeginReloadAssembly (192ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (428ms) + LoadAssemblies (505ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1218ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (572ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (397ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4173. +Memory consumption went from 179.5 MB to 179.5 MB. +Total: 2.959800 ms (FindLiveObjects: 0.432700 ms CreateObjectMapping: 0.103200 ms MarkObjects: 2.367800 ms DeleteObjects: 0.055100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.781 seconds +Refreshing native plugins compatible for Editor in 8.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.295 seconds +Domain Reload Profiling: 2068ms + BeginReloadAssembly (257ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (416ms) + LoadAssemblies (524ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1296ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (608ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (417ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (4ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 5.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4176. +Memory consumption went from 181.4 MB to 181.4 MB. +Total: 3.273800 ms (FindLiveObjects: 0.479500 ms CreateObjectMapping: 0.130200 ms MarkObjects: 2.598900 ms DeleteObjects: 0.063800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.927 seconds +Refreshing native plugins compatible for Editor in 5.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.188 seconds +Domain Reload Profiling: 2107ms + BeginReloadAssembly (280ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (49ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (528ms) + LoadAssemblies (657ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1189ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (590ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (415ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4179. +Memory consumption went from 183.4 MB to 183.3 MB. +Total: 3.100400 ms (FindLiveObjects: 0.564100 ms CreateObjectMapping: 0.114700 ms MarkObjects: 2.372300 ms DeleteObjects: 0.047900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.681 seconds +Refreshing native plugins compatible for Editor in 5.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.195 seconds +Domain Reload Profiling: 1870ms + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (456ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1195ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (575ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (393ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4182. +Memory consumption went from 185.3 MB to 185.3 MB. +Total: 2.929600 ms (FindLiveObjects: 0.438200 ms CreateObjectMapping: 0.115200 ms MarkObjects: 2.324000 ms DeleteObjects: 0.051300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.624 seconds +Refreshing native plugins compatible for Editor in 7.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.260 seconds +Domain Reload Profiling: 1878ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1261ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (590ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (409ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4185. +Memory consumption went from 187.2 MB to 187.2 MB. +Total: 3.679600 ms (FindLiveObjects: 0.613500 ms CreateObjectMapping: 0.157300 ms MarkObjects: 2.839200 ms DeleteObjects: 0.068100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.684 seconds +Refreshing native plugins compatible for Editor in 5.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.217 seconds +Domain Reload Profiling: 1896ms + BeginReloadAssembly (196ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (390ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1218ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (582ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 7.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4188. +Memory consumption went from 189.1 MB to 189.1 MB. +Total: 3.926800 ms (FindLiveObjects: 0.540200 ms CreateObjectMapping: 0.104700 ms MarkObjects: 3.220600 ms DeleteObjects: 0.060200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.637 seconds +Refreshing native plugins compatible for Editor in 5.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.287 seconds +Domain Reload Profiling: 1920ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (444ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1288ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (622ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (428ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4191. +Memory consumption went from 191.0 MB to 191.0 MB. +Total: 3.941400 ms (FindLiveObjects: 0.506300 ms CreateObjectMapping: 0.120300 ms MarkObjects: 3.246000 ms DeleteObjects: 0.067500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.692 seconds +Refreshing native plugins compatible for Editor in 7.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.244 seconds +Domain Reload Profiling: 1930ms + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (407ms) + LoadAssemblies (477ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1245ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (583ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4194. +Memory consumption went from 193.0 MB to 192.9 MB. +Total: 3.480500 ms (FindLiveObjects: 0.639700 ms CreateObjectMapping: 0.135700 ms MarkObjects: 2.633500 ms DeleteObjects: 0.069900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.671 seconds +Refreshing native plugins compatible for Editor in 6.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.322 seconds +Domain Reload Profiling: 1986ms + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (64ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (449ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1323ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (616ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (431ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4197. +Memory consumption went from 194.9 MB to 194.9 MB. +Total: 3.741700 ms (FindLiveObjects: 0.568200 ms CreateObjectMapping: 0.127000 ms MarkObjects: 2.956000 ms DeleteObjects: 0.088700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.636 seconds +Refreshing native plugins compatible for Editor in 5.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.137 seconds +Domain Reload Profiling: 1768ms + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (30ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1138ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (573ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (400ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4200. +Memory consumption went from 196.8 MB to 196.8 MB. +Total: 3.683600 ms (FindLiveObjects: 0.498900 ms CreateObjectMapping: 0.112900 ms MarkObjects: 2.678100 ms DeleteObjects: 0.392100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.623 seconds +Refreshing native plugins compatible for Editor in 5.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.223 seconds +Domain Reload Profiling: 1842ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (425ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (25ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1225ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (601ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (417ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4203. +Memory consumption went from 198.7 MB to 198.7 MB. +Total: 4.646100 ms (FindLiveObjects: 0.481100 ms CreateObjectMapping: 0.122200 ms MarkObjects: 3.952500 ms DeleteObjects: 0.088700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.725 seconds +Refreshing native plugins compatible for Editor in 5.86 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.279 seconds +Domain Reload Profiling: 1998ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (435ms) + LoadAssemblies (506ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1279ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (598ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (417ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4206. +Memory consumption went from 200.7 MB to 200.6 MB. +Total: 3.349300 ms (FindLiveObjects: 0.449700 ms CreateObjectMapping: 0.105400 ms MarkObjects: 2.742100 ms DeleteObjects: 0.051000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.638 seconds +Refreshing native plugins compatible for Editor in 5.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.293 seconds +Domain Reload Profiling: 1927ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1294ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (643ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (451ms) + ProcessInitializeOnLoadMethodAttributes (50ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4209. +Memory consumption went from 202.6 MB to 202.5 MB. +Total: 3.201500 ms (FindLiveObjects: 0.467200 ms CreateObjectMapping: 0.119900 ms MarkObjects: 2.559300 ms DeleteObjects: 0.053900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.653 seconds +Refreshing native plugins compatible for Editor in 6.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.236 seconds +Domain Reload Profiling: 1882ms + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (367ms) + LoadAssemblies (439ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1237ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (135ms) + ProcessInitializeOnLoadAttributes (433ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4212. +Memory consumption went from 204.5 MB to 204.5 MB. +Total: 3.383900 ms (FindLiveObjects: 0.549900 ms CreateObjectMapping: 0.125800 ms MarkObjects: 2.647600 ms DeleteObjects: 0.058200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 5.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.228 seconds +Domain Reload Profiling: 1881ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (391ms) + LoadAssemblies (464ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1229ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (601ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4215. +Memory consumption went from 206.4 MB to 206.4 MB. +Total: 3.245900 ms (FindLiveObjects: 0.496400 ms CreateObjectMapping: 0.141100 ms MarkObjects: 2.552600 ms DeleteObjects: 0.054700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.625 seconds +Refreshing native plugins compatible for Editor in 5.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.220 seconds +Domain Reload Profiling: 1841ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (420ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1222ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (579ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4218. +Memory consumption went from 208.3 MB to 208.3 MB. +Total: 3.702700 ms (FindLiveObjects: 0.497500 ms CreateObjectMapping: 0.105900 ms MarkObjects: 3.039400 ms DeleteObjects: 0.058900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.655 seconds +Refreshing native plugins compatible for Editor in 5.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.267 seconds +Domain Reload Profiling: 1917ms + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1268ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (625ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (20ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (424ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4221. +Memory consumption went from 210.3 MB to 210.2 MB. +Total: 3.512500 ms (FindLiveObjects: 0.480000 ms CreateObjectMapping: 0.111900 ms MarkObjects: 2.865800 ms DeleteObjects: 0.053200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.930 seconds +Refreshing native plugins compatible for Editor in 6.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 10.753 seconds +Domain Reload Profiling: 11678ms + BeginReloadAssembly (330ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (101ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (495ms) + LoadAssemblies (626ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (38ms) + TypeCache.Refresh (16ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) + ResolveRequiredComponents (11ms) + FinalizeReload (10754ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (449ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 7.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4224. +Memory consumption went from 212.2 MB to 212.1 MB. +Total: 5.492700 ms (FindLiveObjects: 0.851700 ms CreateObjectMapping: 0.182400 ms MarkObjects: 4.307500 ms DeleteObjects: 0.149100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 1.276 seconds +Refreshing native plugins compatible for Editor in 6.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.300 seconds +Domain Reload Profiling: 2570ms + BeginReloadAssembly (781ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (568ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (392ms) + LoadAssemblies (495ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1300ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (648ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (460ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4227. +Memory consumption went from 214.1 MB to 214.1 MB. +Total: 3.191200 ms (FindLiveObjects: 0.532600 ms CreateObjectMapping: 0.120200 ms MarkObjects: 2.474200 ms DeleteObjects: 0.062900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.678 seconds +Refreshing native plugins compatible for Editor in 7.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.345 seconds +Domain Reload Profiling: 2017ms + BeginReloadAssembly (201ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (457ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1346ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (694ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (133ms) + ProcessInitializeOnLoadAttributes (483ms) + ProcessInitializeOnLoadMethodAttributes (50ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 7.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4230. +Memory consumption went from 216.0 MB to 216.0 MB. +Total: 6.821600 ms (FindLiveObjects: 0.719900 ms CreateObjectMapping: 0.324000 ms MarkObjects: 5.647000 ms DeleteObjects: 0.128800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.643 seconds +Refreshing native plugins compatible for Editor in 5.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.346 seconds +Domain Reload Profiling: 1983ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (20ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1347ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (638ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (455ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4233. +Memory consumption went from 217.9 MB to 217.9 MB. +Total: 3.343400 ms (FindLiveObjects: 0.532800 ms CreateObjectMapping: 0.152000 ms MarkObjects: 2.594700 ms DeleteObjects: 0.062900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.643 seconds +Refreshing native plugins compatible for Editor in 5.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.173 seconds +Domain Reload Profiling: 1811ms + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (375ms) + LoadAssemblies (438ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (31ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1174ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (596ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (420ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 6.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4236. +Memory consumption went from 219.9 MB to 219.8 MB. +Total: 2.948900 ms (FindLiveObjects: 0.440700 ms CreateObjectMapping: 0.110300 ms MarkObjects: 2.345700 ms DeleteObjects: 0.050800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.623 seconds +Refreshing native plugins compatible for Editor in 5.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.295 seconds +Domain Reload Profiling: 1913ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (419ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (9ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1296ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (663ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (467ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4239. +Memory consumption went from 221.8 MB to 221.7 MB. +Total: 10.577000 ms (FindLiveObjects: 0.585100 ms CreateObjectMapping: 0.166800 ms MarkObjects: 9.746200 ms DeleteObjects: 0.077600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.731 seconds +Refreshing native plugins compatible for Editor in 8.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.214 seconds +Domain Reload Profiling: 1938ms + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (423ms) + LoadAssemblies (490ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (36ms) + TypeCache.Refresh (17ms) + TypeCache.ScanAssembly (2ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1214ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (585ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (405ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Script is not up to date after domain reload: guid(f4be05ca0d93a2842bcc1867ac568211) path("Assets/test.cs") state(2) +Refreshing native plugins compatible for Editor in 6.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3629 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4241. +Memory consumption went from 223.7 MB to 223.6 MB. +Total: 5.537600 ms (FindLiveObjects: 0.859400 ms CreateObjectMapping: 0.131800 ms MarkObjects: 4.365300 ms DeleteObjects: 0.178300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.684 seconds +Refreshing native plugins compatible for Editor in 5.70 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.163 seconds +Domain Reload Profiling: 1841ms + BeginReloadAssembly (225ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (29ms) + TypeCache.Refresh (11ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1164ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (582ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (407ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4245. +Memory consumption went from 225.6 MB to 225.6 MB. +Total: 3.066900 ms (FindLiveObjects: 0.466500 ms CreateObjectMapping: 0.119600 ms MarkObjects: 2.430600 ms DeleteObjects: 0.048900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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 6.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.310 seconds +Domain Reload Profiling: 1953ms + BeginReloadAssembly (189ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (365ms) + LoadAssemblies (448ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (22ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1310ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (624ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (433ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 6.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4248. +Memory consumption went from 227.5 MB to 227.5 MB. +Total: 5.789000 ms (FindLiveObjects: 0.803600 ms CreateObjectMapping: 0.144200 ms MarkObjects: 4.772300 ms DeleteObjects: 0.067400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.671 seconds +Refreshing native plugins compatible for Editor in 5.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.322 seconds +Domain Reload Profiling: 1988ms + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (475ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (26ms) + TypeCache.Refresh (13ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1323ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (649ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (452ms) + ProcessInitializeOnLoadMethodAttributes (44ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 6.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4251. +Memory consumption went from 229.5 MB to 229.4 MB. +Total: 3.465000 ms (FindLiveObjects: 0.496200 ms CreateObjectMapping: 0.153100 ms MarkObjects: 2.750200 ms DeleteObjects: 0.063800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 7.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.177 seconds +Domain Reload Profiling: 1820ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (366ms) + LoadAssemblies (436ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (34ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (8ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1178ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (587ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (410ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 6.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4254. +Memory consumption went from 231.4 MB to 231.3 MB. +Total: 2.999400 ms (FindLiveObjects: 0.459800 ms CreateObjectMapping: 0.120500 ms MarkObjects: 2.370100 ms DeleteObjects: 0.048100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.660 seconds +Refreshing native plugins compatible for Editor in 6.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.246 seconds +Domain Reload Profiling: 1901ms + BeginReloadAssembly (205ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (82ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (362ms) + LoadAssemblies (422ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (21ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1247ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (621ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (435ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4257. +Memory consumption went from 233.3 MB to 233.3 MB. +Total: 3.080900 ms (FindLiveObjects: 0.464200 ms CreateObjectMapping: 0.113800 ms MarkObjects: 2.450600 ms DeleteObjects: 0.051000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.835 seconds +Refreshing native plugins compatible for Editor in 5.81 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.190 seconds +Domain Reload Profiling: 2020ms + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (562ms) + LoadAssemblies (628ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (33ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1191ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (600ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4260. +Memory consumption went from 235.2 MB to 235.2 MB. +Total: 3.206200 ms (FindLiveObjects: 0.602300 ms CreateObjectMapping: 0.118400 ms MarkObjects: 2.431600 ms DeleteObjects: 0.052700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.612 seconds +Refreshing native plugins compatible for Editor in 5.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.269 seconds +Domain Reload Profiling: 1875ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (354ms) + LoadAssemblies (418ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (24ms) + TypeCache.Refresh (12ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1270ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (614ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (426ms) + ProcessInitializeOnLoadMethodAttributes (43ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4263. +Memory consumption went from 237.1 MB to 237.1 MB. +Total: 3.255800 ms (FindLiveObjects: 0.534900 ms CreateObjectMapping: 0.113500 ms MarkObjects: 2.552200 ms DeleteObjects: 0.054200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.639 seconds +Refreshing native plugins compatible for Editor in 9.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.156 seconds +Domain Reload Profiling: 1790ms + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (422ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (14ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1157ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (585ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (406ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.8 KB). Loaded Objects now: 4266. +Memory consumption went from 239.1 MB to 239.0 MB. +Total: 4.061300 ms (FindLiveObjects: 0.735900 ms CreateObjectMapping: 0.400800 ms MarkObjects: 2.843300 ms DeleteObjects: 0.078500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.629 seconds +Refreshing native plugins compatible for Editor in 6.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.303 seconds +Domain Reload Profiling: 1927ms + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (434ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (23ms) + TypeCache.Refresh (10ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1304ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (641ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (445ms) + ProcessInitializeOnLoadMethodAttributes (49ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4269. +Memory consumption went from 241.0 MB to 240.9 MB. +Total: 4.081600 ms (FindLiveObjects: 0.895600 ms CreateObjectMapping: 0.164200 ms MarkObjects: 2.953800 ms DeleteObjects: 0.066800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-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.667 seconds +Refreshing native plugins compatible for Editor in 5.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.285 seconds +Domain Reload Profiling: 1947ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (401ms) + LoadAssemblies (458ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (35ms) + TypeCache.Refresh (15ms) + TypeCache.ScanAssembly (1ms) + ScanForSourceGeneratedMonoScriptInfo (9ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1285ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (660ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (429ms) + ProcessInitializeOnLoadMethodAttributes (79ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4272. +Memory consumption went from 242.9 MB to 242.9 MB. +Total: 3.801200 ms (FindLiveObjects: 0.532400 ms CreateObjectMapping: 0.130700 ms MarkObjects: 3.074600 ms DeleteObjects: 0.062400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 6.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.254 seconds +Domain Reload Profiling: 1880ms + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (430ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (19ms) + TypeCache.Refresh (8ms) + TypeCache.ScanAssembly (0ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1255ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (601ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 6.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4275. +Memory consumption went from 244.8 MB to 244.8 MB. +Total: 3.416600 ms (FindLiveObjects: 0.704000 ms CreateObjectMapping: 0.121700 ms MarkObjects: 2.528200 ms DeleteObjects: 0.061500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->