From 891576775c982322c685f6bedae3460ed1116011 Mon Sep 17 00:00:00 2001 From: smchoi <ws5260@naver.com> Date: 화, 23 7월 2024 09:38:11 +0900 Subject: [PATCH] Add : 의자 움직이는 기능 추가 --- UserSettings/Layouts/default-2022.dwlt | 176 Assets/Korail/Scripts/Action/ActionDoor.cs | 4 Logs/AssetImportWorker1.log | 1023 ++++++++-- Logs/AssetImportWorker4-prev.log | 108 .vs/korail_vr_interior/v17/fileList.bin | 0 Assets/Scenes/Train.unity | 1333 +++++++++++++- Assets/ChairController.cs | 56 Logs/shadercompiler-AssetImportWorker0.log | 3 .vs/korail_vr_interior/v17/.suo | 0 Logs/AssetImportWorker5-prev.log | 105 Logs/AssetImportWorker1-prev.log | 648 ++++++ /dev/null | 202 -- Logs/AssetImportWorker0.log | 1073 ++++++++-- Logs/AssetImportWorker2-prev.log | 102 Logs/AssetImportWorker0-prev.log | 624 ++++++ Assets/ChairController.cs.meta | 11 Logs/AssetImportWorker3-prev.log | 105 17 files changed, 4,494 insertions(+), 1,079 deletions(-) diff --git a/.vs/korail_vr_interior/v17/.suo b/.vs/korail_vr_interior/v17/.suo index 2ed094b..a21596c 100644 --- a/.vs/korail_vr_interior/v17/.suo +++ b/.vs/korail_vr_interior/v17/.suo Binary files differ diff --git a/.vs/korail_vr_interior/v17/fileList.bin b/.vs/korail_vr_interior/v17/fileList.bin index ab04949..4c0b489 100644 --- a/.vs/korail_vr_interior/v17/fileList.bin +++ b/.vs/korail_vr_interior/v17/fileList.bin Binary files differ diff --git a/Assets/ChairController.cs b/Assets/ChairController.cs new file mode 100644 index 0000000..d91dfe7 --- /dev/null +++ b/Assets/ChairController.cs @@ -0,0 +1,56 @@ +using UnityEngine; + +public class ChairController : MonoBehaviour +{ + public float minX = -2f; // 최소 X 위치 + public float maxX = 2f; // 최대 X 위치 + + [Range(0.01f, 0.1f )] + public float Sensitivity = 0.1f; + + private Vector3 offset; + private float startX; + private bool isDragging = false; + private Camera mainCamera; + + + + void Start() + { + mainCamera = Camera.main; + } + + public void OnDrag() + { + startX = transform.localPosition.x; + isDragging = true; + offset = transform.localPosition - GetMouseWorldPos(); + } + + public void OffDrag() + { + isDragging = false; + } + + void Update() + { + if (isDragging) + { + Vector3 newPosition = GetMouseWorldPos() + offset; + float deltaX = newPosition.x - startX; + float originalX = transform.localPosition.x; + // X 축으로만 이동하며, 최소/최대 범위 내에서만 이동 + float newX = Mathf.Clamp(originalX + deltaX * Sensitivity, minX, maxX); + transform.localPosition = new Vector3(newX, transform.localPosition.y, transform.localPosition.z); + + startX = transform.localPosition.x; + } + } + + Vector3 GetMouseWorldPos() + { + Vector3 mousePoint = Input.mousePosition; + mousePoint.z = mainCamera.WorldToScreenPoint(transform.localPosition).z; + return mainCamera.ScreenToWorldPoint(mousePoint); + } +} \ No newline at end of file diff --git a/Assets/ChairController.cs.meta b/Assets/ChairController.cs.meta new file mode 100644 index 0000000..0feafa1 --- /dev/null +++ b/Assets/ChairController.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 77c79231534037949a0e2631d058b91b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Korail/Scripts/Action/ActionDoor.cs b/Assets/Korail/Scripts/Action/ActionDoor.cs index 48de04b..4c27481 100644 --- a/Assets/Korail/Scripts/Action/ActionDoor.cs +++ b/Assets/Korail/Scripts/Action/ActionDoor.cs @@ -77,10 +77,6 @@ } } - private void OnChangeModel(int idx) - { - Initialize(); - } diff --git a/Assets/Resources/3D Model/fbx.zip.meta b/Assets/Resources/3D Model/fbx.zip.meta deleted file mode 100644 index 3cba706..0000000 --- a/Assets/Resources/3D Model/fbx.zip.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 41a482e1b0b86d4478959db33713ddb3 -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Scenes/Train.unity b/Assets/Scenes/Train.unity index b1adeb7..025cfea 100644 --- a/Assets/Scenes/Train.unity +++ b/Assets/Scenes/Train.unity @@ -760,6 +760,112 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 163306385} m_CullTransparentMesh: 1 +--- !u!1 &168507483 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 168507487} + - component: {fileID: 168507486} + - component: {fileID: 168507485} + - component: {fileID: 168507484} + m_Layer: 0 + m_Name: fence (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!64 &168507484 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 168507483} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &168507485 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 168507483} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d8d7b38951338344cbc11681fd56c92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &168507486 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 168507483} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &168507487 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 168507483} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 8.13634, y: 2.67984, z: 1.358} + m_LocalScale: {x: 0.05592169, y: 0.2, z: 0.24344134} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 90, y: 180, z: 0} --- !u!65 &198251505 BoxCollider: m_ObjectHideFlags: 0 @@ -914,6 +1020,112 @@ m_PersistentCalls: m_Calls: [] selected: 0 +--- !u!1 &228720319 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 228720323} + - component: {fileID: 228720322} + - component: {fileID: 228720321} + - component: {fileID: 228720320} + m_Layer: 0 + m_Name: fence + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!64 &228720320 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 228720319} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &228720321 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 228720319} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d8d7b38951338344cbc11681fd56c92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &228720322 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 228720319} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &228720323 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 228720319} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 8.10359, y: 2.67946, z: -1.363} + m_LocalScale: {x: 0.049372, y: 0.2, z: 0.24344134} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} --- !u!1 &281835566 GameObject: m_ObjectHideFlags: 0 @@ -942,14 +1154,14 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 281835566} serializedVersion: 2 - m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 10.08, y: 2.6230123, z: 0.66999996} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 3134632433921063847} m_Father: {fileID: 4435602903962089809} - m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &281835568 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1024,7 +1236,7 @@ m_Script: {fileID: 11500000, guid: 789aebd0201f1304fa2462d6e2ae4d3d, type: 3} m_Name: m_EditorClassIdentifier: - RotationAxis: 1 + RotationAxis: 0 maxAngle: 45 minAngle: -45 sensitivity: 0.2 @@ -2373,8 +2585,8 @@ m_Name: m_EditorClassIdentifier: Run: 0 - Speed: 0 - TargetRot: {x: 0, y: 0, z: 0} + Speed: 1 + TargetRot: {x: -90, y: 0, z: -88} isMove: 0 VREndStart: 0 --- !u!114 &1526820334 @@ -2392,7 +2604,19 @@ MyOutline: {fileID: 1526820332} OnSelect: m_PersistentCalls: - m_Calls: [] + m_Calls: + - m_Target: {fileID: 1526820330} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 OnUnSelect: m_PersistentCalls: m_Calls: [] @@ -2615,22 +2839,6 @@ m_PersistentCalls: m_Calls: [] selected: 0 ---- !u!114 &1643651804 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1666019136692518415} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 789aebd0201f1304fa2462d6e2ae4d3d, type: 3} - m_Name: - m_EditorClassIdentifier: - RotationAxis: 0 - maxAngle: 45 - minAngle: -45 - sensitivity: 0.2 --- !u!114 &1643651805 MonoBehaviour: m_ObjectHideFlags: 0 @@ -2649,71 +2857,6 @@ precomputeOutline: 0 bakeKeys: [] bakeValues: [] ---- !u!65 &1643651806 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1666019136692518415} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Size: {x: 0.059910275, y: 0.031999744, z: 0.108855605} - m_Center: {x: -0.00000030454248, y: -0.000000038184236, z: 0.050921947} ---- !u!114 &1643651807 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1666019136692518415} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} - m_Name: - m_EditorClassIdentifier: - MyOutline: {fileID: 1643651805} - OnSelect: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1643651804} - m_TargetAssemblyTypeName: LeverController, Assembly-CSharp - m_MethodName: OnDrag - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - OnUnSelect: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1643651804} - m_TargetAssemblyTypeName: LeverController, Assembly-CSharp - m_MethodName: OnDrag - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - selected: 0 --- !u!114 &1643651808 MonoBehaviour: m_ObjectHideFlags: 0 @@ -2910,6 +3053,122 @@ m_PersistentCalls: m_Calls: [] selected: 0 +--- !u!1 &1814715889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1814715890} + - component: {fileID: 1814715893} + - component: {fileID: 1814715892} + - component: {fileID: 1814715891} + m_Layer: 6 + m_Name: Stick + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1814715890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814715889} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 10.030143, y: 2.6306503, z: 0.8941981} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4179080447490438549} + m_Father: {fileID: 4435602903962089809} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1814715891 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814715889} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 789aebd0201f1304fa2462d6e2ae4d3d, type: 3} + m_Name: + m_EditorClassIdentifier: + RotationAxis: 0 + maxAngle: 45 + minAngle: -45 + sensitivity: 0.2 +--- !u!114 &1814715892 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814715889} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 1643651805} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1814715891} + m_TargetAssemblyTypeName: LeverController, Assembly-CSharp + m_MethodName: OnDrag + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1814715891} + m_TargetAssemblyTypeName: LeverController, Assembly-CSharp + m_MethodName: OffDrag + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + selected: 0 +--- !u!65 &1814715893 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814715889} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.059910275, y: 0.1229614, z: 0.01901269} + m_Center: {x: -0.0000003054738, y: 0.045480788, z: 0.0015305877} --- !u!1001 &1833722178 PrefabInstance: m_ObjectHideFlags: 0 @@ -14406,7 +14665,12 @@ - component: {fileID: 1300493707690772733} - component: {fileID: 3466285531511109590} - component: {fileID: 2050411632516069093} - m_Layer: 0 + - component: {fileID: 3466285531511109595} + - component: {fileID: 3466285531511109594} + - component: {fileID: 3466285531511109593} + - component: {fileID: 3466285531511109592} + - component: {fileID: 3466285531511109591} + m_Layer: 6 m_Name: backWall_door003 m_TagString: Untagged m_Icon: {fileID: 0} @@ -23414,10 +23678,7 @@ - component: {fileID: 4179080447490438549} - component: {fileID: 6374824091550708635} - component: {fileID: 5884799113317531398} - - component: {fileID: 1643651807} - - component: {fileID: 1643651806} - component: {fileID: 1643651805} - - component: {fileID: 1643651804} m_Layer: 0 m_Name: RBT006 m_TagString: Untagged @@ -25004,13 +25265,13 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4735509723971727482} serializedVersion: 2 - m_LocalRotation: {x: -0.7071068, y: 0.00000003161014, z: 0.00000003161014, w: 0.7071068} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} m_LocalPosition: {x: 8.441402, y: 2.5164003, z: -1.36155} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1719432506293732881} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} --- !u!4 &1765039805405703584 Transform: m_ObjectHideFlags: 0 @@ -31117,7 +31378,12 @@ - component: {fileID: 6224414785357547096} - component: {fileID: 4168179435498434223} - component: {fileID: 1562908693502152378} - m_Layer: 0 + - component: {fileID: 6224414785357547101} + - component: {fileID: 6224414785357547100} + - component: {fileID: 6224414785357547099} + - component: {fileID: 6224414785357547098} + - component: {fileID: 6224414785357547097} + m_Layer: 6 m_Name: backWall_door004 m_TagString: Untagged m_Icon: {fileID: 0} @@ -40886,7 +41152,7 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 6603039222670207705} serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 @@ -45342,6 +45608,109 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 926247892193991564} m_Mesh: {fileID: -3088583483929648696, guid: f749aed721ade2349a9c324b1dd09b9f, type: 3} +--- !u!65 &3466285531511109591 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926247892193991564} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.4520001, y: 0.19300003, z: 0.4500001} + m_Center: {x: 0.21972565, y: -0.07784064, z: 0} +--- !u!114 &3466285531511109592 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926247892193991564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 0.2 + TargetRot: {x: -90, y: 0, z: 79.885} + isMove: 0 + VREndStart: 0 +--- !u!114 &3466285531511109593 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926247892193991564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 3466285531511109595} + prevMotion: {fileID: 0} + actionDoor: {fileID: 3466285531511109592} +--- !u!114 &3466285531511109594 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926247892193991564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &3466285531511109595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926247892193991564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 3466285531511109594} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 3466285531511109593} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!23 &3467110721237962267 MeshRenderer: m_ObjectHideFlags: 0 @@ -49532,7 +49901,12 @@ - component: {fileID: 3753845330890522663} - component: {fileID: 7457728240655870983} - component: {fileID: 7349623607496482330} - m_Layer: 0 + - component: {fileID: 7457728240655870988} + - component: {fileID: 7457728240655870987} + - component: {fileID: 7457728240655870986} + - component: {fileID: 7457728240655870985} + - component: {fileID: 7457728240655870984} + m_Layer: 6 m_Name: backWall_door001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -49830,7 +50204,7 @@ m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!4 &3888261886590089354 Transform: m_ObjectHideFlags: 0 @@ -53197,13 +53571,13 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1666019136692518415} serializedVersion: 2 - m_LocalRotation: {x: -0.70710677, y: 0, z: 0, w: 0.70710677} - m_LocalPosition: {x: 10.030143, y: 2.6306503, z: 0.8941981} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] - m_Father: {fileID: 4435602903962089809} - m_LocalEulerAnglesHint: {x: -90, y: -90, z: 90} + m_Father: {fileID: 1814715890} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} --- !u!33 &4180323547124233886 MeshFilter: m_ObjectHideFlags: 0 @@ -56381,7 +56755,7 @@ - {fileID: 2448873518554748564} - {fileID: 3407940906429427492} - {fileID: 3191354276436918229} - - {fileID: 4179080447490438549} + - {fileID: 1814715890} - {fileID: 5879175402575801473} - {fileID: 281835567} - {fileID: 5296843978505700605} @@ -57841,7 +58215,12 @@ - component: {fileID: 4022618249578025584} - component: {fileID: 5861413428598258643} - component: {fileID: 5060213264209196968} - m_Layer: 0 + - component: {fileID: 5861413428598258648} + - component: {fileID: 5861413428598258647} + - component: {fileID: 5861413428598258646} + - component: {fileID: 5861413428598258645} + - component: {fileID: 5861413428598258644} + m_Layer: 6 m_Name: backWall_door000 m_TagString: Untagged m_Icon: {fileID: 0} @@ -67762,7 +68141,12 @@ - component: {fileID: 7887325833022344881} - component: {fileID: 8871705396515306914} - component: {fileID: 5644733754359608824} - m_Layer: 0 + - component: {fileID: 8871705396515306919} + - component: {fileID: 8871705396515306918} + - component: {fileID: 8871705396515306917} + - component: {fileID: 8871705396515306916} + - component: {fileID: 8871705396515306915} + m_Layer: 6 m_Name: backWall_door002 m_TagString: Untagged m_Icon: {fileID: 0} @@ -69831,7 +70215,12 @@ - component: {fileID: 9004124132643581428} - component: {fileID: 22677733642732776} - component: {fileID: 6545182244557512969} - m_Layer: 0 + - component: {fileID: 9004124132643581433} + - component: {fileID: 9004124132643581432} + - component: {fileID: 9004124132643581431} + - component: {fileID: 9004124132643581430} + - component: {fileID: 9004124132643581429} + m_Layer: 6 m_Name: backWall_door005 m_TagString: Untagged m_Icon: {fileID: 0} @@ -70670,7 +71059,12 @@ - component: {fileID: 1691062883472016241} - component: {fileID: 877790553040051521} - component: {fileID: 6769733076378068474} - m_Layer: 0 + - component: {fileID: 6769733076378068479} + - component: {fileID: 6769733076378068478} + - component: {fileID: 6769733076378068477} + - component: {fileID: 6769733076378068476} + - component: {fileID: 6769733076378068475} + m_Layer: 6 m_Name: backWall_door006 m_TagString: Untagged m_Icon: {fileID: 0} @@ -75686,6 +76080,109 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4538507924005739896} m_Mesh: {fileID: 6267037934213385166, guid: f749aed721ade2349a9c324b1dd09b9f, type: 3} +--- !u!65 &5861413428598258644 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538507924005739896} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.059000243, y: 0.75000024, z: 0.9500002} + m_Center: {x: -0.012823487, y: 0.3672691, z: -9.1116366e-17} +--- !u!114 &5861413428598258645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538507924005739896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 0.2 + TargetRot: {x: -90, y: 0, z: -69.442} + isMove: 0 + VREndStart: 0 +--- !u!114 &5861413428598258646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538507924005739896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 5861413428598258648} + prevMotion: {fileID: 0} + actionDoor: {fileID: 5861413428598258645} +--- !u!114 &5861413428598258647 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538507924005739896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &5861413428598258648 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538507924005739896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 5861413428598258647} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 5861413428598258646} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!23 &5864020493118170593 MeshRenderer: m_ObjectHideFlags: 0 @@ -80139,6 +80636,109 @@ m_Children: [] m_Father: {fileID: 1719432506293732881} m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!65 &6224414785357547097 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2299669994872299754} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.07751861, y: 0.63248754, z: 0.7894793} + m_Center: {x: -0.028509066, y: -0.3087553, z: 0.09776038} +--- !u!114 &6224414785357547098 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2299669994872299754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 0.2 + TargetRot: {x: -90, y: 0, z: 71.091} + isMove: 0 + VREndStart: 0 +--- !u!114 &6224414785357547099 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2299669994872299754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 6224414785357547101} + prevMotion: {fileID: 0} + actionDoor: {fileID: 6224414785357547098} +--- !u!114 &6224414785357547100 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2299669994872299754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &6224414785357547101 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2299669994872299754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 6224414785357547100} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 6224414785357547099} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!1 &6225772026754329210 GameObject: m_ObjectHideFlags: 0 @@ -88664,6 +89264,109 @@ m_SortingLayer: 0 m_SortingOrder: 0 m_AdditionalVertexStreams: {fileID: 0} +--- !u!65 &6769733076378068475 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5454946685292440206} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.065, y: 0.1557001, z: 0.3255532} + m_Center: {x: -0.025499877, y: 0.00014999512, z: 0.15992336} +--- !u!114 &6769733076378068476 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5454946685292440206} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 0.2 + TargetRot: {x: 86.888, y: 90, z: -90} + isMove: 0 + VREndStart: 0 +--- !u!114 &6769733076378068477 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5454946685292440206} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 6769733076378068479} + prevMotion: {fileID: 0} + actionDoor: {fileID: 6769733076378068476} +--- !u!114 &6769733076378068478 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5454946685292440206} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &6769733076378068479 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5454946685292440206} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 6769733076378068478} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 6769733076378068477} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!23 &6769733077741344251 MeshRenderer: m_ObjectHideFlags: 0 @@ -97040,6 +97743,109 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 3859640349191824992} m_Mesh: {fileID: 6510512954248982763, guid: f749aed721ade2349a9c324b1dd09b9f, type: 3} +--- !u!65 &7457728240655870984 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3859640349191824992} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.4520001, y: 0.19300003, z: 1.3002478} + m_Center: {x: 0.21859221, y: -0.08018299, z: 0} +--- !u!114 &7457728240655870985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3859640349191824992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 0.2 + TargetRot: {x: -90, y: 0, z: 79.885} + isMove: 0 + VREndStart: 0 +--- !u!114 &7457728240655870986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3859640349191824992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 7457728240655870988} + prevMotion: {fileID: 0} + actionDoor: {fileID: 7457728240655870985} +--- !u!114 &7457728240655870987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3859640349191824992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &7457728240655870988 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3859640349191824992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 7457728240655870987} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 7457728240655870986} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!33 &7459945955574169758 MeshFilter: m_ObjectHideFlags: 0 @@ -112083,7 +112889,11 @@ - component: {fileID: 9153462110913055315} - component: {fileID: 763274895541369031} - component: {fileID: 2272124013792791253} - m_Layer: 0 + - component: {fileID: 9153462110913055316} + - component: {fileID: 9153462110913055319} + - component: {fileID: 9153462110913055318} + - component: {fileID: 9153462110913055317} + m_Layer: 6 m_Name: R_chair02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -113442,6 +114252,109 @@ m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 5267649955223384119} m_Mesh: {fileID: -1992631820682129805, guid: f749aed721ade2349a9c324b1dd09b9f, type: 3} +--- !u!114 &8871705396515306915 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5267649955223384119} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &8871705396515306916 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5267649955223384119} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 1 + TargetRot: {x: -90, y: 0, z: -69.442} + isMove: 0 + VREndStart: 0 +--- !u!114 &8871705396515306917 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5267649955223384119} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 8871705396515306919} + prevMotion: {fileID: 0} + actionDoor: {fileID: 8871705396515306916} +--- !u!65 &8871705396515306918 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5267649955223384119} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.059000243, y: 0.75000024, z: 0.67000014} + m_Center: {x: -0.012823487, y: 0.3672691, z: 0.022749951} +--- !u!114 &8871705396515306919 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5267649955223384119} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 8871705396515306915} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 8871705396515306917} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!33 &8871837054238494346 MeshFilter: m_ObjectHideFlags: 0 @@ -115147,6 +116060,109 @@ m_Children: [] m_Father: {fileID: 1719432506293732881} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!65 &9004124132643581429 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5409681553865000545} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.4520001, y: 0.19300003, z: 0.80000013} + m_Center: {x: 0.21304475, y: 0.081319384, z: 0} +--- !u!114 &9004124132643581430 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5409681553865000545} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eb4e5bfea6f7aab4da58868f15ac0c0d, type: 3} + m_Name: + m_EditorClassIdentifier: + Run: 0 + Speed: 0.2 + TargetRot: {x: -90, y: 0, z: -82.532} + isMove: 0 + VREndStart: 0 +--- !u!114 &9004124132643581431 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5409681553865000545} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e0451e4262627d429667a12a731cf6a, type: 3} + m_Name: + m_EditorClassIdentifier: + selectObject: {fileID: 9004124132643581433} + prevMotion: {fileID: 0} + actionDoor: {fileID: 9004124132643581430} +--- !u!114 &9004124132643581432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5409681553865000545} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &9004124132643581433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5409681553865000545} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 9004124132643581432} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 9004124132643581431} + m_TargetAssemblyTypeName: ActionObject, Assembly-CSharp + m_MethodName: StartAnim + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: [] + selected: 0 --- !u!4 &9005191543556729845 Transform: m_ObjectHideFlags: 0 @@ -116802,12 +117818,111 @@ m_GameObject: {fileID: 8762754814454401646} serializedVersion: 2 m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.18054444, y: 0.000000076293944, z: 0.21178238} + m_LocalPosition: {x: -0.081, y: 0.000000076293944, z: 0.21178238} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 3187376124597509468} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &9153462110913055316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8762754814454401646} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 77c79231534037949a0e2631d058b91b, type: 3} + m_Name: + m_EditorClassIdentifier: + minX: -0.1693 + maxX: 0.1805444 + Sensitivity: 0.06 +--- !u!114 &9153462110913055317 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8762754814454401646} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 2 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] +--- !u!114 &9153462110913055318 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8762754814454401646} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e082c9c2edbc53b42b21f703d3132dc7, type: 3} + m_Name: + m_EditorClassIdentifier: + MyOutline: {fileID: 9153462110913055317} + OnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 9153462110913055316} + m_TargetAssemblyTypeName: ChairController, Assembly-CSharp + m_MethodName: OnDrag + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + OnUnSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 9153462110913055316} + m_TargetAssemblyTypeName: ChairController, Assembly-CSharp + m_MethodName: OffDrag + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + selected: 0 +--- !u!64 &9153462110913055319 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8762754814454401646} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 291379120320996485, guid: f749aed721ade2349a9c324b1dd09b9f, type: 3} --- !u!23 &9153889671572324364 MeshRenderer: m_ObjectHideFlags: 0 @@ -117794,3 +118909,5 @@ - {fileID: 482405722386796541} - {fileID: 482405721090899964} - {fileID: 367970836} + - {fileID: 228720323} + - {fileID: 168507487} diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log new file mode 100644 index 0000000..5756477 --- /dev/null +++ b/Logs/AssetImportWorker0-prev.log @@ -0,0 +1,624 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +D:/dev/korail_vr_interior +-logFile +Logs/AssetImportWorker0.log +-srvPort +9449 +Successfully changed project path to: D:/dev/korail_vr_interior +D:/dev/korail_vr_interior +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [32408] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 812641991 [EditorId] 812641991 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [32408] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 812641991 [EditorId] 812641991 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 18.50 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.5f1 (9674261d40ee) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) + Vendor: NVIDIA + VRAM: 12026 MB + Driver: 31.0.15.3667 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56256 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.015009 seconds. +- Loaded All Assemblies, in 0.349 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 451 ms +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.670 seconds +Domain Reload Profiling: 1012ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (0ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (71ms) + LoadAllAssembliesAndSetupDomain (132ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (116ms) + TypeCache.Refresh (116ms) + TypeCache.ScanAssembly (108ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (670ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (527ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (64ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.730 seconds +Refreshing native plugins compatible for Editor in 9.24 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +Package Manager log level set to [2] +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.643 seconds +Domain Reload Profiling: 1370ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (13ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (560ms) + LoadAssemblies (382ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (232ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (197ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (5ms) + FinalizeReload (644ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (510ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (342ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds +Refreshing native plugins compatible for Editor in 8.20 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.0 MB to 229.3 MB. +Total: 2.854700 ms (FindLiveObjects: 0.230600 ms CreateObjectMapping: 0.082600 ms MarkObjects: 2.123700 ms DeleteObjects: 0.416900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 496280.362224 seconds. + path: Assets/Scenes/Train.unity + artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '83dbbae0bd4bb5603b4657187c9c7bb3') in 0.004182 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.560 seconds +Refreshing native plugins compatible for Editor in 7.99 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.815 seconds +Domain Reload Profiling: 1372ms + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (20ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (384ms) + LoadAssemblies (252ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (815ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (349ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.43 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5701. +Memory consumption went from 201.8 MB to 200.2 MB. +Total: 2.791200 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.082300 ms MarkObjects: 2.093600 ms DeleteObjects: 0.374700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.564 seconds +Refreshing native plugins compatible for Editor in 7.73 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.800 seconds +Domain Reload Profiling: 1361ms + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (20ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (380ms) + LoadAssemblies (260ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (800ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 8.07 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5705. +Memory consumption went from 202.2 MB to 200.5 MB. +Total: 2.538200 ms (FindLiveObjects: 0.256600 ms CreateObjectMapping: 0.088400 ms MarkObjects: 1.801100 ms DeleteObjects: 0.391500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.590 seconds +Refreshing native plugins compatible for Editor in 8.28 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.828 seconds +Domain Reload Profiling: 1415ms + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (405ms) + LoadAssemblies (268ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (192ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (829ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (222ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 8.62 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5709. +Memory consumption went from 202.2 MB to 200.5 MB. +Total: 2.577700 ms (FindLiveObjects: 0.281300 ms CreateObjectMapping: 0.099600 ms MarkObjects: 1.834900 ms DeleteObjects: 0.361200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.538 seconds +Refreshing native plugins compatible for Editor in 7.27 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.828 seconds +Domain Reload Profiling: 1363ms + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (20ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (368ms) + LoadAssemblies (248ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (828ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 6.44 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5713. +Memory consumption went from 202.2 MB to 200.5 MB. +Total: 2.522000 ms (FindLiveObjects: 0.230300 ms CreateObjectMapping: 0.077800 ms MarkObjects: 1.792500 ms DeleteObjects: 0.420600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.551 seconds +Refreshing native plugins compatible for Editor in 8.71 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.904 seconds +Domain Reload Profiling: 1452ms + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (377ms) + LoadAssemblies (249ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (904ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (391ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.88 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5717. +Memory consumption went from 202.2 MB to 200.5 MB. +Total: 2.584700 ms (FindLiveObjects: 0.225900 ms CreateObjectMapping: 0.080900 ms MarkObjects: 1.909600 ms DeleteObjects: 0.367500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 530.532986 seconds. + path: Assets/Train_Yard_Environment/Materials/BrokenWindow.mat + artifactKey: Guid(eee672041e0e4994daf4e37ba3011375) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Train_Yard_Environment/Materials/BrokenWindow.mat using Guid(eee672041e0e4994daf4e37ba3011375) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e164ddd4883b0ae4e667a4ec71de1b4') in 0.162660 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_down.tif + artifactKey: Guid(9d2a2ce9c718dc24dae3b1ee427b27ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_down.tif using Guid(9d2a2ce9c718dc24dae3b1ee427b27ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da0ee7baf6e62d151191d607fb14c671') in 0.020466 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/Scenes/Sample/Materials/glow.mat + artifactKey: Guid(11bce9dbd491e6b4b89d570ebedfd816) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Sample/Materials/glow.mat using Guid(11bce9dbd491e6b4b89d570ebedfd816) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a65c552870549598cf7f4d8826911a2') in 0.033247 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_front.tif + artifactKey: Guid(0568ecdd797316641b0203860b3929d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_front.tif using Guid(0568ecdd797316641b0203860b3929d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92443e6d1e9d0fea58fddc862f071175') in 0.014246 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000012 seconds. + path: Assets/Resources/3D Model/prefabs/interior_view_240705.prefab + artifactKey: Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/3D Model/prefabs/interior_view_240705.prefab using Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7917747190c7c436b0db005f65a8973a') in 0.356559 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 10491 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 2e178a2..8cf1104 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ -logFile Logs/AssetImportWorker0.log -srvPort -6622 +1291 Successfully changed project path to: D:/dev/korail_vr_interior D:/dev/korail_vr_interior [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [52652] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2846175614 [EditorId] 2846175614 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [2776] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 3146931006 [EditorId] 3146931006 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [52652] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2846175614 [EditorId] 2846175614 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [2776] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 3146931006 [EditorId] 3146931006 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 1995.20 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 10.16 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.5f1 (9674261d40ee) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems @@ -69,49 +69,49 @@ Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56372 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56216 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.364565 seconds. -- Loaded All Assemblies, in 5.990 seconds +Registered in 0.006647 seconds. +- Loaded All Assemblies, in 0.203 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 502 ms +Android Extension - Scanning For ADB Devices 216 ms Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.792 seconds -Domain Reload Profiling: 6780ms - BeginReloadAssembly (4090ms) +- Finished resetting the current domain, in 0.402 seconds +Domain Reload Profiling: 604ms + BeginReloadAssembly (54ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (0ms) - RebuildCommonClasses (356ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (409ms) - LoadAllAssembliesAndSetupDomain (1127ms) - LoadAssemblies (4088ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (5ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (84ms) + LoadAssemblies (53ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (1118ms) - TypeCache.Refresh (1117ms) - TypeCache.ScanAssembly (902ms) + AnalyzeDomain (80ms) + TypeCache.Refresh (79ms) + TypeCache.ScanAssembly (73ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (793ms) + FinalizeReload (402ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (756ms) + SetupLoadedEditorAssemblies (369ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (671ms) + InitializePlatformSupportModulesInManaged (280ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (52ms) - ProcessInitializeOnLoadMethodAttributes (29ms) + ProcessInitializeOnLoadAttributes (53ms) + ProcessInitializeOnLoadMethodAttributes (32ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -121,8 +121,8 @@ Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 7.898 seconds -Refreshing native plugins compatible for Editor in 8.69 ms, found 10 plugins. +- Loaded All Assemblies, in 0.500 seconds +Refreshing native plugins compatible for Editor in 5.83 ms, found 10 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found Native extension for WebGL target not found @@ -140,47 +140,47 @@ [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.560 seconds -Domain Reload Profiling: 8455ms - BeginReloadAssembly (97ms) +- Finished resetting the current domain, in 0.496 seconds +Domain Reload Profiling: 995ms + BeginReloadAssembly (81ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (13ms) RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (7744ms) - LoadAssemblies (7309ms) + RebuildNativeTypeToScriptingClass (5ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (367ms) + LoadAssemblies (213ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (487ms) - TypeCache.Refresh (465ms) - TypeCache.ScanAssembly (420ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (5ms) - FinalizeReload (560ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) + ResolveRequiredComponents (4ms) + FinalizeReload (497ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (450ms) + SetupLoadedEditorAssemblies (388ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) + InitializePlatformSupportModulesInManaged (18ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (302ms) - ProcessInitializeOnLoadMethodAttributes (39ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (6ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 8.73 ms, found 10 plugins. + AwakeInstancesAfterBackupRestoration (11ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 4.89 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 231.1 MB to 229.4 MB. -Total: 2.605900 ms (FindLiveObjects: 0.227900 ms CreateObjectMapping: 0.077800 ms MarkObjects: 1.954100 ms DeleteObjects: 0.345500 ms) +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.1 MB to 229.5 MB. +Total: 2.599900 ms (FindLiveObjects: 0.251700 ms CreateObjectMapping: 0.142700 ms MarkObjects: 1.858200 ms DeleteObjects: 0.346700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -196,215 +196,800 @@ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 410446.799622 seconds. - path: Assets/Resources/Prefabs/Environment.prefab - artifactKey: Guid(24a4ebe1d3a0c4a49b87381082c76282) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Prefabs/Environment.prefab using Guid(24a4ebe1d3a0c4a49b87381082c76282) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c2f3cb360287b16bda85dbeb4a505b3') in 0.401498 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 8044 +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.515 seconds +Refreshing native plugins compatible for Editor in 6.31 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.689 seconds +Domain Reload Profiling: 1201ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (357ms) + LoadAssemblies (226ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (689ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 6.08 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5701. +Memory consumption went from 202.3 MB to 200.6 MB. +Total: 2.481100 ms (FindLiveObjects: 0.219600 ms CreateObjectMapping: 0.094000 ms MarkObjects: 1.827200 ms DeleteObjects: 0.339700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.522 seconds +Refreshing native plugins compatible for Editor in 6.14 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.658 seconds +Domain Reload Profiling: 1178ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (359ms) + LoadAssemblies (232ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (4ms) + FinalizeReload (658ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (209ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 6.24 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.6 MB). Loaded Objects now: 5705. +Memory consumption went from 202.3 MB to 200.6 MB. +Total: 2.375800 ms (FindLiveObjects: 0.214700 ms CreateObjectMapping: 0.077100 ms MarkObjects: 1.747400 ms DeleteObjects: 0.336100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.498 seconds +Refreshing native plugins compatible for Editor in 6.26 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.724 seconds +Domain Reload Profiling: 1220ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (225ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (167ms) + TypeCache.Refresh (162ms) + TypeCache.ScanAssembly (155ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (725ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 6.19 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5709. +Memory consumption went from 202.3 MB to 200.6 MB. +Total: 2.496100 ms (FindLiveObjects: 0.213800 ms CreateObjectMapping: 0.074200 ms MarkObjects: 1.863900 ms DeleteObjects: 0.343700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 2.093 seconds +Refreshing native plugins compatible for Editor in 5.26 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 9.561 seconds +Domain Reload Profiling: 11652ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (17ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (1953ms) + LoadAssemblies (1830ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (161ms) + TypeCache.Refresh (153ms) + TypeCache.ScanAssembly (146ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (9561ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (353ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 4.86 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5713. +Memory consumption went from 202.3 MB to 200.6 MB. +Total: 2.457100 ms (FindLiveObjects: 0.208000 ms CreateObjectMapping: 0.117100 ms MarkObjects: 1.755200 ms DeleteObjects: 0.376000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.487 seconds +Refreshing native plugins compatible for Editor in 5.29 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.655 seconds +Domain Reload Profiling: 1139ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (335ms) + LoadAssemblies (208ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (170ms) + TypeCache.Refresh (165ms) + TypeCache.ScanAssembly (158ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (655ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (225ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.16 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5717. +Memory consumption went from 202.4 MB to 200.6 MB. +Total: 2.618600 ms (FindLiveObjects: 0.273100 ms CreateObjectMapping: 0.104700 ms MarkObjects: 1.883400 ms DeleteObjects: 0.356800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 4.96 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.625 seconds +Domain Reload Profiling: 1105ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (201ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (625ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (209ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.26 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5721. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.362100 ms (FindLiveObjects: 0.211900 ms CreateObjectMapping: 0.074400 ms MarkObjects: 1.729700 ms DeleteObjects: 0.345300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.451 seconds +Refreshing native plugins compatible for Editor in 5.78 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.619 seconds +Domain Reload Profiling: 1069ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (310ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (159ms) + TypeCache.Refresh (155ms) + TypeCache.ScanAssembly (149ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (619ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 4.41 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5725. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.391000 ms (FindLiveObjects: 0.207400 ms CreateObjectMapping: 0.075500 ms MarkObjects: 1.752100 ms DeleteObjects: 0.355200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.459 seconds +Refreshing native plugins compatible for Editor in 4.80 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.619 seconds +Domain Reload Profiling: 1076ms + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (17ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (192ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (168ms) + TypeCache.Refresh (162ms) + TypeCache.ScanAssembly (156ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (619ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (212ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 5.04 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5729. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.402500 ms (FindLiveObjects: 0.211800 ms CreateObjectMapping: 0.078700 ms MarkObjects: 1.759200 ms DeleteObjects: 0.352000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.464 seconds +Refreshing native plugins compatible for Editor in 5.38 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.619 seconds +Domain Reload Profiling: 1082ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (162ms) + TypeCache.Refresh (155ms) + TypeCache.ScanAssembly (148ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (4ms) + FinalizeReload (620ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.37 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5733. +Memory consumption went from 202.4 MB to 200.7 MB. +Total: 2.428800 ms (FindLiveObjects: 0.218100 ms CreateObjectMapping: 0.081400 ms MarkObjects: 1.779800 ms DeleteObjects: 0.348500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.468 seconds +Refreshing native plugins compatible for Editor in 5.60 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.627 seconds +Domain Reload Profiling: 1093ms + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (17ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (194ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (627ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 5.11 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5737. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.437900 ms (FindLiveObjects: 0.218600 ms CreateObjectMapping: 0.080000 ms MarkObjects: 1.778100 ms DeleteObjects: 0.360600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 9.746419 seconds. - path: Assets/Resources/Prefabs/Environment.prefab - artifactKey: Guid(24a4ebe1d3a0c4a49b87381082c76282) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Prefabs/Environment.prefab using Guid(24a4ebe1d3a0c4a49b87381082c76282) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e70934acc7233912508259dea5748e80') in 0.197792 seconds + Time since last request: 905.002201 seconds. + path: Assets/Scenes/Train.unity + artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c760807b23577483b31600efdb4c7c81') in 0.001677 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 8044 +Number of asset objects unloaded after import = 0 ======================================================================== Received Import Request. - Time since last request: 304.891652 seconds. - path: Assets/Resources/3D Model/fbx/interior_240604.fbx - artifactKey: Guid(82ca3c4f76d10d54fad53e4721866671) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/interior_240604.fbx using Guid(82ca3c4f76d10d54fad53e4721866671) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9e938323d8b57d5863830d0d96d9b84') in 0.577196 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 583 -======================================================================== -Received Import Request. - Time since last request: 0.000020 seconds. - path: Assets/Resources/3D Model/fbx/Interior_a_control_1018.fbx - artifactKey: Guid(c3698849aacd68642b765da19014724f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/Interior_a_control_1018.fbx using Guid(c3698849aacd68642b765da19014724f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '203fb42eb13bdd79999bf713a7a1e06d') in 0.194709 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 233 -======================================================================== -Received Import Request. - Time since last request: 383.628999 seconds. - path: Assets/Resources/3D Model/prefabs/interior_view_240705.prefab + Time since last request: 345.943182 seconds. + path: Assets/Resources/3D Model/prefabs/interior_view_240705_prev.prefab artifactKey: Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/prefabs/interior_view_240705.prefab using Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02996a7377f6248417296fec2f033b42') in 0.319177 seconds +Start importing Assets/Resources/3D Model/prefabs/interior_view_240705_prev.prefab using Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a10f585bd09e16fec7be47e31cc7bef6') in 0.327364 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 10491 ======================================================================== Received Import Request. - Time since last request: 808.559017 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/a_454c57.mat - artifactKey: Guid(a117bf56d1a1dd04e8acb7d8a5023133) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/a_454c57.mat using Guid(a117bf56d1a1dd04e8acb7d8a5023133) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69497153ba11b5586458bdc50ba64f36') in 0.018999 seconds + Time since last request: 22.494147 seconds. + path: Assets/Resources/3D Model/fbx/interior_240705_prev.fbx + artifactKey: Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/3D Model/fbx/interior_240705_prev.fbx using Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef2eec22b9569ddd41d88eb1686327c7') in 4.475909 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 +Number of asset objects unloaded after import = 5835 ======================================================================== Received Import Request. - Time since last request: 0.066205 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/korail-1-logo-001_door.mat - artifactKey: Guid(eb8291ac49ff3d04091549bc781a61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/korail-1-logo-001_door.mat using Guid(eb8291ac49ff3d04091549bc781a61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bd2e39117c093aa751049e635ca96fc') in 0.013887 seconds + Time since last request: 4.322763 seconds. + path: Assets/Resources/3D Model/fbx/interior_240705.fbx + artifactKey: Guid(3328f5586a6ef4d4096f6e5bd20eaffc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/3D Model/fbx/interior_240705.fbx using Guid(3328f5586a6ef4d4096f6e5bd20eaffc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '113da5d9f0750ba3c366ef12e36cbc92') in 4.459683 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 +Number of asset objects unloaded after import = 5975 ======================================================================== Received Import Request. - Time since last request: 0.066693 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/Material_1.002.mat - artifactKey: Guid(24d9b6ee616dbc244a5b04e595b8a032) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/Material_1.002.mat using Guid(24d9b6ee616dbc244a5b04e595b8a032) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd93a63c12ce2eeeea7500d33bb92b501') in 0.014939 seconds + Time since last request: 119.657286 seconds. + path: Assets/Resources/3D Model/prefabs/interior_view_240705.prefab + artifactKey: Guid(55d50c4fb0cfc084c8cfac8ee66e7f69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/3D Model/prefabs/interior_view_240705.prefab using Guid(55d50c4fb0cfc084c8cfac8ee66e7f69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78aee501bac53f09ece78d5eb601d690') in 0.254873 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 +Number of asset objects unloaded after import = 10501 ======================================================================== Received Import Request. - Time since last request: 59.859945 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/metalic.mat - artifactKey: Guid(1ba72c987feb81b45891c61349fd6651) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/metalic.mat using Guid(1ba72c987feb81b45891c61349fd6651) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9837a67118cdb708b00bf79881d2590') in 0.024888 seconds + Time since last request: 177.557013 seconds. + path: Assets/Resources/3D Model/prefabs/interior_view_24070.prefab + artifactKey: Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/3D Model/prefabs/interior_view_24070.prefab using Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4e37b685f5c112116cf2530ce559e8e') in 0.240774 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 70.371343 seconds. - path: Assets/Resources/3D Model/fbx/Materials/1b1b1b.mat - artifactKey: Guid(8bbab6f126b7a684b99319cc7a36264d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/Materials/1b1b1b.mat using Guid(8bbab6f126b7a684b99319cc7a36264d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c303ef20575515c6b9f6dd92816b321') in 0.021743 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.009450 seconds. - path: Assets/Resources/3D Model/fbx/Materials/44515a.mat - artifactKey: Guid(2437473c33ed12a48805c58c339065fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/Materials/44515a.mat using Guid(2437473c33ed12a48805c58c339065fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb83e874ac40459eb4f29821cae4f982') in 0.011849 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.639378 seconds. - path: Assets/Train_Yard_Environment/Materials/CeilingLamp.mat - artifactKey: Guid(bd44196b734971347bf4ea6410307249) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/CeilingLamp.mat using Guid(bd44196b734971347bf4ea6410307249) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb1cb131a4498ec67fd9d7c1f49d74a2') in 0.072132 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 0.512536 seconds. - path: Assets/Train_Yard_Environment/Materials/ConcreteDamaged1.mat - artifactKey: Guid(73fd7f22e111be547a642dd5ad1e3c9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/ConcreteDamaged1.mat using Guid(73fd7f22e111be547a642dd5ad1e3c9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6cc395f5577c2a85fba4a05a42e3631') in 0.077169 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 4.275077 seconds. - path: Assets/Korail/Art/Material/Material_1/Frozen white metal.mat - artifactKey: Guid(b3f94e8180188074bb1ab7358c804bfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Material/Material_1/Frozen white metal.mat using Guid(b3f94e8180188074bb1ab7358c804bfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c178b2c6aac3558899b9d7970aa0fd57') in 0.008433 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000011 seconds. - path: Assets/Korail/Art/Material/Material_3/Frozen white metal.mat - artifactKey: Guid(eb2bf9f82b611534aa57bb8c22198ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Material/Material_3/Frozen white metal.mat using Guid(eb2bf9f82b611534aa57bb8c22198ac3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48eadc2aedfe315ab4a2f8ed3f2381f1') in 0.005518 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.031069 seconds. - path: Assets/Train_Yard_Environment/Materials/Metal2.mat - artifactKey: Guid(280a9d0f2102b934ebc778b014ac2439) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/Metal2.mat using Guid(280a9d0f2102b934ebc778b014ac2439) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '109f1152821abe92f27309e513c858eb') in 0.040384 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000011 seconds. - path: Assets/Train_Yard_Environment/Materials/MetalWallGray1.mat - artifactKey: Guid(8d0ea96f06d3ed740ba2aaa3fa1c72a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/MetalWallGray1.mat using Guid(8d0ea96f06d3ed740ba2aaa3fa1c72a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2eff800680b25570ea45f4e3c5715ddf') in 0.026137 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 70.944002 seconds. - path: Assets/Train_Yard_Environment/Materials/Booth.mat - artifactKey: Guid(de292024f842bc7469485d6c6ba2a09b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/Booth.mat using Guid(de292024f842bc7469485d6c6ba2a09b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9adbc872e38d8d6688e876fdd57fce64') in 0.054616 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 2.109032 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #117.mat - artifactKey: Guid(926ad9b2ff4f31149a88d6ba724084bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #117.mat using Guid(926ad9b2ff4f31149a88d6ba724084bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1700921e3706e5c69b6e421790eec28') in 0.033695 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.010331 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #119.mat - artifactKey: Guid(775c34b94dda2844ca0ca002b24a6f2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #119.mat using Guid(775c34b94dda2844ca0ca002b24a6f2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '609b86c178280142e2c9008ba68b9a50') in 0.014108 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #128.mat - artifactKey: Guid(3b4bb517cff6e444eb67facfa58ad347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #128.mat using Guid(3b4bb517cff6e444eb67facfa58ad347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af743a425fb46e4f1f9023a94c0eacc0') in 0.011746 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.007616 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #142.mat - artifactKey: Guid(9f956b95185639a42b7f714844b9afce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #142.mat using Guid(9f956b95185639a42b7f714844b9afce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '206e38dce8a54830e4aed98f757b27c3') in 0.013066 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #143.mat - artifactKey: Guid(05cebf5b3df8809439084c5191db682b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #143.mat using Guid(05cebf5b3df8809439084c5191db682b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69d7113e95d0a1e5fc7bc1c7b92b4d84') in 0.011152 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.010863 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #163.mat - artifactKey: Guid(038b06eb2a5308d408da21bdbcf34bbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #163.mat using Guid(038b06eb2a5308d408da21bdbcf34bbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8748e76e74ecd2a4a8ec85a33e77b3ab') in 0.013330 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #152.mat - artifactKey: Guid(cc7b01485786c584f81f6ef459d13615) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #152.mat using Guid(cc7b01485786c584f81f6ef459d13615) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7524a87eaca56bc5a3e06a4dc2ae3f1f') in 0.012795 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000015 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #150.mat - artifactKey: Guid(d29d96df1d6708948849b5e5a1b58434) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #150.mat using Guid(d29d96df1d6708948849b5e5a1b58434) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3dbb9c79ee1a3c3431e416e3bdee787a') in 0.012169 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file +Number of asset objects unloaded after import = 10491 diff --git a/Logs/AssetImportWorker1-prev.log b/Logs/AssetImportWorker1-prev.log new file mode 100644 index 0000000..5197fc0 --- /dev/null +++ b/Logs/AssetImportWorker1-prev.log @@ -0,0 +1,648 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker1 +-projectPath +D:/dev/korail_vr_interior +-logFile +Logs/AssetImportWorker1.log +-srvPort +9449 +Successfully changed project path to: D:/dev/korail_vr_interior +D:/dev/korail_vr_interior +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [46212] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 4120662193 [EditorId] 4120662193 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [46212] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 4120662193 [EditorId] 4120662193 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 19.47 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.5f1 (9674261d40ee) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) + Vendor: NVIDIA + VRAM: 12026 MB + Driver: 31.0.15.3667 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56988 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.015076 seconds. +- Loaded All Assemblies, in 0.348 seconds +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Android Extension - Scanning For ADB Devices 451 ms +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.671 seconds +Domain Reload Profiling: 1014ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (0ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (72ms) + LoadAllAssembliesAndSetupDomain (133ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (116ms) + TypeCache.Refresh (115ms) + TypeCache.ScanAssembly (107ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (672ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (634ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (528ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (64ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.730 seconds +Refreshing native plugins compatible for Editor in 8.73 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +Package Manager log level set to [2] +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.643 seconds +Domain Reload Profiling: 1370ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (14ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (560ms) + LoadAssemblies (384ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (233ms) + TypeCache.Refresh (205ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (22ms) + ResolveRequiredComponents (5ms) + FinalizeReload (643ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (510ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (343ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds +Refreshing native plugins compatible for Editor in 7.81 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.0 MB to 229.3 MB. +Total: 2.976300 ms (FindLiveObjects: 0.243900 ms CreateObjectMapping: 0.091600 ms MarkObjects: 2.206700 ms DeleteObjects: 0.433300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.562 seconds +Refreshing native plugins compatible for Editor in 7.29 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.819 seconds +Domain Reload Profiling: 1378ms + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (386ms) + LoadAssemblies (253ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (189ms) + TypeCache.Refresh (180ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (819ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (219ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 9.47 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5701. +Memory consumption went from 202.1 MB to 200.5 MB. +Total: 2.510400 ms (FindLiveObjects: 0.234600 ms CreateObjectMapping: 0.084800 ms MarkObjects: 1.818200 ms DeleteObjects: 0.372200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.554 seconds +Refreshing native plugins compatible for Editor in 7.96 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.800 seconds +Domain Reload Profiling: 1352ms + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (20ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (258ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (5ms) + FinalizeReload (800ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (367ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.88 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5705. +Memory consumption went from 202.1 MB to 200.5 MB. +Total: 2.835500 ms (FindLiveObjects: 0.259900 ms CreateObjectMapping: 0.090800 ms MarkObjects: 2.074900 ms DeleteObjects: 0.409000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.600 seconds +Refreshing native plugins compatible for Editor in 9.21 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.821 seconds +Domain Reload Profiling: 1417ms + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (407ms) + LoadAssemblies (274ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (821ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (361ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 8.29 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5709. +Memory consumption went from 202.1 MB to 200.5 MB. +Total: 2.545300 ms (FindLiveObjects: 0.224400 ms CreateObjectMapping: 0.077400 ms MarkObjects: 1.857600 ms DeleteObjects: 0.385200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.535 seconds +Refreshing native plugins compatible for Editor in 7.45 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.836 seconds +Domain Reload Profiling: 1368ms + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (20ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (365ms) + LoadAssemblies (248ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (837ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (383ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 8.45 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5713. +Memory consumption went from 202.2 MB to 200.5 MB. +Total: 2.470900 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.077300 ms MarkObjects: 1.748400 ms DeleteObjects: 0.421100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.545 seconds +Refreshing native plugins compatible for Editor in 9.63 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.918 seconds +Domain Reload Profiling: 1460ms + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (247ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (918ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (401ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (106ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 9.71 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5717. +Memory consumption went from 202.1 MB to 200.5 MB. +Total: 2.672500 ms (FindLiveObjects: 0.241000 ms CreateObjectMapping: 0.075400 ms MarkObjects: 1.983400 ms DeleteObjects: 0.371900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 496810.928924 seconds. + path: Assets/Samples/XR Interaction Toolkit/2.4.3/Starter Assets/Prefabs/Climb/Climbing Wall.prefab + artifactKey: Guid(a0ea40bd139aedc43b0e8374d6139437) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Samples/XR Interaction Toolkit/2.4.3/Starter Assets/Prefabs/Climb/Climbing Wall.prefab using Guid(a0ea40bd139aedc43b0e8374d6139437) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c060887bf2001122bbecb4a70ee87ae') in 0.150944 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 396 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/SkySeries Freebie/FreebieHdri/CloudedSunGlow4k.hdr + artifactKey: Guid(12c15a8e5a294be45819b1dd4b9b08d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/SkySeries Freebie/FreebieHdri/CloudedSunGlow4k.hdr using Guid(12c15a8e5a294be45819b1dd4b9b08d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efd93c7d5edc8d51ccedc053f60ec8e2') in 0.052769 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_back.tif + artifactKey: Guid(fe48ca40e9be666419e7d1a4bf3d808a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_back.tif using Guid(fe48ca40e9be666419e7d1a4bf3d808a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '656da36af029ffc5b80b0497c71292ba') in 0.017891 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000014 seconds. + path: Assets/Samples/XR Interaction Toolkit/2.4.3/Starter Assets/Prefabs/UI_2D/Dropdown.prefab + artifactKey: Guid(870459f1cb8d7b7428337cc5935feb67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Samples/XR Interaction Toolkit/2.4.3/Starter Assets/Prefabs/UI_2D/Dropdown.prefab using Guid(870459f1cb8d7b7428337cc5935feb67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efeb3d448e09dd75d85f9e24eb5fa6ac') in 0.026649 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_up.tif + artifactKey: Guid(a6de6086ecd5fe84699b0bc7e00608a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_up.tif using Guid(a6de6086ecd5fe84699b0bc7e00608a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c3447f4672819e32e20edbe2ef981b3') in 0.020308 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000014 seconds. + path: Assets/Samples/XR Interaction Toolkit/2.4.3/Hands Interaction Demo/Runtime/Sprites/Forward.png + artifactKey: Guid(746141cf5064bf74bbe882cec9bd662b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Samples/XR Interaction Toolkit/2.4.3/Hands Interaction Demo/Runtime/Sprites/Forward.png using Guid(746141cf5064bf74bbe882cec9bd662b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1226ff46910e82119640b9f7be4031d') in 0.021387 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000013 seconds. + path: Assets/Samples/XR Interaction Toolkit/2.4.3/Hands Interaction Demo/Runtime/Prefabs/Hand Menu With Button Activation.prefab + artifactKey: Guid(e2698219e3231e94c8765d49b9dd5cff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Samples/XR Interaction Toolkit/2.4.3/Hands Interaction Demo/Runtime/Prefabs/Hand Menu With Button Activation.prefab using Guid(e2698219e3231e94c8765d49b9dd5cff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61ac5a1307da23870a128617baaad0e6') in 0.040171 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 198 +======================================================================== +Received Import Request. + Time since last request: 0.000012 seconds. + path: Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_left.tif + artifactKey: Guid(9785a5533d9270849a276a4bfbfa9418) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_left.tif using Guid(9785a5533d9270849a276a4bfbfa9418) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b12f1ef506988c725bec570381648cd') in 0.018565 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000013 seconds. + path: Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_right.tif + artifactKey: Guid(6dda5f499bc82c442aab32e4a6bdbe40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TreePackVol.1/Sample/Skybox/DawnDusk/DawnDusk_right.tif using Guid(6dda5f499bc82c442aab32e4a6bdbe40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '09cd1a82046366ad41760acd7327caa6') in 0.017667 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker1.log b/Logs/AssetImportWorker1.log index 16045c3..9ed2c90 100644 --- a/Logs/AssetImportWorker1.log +++ b/Logs/AssetImportWorker1.log @@ -15,7 +15,7 @@ -logFile Logs/AssetImportWorker1.log -srvPort -6622 +1291 Successfully changed project path to: D:/dev/korail_vr_interior D:/dev/korail_vr_interior [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [61336] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2290137078 [EditorId] 2290137078 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [21820] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 4092108719 [EditorId] 4092108719 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [61336] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2290137078 [EditorId] 2290137078 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [21820] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 4092108719 [EditorId] 4092108719 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 1995.22 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 10.35 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.5f1 (9674261d40ee) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems @@ -69,48 +69,48 @@ Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56936 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56248 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.365735 seconds. -- Loaded All Assemblies, in 5.990 seconds +Registered in 0.007110 seconds. +- Loaded All Assemblies, in 0.209 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 470 ms +Android Extension - Scanning For ADB Devices 217 ms Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.769 seconds -Domain Reload Profiling: 6757ms - BeginReloadAssembly (4090ms) +- Finished resetting the current domain, in 0.406 seconds +Domain Reload Profiling: 613ms + BeginReloadAssembly (57ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (0ms) - RebuildCommonClasses (355ms) + RebuildCommonClasses (19ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (409ms) - LoadAllAssembliesAndSetupDomain (1128ms) - LoadAssemblies (4089ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (87ms) + LoadAssemblies (56ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (1119ms) - TypeCache.Refresh (1118ms) - TypeCache.ScanAssembly (903ms) + AnalyzeDomain (81ms) + TypeCache.Refresh (80ms) + TypeCache.ScanAssembly (74ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (769ms) + FinalizeReload (406ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (733ms) + SetupLoadedEditorAssemblies (373ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (639ms) + InitializePlatformSupportModulesInManaged (282ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (55ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (54ms) ProcessInitializeOnLoadMethodAttributes (33ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) @@ -121,8 +121,8 @@ Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 7.901 seconds -Refreshing native plugins compatible for Editor in 7.43 ms, found 10 plugins. +- Loaded All Assemblies, in 0.503 seconds +Refreshing native plugins compatible for Editor in 5.03 ms, found 10 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found Native extension for WebGL target not found @@ -140,47 +140,47 @@ [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.560 seconds -Domain Reload Profiling: 8458ms - BeginReloadAssembly (98ms) +- Finished resetting the current domain, in 0.496 seconds +Domain Reload Profiling: 996ms + BeginReloadAssembly (82ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (13ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (7745ms) - LoadAssemblies (7310ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (5ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (369ms) + LoadAssemblies (214ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (489ms) - TypeCache.Refresh (466ms) - TypeCache.ScanAssembly (420ms) - ScanForSourceGeneratedMonoScriptInfo (19ms) + AnalyzeDomain (197ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (17ms) ResolveRequiredComponents (5ms) - FinalizeReload (560ms) + FinalizeReload (496ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (450ms) + SetupLoadedEditorAssemblies (388ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) + InitializePlatformSupportModulesInManaged (17ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (303ms) - ProcessInitializeOnLoadMethodAttributes (38ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (6ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds -Refreshing native plugins compatible for Editor in 8.55 ms, found 10 plugins. + AwakeInstancesAfterBackupRestoration (12ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 4.94 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 231.1 MB to 229.4 MB. -Total: 2.615600 ms (FindLiveObjects: 0.252100 ms CreateObjectMapping: 0.085800 ms MarkObjects: 1.925300 ms DeleteObjects: 0.351500 ms) +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.1 MB to 229.5 MB. +Total: 2.707500 ms (FindLiveObjects: 0.295800 ms CreateObjectMapping: 0.098000 ms MarkObjects: 1.970900 ms DeleteObjects: 0.342000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -197,174 +197,767 @@ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 410430.120642 seconds. + Time since last request: 261.328875 seconds. path: Assets/Scenes/Train.unity artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02141f304c4f97c041f60674143ba036') in 0.002035 seconds +Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ac66d2153425e79f6117a438f1e007c') in 0.002141 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== -Received Import Request. - Time since last request: 16.675850 seconds. - path: Assets/Resources/Prefabs/Trees.prefab - artifactKey: Guid(478e8024c11235544ae548bd1fdd2dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Prefabs/Trees.prefab using Guid(478e8024c11235544ae548bd1fdd2dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '618e43e6d64cc67aea2e57b0d76e5ead') in 0.286299 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 396 +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.516 seconds +Refreshing native plugins compatible for Editor in 6.33 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.685 seconds +Domain Reload Profiling: 1199ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (225ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (685ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (212ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.47 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5701. +Memory consumption went from 202.1 MB to 200.4 MB. +Total: 2.435600 ms (FindLiveObjects: 0.214800 ms CreateObjectMapping: 0.075900 ms MarkObjects: 1.818400 ms DeleteObjects: 0.325900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.522 seconds +Refreshing native plugins compatible for Editor in 5.97 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.658 seconds +Domain Reload Profiling: 1178ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (20ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (231ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (659ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 4.81 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5705. +Memory consumption went from 202.3 MB to 200.6 MB. +Total: 2.485700 ms (FindLiveObjects: 0.213100 ms CreateObjectMapping: 0.073900 ms MarkObjects: 1.856100 ms DeleteObjects: 0.341600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.493 seconds +Refreshing native plugins compatible for Editor in 6.53 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.722 seconds +Domain Reload Profiling: 1213ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (218ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (167ms) + TypeCache.Refresh (162ms) + TypeCache.ScanAssembly (156ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (722ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 5.09 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5709. +Memory consumption went from 202.3 MB to 200.6 MB. +Total: 2.479700 ms (FindLiveObjects: 0.209400 ms CreateObjectMapping: 0.074000 ms MarkObjects: 1.835200 ms DeleteObjects: 0.360400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 2.094 seconds +Refreshing native plugins compatible for Editor in 5.10 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 9.561 seconds +Domain Reload Profiling: 11653ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (17ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (1952ms) + LoadAssemblies (1831ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (161ms) + TypeCache.Refresh (153ms) + TypeCache.ScanAssembly (146ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (9561ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (353ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 4.83 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5713. +Memory consumption went from 202.4 MB to 200.7 MB. +Total: 2.548000 ms (FindLiveObjects: 0.206600 ms CreateObjectMapping: 0.078200 ms MarkObjects: 1.896200 ms DeleteObjects: 0.366300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.487 seconds +Refreshing native plugins compatible for Editor in 5.04 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.663 seconds +Domain Reload Profiling: 1148ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (335ms) + LoadAssemblies (209ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (170ms) + TypeCache.Refresh (165ms) + TypeCache.ScanAssembly (158ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (663ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (361ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 7.00 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5717. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.585900 ms (FindLiveObjects: 0.357800 ms CreateObjectMapping: 0.132100 ms MarkObjects: 1.761500 ms DeleteObjects: 0.333900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.465 seconds +Refreshing native plugins compatible for Editor in 5.35 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.626 seconds +Domain Reload Profiling: 1090ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (2ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (193ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (170ms) + TypeCache.Refresh (162ms) + TypeCache.ScanAssembly (153ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (4ms) + FinalizeReload (627ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 5.01 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.6 MB). Loaded Objects now: 5721. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.490600 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.076600 ms MarkObjects: 1.832600 ms DeleteObjects: 0.364100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.453 seconds +Refreshing native plugins compatible for Editor in 5.46 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.620 seconds +Domain Reload Profiling: 1071ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (18ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (311ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (161ms) + TypeCache.Refresh (156ms) + TypeCache.ScanAssembly (149ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (620ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 4.82 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5725. +Memory consumption went from 202.4 MB to 200.7 MB. +Total: 2.377800 ms (FindLiveObjects: 0.209200 ms CreateObjectMapping: 0.079100 ms MarkObjects: 1.717300 ms DeleteObjects: 0.371500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.456 seconds +Refreshing native plugins compatible for Editor in 4.72 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.624 seconds +Domain Reload Profiling: 1078ms + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (17ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (319ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (169ms) + TypeCache.Refresh (165ms) + TypeCache.ScanAssembly (158ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (625ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (336ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (213ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 4.56 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5729. +Memory consumption went from 202.4 MB to 200.7 MB. +Total: 2.603100 ms (FindLiveObjects: 0.234100 ms CreateObjectMapping: 0.079200 ms MarkObjects: 1.936700 ms DeleteObjects: 0.352700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.464 seconds +Refreshing native plugins compatible for Editor in 5.19 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.626 seconds +Domain Reload Profiling: 1089ms + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (19ms) + RebuildNativeTypeToScriptingClass (6ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (164ms) + TypeCache.Refresh (156ms) + TypeCache.ScanAssembly (149ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (627ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (213ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.87 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.6 MB). Loaded Objects now: 5733. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.507200 ms (FindLiveObjects: 0.212700 ms CreateObjectMapping: 0.085800 ms MarkObjects: 1.864700 ms DeleteObjects: 0.343200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.469 seconds +Refreshing native plugins compatible for Editor in 5.73 ms, found 10 plugins. +Native extension for WindowsStandalone target not found +Native extension for Android target not found +Native extension for WebGL target not found +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). +[Package Manager] Cannot connect to Unity Package Manager local server +- Finished resetting the current domain, in 0.624 seconds +Domain Reload Profiling: 1092ms + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (17ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (193ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (624ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 4.36 ms, found 10 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 5080 Unused Serialized files (Serialized files now loaded: 0) +Unloading 79 unused Assets / (1.6 MB). Loaded Objects now: 5737. +Memory consumption went from 202.3 MB to 200.7 MB. +Total: 2.483500 ms (FindLiveObjects: 0.237600 ms CreateObjectMapping: 0.080700 ms MarkObjects: 1.803000 ms DeleteObjects: 0.361500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 9.874824 seconds. - path: Assets/Resources/Prefabs/Trees.prefab - artifactKey: Guid(478e8024c11235544ae548bd1fdd2dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/Prefabs/Trees.prefab using Guid(478e8024c11235544ae548bd1fdd2dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da6729039a8fdf3719939343893884da') in 0.085539 seconds + Time since last request: 1145.409922 seconds. + path: Assets/Resources/3D Model/prefabs/interior_view_240705_prev.prefab + artifactKey: Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Resources/3D Model/prefabs/interior_view_240705_prev.prefab using Guid(62f6dfca031b1c8418720ce1e6a0ae56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03ef3981bfe9076cdcde1354ca56c949') in 0.323659 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 396 -======================================================================== -Received Import Request. - Time since last request: 305.014249 seconds. - path: Assets/Resources/3D Model/fbx/interior_240705.fbx - artifactKey: Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/interior_240705.fbx using Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1df003b4dcbd1b2e1d9605da7d7b08f') in 1.068488 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 613 -======================================================================== -Received Import Request. - Time since last request: 383.334612 seconds. - path: Assets/Resources/3D Model/prefabs/interior_view_cgr.prefab - artifactKey: Guid(a17f49f2874002f4eb0be0b76b2ea37a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/prefabs/interior_view_cgr.prefab using Guid(a17f49f2874002f4eb0be0b76b2ea37a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cbf81227ea35e4640585eeb0cb102a1') in 0.142421 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 881 -======================================================================== -Received Import Request. - Time since last request: 808.925401 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/Material_1.008_glass.mat - artifactKey: Guid(aa70b09f0f727544d9e1aa4497e0ea91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/Material_1.008_glass.mat using Guid(aa70b09f0f727544d9e1aa4497e0ea91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '246a633bbdecdf94df33c3b8eafe7655') in 0.019024 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 131.527508 seconds. - path: Assets/Train_Yard_Environment/Materials/ConcreteDamaged2.mat - artifactKey: Guid(5c8931575d9884f4cab93f0082e6a2d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/ConcreteDamaged2.mat using Guid(5c8931575d9884f4cab93f0082e6a2d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '737b77d25083ab2334db1cc892a5984b') in 0.033601 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 0.000014 seconds. - path: Assets/Train_Yard_Environment/Materials/ConcreteDamagedDark.mat - artifactKey: Guid(3b970ba43c9033a488d5d83b9cd1230d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/ConcreteDamagedDark.mat using Guid(3b970ba43c9033a488d5d83b9cd1230d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8fc5ec0d38b614b342378827fa185033') in 0.035893 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 4.280227 seconds. - path: Assets/Korail/Art/Material/Material_2/Frozen white metal.mat - artifactKey: Guid(7fed9d9b247a5d642b2b20bdd837fc70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Material/Material_2/Frozen white metal.mat using Guid(7fed9d9b247a5d642b2b20bdd837fc70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd85224480de1c2d9f292f6a4e33561bb') in 0.005170 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.045020 seconds. - path: Assets/Train_Yard_Environment/Materials/MetalWall.mat - artifactKey: Guid(4714c87e8fb9f4e4cb6597b297545fdb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/MetalWall.mat using Guid(4714c87e8fb9f4e4cb6597b297545fdb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b89246265e090e720dbd980c3bda24c') in 0.032676 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000011 seconds. - path: Assets/Train_Yard_Environment/Materials/MetalWallBlue.mat - artifactKey: Guid(0607ce9cd12d12f44bc05b8549908c69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/MetalWallBlue.mat using Guid(0607ce9cd12d12f44bc05b8549908c69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca4cb001077839c90ff175e2ea801cb8') in 0.022405 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 70.951498 seconds. - path: Assets/Train_Yard_Environment/Materials/Box.mat - artifactKey: Guid(97761a4657013d54892ffdd98b3f136c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/Box.mat using Guid(97761a4657013d54892ffdd98b3f136c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe3485625ecae5ff2f068a51e07b9db2') in 0.059569 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 2.104873 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #118.mat - artifactKey: Guid(4ce3123be0b58234a8ffb62be9159251) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #118.mat using Guid(4ce3123be0b58234a8ffb62be9159251) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f555258305bcbb6c54b23fd07e20c94') in 0.029312 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.009945 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #126.mat - artifactKey: Guid(3243a8d9461fb094ba07326f7cc6571e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #126.mat using Guid(3243a8d9461fb094ba07326f7cc6571e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f2a61dd012892b1063d53f03dfd269c') in 0.014005 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #131.mat - artifactKey: Guid(7571caa7d9aaa2142880bb87ff2d2709) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #131.mat using Guid(7571caa7d9aaa2142880bb87ff2d2709) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90db1d5270408343fd6081a80b875483') in 0.011859 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.007442 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #134.mat - artifactKey: Guid(a05b8a13bceb0ff43a45de2dcc5b4d2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #134.mat using Guid(a05b8a13bceb0ff43a45de2dcc5b4d2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '505f258440bbddca6c92717741db0fbc') in 0.013421 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000015 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #151.mat - artifactKey: Guid(1a9749538dd7f9948a9d2d67f2890c8b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #151.mat using Guid(1a9749538dd7f9948a9d2d67f2890c8b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9321339c78ebc53dc8438f863d3b2048') in 0.011164 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.010512 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #164.mat - artifactKey: Guid(efa35a2983a29344194f585d14dfcfa5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #164.mat using Guid(efa35a2983a29344194f585d14dfcfa5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94bfe464459ebc688abd971707a4d689') in 0.013245 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000011 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #120.mat - artifactKey: Guid(fb3ad38d857ca4f4d993c446ec68d68c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #120.mat using Guid(fb3ad38d857ca4f4d993c446ec68d68c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f14bb61adfcdddd8d61410165635f4b') in 0.012611 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #127.mat - artifactKey: Guid(e95fd7a32eae54740b02cc9fddf885e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #127.mat using Guid(e95fd7a32eae54740b02cc9fddf885e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '003d1846b34ceb473d41a56bf7057819') in 0.012122 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #141.mat - artifactKey: Guid(da8e551fac38dbb40bc84cf79f66ab48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #141.mat using Guid(da8e551fac38dbb40bc84cf79f66ab48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c97e7a530e10d12b952999dbcc4ce67') in 0.010819 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file +Number of asset objects unloaded after import = 10491 diff --git a/Logs/AssetImportWorker10.log b/Logs/AssetImportWorker10.log deleted file mode 100644 index 56444f5..0000000 --- a/Logs/AssetImportWorker10.log +++ /dev/null @@ -1,5428 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker10 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker10.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [33992] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 876725109 [EditorId] 876725109 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [33992] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 876725109 [EditorId] 876725109 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 20.51 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56628 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.012734 seconds. -- Loaded All Assemblies, in 0.383 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 386 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.580 seconds -Domain Reload Profiling: 960ms - BeginReloadAssembly (111ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (39ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (57ms) - LoadAllAssembliesAndSetupDomain (168ms) - LoadAssemblies (110ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (158ms) - TypeCache.Refresh (157ms) - TypeCache.ScanAssembly (147ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (580ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (546ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (456ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (53ms) - ProcessInitializeOnLoadMethodAttributes (33ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.821 seconds -Refreshing native plugins compatible for Editor in 8.46 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.593 seconds -Domain Reload Profiling: 1411ms - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (662ms) - LoadAssemblies (322ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (391ms) - TypeCache.Refresh (361ms) - TypeCache.ScanAssembly (346ms) - ScanForSourceGeneratedMonoScriptInfo (25ms) - ResolveRequiredComponents (5ms) - FinalizeReload (594ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (452ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (286ms) - ProcessInitializeOnLoadMethodAttributes (38ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 7.07 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.416200 ms (FindLiveObjects: 0.227000 ms CreateObjectMapping: 0.076600 ms MarkObjects: 2.736500 ms DeleteObjects: 0.375100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.583 seconds -Refreshing native plugins compatible for Editor in 10.10 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.863 seconds -Domain Reload Profiling: 1441ms - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (398ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (863ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (363ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (216ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 12.13 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5700. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.554300 ms (FindLiveObjects: 0.240300 ms CreateObjectMapping: 0.089100 ms MarkObjects: 1.855100 ms DeleteObjects: 0.369100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.596 seconds -Refreshing native plugins compatible for Editor in 10.03 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.883 seconds -Domain Reload Profiling: 1475ms - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (400ms) - LoadAssemblies (272ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (883ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (368ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.04 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5704. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.693000 ms (FindLiveObjects: 0.245100 ms CreateObjectMapping: 0.089000 ms MarkObjects: 1.991700 ms DeleteObjects: 0.366300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.590 seconds -Refreshing native plugins compatible for Editor in 9.00 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.850 seconds -Domain Reload Profiling: 1437ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (418ms) - LoadAssemblies (287ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (850ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (371ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (221ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.67 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5708. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.471300 ms (FindLiveObjects: 0.226800 ms CreateObjectMapping: 0.081600 ms MarkObjects: 1.795300 ms DeleteObjects: 0.367000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.561 seconds -Refreshing native plugins compatible for Editor in 8.48 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.846 seconds -Domain Reload Profiling: 1404ms - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (385ms) - LoadAssemblies (260ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (847ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (371ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.67 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5712. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.754200 ms (FindLiveObjects: 0.286200 ms CreateObjectMapping: 0.096300 ms MarkObjects: 1.985700 ms DeleteObjects: 0.385500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.558 seconds -Refreshing native plugins compatible for Editor in 10.16 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.870 seconds -Domain Reload Profiling: 1425ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (379ms) - LoadAssemblies (260ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (871ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (365ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (214ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.96 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5716. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.557800 ms (FindLiveObjects: 0.237600 ms CreateObjectMapping: 0.081800 ms MarkObjects: 1.865800 ms DeleteObjects: 0.371800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.549 seconds -Refreshing native plugins compatible for Editor in 10.92 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.845 seconds -Domain Reload Profiling: 1391ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (378ms) - LoadAssemblies (252ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (845ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (377ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 14.45 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5720. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.620900 ms (FindLiveObjects: 0.228800 ms CreateObjectMapping: 0.085400 ms MarkObjects: 1.922800 ms DeleteObjects: 0.383000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.595 seconds -Refreshing native plugins compatible for Editor in 11.99 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.879 seconds -Domain Reload Profiling: 1470ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (272ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (175ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (879ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (389ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.33 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5724. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.616100 ms (FindLiveObjects: 0.224500 ms CreateObjectMapping: 0.090000 ms MarkObjects: 1.914600 ms DeleteObjects: 0.386200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.657 seconds -Refreshing native plugins compatible for Editor in 11.22 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.996 seconds -Domain Reload Profiling: 1650ms - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (457ms) - LoadAssemblies (324ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (197ms) - TypeCache.Refresh (188ms) - TypeCache.ScanAssembly (180ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (997ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (408ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (31ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (96ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 9.79 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5728. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.524400 ms (FindLiveObjects: 0.233600 ms CreateObjectMapping: 0.082100 ms MarkObjects: 1.833800 ms DeleteObjects: 0.374400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.593 seconds -Refreshing native plugins compatible for Editor in 11.13 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.864 seconds -Domain Reload Profiling: 1454ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (408ms) - LoadAssemblies (272ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (196ms) - TypeCache.Refresh (189ms) - TypeCache.ScanAssembly (180ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (864ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (35ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.12 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5732. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.485500 ms (FindLiveObjects: 0.246600 ms CreateObjectMapping: 0.092000 ms MarkObjects: 1.765700 ms DeleteObjects: 0.380400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.557 seconds -Refreshing native plugins compatible for Editor in 9.18 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.856 seconds -Domain Reload Profiling: 1409ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (384ms) - LoadAssemblies (261ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (856ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (372ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 12.18 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5736. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 3.190500 ms (FindLiveObjects: 0.275700 ms CreateObjectMapping: 0.090700 ms MarkObjects: 2.256600 ms DeleteObjects: 0.566700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.632 seconds -Refreshing native plugins compatible for Editor in 10.15 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.968 seconds -Domain Reload Profiling: 1595ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (438ms) - LoadAssemblies (310ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (180ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (969ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 7.58 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5740. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 3.086100 ms (FindLiveObjects: 0.349600 ms CreateObjectMapping: 0.112000 ms MarkObjects: 2.139400 ms DeleteObjects: 0.484300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.585 seconds -Refreshing native plugins compatible for Editor in 10.86 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.875 seconds -Domain Reload Profiling: 1457ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (406ms) - LoadAssemblies (286ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (875ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (369ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (222ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 8.21 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5744. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.435600 ms (FindLiveObjects: 0.217000 ms CreateObjectMapping: 0.082700 ms MarkObjects: 1.769700 ms DeleteObjects: 0.365400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.585 seconds -Refreshing native plugins compatible for Editor in 8.78 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.888 seconds -Domain Reload Profiling: 1468ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (406ms) - LoadAssemblies (270ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (192ms) - TypeCache.Refresh (187ms) - TypeCache.ScanAssembly (178ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (888ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (393ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (29ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 8.59 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5748. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.779900 ms (FindLiveObjects: 0.235700 ms CreateObjectMapping: 0.086900 ms MarkObjects: 2.029000 ms DeleteObjects: 0.427700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.579 seconds -Refreshing native plugins compatible for Editor in 11.06 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.855 seconds -Domain Reload Profiling: 1431ms - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (403ms) - LoadAssemblies (271ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (855ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (372ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.25 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5752. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.529600 ms (FindLiveObjects: 0.216400 ms CreateObjectMapping: 0.076300 ms MarkObjects: 1.864300 ms DeleteObjects: 0.371700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.576 seconds -Refreshing native plugins compatible for Editor in 9.45 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.877 seconds -Domain Reload Profiling: 1450ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (403ms) - LoadAssemblies (257ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (198ms) - TypeCache.Refresh (194ms) - TypeCache.ScanAssembly (187ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (877ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (393ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 10.25 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5756. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.484100 ms (FindLiveObjects: 0.226900 ms CreateObjectMapping: 0.083000 ms MarkObjects: 1.792600 ms DeleteObjects: 0.381100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.622 seconds -Refreshing native plugins compatible for Editor in 7.09 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.943 seconds -Domain Reload Profiling: 1562ms - BeginReloadAssembly (151ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (419ms) - LoadAssemblies (310ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (180ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (943ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (381ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.20 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5760. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.799500 ms (FindLiveObjects: 0.253900 ms CreateObjectMapping: 0.089900 ms MarkObjects: 2.062800 ms DeleteObjects: 0.392000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.571 seconds -Refreshing native plugins compatible for Editor in 8.38 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.863 seconds -Domain Reload Profiling: 1431ms - BeginReloadAssembly (119ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (275ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (863ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (385ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.23 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5764. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.621000 ms (FindLiveObjects: 0.229700 ms CreateObjectMapping: 0.082900 ms MarkObjects: 1.923100 ms DeleteObjects: 0.384700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.621 seconds -Refreshing native plugins compatible for Editor in 9.78 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 1.593 seconds -Domain Reload Profiling: 2210ms - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (424ms) - LoadAssemblies (297ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1593ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (389ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 9.19 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5768. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.802700 ms (FindLiveObjects: 0.248100 ms CreateObjectMapping: 0.098600 ms MarkObjects: 2.051800 ms DeleteObjects: 0.403500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.645 seconds -Refreshing native plugins compatible for Editor in 10.78 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.981 seconds -Domain Reload Profiling: 1622ms - BeginReloadAssembly (135ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (448ms) - LoadAssemblies (304ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (207ms) - TypeCache.Refresh (202ms) - TypeCache.ScanAssembly (193ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (982ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (413ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 9.56 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5772. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.790400 ms (FindLiveObjects: 0.233700 ms CreateObjectMapping: 0.094500 ms MarkObjects: 2.072300 ms DeleteObjects: 0.389400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.585 seconds -Refreshing native plugins compatible for Editor in 9.03 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.904 seconds -Domain Reload Profiling: 1485ms - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (402ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (904ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (402ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (31ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.81 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5776. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.560100 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.080300 ms MarkObjects: 1.873000 ms DeleteObjects: 0.379400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.601 seconds -Refreshing native plugins compatible for Editor in 9.51 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.870 seconds -Domain Reload Profiling: 1467ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (420ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (195ms) - TypeCache.Refresh (190ms) - TypeCache.ScanAssembly (182ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (871ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (381ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 14.09 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5780. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.591400 ms (FindLiveObjects: 0.235000 ms CreateObjectMapping: 0.089000 ms MarkObjects: 1.863000 ms DeleteObjects: 0.403700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 7.99 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.871 seconds -Domain Reload Profiling: 1458ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (405ms) - LoadAssemblies (272ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (192ms) - TypeCache.Refresh (187ms) - TypeCache.ScanAssembly (179ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (871ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.42 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5784. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.598200 ms (FindLiveObjects: 0.232100 ms CreateObjectMapping: 0.144800 ms MarkObjects: 1.799600 ms DeleteObjects: 0.421000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.599 seconds -Refreshing native plugins compatible for Editor in 9.36 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.896 seconds -Domain Reload Profiling: 1492ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (420ms) - LoadAssemblies (272ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (204ms) - TypeCache.Refresh (199ms) - TypeCache.ScanAssembly (192ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (897ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (394ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (30ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 11.18 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5788. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.828000 ms (FindLiveObjects: 0.265600 ms CreateObjectMapping: 0.092300 ms MarkObjects: 1.998500 ms DeleteObjects: 0.471100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.617 seconds -Refreshing native plugins compatible for Editor in 9.95 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.922 seconds -Domain Reload Profiling: 1535ms - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (422ms) - LoadAssemblies (300ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (923ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (401ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 10.71 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5792. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 3.959100 ms (FindLiveObjects: 0.383600 ms CreateObjectMapping: 0.156400 ms MarkObjects: 2.759900 ms DeleteObjects: 0.658200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.637 seconds -Refreshing native plugins compatible for Editor in 9.26 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.929 seconds -Domain Reload Profiling: 1561ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (444ms) - LoadAssemblies (314ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (190ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (929ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.91 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5796. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.615800 ms (FindLiveObjects: 0.246600 ms CreateObjectMapping: 0.087600 ms MarkObjects: 1.906400 ms DeleteObjects: 0.374800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.591 seconds -Refreshing native plugins compatible for Editor in 8.64 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.919 seconds -Domain Reload Profiling: 1506ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (405ms) - LoadAssemblies (283ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (919ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.51 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5800. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 3.277400 ms (FindLiveObjects: 0.249800 ms CreateObjectMapping: 0.190800 ms MarkObjects: 2.261600 ms DeleteObjects: 0.574500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.590 seconds -Refreshing native plugins compatible for Editor in 10.18 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.906 seconds -Domain Reload Profiling: 1493ms - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (394ms) - LoadAssemblies (273ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (907ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 9.59 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5804. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.752800 ms (FindLiveObjects: 0.228000 ms CreateObjectMapping: 0.090000 ms MarkObjects: 1.999500 ms DeleteObjects: 0.434600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.600 seconds -Refreshing native plugins compatible for Editor in 9.14 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.900 seconds -Domain Reload Profiling: 1494ms - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (415ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (174ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (900ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (379ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.80 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5808. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.603400 ms (FindLiveObjects: 0.245300 ms CreateObjectMapping: 0.087600 ms MarkObjects: 1.856900 ms DeleteObjects: 0.412900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.623 seconds -Refreshing native plugins compatible for Editor in 7.58 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.889 seconds -Domain Reload Profiling: 1508ms - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (416ms) - LoadAssemblies (299ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (889ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (392ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.88 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5812. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.559500 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.101100 ms MarkObjects: 1.816000 ms DeleteObjects: 0.402300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.610 seconds -Refreshing native plugins compatible for Editor in 8.97 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.929 seconds -Domain Reload Profiling: 1534ms - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (418ms) - LoadAssemblies (293ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (929ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (384ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.10 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5816. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.491300 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.081900 ms MarkObjects: 1.808400 ms DeleteObjects: 0.374500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.591 seconds -Refreshing native plugins compatible for Editor in 8.63 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.903 seconds -Domain Reload Profiling: 1490ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (401ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (185ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (903ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (389ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (38ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.17 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5820. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.894100 ms (FindLiveObjects: 0.291900 ms CreateObjectMapping: 0.107100 ms MarkObjects: 2.076400 ms DeleteObjects: 0.417900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.590 seconds -Refreshing native plugins compatible for Editor in 9.13 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.953 seconds -Domain Reload Profiling: 1539ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (400ms) - LoadAssemblies (279ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (174ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (953ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.72 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5824. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.665700 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.083600 ms MarkObjects: 1.958100 ms DeleteObjects: 0.394400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.581 seconds -Refreshing native plugins compatible for Editor in 8.62 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.938 seconds -Domain Reload Profiling: 1515ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (273ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (938ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (403ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (18ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 10.86 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5828. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.931600 ms (FindLiveObjects: 0.290400 ms CreateObjectMapping: 0.118000 ms MarkObjects: 1.915600 ms DeleteObjects: 0.606400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.597 seconds -Refreshing native plugins compatible for Editor in 8.86 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.932 seconds -Domain Reload Profiling: 1525ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (408ms) - LoadAssemblies (286ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (933ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.18 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5832. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.719500 ms (FindLiveObjects: 0.313300 ms CreateObjectMapping: 0.117500 ms MarkObjects: 1.901300 ms DeleteObjects: 0.386700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.617 seconds -Refreshing native plugins compatible for Editor in 9.37 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.907 seconds -Domain Reload Profiling: 1519ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (421ms) - LoadAssemblies (296ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (185ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (908ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.45 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5836. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 2.668100 ms (FindLiveObjects: 0.235800 ms CreateObjectMapping: 0.091500 ms MarkObjects: 1.909200 ms DeleteObjects: 0.430500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.604 seconds -Refreshing native plugins compatible for Editor in 9.91 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.916 seconds -Domain Reload Profiling: 1516ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (417ms) - LoadAssemblies (281ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (197ms) - TypeCache.Refresh (188ms) - TypeCache.ScanAssembly (181ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (916ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (28ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.83 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5840. -Memory consumption went from 202.0 MB to 200.4 MB. -Total: 3.014900 ms (FindLiveObjects: 0.262600 ms CreateObjectMapping: 0.116000 ms MarkObjects: 2.152900 ms DeleteObjects: 0.482800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.579 seconds -Refreshing native plugins compatible for Editor in 8.95 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.904 seconds -Domain Reload Profiling: 1479ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (397ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (905ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (392ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 10.08 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5844. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.924800 ms (FindLiveObjects: 0.259100 ms CreateObjectMapping: 0.088600 ms MarkObjects: 2.175400 ms DeleteObjects: 0.401000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.597 seconds -Refreshing native plugins compatible for Editor in 9.71 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.927 seconds -Domain Reload Profiling: 1521ms - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (285ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (927ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.45 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5848. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.568200 ms (FindLiveObjects: 0.247600 ms CreateObjectMapping: 0.084500 ms MarkObjects: 1.825900 ms DeleteObjects: 0.409500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.606 seconds -Refreshing native plugins compatible for Editor in 9.92 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.930 seconds -Domain Reload Profiling: 1532ms - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (417ms) - LoadAssemblies (292ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (930ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.33 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5852. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 3.417000 ms (FindLiveObjects: 0.260600 ms CreateObjectMapping: 0.092400 ms MarkObjects: 2.607800 ms DeleteObjects: 0.455300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.579 seconds -Refreshing native plugins compatible for Editor in 11.25 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.916 seconds -Domain Reload Profiling: 1491ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (392ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (916ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (396ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 10.00 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5856. -Memory consumption went from 202.1 MB to 200.5 MB. -Total: 2.677400 ms (FindLiveObjects: 0.289500 ms CreateObjectMapping: 0.101400 ms MarkObjects: 1.845200 ms DeleteObjects: 0.440400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.612 seconds -Refreshing native plugins compatible for Editor in 8.64 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.889 seconds -Domain Reload Profiling: 1498ms - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (411ms) - LoadAssemblies (291ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (889ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (376ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.65 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5860. -Memory consumption went from 202.1 MB to 200.5 MB. -Total: 2.657900 ms (FindLiveObjects: 0.267200 ms CreateObjectMapping: 0.106400 ms MarkObjects: 1.912100 ms DeleteObjects: 0.371300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.598 seconds -Refreshing native plugins compatible for Editor in 8.32 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.901 seconds -Domain Reload Profiling: 1496ms - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (279ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (901ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (375ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 10.85 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5864. -Memory consumption went from 202.1 MB to 200.5 MB. -Total: 2.802700 ms (FindLiveObjects: 0.257800 ms CreateObjectMapping: 0.092400 ms MarkObjects: 2.023000 ms DeleteObjects: 0.428800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.610 seconds -Refreshing native plugins compatible for Editor in 9.93 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.930 seconds -Domain Reload Profiling: 1536ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (427ms) - LoadAssemblies (301ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (930ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (410ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 8.34 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5868. -Memory consumption went from 202.1 MB to 200.5 MB. -Total: 3.010400 ms (FindLiveObjects: 0.272000 ms CreateObjectMapping: 0.096000 ms MarkObjects: 2.089200 ms DeleteObjects: 0.552600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.588 seconds -Refreshing native plugins compatible for Editor in 9.85 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.911 seconds -Domain Reload Profiling: 1495ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (911ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 10.64 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5872. -Memory consumption went from 202.1 MB to 200.5 MB. -Total: 3.757200 ms (FindLiveObjects: 0.244800 ms CreateObjectMapping: 0.088000 ms MarkObjects: 2.804900 ms DeleteObjects: 0.618600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.600 seconds -Refreshing native plugins compatible for Editor in 9.88 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.910 seconds -Domain Reload Profiling: 1507ms - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (417ms) - LoadAssemblies (287ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (911ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (388ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 9.42 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5876. -Memory consumption went from 202.1 MB to 200.5 MB. -Total: 2.608700 ms (FindLiveObjects: 0.251400 ms CreateObjectMapping: 0.088100 ms MarkObjects: 1.860700 ms DeleteObjects: 0.407800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.603 seconds -Refreshing native plugins compatible for Editor in 9.89 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.951 seconds -Domain Reload Profiling: 1551ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (414ms) - LoadAssemblies (285ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (194ms) - TypeCache.Refresh (189ms) - TypeCache.ScanAssembly (181ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (952ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (385ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.65 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5880. -Memory consumption went from 202.2 MB to 200.5 MB. -Total: 2.621100 ms (FindLiveObjects: 0.293300 ms CreateObjectMapping: 0.094000 ms MarkObjects: 1.822200 ms DeleteObjects: 0.410500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 419588.903129 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #115.mat - artifactKey: Guid(ec2234be9f5f6114a92ae219b362005f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #115.mat using Guid(ec2234be9f5f6114a92ae219b362005f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19154123758e6d5e211ead437661248f') in 0.120333 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 2.268740 seconds. - path: Assets/Train_Yard_Environment/Materials/MetalWallWhite.mat - artifactKey: Guid(ac4549fbe9991a2439e927990a8ac265) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/MetalWallWhite.mat using Guid(ac4549fbe9991a2439e927990a8ac265) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90f6ab2c2fd7089999546fa4aff15a1b') in 0.054114 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Materials/MetalWallWhiteBlue.mat - artifactKey: Guid(8e95b48f01c6f7146aa151dda2f605bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/MetalWallWhiteBlue.mat using Guid(8e95b48f01c6f7146aa151dda2f605bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e36c88a5b8cf5ddbc21c2fc3987656ba') in 0.044496 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 165.789784 seconds. - path: Assets/Train_Yard_Environment/Materials/TrashBin.mat - artifactKey: Guid(6a9fd216f5296f14eb7b9022d5f064c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/TrashBin.mat using Guid(6a9fd216f5296f14eb7b9022d5f064c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7e1dc39a81a2427564f365fbb773925') in 0.074868 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 5890.761785 seconds. - path: Assets/TreePackVol.1/Prefabs/4/Tree2.prefab - artifactKey: Guid(7ac48eb86e054ec44ab1babb2e2cd05b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TreePackVol.1/Prefabs/4/Tree2.prefab using Guid(7ac48eb86e054ec44ab1babb2e2cd05b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92fb9cd2a687b1b7959dd0f24672b269') in 0.185591 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 19 -======================================================================== -Received Import Request. - Time since last request: 0.000066 seconds. - path: Assets/TreePackVol.1/Prefabs/4/Tree4.prefab - artifactKey: Guid(108a9b0040f11c84887400f5deeebe23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TreePackVol.1/Prefabs/4/Tree4.prefab using Guid(108a9b0040f11c84887400f5deeebe23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd74d686248e9faac4dacf4b5072ae7d8') in 0.040317 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 19 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 2.973 seconds -Refreshing native plugins compatible for Editor in 8.16 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 10.554 seconds -Domain Reload Profiling: 13524ms - BeginReloadAssembly (265ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (130ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (2642ms) - LoadAssemblies (2360ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (353ms) - TypeCache.Refresh (348ms) - TypeCache.ScanAssembly (323ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (10554ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (401ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 9.03 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5927. -Memory consumption went from 202.9 MB to 201.3 MB. -Total: 3.497900 ms (FindLiveObjects: 0.241300 ms CreateObjectMapping: 0.089100 ms MarkObjects: 2.756900 ms DeleteObjects: 0.409500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 411.453479 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '785f9f83597c84a2fff1030d029f6ebc') in 0.055128 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.582 seconds -Refreshing native plugins compatible for Editor in 7.13 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.879 seconds -Domain Reload Profiling: 1458ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (397ms) - LoadAssemblies (264ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (196ms) - TypeCache.Refresh (191ms) - TypeCache.ScanAssembly (182ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (879ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (379ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.01 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5931. -Memory consumption went from 203.0 MB to 201.3 MB. -Total: 2.831400 ms (FindLiveObjects: 0.389100 ms CreateObjectMapping: 0.096600 ms MarkObjects: 1.925500 ms DeleteObjects: 0.419400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.549 seconds -Refreshing native plugins compatible for Editor in 7.44 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.799 seconds -Domain Reload Profiling: 1345ms - BeginReloadAssembly (113ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (377ms) - LoadAssemblies (247ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (799ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (368ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (222ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.38 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5935. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.587200 ms (FindLiveObjects: 0.259100 ms CreateObjectMapping: 0.094100 ms MarkObjects: 1.832000 ms DeleteObjects: 0.401200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.532 seconds -Refreshing native plugins compatible for Editor in 7.67 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.799 seconds -Domain Reload Profiling: 1327ms - BeginReloadAssembly (120ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (359ms) - LoadAssemblies (248ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (168ms) - TypeCache.Refresh (163ms) - TypeCache.ScanAssembly (156ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (799ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (376ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.65 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5939. -Memory consumption went from 203.2 MB to 201.6 MB. -Total: 2.724300 ms (FindLiveObjects: 0.246000 ms CreateObjectMapping: 0.085800 ms MarkObjects: 1.939400 ms DeleteObjects: 0.452300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.526 seconds -Refreshing native plugins compatible for Editor in 7.75 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.811 seconds -Domain Reload Profiling: 1334ms - BeginReloadAssembly (110ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (365ms) - LoadAssemblies (241ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (169ms) - TypeCache.Refresh (164ms) - TypeCache.ScanAssembly (157ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (811ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (372ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.40 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5943. -Memory consumption went from 203.2 MB to 201.6 MB. -Total: 2.783600 ms (FindLiveObjects: 0.273700 ms CreateObjectMapping: 0.101200 ms MarkObjects: 1.915400 ms DeleteObjects: 0.492300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.533 seconds -Refreshing native plugins compatible for Editor in 6.68 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.784 seconds -Domain Reload Profiling: 1314ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (356ms) - LoadAssemblies (233ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (171ms) - TypeCache.Refresh (167ms) - TypeCache.ScanAssembly (159ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (784ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (372ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.96 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5947. -Memory consumption went from 203.2 MB to 201.6 MB. -Total: 2.797100 ms (FindLiveObjects: 0.265800 ms CreateObjectMapping: 0.091800 ms MarkObjects: 2.040400 ms DeleteObjects: 0.398200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.525 seconds -Refreshing native plugins compatible for Editor in 8.41 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.803 seconds -Domain Reload Profiling: 1325ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (357ms) - LoadAssemblies (241ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (169ms) - TypeCache.Refresh (165ms) - TypeCache.ScanAssembly (158ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (803ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (377ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.54 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5951. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.547400 ms (FindLiveObjects: 0.255400 ms CreateObjectMapping: 0.087900 ms MarkObjects: 1.802800 ms DeleteObjects: 0.400400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.577 seconds -Refreshing native plugins compatible for Editor in 8.35 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 1.537 seconds -Domain Reload Profiling: 2111ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (397ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1537ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (426ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (34ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (96ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.09 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5955. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.577300 ms (FindLiveObjects: 0.248400 ms CreateObjectMapping: 0.089800 ms MarkObjects: 1.860500 ms DeleteObjects: 0.378000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.543 seconds -Refreshing native plugins compatible for Editor in 8.43 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.868 seconds -Domain Reload Profiling: 1409ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (377ms) - LoadAssemblies (253ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (868ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (388ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (30ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 8.37 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5959. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.484000 ms (FindLiveObjects: 0.234000 ms CreateObjectMapping: 0.080400 ms MarkObjects: 1.808300 ms DeleteObjects: 0.360500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.576 seconds -Refreshing native plugins compatible for Editor in 8.85 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.869 seconds -Domain Reload Profiling: 1442ms - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (869ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (376ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.73 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5963. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.683600 ms (FindLiveObjects: 0.263800 ms CreateObjectMapping: 0.091600 ms MarkObjects: 1.932400 ms DeleteObjects: 0.395000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.545 seconds -Refreshing native plugins compatible for Editor in 7.60 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.860 seconds -Domain Reload Profiling: 1402ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (375ms) - LoadAssemblies (250ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (860ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (375ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (221ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 13.23 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5967. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.688000 ms (FindLiveObjects: 0.242700 ms CreateObjectMapping: 0.098000 ms MarkObjects: 1.948800 ms DeleteObjects: 0.397600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.603 seconds -Refreshing native plugins compatible for Editor in 8.67 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.889 seconds -Domain Reload Profiling: 1489ms - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (414ms) - LoadAssemblies (284ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (190ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (889ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 9.65 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5971. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.935800 ms (FindLiveObjects: 0.298300 ms CreateObjectMapping: 0.109800 ms MarkObjects: 2.061900 ms DeleteObjects: 0.464800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.560 seconds -Refreshing native plugins compatible for Editor in 9.45 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.858 seconds -Domain Reload Profiling: 1414ms - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (380ms) - LoadAssemblies (256ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (858ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (375ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.32 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5975. -Memory consumption went from 203.2 MB to 201.6 MB. -Total: 3.232200 ms (FindLiveObjects: 0.320200 ms CreateObjectMapping: 0.122000 ms MarkObjects: 2.352500 ms DeleteObjects: 0.436400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.569 seconds -Refreshing native plugins compatible for Editor in 8.77 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.876 seconds -Domain Reload Profiling: 1442ms - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (394ms) - LoadAssemblies (269ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (876ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 8.20 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5979. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.575900 ms (FindLiveObjects: 0.248600 ms CreateObjectMapping: 0.095700 ms MarkObjects: 1.780500 ms DeleteObjects: 0.450200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.577 seconds -Refreshing native plugins compatible for Editor in 8.71 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.901 seconds -Domain Reload Profiling: 1474ms - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (392ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (901ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (388ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 8.32 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5983. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.654600 ms (FindLiveObjects: 0.260300 ms CreateObjectMapping: 0.094600 ms MarkObjects: 1.894000 ms DeleteObjects: 0.405000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.573 seconds -Refreshing native plugins compatible for Editor in 8.28 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.854 seconds -Domain Reload Profiling: 1424ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (386ms) - LoadAssemblies (266ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (855ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (377ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.55 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5987. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.734000 ms (FindLiveObjects: 0.248900 ms CreateObjectMapping: 0.092500 ms MarkObjects: 1.962400 ms DeleteObjects: 0.429400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.559 seconds -Refreshing native plugins compatible for Editor in 9.21 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.879 seconds -Domain Reload Profiling: 1434ms - BeginReloadAssembly (120ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (382ms) - LoadAssemblies (260ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (879ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.52 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5991. -Memory consumption went from 203.3 MB to 201.6 MB. -Total: 2.548000 ms (FindLiveObjects: 0.256300 ms CreateObjectMapping: 0.090000 ms MarkObjects: 1.813600 ms DeleteObjects: 0.387300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 7.81 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.885 seconds -Domain Reload Profiling: 1473ms - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (278ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (885ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (386ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (17ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.41 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5995. -Memory consumption went from 203.4 MB to 201.8 MB. -Total: 2.755500 ms (FindLiveObjects: 0.262600 ms CreateObjectMapping: 0.090500 ms MarkObjects: 1.995100 ms DeleteObjects: 0.406500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 8.28 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.883 seconds -Domain Reload Profiling: 1472ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (286ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (884ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (390ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.10 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5999. -Memory consumption went from 203.4 MB to 201.8 MB. -Total: 2.541500 ms (FindLiveObjects: 0.262800 ms CreateObjectMapping: 0.094100 ms MarkObjects: 1.809900 ms DeleteObjects: 0.374000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.573 seconds -Refreshing native plugins compatible for Editor in 8.29 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.870 seconds -Domain Reload Profiling: 1440ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (386ms) - LoadAssemblies (269ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (870ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.80 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6003. -Memory consumption went from 203.4 MB to 201.8 MB. -Total: 2.706500 ms (FindLiveObjects: 0.243500 ms CreateObjectMapping: 0.085100 ms MarkObjects: 1.944500 ms DeleteObjects: 0.432600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.576 seconds -Refreshing native plugins compatible for Editor in 9.11 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.874 seconds -Domain Reload Profiling: 1447ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (394ms) - LoadAssemblies (269ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (874ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 10.16 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6007. -Memory consumption went from 203.5 MB to 201.8 MB. -Total: 2.595400 ms (FindLiveObjects: 0.245600 ms CreateObjectMapping: 0.086100 ms MarkObjects: 1.857900 ms DeleteObjects: 0.404900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.580 seconds -Refreshing native plugins compatible for Editor in 9.20 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.881 seconds -Domain Reload Profiling: 1456ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (381ms) - LoadAssemblies (267ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (882ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (387ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.89 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6011. -Memory consumption went from 203.5 MB to 201.8 MB. -Total: 2.801700 ms (FindLiveObjects: 0.261500 ms CreateObjectMapping: 0.103700 ms MarkObjects: 2.056000 ms DeleteObjects: 0.379400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.574 seconds -Refreshing native plugins compatible for Editor in 7.75 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.845 seconds -Domain Reload Profiling: 1415ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (391ms) - LoadAssemblies (269ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (846ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (369ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.65 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6015. -Memory consumption went from 203.5 MB to 201.8 MB. -Total: 2.712400 ms (FindLiveObjects: 0.256200 ms CreateObjectMapping: 0.086900 ms MarkObjects: 1.967500 ms DeleteObjects: 0.400400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/Logs/AssetImportWorker11.log b/Logs/AssetImportWorker11.log deleted file mode 100644 index 2529cf1..0000000 --- a/Logs/AssetImportWorker11.log +++ /dev/null @@ -1,5644 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker11 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker11.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [47504] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2626989309 [EditorId] 2626989309 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [47504] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2626989309 [EditorId] 2626989309 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 18.36 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56376 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.012809 seconds. -- Loaded All Assemblies, in 0.382 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 386 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.582 seconds -Domain Reload Profiling: 961ms - BeginReloadAssembly (109ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (37ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (56ms) - LoadAllAssembliesAndSetupDomain (170ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (159ms) - TypeCache.Refresh (159ms) - TypeCache.ScanAssembly (150ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (582ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (547ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (457ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (53ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.821 seconds -Refreshing native plugins compatible for Editor in 7.98 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.584 seconds -Domain Reload Profiling: 1402ms - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (662ms) - LoadAssemblies (323ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (391ms) - TypeCache.Refresh (361ms) - TypeCache.ScanAssembly (345ms) - ScanForSourceGeneratedMonoScriptInfo (25ms) - ResolveRequiredComponents (4ms) - FinalizeReload (584ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (450ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (295ms) - ProcessInitializeOnLoadMethodAttributes (35ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 8.25 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 2.938200 ms (FindLiveObjects: 0.234300 ms CreateObjectMapping: 0.102100 ms MarkObjects: 2.217300 ms DeleteObjects: 0.383900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.588 seconds -Refreshing native plugins compatible for Editor in 9.85 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.876 seconds -Domain Reload Profiling: 1459ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (402ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (876ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (375ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 10.65 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5700. -Memory consumption went from 202.0 MB to 200.3 MB. -Total: 2.859200 ms (FindLiveObjects: 0.396800 ms CreateObjectMapping: 0.143200 ms MarkObjects: 1.969800 ms DeleteObjects: 0.348400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 415106.095375 seconds. - path: Assets/Resources/3D Model/fbx/tmp_cap_combined.prefab - artifactKey: Guid(f46d14fe98ef8f54c84048f7ee65afd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/tmp_cap_combined.prefab using Guid(f46d14fe98ef8f54c84048f7ee65afd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f804d0c7f5463820963d3acab8374132') in 0.062391 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 12 -======================================================================== -Received Import Request. - Time since last request: 10.345791 seconds. - path: Assets/Resources/3D Model/fbx/interior_240705.fbx - artifactKey: Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/interior_240705.fbx using Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1630022f8ee43467ab5479385773978') in 4.737063 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5835 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.600 seconds -Refreshing native plugins compatible for Editor in 10.10 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.888 seconds -Domain Reload Profiling: 1484ms - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (175ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (889ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (376ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.96 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5747. -Memory consumption went from 205.4 MB to 203.7 MB. -Total: 2.548100 ms (FindLiveObjects: 0.224400 ms CreateObjectMapping: 0.094600 ms MarkObjects: 1.846500 ms DeleteObjects: 0.382100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 35.998634 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3b7c3ae6d6e111f9a77ac9800a54715') in 0.014967 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.590 seconds -Refreshing native plugins compatible for Editor in 8.67 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.860 seconds -Domain Reload Profiling: 1447ms - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (418ms) - LoadAssemblies (287ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (860ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.85 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5751. -Memory consumption went from 205.3 MB to 203.7 MB. -Total: 2.458500 ms (FindLiveObjects: 0.238000 ms CreateObjectMapping: 0.087300 ms MarkObjects: 1.773500 ms DeleteObjects: 0.359000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.561 seconds -Refreshing native plugins compatible for Editor in 8.86 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.853 seconds -Domain Reload Profiling: 1411ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (383ms) - LoadAssemblies (258ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (854ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.52 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5755. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 2.624500 ms (FindLiveObjects: 0.268200 ms CreateObjectMapping: 0.090800 ms MarkObjects: 1.880600 ms DeleteObjects: 0.384100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.557 seconds -Refreshing native plugins compatible for Editor in 9.58 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.873 seconds -Domain Reload Profiling: 1426ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (381ms) - LoadAssemblies (261ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (169ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (874ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (367ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (212ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.00 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5759. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 2.558000 ms (FindLiveObjects: 0.227000 ms CreateObjectMapping: 0.084100 ms MarkObjects: 1.874100 ms DeleteObjects: 0.371800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.554 seconds -Refreshing native plugins compatible for Editor in 11.72 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.840 seconds -Domain Reload Profiling: 1392ms - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (383ms) - LoadAssemblies (252ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (841ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (375ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 14.35 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5763. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 2.506100 ms (FindLiveObjects: 0.231100 ms CreateObjectMapping: 0.084300 ms MarkObjects: 1.807800 ms DeleteObjects: 0.382200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 12.37 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.887 seconds -Domain Reload Profiling: 1477ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (269ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (888ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.78 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5767. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 2.400600 ms (FindLiveObjects: 0.228500 ms CreateObjectMapping: 0.082600 ms MarkObjects: 1.716400 ms DeleteObjects: 0.372500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.661 seconds -Refreshing native plugins compatible for Editor in 12.03 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.988 seconds -Domain Reload Profiling: 1646ms - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (461ms) - LoadAssemblies (327ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (200ms) - TypeCache.Refresh (192ms) - TypeCache.ScanAssembly (183ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (5ms) - FinalizeReload (989ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (402ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (33ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (96ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.03 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5771. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 2.505500 ms (FindLiveObjects: 0.226400 ms CreateObjectMapping: 0.080000 ms MarkObjects: 1.807900 ms DeleteObjects: 0.390600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.593 seconds -Refreshing native plugins compatible for Editor in 10.99 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.866 seconds -Domain Reload Profiling: 1455ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (407ms) - LoadAssemblies (271ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (194ms) - TypeCache.Refresh (188ms) - TypeCache.ScanAssembly (180ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (866ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (384ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 6.68 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5775. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 2.419400 ms (FindLiveObjects: 0.235000 ms CreateObjectMapping: 0.082700 ms MarkObjects: 1.731000 ms DeleteObjects: 0.370000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.555 seconds -Refreshing native plugins compatible for Editor in 9.22 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.870 seconds -Domain Reload Profiling: 1422ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (384ms) - LoadAssemblies (260ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (871ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (386ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 11.00 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5779. -Memory consumption went from 205.6 MB to 203.9 MB. -Total: 3.107300 ms (FindLiveObjects: 0.289400 ms CreateObjectMapping: 0.123900 ms MarkObjects: 2.243100 ms DeleteObjects: 0.450100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.622 seconds -Refreshing native plugins compatible for Editor in 8.34 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.991 seconds -Domain Reload Profiling: 1608ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (435ms) - LoadAssemblies (300ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (195ms) - TypeCache.Refresh (185ms) - TypeCache.ScanAssembly (177ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (6ms) - FinalizeReload (991ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (386ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 7.63 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5783. -Memory consumption went from 205.6 MB to 204.0 MB. -Total: 2.959500 ms (FindLiveObjects: 0.463000 ms CreateObjectMapping: 0.119800 ms MarkObjects: 1.942600 ms DeleteObjects: 0.433200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.585 seconds -Refreshing native plugins compatible for Editor in 11.30 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.886 seconds -Domain Reload Profiling: 1466ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (407ms) - LoadAssemblies (283ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (886ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.51 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5787. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.502200 ms (FindLiveObjects: 0.213900 ms CreateObjectMapping: 0.080700 ms MarkObjects: 1.830700 ms DeleteObjects: 0.376200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.589 seconds -Refreshing native plugins compatible for Editor in 8.54 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.894 seconds -Domain Reload Profiling: 1478ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (406ms) - LoadAssemblies (271ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (193ms) - TypeCache.Refresh (188ms) - TypeCache.ScanAssembly (180ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (895ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (399ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (29ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 8.83 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5791. -Memory consumption went from 205.6 MB to 204.0 MB. -Total: 2.892500 ms (FindLiveObjects: 0.235200 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.186600 ms DeleteObjects: 0.384000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.579 seconds -Refreshing native plugins compatible for Editor in 10.04 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.859 seconds -Domain Reload Profiling: 1435ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (401ms) - LoadAssemblies (264ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (180ms) - TypeCache.ScanAssembly (172ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (859ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.04 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5795. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.539200 ms (FindLiveObjects: 0.253000 ms CreateObjectMapping: 0.092800 ms MarkObjects: 1.818300 ms DeleteObjects: 0.374400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.578 seconds -Refreshing native plugins compatible for Editor in 8.57 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.871 seconds -Domain Reload Profiling: 1446ms - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (258ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (200ms) - TypeCache.Refresh (194ms) - TypeCache.ScanAssembly (187ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (872ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (387ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 9.20 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5799. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.528200 ms (FindLiveObjects: 0.264500 ms CreateObjectMapping: 0.103000 ms MarkObjects: 1.782800 ms DeleteObjects: 0.377500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.601 seconds -Refreshing native plugins compatible for Editor in 8.52 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.965 seconds -Domain Reload Profiling: 1564ms - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (407ms) - LoadAssemblies (292ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (189ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (966ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (386ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.49 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5803. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.547600 ms (FindLiveObjects: 0.250100 ms CreateObjectMapping: 0.094200 ms MarkObjects: 1.804800 ms DeleteObjects: 0.397800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.570 seconds -Refreshing native plugins compatible for Editor in 8.86 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.855 seconds -Domain Reload Profiling: 1422ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (400ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (855ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.21 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5807. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.707800 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.095000 ms MarkObjects: 1.957700 ms DeleteObjects: 0.418400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.622 seconds -Refreshing native plugins compatible for Editor in 10.78 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 1.594 seconds -Domain Reload Profiling: 2211ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (424ms) - LoadAssemblies (297ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (189ms) - TypeCache.Refresh (185ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (1594ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (390ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 9.23 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5811. -Memory consumption went from 205.6 MB to 204.0 MB. -Total: 2.551700 ms (FindLiveObjects: 0.241500 ms CreateObjectMapping: 0.097900 ms MarkObjects: 1.792000 ms DeleteObjects: 0.419600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 964.159640 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd932db53125eb9c6ed66300d47788958') in 0.001324 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 280.311150 seconds. - path: Assets/Scenes/Mode_Selector.unity - artifactKey: Guid(2e3a9d20442640748bd2a12b321a8d46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Mode_Selector.unity using Guid(2e3a9d20442640748bd2a12b321a8d46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '408df257c3d799bc7eaf307a8d9c1550') in 0.000664 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.645 seconds -Refreshing native plugins compatible for Editor in 11.12 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.984 seconds -Domain Reload Profiling: 1626ms - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (444ms) - LoadAssemblies (299ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (206ms) - TypeCache.Refresh (199ms) - TypeCache.ScanAssembly (190ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (985ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (415ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (29ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.99 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5815. -Memory consumption went from 205.4 MB to 203.7 MB. -Total: 2.702800 ms (FindLiveObjects: 0.232800 ms CreateObjectMapping: 0.092600 ms MarkObjects: 1.999100 ms DeleteObjects: 0.377700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 16.232021 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5adb5aacab129bad5e9ad7354f735cb0') in 0.010549 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.583 seconds -Refreshing native plugins compatible for Editor in 9.42 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.905 seconds -Domain Reload Profiling: 1486ms - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (272ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (906ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (402ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (32ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.27 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5819. -Memory consumption went from 205.4 MB to 203.7 MB. -Total: 2.449500 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.094200 ms MarkObjects: 1.725000 ms DeleteObjects: 0.393300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.597 seconds -Refreshing native plugins compatible for Editor in 8.55 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.877 seconds -Domain Reload Profiling: 1470ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (416ms) - LoadAssemblies (278ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (191ms) - TypeCache.Refresh (187ms) - TypeCache.ScanAssembly (178ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (877ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 14.02 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5823. -Memory consumption went from 205.6 MB to 204.0 MB. -Total: 2.524300 ms (FindLiveObjects: 0.240000 ms CreateObjectMapping: 0.088700 ms MarkObjects: 1.807800 ms DeleteObjects: 0.386400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.577 seconds -Refreshing native plugins compatible for Editor in 11.22 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.870 seconds -Domain Reload Profiling: 1444ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (398ms) - LoadAssemblies (265ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (190ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (870ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (374ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.52 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5827. -Memory consumption went from 205.6 MB to 204.0 MB. -Total: 2.687900 ms (FindLiveObjects: 0.244300 ms CreateObjectMapping: 0.094200 ms MarkObjects: 1.910700 ms DeleteObjects: 0.437900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.602 seconds -Refreshing native plugins compatible for Editor in 9.45 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.891 seconds -Domain Reload Profiling: 1490ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (420ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (200ms) - TypeCache.Refresh (196ms) - TypeCache.ScanAssembly (188ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (892ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (31ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 11.32 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5831. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 3.669300 ms (FindLiveObjects: 0.263800 ms CreateObjectMapping: 0.101400 ms MarkObjects: 2.780900 ms DeleteObjects: 0.522400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.615 seconds -Refreshing native plugins compatible for Editor in 10.52 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.922 seconds -Domain Reload Profiling: 1532ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (430ms) - LoadAssemblies (306ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (923ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 10.36 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5835. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 4.044700 ms (FindLiveObjects: 0.338400 ms CreateObjectMapping: 0.257000 ms MarkObjects: 2.852000 ms DeleteObjects: 0.596800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.640 seconds -Refreshing native plugins compatible for Editor in 9.80 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.925 seconds -Domain Reload Profiling: 1561ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (447ms) - LoadAssemblies (312ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (193ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (175ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (925ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (382ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.08 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5839. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.612300 ms (FindLiveObjects: 0.230800 ms CreateObjectMapping: 0.083700 ms MarkObjects: 1.904300 ms DeleteObjects: 0.392600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 9.07 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.918 seconds -Domain Reload Profiling: 1506ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (282ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (918ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (392ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.04 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5843. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 3.778200 ms (FindLiveObjects: 0.279700 ms CreateObjectMapping: 0.369900 ms MarkObjects: 2.582900 ms DeleteObjects: 0.544800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.590 seconds -Refreshing native plugins compatible for Editor in 10.43 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.891 seconds -Domain Reload Profiling: 1477ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (402ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (172ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (892ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (372ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.42 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5847. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.646800 ms (FindLiveObjects: 0.244700 ms CreateObjectMapping: 0.095500 ms MarkObjects: 1.893700 ms DeleteObjects: 0.412400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.600 seconds -Refreshing native plugins compatible for Editor in 9.01 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.890 seconds -Domain Reload Profiling: 1484ms - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (413ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (174ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (890ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (369ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.88 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5851. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.771500 ms (FindLiveObjects: 0.419200 ms CreateObjectMapping: 0.083400 ms MarkObjects: 1.856900 ms DeleteObjects: 0.411200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.601 seconds -Refreshing native plugins compatible for Editor in 7.57 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.904 seconds -Domain Reload Profiling: 1501ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (418ms) - LoadAssemblies (293ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (904ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.64 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5855. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.674300 ms (FindLiveObjects: 0.235000 ms CreateObjectMapping: 0.088400 ms MarkObjects: 1.942300 ms DeleteObjects: 0.407900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 9.45 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.947 seconds -Domain Reload Profiling: 1534ms - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (414ms) - LoadAssemblies (286ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (947ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.70 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5859. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.496500 ms (FindLiveObjects: 0.249800 ms CreateObjectMapping: 0.092700 ms MarkObjects: 1.779500 ms DeleteObjects: 0.373800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1075.938629 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69d14414c246415e370b494fd3fd101a') in 0.064680 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.591 seconds -Refreshing native plugins compatible for Editor in 9.94 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.908 seconds -Domain Reload Profiling: 1496ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (401ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (178ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (908ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 9.07 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5863. -Memory consumption went from 205.4 MB to 203.7 MB. -Total: 2.554000 ms (FindLiveObjects: 0.263200 ms CreateObjectMapping: 0.097000 ms MarkObjects: 1.804900 ms DeleteObjects: 0.388100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 87.053380 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '76eefa1a3160cacc7706d945ff1790e8') in 0.009648 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.596 seconds -Refreshing native plugins compatible for Editor in 9.06 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.951 seconds -Domain Reload Profiling: 1544ms - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (401ms) - LoadAssemblies (279ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (172ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (951ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (397ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.08 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5867. -Memory consumption went from 205.4 MB to 203.8 MB. -Total: 2.782500 ms (FindLiveObjects: 0.264900 ms CreateObjectMapping: 0.081900 ms MarkObjects: 2.017600 ms DeleteObjects: 0.417400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.577 seconds -Refreshing native plugins compatible for Editor in 9.42 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.947 seconds -Domain Reload Profiling: 1521ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (273ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (947ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (410ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (40ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.78 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5871. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 3.523800 ms (FindLiveObjects: 0.280400 ms CreateObjectMapping: 0.141700 ms MarkObjects: 2.611900 ms DeleteObjects: 0.488900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 94.879478 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6166fdcdd2582fd05f101a8824b5298a') in 0.012366 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.597 seconds -Refreshing native plugins compatible for Editor in 8.87 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.936 seconds -Domain Reload Profiling: 1529ms - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (408ms) - LoadAssemblies (284ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (936ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.47 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5875. -Memory consumption went from 205.4 MB to 203.8 MB. -Total: 2.623500 ms (FindLiveObjects: 0.312600 ms CreateObjectMapping: 0.110400 ms MarkObjects: 1.816300 ms DeleteObjects: 0.383700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 37.587047 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5ca636919a3b1adb4b93fc58ba6e4b4') in 0.009950 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.618 seconds -Refreshing native plugins compatible for Editor in 9.82 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.908 seconds -Domain Reload Profiling: 1520ms - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (420ms) - LoadAssemblies (297ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (185ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (908ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.49 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5879. -Memory consumption went from 205.4 MB to 203.8 MB. -Total: 2.685900 ms (FindLiveObjects: 0.234500 ms CreateObjectMapping: 0.095000 ms MarkObjects: 1.885600 ms DeleteObjects: 0.470200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.602 seconds -Refreshing native plugins compatible for Editor in 10.33 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.928 seconds -Domain Reload Profiling: 1525ms - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (410ms) - LoadAssemblies (278ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (195ms) - TypeCache.Refresh (186ms) - TypeCache.ScanAssembly (178ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (928ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (393ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (28ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.21 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5883. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.739700 ms (FindLiveObjects: 0.237700 ms CreateObjectMapping: 0.094200 ms MarkObjects: 1.925700 ms DeleteObjects: 0.481400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.577 seconds -Refreshing native plugins compatible for Editor in 8.41 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.907 seconds -Domain Reload Profiling: 1480ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (267ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (907ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (391ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 9.57 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5887. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 3.152500 ms (FindLiveObjects: 0.282500 ms CreateObjectMapping: 0.096100 ms MarkObjects: 2.251100 ms DeleteObjects: 0.522100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 528.178899 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b36d6327f72bdcffe411fb86953e17a') in 0.027224 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.601 seconds -Refreshing native plugins compatible for Editor in 9.46 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.928 seconds -Domain Reload Profiling: 1525ms - BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (397ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (928ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (393ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.62 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5891. -Memory consumption went from 205.5 MB to 203.8 MB. -Total: 2.646900 ms (FindLiveObjects: 0.240800 ms CreateObjectMapping: 0.088600 ms MarkObjects: 1.879200 ms DeleteObjects: 0.437600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 133.051917 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d7184fa8a9cf34d1e3a7a16aecc4115') in 0.007500 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.606 seconds -Refreshing native plugins compatible for Editor in 10.14 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.926 seconds -Domain Reload Profiling: 1528ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (418ms) - LoadAssemblies (290ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (927ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.56 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5895. -Memory consumption went from 205.4 MB to 203.8 MB. -Total: 2.826600 ms (FindLiveObjects: 0.316300 ms CreateObjectMapping: 0.137200 ms MarkObjects: 1.928200 ms DeleteObjects: 0.444200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.580 seconds -Refreshing native plugins compatible for Editor in 10.56 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.916 seconds -Domain Reload Profiling: 1492ms - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (393ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (916ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (397ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 10.40 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5899. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 3.841800 ms (FindLiveObjects: 0.276100 ms CreateObjectMapping: 0.120900 ms MarkObjects: 2.772700 ms DeleteObjects: 0.671500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.604 seconds -Refreshing native plugins compatible for Editor in 8.71 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.901 seconds -Domain Reload Profiling: 1502ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (420ms) - LoadAssemblies (291ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (190ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (174ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (902ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.86 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5903. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.752400 ms (FindLiveObjects: 0.271400 ms CreateObjectMapping: 0.102200 ms MarkObjects: 1.966500 ms DeleteObjects: 0.411500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.598 seconds -Refreshing native plugins compatible for Editor in 8.73 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.896 seconds -Domain Reload Profiling: 1492ms - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (280ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (897ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (374ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 10.12 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5907. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.730700 ms (FindLiveObjects: 0.254700 ms CreateObjectMapping: 0.099400 ms MarkObjects: 1.979100 ms DeleteObjects: 0.396700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 234.642455 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9557a957a887eab8d9cb0b66e540b70c') in 0.030914 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.611 seconds -Refreshing native plugins compatible for Editor in 9.59 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.929 seconds -Domain Reload Profiling: 1536ms - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (425ms) - LoadAssemblies (296ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (930ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (407ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 8.48 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5911. -Memory consumption went from 205.4 MB to 203.8 MB. -Total: 2.712600 ms (FindLiveObjects: 0.248800 ms CreateObjectMapping: 0.088800 ms MarkObjects: 1.940400 ms DeleteObjects: 0.434000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.588 seconds -Refreshing native plugins compatible for Editor in 9.56 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.915 seconds -Domain Reload Profiling: 1499ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (404ms) - LoadAssemblies (279ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (915ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.76 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5915. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.488300 ms (FindLiveObjects: 0.241700 ms CreateObjectMapping: 0.084800 ms MarkObjects: 1.773200 ms DeleteObjects: 0.387800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.605 seconds -Refreshing native plugins compatible for Editor in 9.91 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.908 seconds -Domain Reload Profiling: 1509ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (421ms) - LoadAssemblies (294ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (189ms) - TypeCache.Refresh (180ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (909ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (386ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.20 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5919. -Memory consumption went from 205.7 MB to 204.0 MB. -Total: 2.646800 ms (FindLiveObjects: 0.253500 ms CreateObjectMapping: 0.159500 ms MarkObjects: 1.825100 ms DeleteObjects: 0.408000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.599 seconds -Refreshing native plugins compatible for Editor in 10.45 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.957 seconds -Domain Reload Profiling: 1553ms - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (412ms) - LoadAssemblies (279ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (194ms) - TypeCache.Refresh (189ms) - TypeCache.ScanAssembly (181ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (957ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (392ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (33ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.56 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5923. -Memory consumption went from 205.8 MB to 204.0 MB. -Total: 2.766400 ms (FindLiveObjects: 0.261400 ms CreateObjectMapping: 0.091700 ms MarkObjects: 1.998600 ms DeleteObjects: 0.413800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 979.382656 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #114.mat - artifactKey: Guid(c32c5c733165ba54cbd83828200767d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #114.mat using Guid(c32c5c733165ba54cbd83828200767d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'afcf930649948bc7103411f3481ba41d') in 0.086203 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000017 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #116.mat - artifactKey: Guid(ee72d0ab32e464c4dbcfe57d9cbc69b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/instrument/Material #116.mat using Guid(ee72d0ab32e464c4dbcfe57d9cbc69b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c04717f77b0790fa5a5b8a8364c4ba4e') in 0.023723 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 2.277416 seconds. - path: Assets/Train_Yard_Environment/Materials/MetalWallGray2.mat - artifactKey: Guid(646446f90573fbe4eaab650af0bd692b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/MetalWallGray2.mat using Guid(646446f90573fbe4eaab650af0bd692b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54c453cf4401950fb3bfc932aea64724') in 0.059219 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000014 seconds. - path: Assets/Train_Yard_Environment/Materials/PipesMetal.mat - artifactKey: Guid(ad6566ea7862ce844a5302225b7a773b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/PipesMetal.mat using Guid(ad6566ea7862ce844a5302225b7a773b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'deab8b6d6f43b5976de491e5d17d4f6c') in 0.052410 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 20.956439 seconds. - path: Assets/Resources/3D Model/fbx/tmp/Material #3.mat - artifactKey: Guid(a9ed3613b96858245b7a17c5b6189915) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/tmp/Material #3.mat using Guid(a9ed3613b96858245b7a17c5b6189915) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03822cc53e8dca17f4126198420c52c8') in 0.015819 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 143.988513 seconds. - path: Assets/Resources/3D Model/fbx/Materials/mirror.mat - artifactKey: Guid(392e155b0c54fdb4e9b74bf280eb3ba6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/Materials/mirror.mat using Guid(392e155b0c54fdb4e9b74bf280eb3ba6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c7f8747f39896792281c010ca6bc8868') in 0.010533 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.792693 seconds. - path: Assets/Train_Yard_Environment/Materials/TileableExterior.mat - artifactKey: Guid(96270f1432046294b99609179a34600a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/TileableExterior.mat using Guid(96270f1432046294b99609179a34600a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d40f5e299f158a39f63d6e4f4a05b57') in 0.043439 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Materials/WallBooth.mat - artifactKey: Guid(72cd92adf8547b240b45f76e50946a24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/WallBooth.mat using Guid(72cd92adf8547b240b45f76e50946a24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7b9f7f619a998d74c9411f4a9345638') in 0.070961 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 5889.065877 seconds. - path: Assets/Train_Yard_Environment/Materials/WoodenPlank.mat - artifactKey: Guid(8f1860d94b49367498f4d18e0eaf4b3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/WoodenPlank.mat using Guid(8f1860d94b49367498f4d18e0eaf4b3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '000cfd2be0827cab3b78c16a25514a4a') in 0.068855 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 1.333492 seconds. - path: Assets/Train_Yard_Environment/Materials/SmallDoors.mat - artifactKey: Guid(ca9472b19ee31ed47b567067c79e9c79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/SmallDoors.mat using Guid(ca9472b19ee31ed47b567067c79e9c79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94ca17a0af92439d9cdc7a9f82a2e4bb') in 0.054049 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.204581 seconds. - path: Assets/TreePackVol.1/Prefabs/4/Tree1.prefab - artifactKey: Guid(b66997d116e7ec640a1655e1473d428d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TreePackVol.1/Prefabs/4/Tree1.prefab using Guid(b66997d116e7ec640a1655e1473d428d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebd42671cceb2c1bf5bdcca7d6a57ae8') in 0.162361 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 19 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/TreePackVol.1/Prefabs/4/Tree3.prefab - artifactKey: Guid(6800c5970ca222d41bf66484fd4213f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TreePackVol.1/Prefabs/4/Tree3.prefab using Guid(6800c5970ca222d41bf66484fd4213f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8df5ab6b37035720a254bedd423a5715') in 0.029731 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 19 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 2.980 seconds -Refreshing native plugins compatible for Editor in 8.71 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 10.552 seconds -Domain Reload Profiling: 13529ms - BeginReloadAssembly (267ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (131ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (2649ms) - LoadAssemblies (2365ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (354ms) - TypeCache.Refresh (349ms) - TypeCache.ScanAssembly (324ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (10552ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (399ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 9.06 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5927. -Memory consumption went from 206.2 MB to 204.5 MB. -Total: 3.756900 ms (FindLiveObjects: 0.482700 ms CreateObjectMapping: 0.180600 ms MarkObjects: 2.625800 ms DeleteObjects: 0.466900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.588 seconds -Refreshing native plugins compatible for Editor in 6.82 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.876 seconds -Domain Reload Profiling: 1461ms - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (398ms) - LoadAssemblies (270ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (190ms) - TypeCache.Refresh (185ms) - TypeCache.ScanAssembly (177ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (876ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (380ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.61 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5931. -Memory consumption went from 206.5 MB to 204.9 MB. -Total: 2.875400 ms (FindLiveObjects: 0.376200 ms CreateObjectMapping: 0.088200 ms MarkObjects: 1.938800 ms DeleteObjects: 0.471200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 655.606153 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '336ca7cd2790512db9f455b9c8b7c986') in 0.061127 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.559 seconds -Refreshing native plugins compatible for Editor in 7.24 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.791 seconds -Domain Reload Profiling: 1347ms - BeginReloadAssembly (112ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (387ms) - LoadAssemblies (252ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (791ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (367ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (220ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.70 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5935. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.589800 ms (FindLiveObjects: 0.252500 ms CreateObjectMapping: 0.093200 ms MarkObjects: 1.799100 ms DeleteObjects: 0.444200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.526 seconds -Refreshing native plugins compatible for Editor in 7.55 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.805 seconds -Domain Reload Profiling: 1327ms - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (352ms) - LoadAssemblies (244ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (167ms) - TypeCache.Refresh (162ms) - TypeCache.ScanAssembly (155ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (805ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (374ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.40 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5939. -Memory consumption went from 206.6 MB to 204.9 MB. -Total: 2.618000 ms (FindLiveObjects: 0.247800 ms CreateObjectMapping: 0.094700 ms MarkObjects: 1.829600 ms DeleteObjects: 0.445000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 106.672180 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '99a66c71a1aa50848e6d8f21752c1d46') in 0.015977 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.526 seconds -Refreshing native plugins compatible for Editor in 8.06 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.812 seconds -Domain Reload Profiling: 1335ms - BeginReloadAssembly (110ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (365ms) - LoadAssemblies (240ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (169ms) - TypeCache.Refresh (164ms) - TypeCache.ScanAssembly (157ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (812ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (373ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.03 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5943. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.775800 ms (FindLiveObjects: 0.312800 ms CreateObjectMapping: 0.091100 ms MarkObjects: 1.969900 ms DeleteObjects: 0.401100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 60.350279 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec762b77a56ac648f50113ba214d855') in 0.006836 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.527 seconds -Refreshing native plugins compatible for Editor in 6.38 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.788 seconds -Domain Reload Profiling: 1313ms - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (357ms) - LoadAssemblies (235ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (171ms) - TypeCache.Refresh (167ms) - TypeCache.ScanAssembly (158ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (789ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (373ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (20ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 7.84 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5947. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.601100 ms (FindLiveObjects: 0.253700 ms CreateObjectMapping: 0.084200 ms MarkObjects: 1.843900 ms DeleteObjects: 0.418400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.521 seconds -Refreshing native plugins compatible for Editor in 7.57 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.801 seconds -Domain Reload Profiling: 1320ms - BeginReloadAssembly (115ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (354ms) - LoadAssemblies (235ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (170ms) - TypeCache.Refresh (166ms) - TypeCache.ScanAssembly (158ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (802ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (375ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (19ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (229ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.75 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5951. -Memory consumption went from 206.5 MB to 204.9 MB. -Total: 2.593600 ms (FindLiveObjects: 0.259900 ms CreateObjectMapping: 0.092600 ms MarkObjects: 1.842100 ms DeleteObjects: 0.398200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 139.449614 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a712d3d105f07f2874eaed5e81ec874') in 0.013253 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.724 seconds -Refreshing native plugins compatible for Editor in 9.98 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 1.386 seconds -Domain Reload Profiling: 2107ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (545ms) - LoadAssemblies (414ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (189ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1386ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (425ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (32ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (33ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.12 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5955. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.571600 ms (FindLiveObjects: 0.235500 ms CreateObjectMapping: 0.082400 ms MarkObjects: 1.876200 ms DeleteObjects: 0.376900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.556 seconds -Refreshing native plugins compatible for Editor in 13.17 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.848 seconds -Domain Reload Profiling: 1401ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (379ms) - LoadAssemblies (258ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (848ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (385ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (30ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 8.39 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5959. -Memory consumption went from 206.6 MB to 204.9 MB. -Total: 2.516600 ms (FindLiveObjects: 0.244300 ms CreateObjectMapping: 0.086900 ms MarkObjects: 1.785300 ms DeleteObjects: 0.399600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 370.536720 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6374cf831a30b29edf11542ba22139ff') in 0.018271 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.576 seconds -Refreshing native plugins compatible for Editor in 9.46 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.869 seconds -Domain Reload Profiling: 1441ms - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (869ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (377ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (219ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.72 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5963. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.686600 ms (FindLiveObjects: 0.288700 ms CreateObjectMapping: 0.098200 ms MarkObjects: 1.926100 ms DeleteObjects: 0.373000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.548 seconds -Refreshing native plugins compatible for Editor in 7.81 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.848 seconds -Domain Reload Profiling: 1393ms - BeginReloadAssembly (120ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (369ms) - LoadAssemblies (247ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (849ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (374ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (220ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 13.67 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5967. -Memory consumption went from 206.5 MB to 204.9 MB. -Total: 2.545400 ms (FindLiveObjects: 0.239100 ms CreateObjectMapping: 0.086900 ms MarkObjects: 1.827400 ms DeleteObjects: 0.391100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.604 seconds -Refreshing native plugins compatible for Editor in 8.91 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.888 seconds -Domain Reload Profiling: 1487ms - BeginReloadAssembly (135ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (410ms) - LoadAssemblies (279ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (191ms) - TypeCache.Refresh (182ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (6ms) - FinalizeReload (888ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (390ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.44 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5971. -Memory consumption went from 206.6 MB to 204.9 MB. -Total: 2.692700 ms (FindLiveObjects: 0.245700 ms CreateObjectMapping: 0.124500 ms MarkObjects: 1.904200 ms DeleteObjects: 0.417600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.550 seconds -Refreshing native plugins compatible for Editor in 8.66 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.869 seconds -Domain Reload Profiling: 1416ms - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (383ms) - LoadAssemblies (252ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (870ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (228ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.32 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5975. -Memory consumption went from 206.6 MB to 204.9 MB. -Total: 3.098000 ms (FindLiveObjects: 0.284400 ms CreateObjectMapping: 0.102000 ms MarkObjects: 2.297500 ms DeleteObjects: 0.413100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1816.010752 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a963c2342504c7d9a9ba4ce8747aa35') in 0.002390 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.590 seconds -Refreshing native plugins compatible for Editor in 8.09 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.857 seconds -Domain Reload Profiling: 1445ms - BeginReloadAssembly (137ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (399ms) - LoadAssemblies (267ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (858ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 8.32 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5979. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.488800 ms (FindLiveObjects: 0.245200 ms CreateObjectMapping: 0.087800 ms MarkObjects: 1.780000 ms DeleteObjects: 0.375300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.578 seconds -Refreshing native plugins compatible for Editor in 7.78 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.902 seconds -Domain Reload Profiling: 1476ms - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (393ms) - LoadAssemblies (275ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (902ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (390ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 8.70 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5983. -Memory consumption went from 206.5 MB to 204.8 MB. -Total: 2.535400 ms (FindLiveObjects: 0.284100 ms CreateObjectMapping: 0.107200 ms MarkObjects: 1.754400 ms DeleteObjects: 0.388800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 248.236735 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22b6f76a585df32f74ad972a38c5f579') in 0.017974 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.571 seconds -Refreshing native plugins compatible for Editor in 8.14 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.846 seconds -Domain Reload Profiling: 1413ms - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (386ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (846ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (369ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (226ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.73 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5987. -Memory consumption went from 206.3 MB to 204.6 MB. -Total: 2.767300 ms (FindLiveObjects: 0.247200 ms CreateObjectMapping: 0.081200 ms MarkObjects: 1.988000 ms DeleteObjects: 0.449900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.562 seconds -Refreshing native plugins compatible for Editor in 9.09 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.880 seconds -Domain Reload Profiling: 1439ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (382ms) - LoadAssemblies (261ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (881ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (399ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 10.53 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5991. -Memory consumption went from 206.5 MB to 204.8 MB. -Total: 2.637500 ms (FindLiveObjects: 0.252400 ms CreateObjectMapping: 0.084800 ms MarkObjects: 1.900800 ms DeleteObjects: 0.398800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.592 seconds -Refreshing native plugins compatible for Editor in 8.10 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.884 seconds -Domain Reload Profiling: 1473ms - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (278ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (885ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (385ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (17ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 7.95 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5995. -Memory consumption went from 206.5 MB to 204.8 MB. -Total: 3.811200 ms (FindLiveObjects: 0.405800 ms CreateObjectMapping: 0.124500 ms MarkObjects: 2.852800 ms DeleteObjects: 0.426800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.586 seconds -Refreshing native plugins compatible for Editor in 7.56 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.899 seconds -Domain Reload Profiling: 1481ms - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (393ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (899ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (394ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 9.97 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5999. -Memory consumption went from 206.6 MB to 204.9 MB. -Total: 2.567500 ms (FindLiveObjects: 0.246700 ms CreateObjectMapping: 0.085400 ms MarkObjects: 1.838300 ms DeleteObjects: 0.396600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.572 seconds -Refreshing native plugins compatible for Editor in 7.71 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.871 seconds -Domain Reload Profiling: 1439ms - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (388ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (871ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (382ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 9.07 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6003. -Memory consumption went from 206.6 MB to 204.9 MB. -Total: 2.578900 ms (FindLiveObjects: 0.275500 ms CreateObjectMapping: 0.103800 ms MarkObjects: 1.809000 ms DeleteObjects: 0.389800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.577 seconds -Refreshing native plugins compatible for Editor in 9.17 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.875 seconds -Domain Reload Profiling: 1448ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (269ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (876ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (384ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 7.27 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6007. -Memory consumption went from 206.7 MB to 205.0 MB. -Total: 2.513400 ms (FindLiveObjects: 0.252300 ms CreateObjectMapping: 0.089600 ms MarkObjects: 1.788400 ms DeleteObjects: 0.382300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.570 seconds -Refreshing native plugins compatible for Editor in 8.20 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.882 seconds -Domain Reload Profiling: 1448ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (386ms) - LoadAssemblies (266ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (883ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (384ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (16ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.56 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6011. -Memory consumption went from 206.7 MB to 205.0 MB. -Total: 2.884900 ms (FindLiveObjects: 0.251500 ms CreateObjectMapping: 0.095100 ms MarkObjects: 2.005500 ms DeleteObjects: 0.532000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1311.772088 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aff4bb7665d5e91fb27c8065966fdb04') in 0.045918 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.578 seconds -Refreshing native plugins compatible for Editor in 7.01 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.851 seconds -Domain Reload Profiling: 1426ms - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (851ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.95 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 6015. -Memory consumption went from 206.5 MB to 204.8 MB. -Total: 2.650400 ms (FindLiveObjects: 0.255600 ms CreateObjectMapping: 0.086200 ms MarkObjects: 1.895600 ms DeleteObjects: 0.412300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 391.043021 seconds. - path: Assets/Scenes/Train.unity - artifactKey: Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Train.unity using Guid(881ff242f0bad54439b11aee131bc86a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b22bede7b51cc5809198064839a1492d') in 0.011754 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 diff --git a/Logs/AssetImportWorker5.log b/Logs/AssetImportWorker2-prev.log similarity index 79% rename from Logs/AssetImportWorker5.log rename to Logs/AssetImportWorker2-prev.log index 0a80750..6db9426 100644 --- a/Logs/AssetImportWorker5.log +++ b/Logs/AssetImportWorker2-prev.log @@ -9,13 +9,13 @@ -batchMode -noUpm -name -AssetImportWorker5 +AssetImportWorker2 -projectPath D:/dev/korail_vr_interior -logFile -Logs/AssetImportWorker5.log +Logs/AssetImportWorker2.log -srvPort -6622 +9449 Successfully changed project path to: D:/dev/korail_vr_interior D:/dev/korail_vr_interior [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [65612] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2914920810 [EditorId] 2914920810 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [36192] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2854150359 [EditorId] 2854150359 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [65612] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2914920810 [EditorId] 2914920810 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [36192] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2854150359 [EditorId] 2854150359 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 24.04 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 20.62 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.5f1 (9674261d40ee) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems @@ -69,49 +69,49 @@ Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56136 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56096 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.023400 seconds. -- Loaded All Assemblies, in 0.340 seconds +Registered in 0.018165 seconds. +- Loaded All Assemblies, in 0.296 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 535 ms +Android Extension - Scanning For ADB Devices 486 ms Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.766 seconds -Domain Reload Profiling: 1098ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.702 seconds +Domain Reload Profiling: 994ms + BeginReloadAssembly (94ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (0ms) - RebuildCommonClasses (24ms) + RebuildCommonClasses (26ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (71ms) - LoadAllAssembliesAndSetupDomain (126ms) - LoadAssemblies (98ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (107ms) + LoadAssemblies (91ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (108ms) - TypeCache.Refresh (107ms) - TypeCache.ScanAssembly (98ms) + AnalyzeDomain (95ms) + TypeCache.Refresh (94ms) + TypeCache.ScanAssembly (87ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (766ms) + FinalizeReload (702ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (725ms) + SetupLoadedEditorAssemblies (661ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (628ms) + InitializePlatformSupportModulesInManaged (562ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (1ms) ProcessInitializeOnLoadAttributes (60ms) - ProcessInitializeOnLoadMethodAttributes (33ms) + ProcessInitializeOnLoadMethodAttributes (34ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -121,8 +121,8 @@ Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.651 seconds -Refreshing native plugins compatible for Editor in 8.33 ms, found 10 plugins. +- Loaded All Assemblies, in 0.729 seconds +Refreshing native plugins compatible for Editor in 10.90 ms, found 10 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found Native extension for WebGL target not found @@ -140,47 +140,47 @@ [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.581 seconds -Domain Reload Profiling: 1228ms - BeginReloadAssembly (110ms) +- Finished resetting the current domain, in 0.706 seconds +Domain Reload Profiling: 1429ms + BeginReloadAssembly (106ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (20ms) + CreateAndSetChildDomain (15ms) + RebuildCommonClasses (23ms) RebuildNativeTypeToScriptingClass (6ms) initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (473ms) - LoadAssemblies (309ms) + LoadAllAssembliesAndSetupDomain (551ms) + LoadAssemblies (362ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (225ms) - TypeCache.Refresh (203ms) - TypeCache.ScanAssembly (194ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (4ms) - FinalizeReload (581ms) + AnalyzeDomain (243ms) + TypeCache.Refresh (218ms) + TypeCache.ScanAssembly (209ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) + ResolveRequiredComponents (5ms) + FinalizeReload (706ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (470ms) + SetupLoadedEditorAssemblies (558ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (30ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (313ms) - ProcessInitializeOnLoadMethodAttributes (37ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (374ms) + ProcessInitializeOnLoadMethodAttributes (38ms) AfterProcessingInitializeOnLoad (13ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) + AwakeInstancesAfterBackupRestoration (13ms) Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds -Refreshing native plugins compatible for Editor in 12.69 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 13.03 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.920500 ms (FindLiveObjects: 0.331700 ms CreateObjectMapping: 0.179000 ms MarkObjects: 2.845400 ms DeleteObjects: 0.562300 ms) +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.0 MB to 229.3 MB. +Total: 4.299400 ms (FindLiveObjects: 0.321200 ms CreateObjectMapping: 0.199800 ms MarkObjects: 3.228300 ms DeleteObjects: 0.549000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> diff --git a/Logs/AssetImportWorker2.log b/Logs/AssetImportWorker2.log deleted file mode 100644 index 5ff454e..0000000 --- a/Logs/AssetImportWorker2.log +++ /dev/null @@ -1,695 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker2 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker2.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [20896] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 31723162 [EditorId] 31723162 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [20896] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 31723162 [EditorId] 31723162 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 15.32 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56596 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.010648 seconds. -- Loaded All Assemblies, in 0.253 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 415 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.616 seconds -Domain Reload Profiling: 868ms - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (47ms) - LoadAllAssembliesAndSetupDomain (100ms) - LoadAssemblies (75ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (92ms) - TypeCache.Refresh (92ms) - TypeCache.ScanAssembly (84ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (616ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (577ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (485ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (57ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.611 seconds -Refreshing native plugins compatible for Editor in 7.85 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.534 seconds -Domain Reload Profiling: 1141ms - BeginReloadAssembly (109ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (444ms) - LoadAssemblies (295ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (207ms) - TypeCache.Refresh (186ms) - TypeCache.ScanAssembly (178ms) - ScanForSourceGeneratedMonoScriptInfo (16ms) - ResolveRequiredComponents (4ms) - FinalizeReload (534ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (426ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (278ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 13.26 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 4.173300 ms (FindLiveObjects: 0.419500 ms CreateObjectMapping: 0.195000 ms MarkObjects: 3.172600 ms DeleteObjects: 0.385400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 412196.116054 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/metalic.mat - artifactKey: Guid(1ba72c987feb81b45891c61349fd6651) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/metalic.mat using Guid(1ba72c987feb81b45891c61349fd6651) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '235ebd56c720434b742a811daf1fe2a7') in 0.059172 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.572 seconds -Refreshing native plugins compatible for Editor in 8.05 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.877 seconds -Domain Reload Profiling: 1445ms - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (394ms) - LoadAssemblies (267ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (4ms) - FinalizeReload (877ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (371ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (225ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 8.17 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5740. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.840000 ms (FindLiveObjects: 0.236300 ms CreateObjectMapping: 0.094400 ms MarkObjects: 2.144300 ms DeleteObjects: 0.364600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1392.472287 seconds. - path: Assets/LevelController.cs - artifactKey: Guid(789aebd0201f1304fa2462d6e2ae4d3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/LevelController.cs using Guid(789aebd0201f1304fa2462d6e2ae4d3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '13229e93b51dad1956c4eebf14cfe2c1') in 0.011127 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.557 seconds -Refreshing native plugins compatible for Editor in 7.65 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 1.029 seconds -Domain Reload Profiling: 1582ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (390ms) - LoadAssemblies (261ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (163ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1029ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (437ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (38ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (21ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 10.84 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5744. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.923400 ms (FindLiveObjects: 0.230200 ms CreateObjectMapping: 0.087800 ms MarkObjects: 2.176400 ms DeleteObjects: 0.428300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 134.371859 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-0.exr - artifactKey: Guid(cbde0cade3924444983ce028a20ecb6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-0.exr using Guid(cbde0cade3924444983ce028a20ecb6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05cd018913a7feb221bbb1ca3db7e6e9') in 0.051018 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000025 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-3.exr - artifactKey: Guid(33f1c79405491e54393124c988b79f80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-3.exr using Guid(33f1c79405491e54393124c988b79f80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce114109e62bd17b0f2bd646614013ae') in 0.014626 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-17.exr - artifactKey: Guid(dffe8fbc85921e24cbd9b97b9d7f5c0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-17.exr using Guid(dffe8fbc85921e24cbd9b97b9d7f5c0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6073610a0bde44b3519e80d65a563ca3') in 0.013707 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.005780 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-18.exr - artifactKey: Guid(d868d38e99efba74ba14454586b5a2a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-18.exr using Guid(d868d38e99efba74ba14454586b5a2a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0eae5bf5d9cf309f42cba9d872aa5d8b') in 0.012260 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000010 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-22.exr - artifactKey: Guid(0020ed840c60ad74e904e7e20e3768c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-22.exr using Guid(0020ed840c60ad74e904e7e20e3768c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1799a700bdcc539d85f2ddfa73e3fc9c') in 0.012230 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-11.exr - artifactKey: Guid(38403962a7225bd4693dfc2ec9bfdc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-11.exr using Guid(38403962a7225bd4693dfc2ec9bfdc5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f86def246e45d7e17b30f1273a69b6d7') in 0.011964 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-14.exr - artifactKey: Guid(495ef8ec03f158b4bafd42cf5f79c66e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-14.exr using Guid(495ef8ec03f158b4bafd42cf5f79c66e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c3b5e16f941fbc12453a1b98ea9bf2e') in 0.011949 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000011 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-15.exr - artifactKey: Guid(557008970e68ca94bac79771a6a1130e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-15.exr using Guid(557008970e68ca94bac79771a6a1130e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e262cee1a87f88471fa793d2eeb0c57') in 0.012081 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-7.exr - artifactKey: Guid(53537e8e2382f1b44ae6e3e34ffbd866) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-7.exr using Guid(53537e8e2382f1b44ae6e3e34ffbd866) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b34990b3ee0c174e6a495bcdc11fa668') in 0.012747 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000102 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-5.exr - artifactKey: Guid(ce4f98fe38eb7244a828680d913c3fa8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-5.exr using Guid(ce4f98fe38eb7244a828680d913c3fa8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3862c0d553bdc2ba392ec750fba0041e') in 0.012310 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.002515 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-29.exr - artifactKey: Guid(e22f3ca09126ced4a87b2f685a42c288) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-29.exr using Guid(e22f3ca09126ced4a87b2f685a42c288) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '36784ee0a58c22138f1d373434154269') in 0.012844 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.001301 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-13.exr - artifactKey: Guid(4c1c550cfecbaec4783afeca570ea8d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-13.exr using Guid(4c1c550cfecbaec4783afeca570ea8d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05d1c5995e98c76f7aba8b18d3fb2132') in 0.013424 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-25.exr - artifactKey: Guid(b8e521d1862607349b62aa0f656849a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-25.exr using Guid(b8e521d1862607349b62aa0f656849a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c7f50fe2f4b9bac80d6c8fe3588b2d0') in 0.012463 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000010 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-32.exr - artifactKey: Guid(3c0df96a51866a84787e31ba37752ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-32.exr using Guid(3c0df96a51866a84787e31ba37752ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9f23172a92ca8219829a57de20a84ca') in 0.012554 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000017 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-6.exr - artifactKey: Guid(8ed2c61f284de4d479ebf9fc02712370) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-6.exr using Guid(8ed2c61f284de4d479ebf9fc02712370) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7582f347cec2d8c3aa53d62a93fa7454') in 0.013140 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-8.exr - artifactKey: Guid(61c7ae405a51d2245a3d8f540ed4ec9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-8.exr using Guid(61c7ae405a51d2245a3d8f540ed4ec9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58bbeb0a9d8daca0f9bb028e328a0d0a') in 0.013451 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.570 seconds -Refreshing native plugins compatible for Editor in 8.38 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.827 seconds -Domain Reload Profiling: 1394ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (389ms) - LoadAssemblies (260ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (828ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (362ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (216ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.41 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5750. -Memory consumption went from 202.2 MB to 200.5 MB. -Total: 2.387000 ms (FindLiveObjects: 0.223000 ms CreateObjectMapping: 0.077200 ms MarkObjects: 1.724800 ms DeleteObjects: 0.361300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1316.736295 seconds. - path: Assets/_MK/MKGlowLite/Shaders/Inc/Common.hlsl - artifactKey: Guid(7a7b0270c766c5b409036f16a47aff5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/_MK/MKGlowLite/Shaders/Inc/Common.hlsl using Guid(7a7b0270c766c5b409036f16a47aff5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '146f38ab1f620c4f4542096007463597') in 0.020375 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/MagicMirror/Demo/DemoTexture1.renderTexture - artifactKey: Guid(ee86928849ca70d4a8721756ef035d5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/MagicMirror/Demo/DemoTexture1.renderTexture using Guid(ee86928849ca70d4a8721756ef035d5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3b82422a4728879d9608136322dba6a') in 0.032582 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 0.000015 seconds. - path: Assets/TextMesh Pro/Sprites/EmojiOne.png - artifactKey: Guid(dffef66376be4fa480fb02b19edbe903) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TextMesh Pro/Sprites/EmojiOne.png using Guid(dffef66376be4fa480fb02b19edbe903) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20c005dfd81374012843eb235533966a') in 0.023300 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Samples/XR Interaction Toolkit/2.4.3/Starter Assets/Prefabs/UI_2D/ModalSingleButton.prefab - artifactKey: Guid(c24a7635b5761984d81cf6c4aac26e0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Samples/XR Interaction Toolkit/2.4.3/Starter Assets/Prefabs/UI_2D/ModalSingleButton.prefab using Guid(c24a7635b5761984d81cf6c4aac26e0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e2db3fca609f8eb8864d77c0bd82ce4') in 0.013172 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 38 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/MagicMirror/Demo/DemoTexture2.renderTexture - artifactKey: Guid(2355fb304e48a9a4aa641fe726db268a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/MagicMirror/Demo/DemoTexture2.renderTexture using Guid(2355fb304e48a9a4aa641fe726db268a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb4e88ed1c2721afb16ead3057d410ef') in 0.004788 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 0.010907 seconds. - path: Assets/Train_Yard_Environment/Models/Props1.fbx - artifactKey: Guid(a05937d7f31872649b99814014141dfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Models/Props1.fbx using Guid(a05937d7f31872649b99814014141dfb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80b9ab17c982f919035861a836bfa6cf') in 0.546107 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 254 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.576 seconds -Refreshing native plugins compatible for Editor in 10.08 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.867 seconds -Domain Reload Profiling: 1440ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (392ms) - LoadAssemblies (271ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (868ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (367ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (219ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.34 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 80 unused Assets / (1.7 MB). Loaded Objects now: 5761. -Memory consumption went from 202.7 MB to 201.0 MB. -Total: 2.411400 ms (FindLiveObjects: 0.218000 ms CreateObjectMapping: 0.080400 ms MarkObjects: 1.744200 ms DeleteObjects: 0.368300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error -AssetImportWorkerClient::OnTransportError - code=2 error=End of file -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker8.log b/Logs/AssetImportWorker3-prev.log similarity index 76% rename from Logs/AssetImportWorker8.log rename to Logs/AssetImportWorker3-prev.log index 901ee8d..a1bb8c0 100644 --- a/Logs/AssetImportWorker8.log +++ b/Logs/AssetImportWorker3-prev.log @@ -9,13 +9,13 @@ -batchMode -noUpm -name -AssetImportWorker8 +AssetImportWorker3 -projectPath D:/dev/korail_vr_interior -logFile -Logs/AssetImportWorker8.log +Logs/AssetImportWorker3.log -srvPort -6622 +9449 Successfully changed project path to: D:/dev/korail_vr_interior D:/dev/korail_vr_interior [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [49948] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 1959817205 [EditorId] 1959817205 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [62868] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 3135785235 [EditorId] 3135785235 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [49948] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 1959817205 [EditorId] 1959817205 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [62868] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 3135785235 [EditorId] 3135785235 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 22.77 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 24.35 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.5f1 (9674261d40ee) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems @@ -69,48 +69,48 @@ Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56668 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56156 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.023658 seconds. -- Loaded All Assemblies, in 0.343 seconds +Registered in 0.018340 seconds. +- Loaded All Assemblies, in 0.296 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 507 ms +Android Extension - Scanning For ADB Devices 524 ms Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.747 seconds -Domain Reload Profiling: 1084ms - BeginReloadAssembly (106ms) +- Finished resetting the current domain, in 0.727 seconds +Domain Reload Profiling: 1019ms + BeginReloadAssembly (93ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (0ms) - RebuildCommonClasses (24ms) + RebuildCommonClasses (26ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (75ms) - LoadAllAssembliesAndSetupDomain (126ms) - LoadAssemblies (100ms) + initialDomainReloadingComplete (60ms) + LoadAllAssembliesAndSetupDomain (107ms) + LoadAssemblies (90ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (107ms) - TypeCache.Refresh (107ms) - TypeCache.ScanAssembly (97ms) + AnalyzeDomain (94ms) + TypeCache.Refresh (94ms) + TypeCache.ScanAssembly (85ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (747ms) + FinalizeReload (728ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (702ms) + SetupLoadedEditorAssemblies (693ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (598ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (66ms) + ProcessInitializeOnLoadAttributes (57ms) ProcessInitializeOnLoadMethodAttributes (34ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) @@ -121,8 +121,8 @@ Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.654 seconds -Refreshing native plugins compatible for Editor in 9.65 ms, found 10 plugins. +- Loaded All Assemblies, in 0.729 seconds +Refreshing native plugins compatible for Editor in 10.84 ms, found 10 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found Native extension for WebGL target not found @@ -140,47 +140,47 @@ [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.574 seconds -Domain Reload Profiling: 1223ms - BeginReloadAssembly (113ms) +- Finished resetting the current domain, in 0.706 seconds +Domain Reload Profiling: 1429ms + BeginReloadAssembly (107ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (14ms) - RebuildCommonClasses (20ms) + RebuildCommonClasses (22ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (35ms) - LoadAllAssembliesAndSetupDomain (476ms) - LoadAssemblies (308ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (550ms) + LoadAssemblies (361ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (228ms) - TypeCache.Refresh (206ms) - TypeCache.ScanAssembly (197ms) - ScanForSourceGeneratedMonoScriptInfo (16ms) + AnalyzeDomain (242ms) + TypeCache.Refresh (217ms) + TypeCache.ScanAssembly (207ms) + ScanForSourceGeneratedMonoScriptInfo (20ms) ResolveRequiredComponents (6ms) - FinalizeReload (574ms) + FinalizeReload (706ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (467ms) + SetupLoadedEditorAssemblies (559ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (315ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (12ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (369ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (13ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (13ms) Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 12.44 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 13.05 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.581700 ms (FindLiveObjects: 0.291800 ms CreateObjectMapping: 0.133800 ms MarkObjects: 2.586600 ms DeleteObjects: 0.568600 ms) +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.0 MB to 229.3 MB. +Total: 4.200700 ms (FindLiveObjects: 0.315700 ms CreateObjectMapping: 0.322400 ms MarkObjects: 2.860600 ms DeleteObjects: 0.701100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -195,8 +195,3 @@ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker3.log b/Logs/AssetImportWorker3.log deleted file mode 100644 index 8c49bd2..0000000 --- a/Logs/AssetImportWorker3.log +++ /dev/null @@ -1,202 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker3 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker3.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [51892] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2258936917 [EditorId] 2258936917 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [51892] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2258936917 [EditorId] 2258936917 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 15.73 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56848 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.009951 seconds. -- Loaded All Assemblies, in 0.242 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 376 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.576 seconds -Domain Reload Profiling: 816ms - BeginReloadAssembly (69ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (98ms) - LoadAssemblies (68ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (90ms) - TypeCache.Refresh (90ms) - TypeCache.ScanAssembly (82ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (576ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (538ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (447ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (57ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.613 seconds -Refreshing native plugins compatible for Editor in 7.15 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.535 seconds -Domain Reload Profiling: 1145ms - BeginReloadAssembly (115ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (5ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (441ms) - LoadAssemblies (296ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (209ms) - TypeCache.Refresh (189ms) - TypeCache.ScanAssembly (181ms) - ScanForSourceGeneratedMonoScriptInfo (16ms) - ResolveRequiredComponents (4ms) - FinalizeReload (535ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (427ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (280ms) - ProcessInitializeOnLoadMethodAttributes (31ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.11 seconds -Refreshing native plugins compatible for Editor in 13.44 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 2.679400 ms (FindLiveObjects: 0.264200 ms CreateObjectMapping: 0.085400 ms MarkObjects: 1.957300 ms DeleteObjects: 0.371900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker5.log b/Logs/AssetImportWorker4-prev.log similarity index 78% copy from Logs/AssetImportWorker5.log copy to Logs/AssetImportWorker4-prev.log index 0a80750..37e339f 100644 --- a/Logs/AssetImportWorker5.log +++ b/Logs/AssetImportWorker4-prev.log @@ -9,13 +9,13 @@ -batchMode -noUpm -name -AssetImportWorker5 +AssetImportWorker4 -projectPath D:/dev/korail_vr_interior -logFile -Logs/AssetImportWorker5.log +Logs/AssetImportWorker4.log -srvPort -6622 +9449 Successfully changed project path to: D:/dev/korail_vr_interior D:/dev/korail_vr_interior [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [65612] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2914920810 [EditorId] 2914920810 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [14556] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2122498889 [EditorId] 2122498889 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [65612] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2914920810 [EditorId] 2914920810 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [14556] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2122498889 [EditorId] 2122498889 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 24.04 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 24.68 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.5f1 (9674261d40ee) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems @@ -69,49 +69,49 @@ Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56136 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56280 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.023400 seconds. -- Loaded All Assemblies, in 0.340 seconds +Registered in 0.015513 seconds. +- Loaded All Assemblies, in 0.296 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 535 ms +Android Extension - Scanning For ADB Devices 491 ms Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.766 seconds -Domain Reload Profiling: 1098ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.705 seconds +Domain Reload Profiling: 997ms + BeginReloadAssembly (94ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (0ms) - RebuildCommonClasses (24ms) + RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (71ms) - LoadAllAssembliesAndSetupDomain (126ms) - LoadAssemblies (98ms) + initialDomainReloadingComplete (59ms) + LoadAllAssembliesAndSetupDomain (107ms) + LoadAssemblies (91ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (108ms) - TypeCache.Refresh (107ms) - TypeCache.ScanAssembly (98ms) + AnalyzeDomain (94ms) + TypeCache.Refresh (93ms) + TypeCache.ScanAssembly (85ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (766ms) + ResolveRequiredComponents (1ms) + FinalizeReload (706ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (725ms) + SetupLoadedEditorAssemblies (670ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (628ms) + InitializePlatformSupportModulesInManaged (568ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (60ms) - ProcessInitializeOnLoadMethodAttributes (33ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (61ms) + ProcessInitializeOnLoadMethodAttributes (35ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -121,8 +121,8 @@ Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.651 seconds -Refreshing native plugins compatible for Editor in 8.33 ms, found 10 plugins. +- Loaded All Assemblies, in 0.732 seconds +Refreshing native plugins compatible for Editor in 10.44 ms, found 10 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found Native extension for WebGL target not found @@ -140,47 +140,47 @@ [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.581 seconds -Domain Reload Profiling: 1228ms - BeginReloadAssembly (110ms) +- Finished resetting the current domain, in 0.699 seconds +Domain Reload Profiling: 1425ms + BeginReloadAssembly (108ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (20ms) + CreateAndSetChildDomain (15ms) + RebuildCommonClasses (21ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (473ms) - LoadAssemblies (309ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (554ms) + LoadAssemblies (365ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (225ms) - TypeCache.Refresh (203ms) - TypeCache.ScanAssembly (194ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (4ms) - FinalizeReload (581ms) + AnalyzeDomain (244ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (210ms) + ScanForSourceGeneratedMonoScriptInfo (19ms) + ResolveRequiredComponents (5ms) + FinalizeReload (700ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (470ms) + SetupLoadedEditorAssemblies (555ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (30ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (313ms) - ProcessInitializeOnLoadMethodAttributes (37ms) - AfterProcessingInitializeOnLoad (13ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (367ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (12ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (12ms) Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds -Refreshing native plugins compatible for Editor in 12.69 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 13.54 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.920500 ms (FindLiveObjects: 0.331700 ms CreateObjectMapping: 0.179000 ms MarkObjects: 2.845400 ms DeleteObjects: 0.562300 ms) +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.0 MB to 229.3 MB. +Total: 4.205400 ms (FindLiveObjects: 0.340500 ms CreateObjectMapping: 0.163200 ms MarkObjects: 3.091600 ms DeleteObjects: 0.609000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> diff --git a/Logs/AssetImportWorker4.log b/Logs/AssetImportWorker4.log deleted file mode 100644 index 16cb9e7..0000000 --- a/Logs/AssetImportWorker4.log +++ /dev/null @@ -1,806 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker4 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker4.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [57780] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 1634576110 [EditorId] 1634576110 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [57780] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 1634576110 [EditorId] 1634576110 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 15.67 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56972 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.010386 seconds. -- Loaded All Assemblies, in 0.239 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 402 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.593 seconds -Domain Reload Profiling: 830ms - BeginReloadAssembly (68ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (45ms) - LoadAllAssembliesAndSetupDomain (98ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (92ms) - TypeCache.Refresh (92ms) - TypeCache.ScanAssembly (84ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (593ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (556ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (471ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (52ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.606 seconds -Refreshing native plugins compatible for Editor in 7.12 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.534 seconds -Domain Reload Profiling: 1137ms - BeginReloadAssembly (108ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (437ms) - LoadAssemblies (288ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (208ms) - TypeCache.Refresh (187ms) - TypeCache.ScanAssembly (179ms) - ScanForSourceGeneratedMonoScriptInfo (16ms) - ResolveRequiredComponents (4ms) - FinalizeReload (534ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (427ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (280ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -Refreshing native plugins compatible for Editor in 12.25 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 2.666200 ms (FindLiveObjects: 0.239000 ms CreateObjectMapping: 0.078400 ms MarkObjects: 1.954900 ms DeleteObjects: 0.393100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 412196.113976 seconds. - path: Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/Material_1.014.mat - artifactKey: Guid(5525cda9625a843439a4a62e7467b8e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Art/Models/Resources/3D Model/fbx/Materials/Material_1.014.mat using Guid(5525cda9625a843439a4a62e7467b8e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8628714a60949b41b973422b1706e56') in 0.059994 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 967.456924 seconds. - path: Assets/Train_Yard_Environment/Materials/Drill.mat - artifactKey: Guid(9a542f11df4f455438ccbf656e05dbc2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Materials/Drill.mat using Guid(9a542f11df4f455438ccbf656e05dbc2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96e3fa46b61ff44352615093ab4bc9b7') in 0.085859 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 160.377285 seconds. - path: Assets/LevelController.cs - artifactKey: Guid(789aebd0201f1304fa2462d6e2ae4d3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/LevelController.cs using Guid(789aebd0201f1304fa2462d6e2ae4d3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '457de96a16495581c39d3cb338163642') in 0.000509 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.573 seconds -Refreshing native plugins compatible for Editor in 7.43 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.874 seconds -Domain Reload Profiling: 1443ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (18ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (396ms) - LoadAssemblies (268ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (182ms) - TypeCache.Refresh (174ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (874ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (367ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (28ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 8.07 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5740. -Memory consumption went from 202.1 MB to 200.4 MB. -Total: 2.624400 ms (FindLiveObjects: 0.248000 ms CreateObjectMapping: 0.077600 ms MarkObjects: 1.968200 ms DeleteObjects: 0.329900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.557 seconds -Refreshing native plugins compatible for Editor in 9.20 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 1.039 seconds -Domain Reload Profiling: 1593ms - BeginReloadAssembly (115ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (392ms) - LoadAssemblies (264ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (169ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1039ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (440ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (38ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (22ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 11.26 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5079 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5744. -Memory consumption went from 202.4 MB to 200.7 MB. -Total: 2.952600 ms (FindLiveObjects: 0.367000 ms CreateObjectMapping: 0.131900 ms MarkObjects: 2.076000 ms DeleteObjects: 0.376800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 398.935311 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-23.exr - artifactKey: Guid(7d2260ec7055a1543b416d3bcdfe2507) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-23.exr using Guid(7d2260ec7055a1543b416d3bcdfe2507) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '728752c5a6f7acaa68cf679d95d10626') in 0.059572 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000019 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-12.exr - artifactKey: Guid(802db8dcea7fd6c4bb1c82bf24718226) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-12.exr using Guid(802db8dcea7fd6c4bb1c82bf24718226) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3bc359ff49a2c551ee20e7cf3bccd442') in 0.011531 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000014 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/LightingData.asset - artifactKey: Guid(8cdc6e1e39fe9a540960569296c34e63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/LightingData.asset using Guid(8cdc6e1e39fe9a540960569296c34e63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef16fd47bfbd05bc2ef529c170c366a8') in 0.001101 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 0.000010 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-10.exr - artifactKey: Guid(dd3d362f42cd1ff40876a6ad624fef38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-10.exr using Guid(dd3d362f42cd1ff40876a6ad624fef38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '742fce49d6a46844a44f3036f9a2d6fe') in 0.010852 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-1.exr - artifactKey: Guid(e9aeae589a9dbbc4385fc571a2b7f72a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-1.exr using Guid(e9aeae589a9dbbc4385fc571a2b7f72a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1af65bfceddf5c0057c9f6744b8462e1') in 0.010741 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000014 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-21.exr - artifactKey: Guid(8c5e1fbbb7ecff346a60dba41a7010cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-21.exr using Guid(8c5e1fbbb7ecff346a60dba41a7010cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bba7fb0fd4e2157807e02239d38020e3') in 0.012044 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-27.exr - artifactKey: Guid(cd9a29a5752dc99408ed0e345ca16cd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-27.exr using Guid(cd9a29a5752dc99408ed0e345ca16cd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed0a554f3ce6b1df10ce8d530dbec0b3') in 0.010698 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-9.exr - artifactKey: Guid(902259eda39c6614b99bb8c84dad8588) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-9.exr using Guid(902259eda39c6614b99bb8c84dad8588) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69059807967c1b8e3726939b33a0f285') in 0.011313 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-20.exr - artifactKey: Guid(42c408579ca1b5f4bb53b39ae53741a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-20.exr using Guid(42c408579ca1b5f4bb53b39ae53741a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b0344dd9dbbf1a619baff8ecc199c637') in 0.011283 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-28.exr - artifactKey: Guid(1cfd973b0bc3120479cbb707eac36d58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-28.exr using Guid(1cfd973b0bc3120479cbb707eac36d58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eec86935b61c76075c7841ddb61fccd9') in 0.011263 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-16.exr - artifactKey: Guid(9ad28b29079f9e04bae8d81da39f198d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-16.exr using Guid(9ad28b29079f9e04bae8d81da39f198d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdcc8a7ecad59fc441a5f2a3d360f8ff') in 0.010917 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.001868 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-2.exr - artifactKey: Guid(4f0052b1a8f2c4f49915d0b54b8f6dd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-2.exr using Guid(4f0052b1a8f2c4f49915d0b54b8f6dd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'adf4e62080440a28dbd020ff2e5d1082') in 0.010531 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.012190 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level - artifactKey: Guid(2e0c5a8adf3d58f448cbc50a477e5df6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level using Guid(2e0c5a8adf3d58f448cbc50a477e5df6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60b824036e399cbedc13aec7266044af') in 0.000415 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.000067 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-30.exr - artifactKey: Guid(b5ae70a2fc516ec49be6fcfc878aee80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-30.exr using Guid(b5ae70a2fc516ec49be6fcfc878aee80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8398029b184cc75acb10365b606cbf91') in 0.010417 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000016 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-31.exr - artifactKey: Guid(704394818bb2d004babb33a16f818177) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-31.exr using Guid(704394818bb2d004babb33a16f818177) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85f8294ea5d028095e4eb0e4ffe7f3dc') in 0.011053 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-4.exr - artifactKey: Guid(92d80783fd9d02c48a5cfb4ee7147f18) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-4.exr using Guid(92d80783fd9d02c48a5cfb4ee7147f18) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5688a6a6b3cab5d1617b80fc6112bf7d') in 0.011439 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-26.exr - artifactKey: Guid(a029a51094abc704188af1ee2469d4cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-26.exr using Guid(a029a51094abc704188af1ee2469d4cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c200b572425186074ab7062012af4e00') in 0.011164 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-24.exr - artifactKey: Guid(e1239b3a4928cf04db33b5fe402ee915) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-24.exr using Guid(e1239b3a4928cf04db33b5fe402ee915) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ec8864bc5940d27ef6634f20473b469') in 0.011032 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000013 seconds. - path: Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-19.exr - artifactKey: Guid(b25cf429cd76e1f4491add627b4a0ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Scenes/Level/ReflectionProbe-19.exr using Guid(b25cf429cd76e1f4491add627b4a0ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b2ed94e77540391d6b50fce1262b237') in 0.010613 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 4.975712 seconds. - path: Assets/TreePackVol.1/Textures/Textures/Trunk/9504886-Birch-Bark-Texture-Stock-Photo.png - artifactKey: Guid(adaacfe7ad690ac4f8da32db2d0f931e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TreePackVol.1/Textures/Textures/Trunk/9504886-Birch-Bark-Texture-Stock-Photo.png using Guid(adaacfe7ad690ac4f8da32db2d0f931e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34383ed95f07f6520ba43683181a0f68') in 0.020320 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 2 -======================================================================== -Received Import Request. - Time since last request: 0.004690 seconds. - path: Assets/Resources/3D Model/fbx/interior_240705.fbx - artifactKey: Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Resources/3D Model/fbx/interior_240705.fbx using Guid(f749aed721ade2349a9c324b1dd09b9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4b97e403562479d186fa3aa26e5412c') in 4.677574 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 5835 -======================================================================== -Received Import Request. - Time since last request: 3.590607 seconds. - path: Assets/Korail/Scripts/Control/MoveCamera.cs - artifactKey: Guid(bcd5601242261664490e10ed5244b339) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Scripts/Control/MoveCamera.cs using Guid(bcd5601242261664490e10ed5244b339) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aef550492aa9e110f3095f5d0c069685') in 0.008126 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 0.569991 seconds. - path: Assets/Korail/Scripts/Control/SelectionController.cs - artifactKey: Guid(ff331dc1feae874428142c5d893a30ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Scripts/Control/SelectionController.cs using Guid(ff331dc1feae874428142c5d893a30ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bce851aa0417e817601ba252a10b1673') in 0.000779 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 3.890278 seconds. - path: Assets/Korail/Scripts/Control/InputManager.cs - artifactKey: Guid(33d3a836ee9c19c40a748d4687ac491d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Scripts/Control/InputManager.cs using Guid(33d3a836ee9c19c40a748d4687ac491d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1367b5b21118bb5d000ddcf6f008e070') in 0.000337 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 9.094105 seconds. - path: Assets/Korail/Scripts/Action/ActionButton.cs - artifactKey: Guid(3a3e048235963d748815a71849927216) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Scripts/Action/ActionButton.cs using Guid(3a3e048235963d748815a71849927216) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad914a6bfeadc487edbb04df40792491') in 0.000355 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1.232684 seconds. - path: Assets/Korail/Scripts/Action/ActionObject.cs - artifactKey: Guid(4e0451e4262627d429667a12a731cf6a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Korail/Scripts/Action/ActionObject.cs using Guid(4e0451e4262627d429667a12a731cf6a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8bdf1f337283c84d842adc85213bdcc0') in 0.000487 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.570 seconds -Refreshing native plugins compatible for Editor in 8.63 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.827 seconds -Domain Reload Profiling: 1393ms - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (388ms) - LoadAssemblies (258ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (827ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (361ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 6.90 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5754. -Memory consumption went from 206.1 MB to 204.5 MB. -Total: 2.420800 ms (FindLiveObjects: 0.206900 ms CreateObjectMapping: 0.076800 ms MarkObjects: 1.788800 ms DeleteObjects: 0.347500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1288.629514 seconds. - path: Assets/SkySeries Freebie/FreebieHdri/Cloudymorning4k.hdr - artifactKey: Guid(3b5d67736d7b8ad4f8da4d58eaef0b98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/SkySeries Freebie/FreebieHdri/Cloudymorning4k.hdr using Guid(3b5d67736d7b8ad4f8da4d58eaef0b98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b69010fff823abca15c719c1adeee226') in 0.092962 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000021 seconds. - path: Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset - artifactKey: Guid(c41005c129ba4d66911b75229fd70b45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset using Guid(c41005c129ba4d66911b75229fd70b45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35ead940c88169fe09def292d429328e') in 0.007526 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 0.014313 seconds. - path: Assets/Train_Yard_Environment/Prefabs/Props/SM_locomotive.prefab - artifactKey: Guid(b1c6b333d50b65b4e93f3c2decebfc55) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Prefabs/Props/SM_locomotive.prefab using Guid(b1c6b333d50b65b4e93f3c2decebfc55) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5525751048266756075872ff4603c2c') in 0.090611 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 18 -======================================================================== -Received Import Request. - Time since last request: 0.000018 seconds. - path: Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_pipe_ring.prefab - artifactKey: Guid(71568d60a221edb48be1d11b501faab4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_pipe_ring.prefab using Guid(71568d60a221edb48be1d11b501faab4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '86af233501f33889331961ad29c52eda') in 0.106265 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 12 -======================================================================== -Received Import Request. - Time since last request: 0.000014 seconds. - path: Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_pipe_curve.prefab - artifactKey: Guid(3971a5a2c4990f7479c85671666f6387) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_pipe_curve.prefab using Guid(3971a5a2c4990f7479c85671666f6387) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ceb849b6dea6d2a9d3ad2ab8b1432a9') in 0.049901 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 12 -======================================================================== -Received Import Request. - Time since last request: 0.000023 seconds. - path: Assets/Train_Yard_Environment/Prefabs/Warehouse_Pieces/SM_Warehouse_RoofMounting.prefab - artifactKey: Guid(10c8db8600b74ee4cafcfbec0dfda924) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Prefabs/Warehouse_Pieces/SM_Warehouse_RoofMounting.prefab using Guid(10c8db8600b74ee4cafcfbec0dfda924) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84fc53330a3938f45309ed8cebf35650') in 0.033057 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 13 -======================================================================== -Received Import Request. - Time since last request: 0.000012 seconds. - path: Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_beam.prefab - artifactKey: Guid(3e69d40e5ea326e48ad8455b95d9f1b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_beam.prefab using Guid(3e69d40e5ea326e48ad8455b95d9f1b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '998f8879d84c592fc80e7e141501078f') in 0.069261 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 12 -======================================================================== -Received Import Request. - Time since last request: 0.000016 seconds. - path: Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc - artifactKey: Guid(c334973cef89a9840b0b0c507e0377ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc using Guid(c334973cef89a9840b0b0c507e0377ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8bb7cc9c67c1ea8eff38eb49235191bb') in 0.000825 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 0.000010 seconds. - path: Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_base.prefab - artifactKey: Guid(1b536e09678733f4b8ede0ce991a592e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Train_Yard_Environment/Prefabs/Props/Pipes_Vents/SM_modular_pipes_base.prefab using Guid(1b536e09678733f4b8ede0ce991a592e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e2fa9683bd9ecf3d662c634228e5022') in 0.053449 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 12 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.580 seconds -Refreshing native plugins compatible for Editor in 10.32 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.872 seconds -Domain Reload Profiling: 1448ms - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (2ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (19ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (395ms) - LoadAssemblies (270ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (872ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (374ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (29ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 7.26 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5078 Unused Serialized files (Serialized files now loaded: 0) -Unloading 79 unused Assets / (1.7 MB). Loaded Objects now: 5758. -Memory consumption went from 206.2 MB to 204.5 MB. -Total: 2.391000 ms (FindLiveObjects: 0.213200 ms CreateObjectMapping: 0.090800 ms MarkObjects: 1.721900 ms DeleteObjects: 0.364400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker5.log b/Logs/AssetImportWorker5-prev.log similarity index 73% copy from Logs/AssetImportWorker5.log copy to Logs/AssetImportWorker5-prev.log index 0a80750..aa31452 100644 --- a/Logs/AssetImportWorker5.log +++ b/Logs/AssetImportWorker5-prev.log @@ -15,7 +15,7 @@ -logFile Logs/AssetImportWorker5.log -srvPort -6622 +9449 Successfully changed project path to: D:/dev/korail_vr_interior D:/dev/korail_vr_interior [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [65612] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2914920810 [EditorId] 2914920810 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [2436] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2954638061 [EditorId] 2954638061 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [65612] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2914920810 [EditorId] 2914920810 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [2436] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 2954638061 [EditorId] 2954638061 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 24.04 ms, found 10 plugins. +Refreshing native plugins compatible for Editor in 28.22 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.5f1 (9674261d40ee) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems @@ -69,22 +69,22 @@ Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56136 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56512 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.023400 seconds. -- Loaded All Assemblies, in 0.340 seconds +Registered in 0.017267 seconds. +- Loaded All Assemblies, in 0.283 seconds Native extension for WindowsStandalone target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 535 ms +Android Extension - Scanning For ADB Devices 490 ms Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.766 seconds -Domain Reload Profiling: 1098ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.707 seconds +Domain Reload Profiling: 985ms + BeginReloadAssembly (83ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) @@ -92,26 +92,26 @@ CreateAndSetChildDomain (0ms) RebuildCommonClasses (24ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (71ms) - LoadAllAssembliesAndSetupDomain (126ms) - LoadAssemblies (98ms) + initialDomainReloadingComplete (58ms) + LoadAllAssembliesAndSetupDomain (107ms) + LoadAssemblies (80ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (108ms) - TypeCache.Refresh (107ms) - TypeCache.ScanAssembly (98ms) + AnalyzeDomain (94ms) + TypeCache.Refresh (94ms) + TypeCache.ScanAssembly (86ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (766ms) + FinalizeReload (708ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (725ms) + SetupLoadedEditorAssemblies (673ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (628ms) + InitializePlatformSupportModulesInManaged (569ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (60ms) - ProcessInitializeOnLoadMethodAttributes (33ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (62ms) + ProcessInitializeOnLoadMethodAttributes (36ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -121,8 +121,8 @@ Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.651 seconds -Refreshing native plugins compatible for Editor in 8.33 ms, found 10 plugins. +- Loaded All Assemblies, in 0.732 seconds +Refreshing native plugins compatible for Editor in 9.82 ms, found 10 plugins. Native extension for WindowsStandalone target not found Native extension for Android target not found Native extension for WebGL target not found @@ -140,47 +140,47 @@ [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). [Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.581 seconds -Domain Reload Profiling: 1228ms - BeginReloadAssembly (110ms) +- Finished resetting the current domain, in 0.705 seconds +Domain Reload Profiling: 1431ms + BeginReloadAssembly (106ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (14ms) - RebuildCommonClasses (20ms) + RebuildCommonClasses (22ms) RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (473ms) - LoadAssemblies (309ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (555ms) + LoadAssemblies (366ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (225ms) - TypeCache.Refresh (203ms) - TypeCache.ScanAssembly (194ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (4ms) - FinalizeReload (581ms) + AnalyzeDomain (244ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (207ms) + ScanForSourceGeneratedMonoScriptInfo (19ms) + ResolveRequiredComponents (5ms) + FinalizeReload (706ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (470ms) + SetupLoadedEditorAssemblies (558ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (313ms) - ProcessInitializeOnLoadMethodAttributes (37ms) + BeforeProcessingInitializeOnLoad (98ms) + ProcessInitializeOnLoadAttributes (374ms) + ProcessInitializeOnLoadMethodAttributes (40ms) AfterProcessingInitializeOnLoad (13ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (12ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds -Refreshing native plugins compatible for Editor in 12.69 ms, found 10 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds +Refreshing native plugins compatible for Editor in 13.01 ms, found 10 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.920500 ms (FindLiveObjects: 0.331700 ms CreateObjectMapping: 0.179000 ms MarkObjects: 2.845400 ms DeleteObjects: 0.562300 ms) +Unloading 5206 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5697. +Memory consumption went from 231.0 MB to 229.3 MB. +Total: 3.998300 ms (FindLiveObjects: 0.310300 ms CreateObjectMapping: 0.192100 ms MarkObjects: 2.948600 ms DeleteObjects: 0.546600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -195,8 +195,3 @@ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker6.log b/Logs/AssetImportWorker6.log deleted file mode 100644 index 6ee65e0..0000000 --- a/Logs/AssetImportWorker6.log +++ /dev/null @@ -1,202 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker6 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker6.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [31796] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 3287945602 [EditorId] 3287945602 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [31796] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 3287945602 [EditorId] 3287945602 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 26.19 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56612 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.025139 seconds. -- Loaded All Assemblies, in 0.341 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 509 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.757 seconds -Domain Reload Profiling: 1091ms - BeginReloadAssembly (104ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (76ms) - LoadAllAssembliesAndSetupDomain (122ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (105ms) - TypeCache.Refresh (104ms) - TypeCache.ScanAssembly (96ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (758ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (713ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (603ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (66ms) - ProcessInitializeOnLoadMethodAttributes (39ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.658 seconds -Refreshing native plugins compatible for Editor in 8.25 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.582 seconds -Domain Reload Profiling: 1234ms - BeginReloadAssembly (110ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (20ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (35ms) - LoadAllAssembliesAndSetupDomain (480ms) - LoadAssemblies (309ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (231ms) - TypeCache.Refresh (206ms) - TypeCache.ScanAssembly (196ms) - ScanForSourceGeneratedMonoScriptInfo (20ms) - ResolveRequiredComponents (6ms) - FinalizeReload (582ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (472ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (316ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds -Refreshing native plugins compatible for Editor in 11.85 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.919700 ms (FindLiveObjects: 0.355500 ms CreateObjectMapping: 0.214600 ms MarkObjects: 2.750200 ms DeleteObjects: 0.598400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker7.log b/Logs/AssetImportWorker7.log deleted file mode 100644 index 9d9d155..0000000 --- a/Logs/AssetImportWorker7.log +++ /dev/null @@ -1,202 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker7 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker7.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [24760] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 980173046 [EditorId] 980173046 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [24760] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 980173046 [EditorId] 980173046 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 20.62 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56244 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.018524 seconds. -- Loaded All Assemblies, in 0.312 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 523 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.751 seconds -Domain Reload Profiling: 1059ms - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (0ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (61ms) - LoadAllAssembliesAndSetupDomain (117ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (101ms) - TypeCache.Refresh (100ms) - TypeCache.ScanAssembly (92ms) - ScanForSourceGeneratedMonoScriptInfo (1ms) - ResolveRequiredComponents (0ms) - FinalizeReload (751ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (712ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (601ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (67ms) - ProcessInitializeOnLoadMethodAttributes (39ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.654 seconds -Refreshing native plugins compatible for Editor in 11.13 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.559 seconds -Domain Reload Profiling: 1209ms - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (13ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (37ms) - LoadAllAssembliesAndSetupDomain (486ms) - LoadAssemblies (305ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (233ms) - TypeCache.Refresh (210ms) - TypeCache.ScanAssembly (198ms) - ScanForSourceGeneratedMonoScriptInfo (18ms) - ResolveRequiredComponents (4ms) - FinalizeReload (560ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (445ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (295ms) - ProcessInitializeOnLoadMethodAttributes (40ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds -Refreshing native plugins compatible for Editor in 13.45 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.702100 ms (FindLiveObjects: 0.307100 ms CreateObjectMapping: 0.181700 ms MarkObjects: 2.637300 ms DeleteObjects: 0.575100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/AssetImportWorker9.log b/Logs/AssetImportWorker9.log deleted file mode 100644 index 94c46e9..0000000 --- a/Logs/AssetImportWorker9.log +++ /dev/null @@ -1,202 +0,0 @@ -Using pre-set license -Built from '2022.3/release' branch; Version is '2022.3.5f1 (9674261d40ee) revision 9860134'; Using compiler version '192829333'; Build Type 'Release' -OS: 'Windows 11 (10.0.22631) 64bit Professional' Language: 'ko' Physical Memory: 65276 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2022.3.5f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker9 --projectPath -D:/dev/korail_vr_interior --logFile -Logs/AssetImportWorker9.log --srvPort -6622 -Successfully changed project path to: D:/dev/korail_vr_interior -D:/dev/korail_vr_interior -[UnityMemory] Configuration Parameters - Can be set up in boot.config - "memorysetup-bucket-allocator-granularity=16" - "memorysetup-bucket-allocator-bucket-count=8" - "memorysetup-bucket-allocator-block-size=33554432" - "memorysetup-bucket-allocator-block-count=8" - "memorysetup-main-allocator-block-size=16777216" - "memorysetup-thread-allocator-block-size=16777216" - "memorysetup-gfx-main-allocator-block-size=16777216" - "memorysetup-gfx-thread-allocator-block-size=16777216" - "memorysetup-cache-allocator-block-size=4194304" - "memorysetup-typetree-allocator-block-size=2097152" - "memorysetup-profiler-bucket-allocator-granularity=16" - "memorysetup-profiler-bucket-allocator-bucket-count=8" - "memorysetup-profiler-bucket-allocator-block-size=33554432" - "memorysetup-profiler-bucket-allocator-block-count=8" - "memorysetup-profiler-allocator-block-size=16777216" - "memorysetup-profiler-editor-allocator-block-size=1048576" - "memorysetup-temp-allocator-size-main=16777216" - "memorysetup-job-temp-allocator-block-size=2097152" - "memorysetup-job-temp-allocator-block-size-background=1048576" - "memorysetup-job-temp-allocator-reduction-small-platforms=262144" - "memorysetup-allocator-temp-initial-block-size-main=262144" - "memorysetup-allocator-temp-initial-block-size-worker=262144" - "memorysetup-temp-allocator-size-background-worker=32768" - "memorysetup-temp-allocator-size-job-worker=262144" - "memorysetup-temp-allocator-size-preload-manager=33554432" - "memorysetup-temp-allocator-size-nav-mesh-worker=65536" - "memorysetup-temp-allocator-size-audio-worker=65536" - "memorysetup-temp-allocator-size-cloud-worker=32768" - "memorysetup-temp-allocator-size-gi-baking-worker=262144" - "memorysetup-temp-allocator-size-gfx=262144" -Player connection [53588] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 623845016 [EditorId] 623845016 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... - -Player connection [53588] Host "[IP] 192.168.0.5 [Port] 0 [Flags] 2 [Guid] 623845016 [EditorId] 623845016 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-T2ILV53) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... - -Refreshing native plugins compatible for Editor in 18.86 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2022.3.5f1 (9674261d40ee) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/dev/korail_vr_interior/Assets -GfxDevice: creating device client; threaded=0; jobified=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786) - Vendor: NVIDIA - VRAM: 12026 MB - Driver: 31.0.15.3667 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56256 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.024161 seconds. -- Loaded All Assemblies, in 0.327 seconds -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Android Extension - Scanning For ADB Devices 526 ms -Native extension for WebGL target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.758 seconds -Domain Reload Profiling: 1077ms - BeginReloadAssembly (103ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (75ms) - LoadAllAssembliesAndSetupDomain (112ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (94ms) - TypeCache.Refresh (93ms) - TypeCache.ScanAssembly (85ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (758ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (720ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (621ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (63ms) - ProcessInitializeOnLoadMethodAttributes (32ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -======================================================================== -Worker process is ready to serve import requests -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.668 seconds -Refreshing native plugins compatible for Editor in 8.65 ms, found 10 plugins. -Native extension for WindowsStandalone target not found -Native extension for Android target not found -Native extension for WebGL target not found -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process). -[Package Manager] Cannot connect to Unity Package Manager local server -- Finished resetting the current domain, in 0.571 seconds -Domain Reload Profiling: 1233ms - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (6ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (485ms) - LoadAssemblies (319ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (231ms) - TypeCache.Refresh (207ms) - TypeCache.ScanAssembly (198ms) - ScanForSourceGeneratedMonoScriptInfo (19ms) - ResolveRequiredComponents (4ms) - FinalizeReload (571ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (458ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (307ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (14ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds -Refreshing native plugins compatible for Editor in 12.46 ms, found 10 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 5205 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (1.7 MB). Loaded Objects now: 5696. -Memory consumption went from 230.8 MB to 229.1 MB. -Total: 3.894300 ms (FindLiveObjects: 0.330400 ms CreateObjectMapping: 0.164800 ms MarkObjects: 2.868200 ms DeleteObjects: 0.530100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:CustomObjectIndexerAttribute: 756ad292c208cfabdd7b50bc23989ffe -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -Editor requested this worker to shutdown with reason: Scaling down because of idle timeout -TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다. -AssetImportWorker is now disconnected from the server -Process exiting -Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/Logs/shadercompiler-AssetImportWorker0.log b/Logs/shadercompiler-AssetImportWorker0.log index c0697c6..07376ef 100644 --- a/Logs/shadercompiler-AssetImportWorker0.log +++ b/Logs/shadercompiler-AssetImportWorker0.log @@ -1,6 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2022.3.5f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) - -Quitting shader compiler process diff --git a/UserSettings/Layouts/default-2022.dwlt b/UserSettings/Layouts/default-2022.dwlt index 1480072..ca43198 100644 --- a/UserSettings/Layouts/default-2022.dwlt +++ b/UserSettings/Layouts/default-2022.dwlt @@ -14,16 +14,16 @@ m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 - x: 0 - y: 43 - width: 2560 - height: 1349 + x: 8 + y: 51 + width: 2544 + height: 1333 m_ShowMode: 4 m_Title: Scene m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 321} m_MaxSize: {x: 10000, y: 10000} - m_Maximized: 1 + m_Maximized: 0 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -44,8 +44,8 @@ serializedVersion: 2 x: 0 y: 0 - width: 2560 - height: 1349 + width: 2544 + height: 1333 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 @@ -69,7 +69,7 @@ serializedVersion: 2 x: 0 y: 0 - width: 2560 + width: 2544 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -90,8 +90,8 @@ m_Position: serializedVersion: 2 x: 0 - y: 1329 - width: 2560 + y: 1313 + width: 2544 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -114,12 +114,12 @@ serializedVersion: 2 x: 0 y: 30 - width: 2560 - height: 1299 + width: 2544 + height: 1283 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 0 - controlID: 110 + controlID: 131 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ serializedVersion: 2 x: 0 y: 0 - width: 1848 - height: 1299 + width: 1836 + height: 1283 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 50 + controlID: 39 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,12 +164,12 @@ serializedVersion: 2 x: 0 y: 0 - width: 1848 - height: 711 + width: 1836 + height: 700 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 41 + controlID: 40 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -187,8 +187,8 @@ serializedVersion: 2 x: 0 y: 0 - width: 335 - height: 711 + width: 332 + height: 700 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 14} @@ -211,10 +211,10 @@ m_Children: [] m_Position: serializedVersion: 2 - x: 335 + x: 332 y: 0 - width: 1513 - height: 711 + width: 1504 + height: 700 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 13} @@ -239,9 +239,9 @@ m_Position: serializedVersion: 2 x: 0 - y: 711 - width: 1848 - height: 588 + y: 700 + width: 1836 + height: 583 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} m_ActualView: {fileID: 16} @@ -265,10 +265,10 @@ m_Children: [] m_Position: serializedVersion: 2 - x: 1848 + x: 1836 y: 0 - width: 712 - height: 1299 + width: 708 + height: 1283 m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 18} @@ -331,10 +331,10 @@ m_Tooltip: m_Pos: serializedVersion: 2 - x: 335 - y: 73 - width: 1511 - height: 690 + x: 340 + y: 81 + width: 1502 + height: 679 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -654,9 +654,9 @@ m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 119.70031, y: 45.37397, z: -20.723825} + m_Target: {x: 9.54883, y: 2.6563559, z: 0.6500116} speed: 2 - m_Value: {x: 119.70031, y: 45.37397, z: -20.723825} + m_Value: {x: 9.54883, y: 2.6563559, z: 0.6500116} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -702,20 +702,20 @@ m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: 0.3683514, y: 0.6245297, z: -0.42423877, w: 0.5430358} + m_Target: {x: 0.19339885, y: 0.80333275, z: -0.43635622, w: 0.3570094} speed: 2 - m_Value: {x: 0.3683514, y: 0.6245297, z: -0.42423877, w: 0.5430358} + m_Value: {x: 0.18925408, y: 0.80729467, z: -0.4322521, w: 0.35442397} m_Size: - m_Target: 84.55588 + m_Target: 0.21173793 speed: 2 - m_Value: 84.55588 + m_Value: 0.21173793 m_Ortho: m_Target: 0 speed: 2 m_Value: 0 m_CameraSettings: - m_Speed: 1.8800601 - m_SpeedNormalized: 0.94000006 + m_Speed: 1.9400301 + m_SpeedNormalized: 0.97 m_SpeedMin: 0.001 m_SpeedMax: 2 m_EasingEnabled: 1 @@ -753,10 +753,10 @@ m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 73 - width: 334 - height: 690 + x: 8 + y: 81 + width: 331 + height: 679 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -770,9 +770,9 @@ m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: e6faffff + m_SelectedIDs: 02cf0100 + m_LastClickedID: 118530 + m_ExpandedIDs: 9675ffff5ab4ffff02f9fffff2fafffff8920000bea10000aea40000eead0100b4bc0100a4bf0100 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -788,7 +788,7 @@ m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 8} + m_ClientGUIView: {fileID: 0} m_SearchString: m_ExpandedScenes: [] m_CurrenRootInstanceID: 0 @@ -816,10 +816,10 @@ m_Tooltip: m_Pos: serializedVersion: 2 - x: 335 - y: 73 - width: 1511 - height: 690 + x: 340 + y: 81 + width: 1502 + height: 679 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -836,7 +836,7 @@ m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1511, y: 669} + m_TargetSize: {x: 1502, y: 658} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -851,10 +851,10 @@ m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -755.5 - m_HBaseRangeMax: 755.5 - m_VBaseRangeMin: -334.5 - m_VBaseRangeMax: 334.5 + m_HBaseRangeMin: -751 + m_HBaseRangeMax: 751 + m_VBaseRangeMin: -329 + m_VBaseRangeMax: 329 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -872,23 +872,23 @@ serializedVersion: 2 x: 0 y: 21 - width: 1511 - height: 669 + width: 1502 + height: 658 m_Scale: {x: 1, y: 1} - m_Translation: {x: 755.5, y: 334.5} + m_Translation: {x: 751, y: 329} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -755.5 - y: -334.5 - width: 1511 - height: 669 + x: -751 + y: -329 + width: 1502 + height: 658 m_MinimalGUI: 1 m_defaultScale: 1 - m_LastWindowPixelSize: {x: 1511, y: 690} + m_LastWindowPixelSize: {x: 1502, y: 679} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -914,10 +914,10 @@ m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 784 - width: 1847 - height: 567 + x: 8 + y: 781 + width: 1835 + height: 562 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -929,7 +929,7 @@ m_SaveData: [] m_OverlaysVisible: 1 m_SearchFilter: - m_NameFilter: Mode_Selector + m_NameFilter: m_ClassNames: [] m_AssetLabels: [] m_AssetBundleNames: [] @@ -939,24 +939,24 @@ m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets + - Assets/Scenes m_Globs: [] - m_OriginalText: Mode_Selector + m_OriginalText: m_ImportLogFlags: 0 m_FilterByTypeIntersection: 0 m_ViewMode: 1 m_StartGridSize: 64 m_LastFolders: - - Assets + - Assets/Scenes m_LastFoldersGridSize: -1 m_LastProjectPath: D:\dev\korail_vr_interior m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 127} - m_SelectedIDs: 46790000 - m_LastClickedID: 31046 - m_ExpandedIDs: 0000000046790000487900004a7900004c7900004e79000050790000527900005479000056790000587900005a7900005c7900005e79000060790000627900006479000066790000687900006a7900006c7900006e79000070790000727900007479000076790000787900007a7900007c7900007e7900008079000000ca9a3bffffff7f + scrollPos: {x: 0, y: 779} + m_SelectedIDs: 94890000 + m_LastClickedID: 35220 + m_ExpandedIDs: 00000000928900009489000096890000988900009a8900009c8900009e890000a0890000a2890000a4890000a6890000a8890000aa890000ac890000ae890000b0890000b2890000b4890000b6890000b8890000ba890000bc890000be890000c0890000c2890000c4890000c6890000c8890000ca890000cc89000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -984,7 +984,7 @@ scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000046790000487900004a7900004c7900004e79000050790000527900005479000056790000587900005a7900005c7900005e79000060790000627900006479000066790000687900006a7900006c7900006e79000070790000727900007479000076790000787900007a7900007c7900007e79000080790000 + m_ExpandedIDs: 00000000928900009489000096890000988900009a8900009c8900009e890000a0890000a2890000a4890000a6890000a8890000aa890000ac890000ae890000b0890000b2890000b4890000b6890000b8890000ba890000bc890000be890000c0890000c2890000c4890000c6890000c8890000ca890000cc890000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1011,7 +1011,7 @@ m_ListAreaState: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 0 + m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000269f010004ce0000cab4000028b60000289f01008084010028ce00001e7f07005e0c0900c46b0000aa620100e40c0200800c02009831540046f2000000000000 m_RenameOverlay: m_UserAcceptedRename: 0 @@ -1060,10 +1060,10 @@ m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 784 + x: -15 + y: 816 width: 1847 - height: 567 + height: 569 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1094,10 +1094,10 @@ m_Tooltip: m_Pos: serializedVersion: 2 - x: 1848 - y: 73 - width: 711 - height: 1278 + x: 1844 + y: 81 + width: 707 + height: 1262 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 -- Gitblit v1.8.0