열차 목업의 내부 확인용 프로젝트
smchoi
2024-07-24 ec231f4110c782d44ea2820a1eaaa7a5711c6f16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
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
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
    "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 [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 [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 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
[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: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.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 216 ms
Native extension for WebGL target not found
Mono: successfully reloaded assembly
- 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 (19ms)
    RebuildNativeTypeToScriptingClass (5ms)
    initialDomainReloadingComplete (39ms)
    LoadAllAssembliesAndSetupDomain (84ms)
        LoadAssemblies (53ms)
        RebuildTransferFunctionScriptingTraits (0ms)
        AnalyzeDomain (80ms)
            TypeCache.Refresh (79ms)
                TypeCache.ScanAssembly (73ms)
            ScanForSourceGeneratedMonoScriptInfo (0ms)
            ResolveRequiredComponents (0ms)
    FinalizeReload (402ms)
        ReleaseScriptCaches (0ms)
        RebuildScriptCaches (0ms)
        SetupLoadedEditorAssemblies (369ms)
            LogAssemblyErrors (0ms)
            InitializePlatformSupportModulesInManaged (280ms)
            SetLoadedEditorAssemblies (3ms)
            RefreshPlugins (0ms)
            BeforeProcessingInitializeOnLoad (1ms)
            ProcessInitializeOnLoadAttributes (53ms)
            ProcessInitializeOnLoadMethodAttributes (32ms)
            AfterProcessingInitializeOnLoad (0ms)
            EditorAssembliesLoaded (0ms)
        ExecutionOrderSort2 (0ms)
        AwakeInstancesAfterBackupRestoration (0ms)
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\dev\korail_vr_interior\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in  0.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
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.496 seconds
Domain Reload Profiling: 995ms
    BeginReloadAssembly (81ms)
        ExecutionOrderSort (0ms)
        DisableScriptedObjects (3ms)
        BackupInstance (0ms)
        ReleaseScriptingObjects (0ms)
        CreateAndSetChildDomain (13ms)
    RebuildCommonClasses (19ms)
    RebuildNativeTypeToScriptingClass (5ms)
    initialDomainReloadingComplete (25ms)
    LoadAllAssembliesAndSetupDomain (367ms)
        LoadAssemblies (213ms)
        RebuildTransferFunctionScriptingTraits (0ms)
        AnalyzeDomain (195ms)
            TypeCache.Refresh (174ms)
                TypeCache.ScanAssembly (166ms)
            ScanForSourceGeneratedMonoScriptInfo (17ms)
            ResolveRequiredComponents (4ms)
    FinalizeReload (497ms)
        ReleaseScriptCaches (0ms)
        RebuildScriptCaches (0ms)
        SetupLoadedEditorAssemblies (388ms)
            LogAssemblyErrors (0ms)
            InitializePlatformSupportModulesInManaged (18ms)
            SetLoadedEditorAssemblies (3ms)
            RefreshPlugins (0ms)
            BeforeProcessingInitializeOnLoad (74ms)
            ProcessInitializeOnLoadAttributes (257ms)
            ProcessInitializeOnLoadMethodAttributes (30ms)
            AfterProcessingInitializeOnLoad (6ms)
            EditorAssembliesLoaded (0ms)
        ExecutionOrderSort2 (0ms)
        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 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 -> 
  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.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: 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 = 0
========================================================================
Received Import Request.
  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_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: 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 = 5835
========================================================================
Received Import Request.
  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 = 5975
========================================================================
Received Import Request.
  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 = 10501
========================================================================
Received Import Request.
  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 = 10491