열차 목업의 내부 확인용 프로젝트
smchoi
2024-07-23 891576775c982322c685f6bedae3460ed1116011
Add : 의자 움직이는 기능 추가
4개 파일 추가됨
2개 파일 이름 변경됨
2개 파일 복사됨
8개 파일 변경됨
9개 파일 삭제됨
18759 ■■■■ 파일 변경됨
.vs/korail_vr_interior/v17/.suo 패치 | 보기 | raw | blame | 히스토리
.vs/korail_vr_interior/v17/fileList.bin 패치 | 보기 | raw | blame | 히스토리
Assets/ChairController.cs 56 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Assets/ChairController.cs.meta 11 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Assets/Korail/Scripts/Action/ActionDoor.cs 4 ●●●● 패치 | 보기 | raw | blame | 히스토리
Assets/Resources/3D Model/fbx.zip.meta 7 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Assets/Scenes/Train.unity 1333 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker0-prev.log 624 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker0.log 1073 ●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker1-prev.log 648 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker1.log 1023 ●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker10.log 5428 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker11.log 5644 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker2-prev.log 102 ●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker2.log 695 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker3-prev.log 105 ●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker3.log 202 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker4-prev.log 108 ●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker4.log 806 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker5-prev.log 105 ●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker6.log 202 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker7.log 202 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/AssetImportWorker9.log 202 ●●●●● 패치 | 보기 | raw | blame | 히스토리
Logs/shadercompiler-AssetImportWorker0.log 3 ●●●●● 패치 | 보기 | raw | blame | 히스토리
UserSettings/Layouts/default-2022.dwlt 176 ●●●● 패치 | 보기 | raw | blame | 히스토리
.vs/korail_vr_interior/v17/.suo
Binary files differ
.vs/korail_vr_interior/v17/fileList.bin
Binary files differ
Assets/ChairController.cs
New file
@@ -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);
    }
}
Assets/ChairController.cs.meta
New file
@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 77c79231534037949a0e2631d058b91b
MonoImporter:
  externalObjects: {}
  serializedVersion: 2
  defaultReferences: []
  executionOrder: 0
  icon: {instanceID: 0}
  userData:
  assetBundleName:
  assetBundleVariant:
Assets/Korail/Scripts/Action/ActionDoor.cs
@@ -77,10 +77,6 @@
        }
    }
    private void OnChangeModel(int idx)
    {
        Initialize();
    }
Assets/Resources/3D Model/fbx.zip.meta
File was deleted
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}
Logs/AssetImportWorker0-prev.log
New file
@@ -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
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
Number of asset objects unloaded after import = 10491
Logs/AssetImportWorker1-prev.log
New file
@@ -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
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
Number of asset objects unloaded after import = 10491
Logs/AssetImportWorker10.log
File was deleted
Logs/AssetImportWorker11.log
File was deleted
Logs/AssetImportWorker2-prev.log
File was renamed from Logs/AssetImportWorker5.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 -> 
Logs/AssetImportWorker2.log
File was deleted
Logs/AssetImportWorker3-prev.log
File was renamed from Logs/AssetImportWorker8.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
Logs/AssetImportWorker3.log
File was deleted
Logs/AssetImportWorker4-prev.log
copy from Logs/AssetImportWorker5.log copy to Logs/AssetImportWorker4-prev.log
File was copied from Logs/AssetImportWorker5.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 -> 
Logs/AssetImportWorker4.log
File was deleted
Logs/AssetImportWorker5-prev.log
copy from Logs/AssetImportWorker5.log copy to Logs/AssetImportWorker5-prev.log
File was copied from Logs/AssetImportWorker5.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
Logs/AssetImportWorker6.log
File was deleted
Logs/AssetImportWorker7.log
File was deleted
Logs/AssetImportWorker9.log
File was deleted
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
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