AssetImportWorker0.log
67.7 KB
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
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
Using pre-set license
Built from '2020.3/release' branch; Version is '2020.3.1f1 (77a89f25062f) revision 7841951'; Using compiler version '192528614'; Build Type 'Release'
OS: 'Windows 10 Pro; OS build 18362.1139; Version 1903; 64bit' Language: 'ko' Physical Memory: 32681 MB
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
COMMAND LINE ARGUMENTS:
C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Unity.exe
-adb2
-batchMode
-noUpm
-name
AssetImportWorker0
-projectPath
D:/USER/UnityProjects/gradle
-logFile
Logs/AssetImportWorker0.log
-srvPort
4305
Successfully changed project path to: D:/USER/UnityProjects/gradle
D:/USER/UnityProjects/gradle
Using Asset Import Pipeline V2.
Refreshing native plugins compatible for Editor in 27.25 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2020.3.1f1 (77a89f25062f)
[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path D:/USER/UnityProjects/gradle/Assets
GfxDevice: creating device client; threaded=0
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: NVIDIA GeForce GTX 1050 Ti (ID=0x1c82)
Vendor:
VRAM: 4018 MB
Driver: 26.21.14.3200
Initialize mono
Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/Managed'
Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56464
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.003948 seconds.
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 28.05 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 2.515 seconds
Platform modules already initialized, skipping
Registering precompiled user dll's ...
Registered in 0.000651 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.26 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.922 seconds
Platform modules already initialized, skipping
========================================================================
Worker process is ready to serve import requests
Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1436 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 69.1 MB.
System memory in use after: 69.1 MB.
Unloading 11 unused Assets to reduce memory usage. Loaded Objects now: 1879.
Total: 1.824400 ms (FindLiveObjects: 0.156000 ms CreateObjectMapping: 0.041200 ms MarkObjects: 1.549100 ms DeleteObjects: 0.077400 ms)
========================================================================
Received Import Request.
path: Packages/com.unity.xr.arcore/Editor/Gradle.cs
artifactKey: Guid(456f94e525e6247e08d81c02fdf8996b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.xr.arcore/Editor/Gradle.cs using Guid(456f94e525e6247e08d81c02fdf8996b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a5d7424a1bb93ec7abbe005ae61f03a2') in 0.042656 seconds
Import took 0.044802 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000293 seconds.
path: Packages/com.unity.xr.arcore/Tests/Editor/GradleValidationTests.cs
artifactKey: Guid(ddfa88b69505644009cdad85c3b6983e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.xr.arcore/Tests/Editor/GradleValidationTests.cs using Guid(ddfa88b69505644009cdad85c3b6983e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0cbf7acbfca53b87e7fdc274431b13e0') in 0.004819 seconds
Import took 0.006798 seconds .
========================================================================
Received Import Request.
Time since last request: 54.974826 seconds.
path: Packages/com.unity.collab-proxy/Editor/Assets/Layouts/main-window.uxml
artifactKey: Guid(0fc258eba97959a4bbc9d04f35188e88) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy/Editor/Assets/Layouts/main-window.uxml using Guid(0fc258eba97959a4bbc9d04f35188e88) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a0dc555193a108bcb8d6b0d169b9ade') in 0.031048 seconds
Import took 0.033361 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000269 seconds.
path: Packages/com.unity.collab-proxy/Editor/Assets/Layouts/MainPageView.uxml
artifactKey: Guid(ff1bfb51c3ec34c4aaaeb29a0343f1c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy/Editor/Assets/Layouts/MainPageView.uxml using Guid(ff1bfb51c3ec34c4aaaeb29a0343f1c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b27323dd84508c0870e7cf0b6d2a4759') in 0.007208 seconds
Import took 0.009453 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000241 seconds.
path: Packages/com.unity.collab-proxy/Editor/Assets/Styles/MainPageView.uss
artifactKey: Guid(7af1720245a987d4b87094fc00ed8a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy/Editor/Assets/Styles/MainPageView.uss using Guid(7af1720245a987d4b87094fc00ed8a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fcd42a6722e8e666a1cde6650a69424e') in 0.009296 seconds
Import took 0.012132 seconds .
========================================================================
Received Import Request.
Time since last request: 11.951683 seconds.
path: Assets/XR/XRGeneralSettings.asset
artifactKey: Guid(99e61e09486d54148ae740c3679ade87) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/XR/XRGeneralSettings.asset using Guid(99e61e09486d54148ae740c3679ade87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23091c7c73dcd06a36d5826c196c9001') in 0.017490 seconds
Import took 0.020365 seconds .
========================================================================
Received Import Request.
Time since last request: 2.335597 seconds.
path: Assets
artifactKey: Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets using Guid(00000000000000001000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6374019befeac6ce670f13ba9960efb') in 0.006320 seconds
Import took 0.008918 seconds .
========================================================================
Received Import Request.
Time since last request: 9.891171 seconds.
path: Assets/Cube.prefab
artifactKey: Guid(efc964f69b6462a4c87d96025febd852) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cube.prefab using Guid(efc964f69b6462a4c87d96025febd852) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f82a752a1836c9bbad5e1c394e3c0caf') in 0.098460 seconds
Import took 0.100804 seconds .
========================================================================
Received Import Request.
Time since last request: 0.004576 seconds.
path: Assets/Cube.prefab
artifactKey: Guid(efc964f69b6462a4c87d96025febd852) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cube.prefab using Guid(efc964f69b6462a4c87d96025febd852) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f82a752a1836c9bbad5e1c394e3c0caf') in 0.008740 seconds
Import took 0.011108 seconds .
========================================================================
Received Import Request.
Time since last request: 6.354315 seconds.
path: Assets/XR
artifactKey: Guid(452dfedaf3a85334881782ef9684c572) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/XR using Guid(452dfedaf3a85334881782ef9684c572) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6e2f58d9b5f7261bf96ffe965a5f2e0') in 0.005762 seconds
Import took 0.008260 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000840 seconds.
path: Assets/XR
artifactKey: Guid(452dfedaf3a85334881782ef9684c572) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/XR using Guid(452dfedaf3a85334881782ef9684c572) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6e2f58d9b5f7261bf96ffe965a5f2e0') in 0.001611 seconds
Import took 0.003972 seconds .
========================================================================
Received Import Request.
Time since last request: 0.332012 seconds.
path: Assets/Scenes
artifactKey: Guid(1ae4fdc264eac7e459403c37dbd326c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes using Guid(1ae4fdc264eac7e459403c37dbd326c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb31abc91a24ebca1df4b895e2cfefcf') in 0.005841 seconds
Import took 0.008215 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000593 seconds.
path: Assets/Scenes
artifactKey: Guid(1ae4fdc264eac7e459403c37dbd326c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes using Guid(1ae4fdc264eac7e459403c37dbd326c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb31abc91a24ebca1df4b895e2cfefcf') in 0.001582 seconds
Import took 0.003842 seconds .
========================================================================
Received Import Request.
Time since last request: 0.632914 seconds.
path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a0c7bd3eade52b464e03a3fa19ccb01') in 0.005904 seconds
Import took 0.008340 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000646 seconds.
path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a0c7bd3eade52b464e03a3fa19ccb01') in 0.001973 seconds
Import took 0.004194 seconds .
========================================================================
Received Import Request.
Time since last request: 1.969544 seconds.
path: Assets/XR/Loaders/AR Core Loader.asset
artifactKey: Guid(8e2ab93e26769994da66290e545cb55b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/XR/Loaders/AR Core Loader.asset using Guid(8e2ab93e26769994da66290e545cb55b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ace5483d5759157a6a60a8780dbdea39') in 0.005566 seconds
Import took 0.007890 seconds .
========================================================================
Received Import Request.
Time since last request: 0.215881 seconds.
path: Assets/XR/Settings/AR Core Loader Settings.asset
artifactKey: Guid(b3804a80d9a5d7a489a27bee84de90ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/XR/Settings/AR Core Loader Settings.asset using Guid(b3804a80d9a5d7a489a27bee84de90ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5babf41cd1dac81afef3476adda3739') in 0.005770 seconds
Import took 0.008238 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000267 seconds.
path: Assets/XR/Settings/AR Core Settings.asset
artifactKey: Guid(df8054d5b1dfccc40859e1624814f3d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/XR/Settings/AR Core Settings.asset using Guid(df8054d5b1dfccc40859e1624814f3d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b771ecc7b70e910d3ad4f5761a8f1a0') in 0.006037 seconds
Import took 0.008207 seconds .
========================================================================
Received Import Request.
Time since last request: 2.862645 seconds.
path: Packages/com.unity.xr.arfoundation/package.json
artifactKey: Guid(08e6a1d1bc87fb6408c3e916a260691b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.xr.arfoundation/package.json using Guid(08e6a1d1bc87fb6408c3e916a260691b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa5906f25e7066d9a5e75b4493844ba7') in 0.010840 seconds
Import took 0.013199 seconds .
========================================================================
Received Import Request.
Time since last request: 0.925431 seconds.
path: Packages/com.unity.xr.arsubsystems/package.json
artifactKey: Guid(138de250db28475c974590f762d87650) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.xr.arsubsystems/package.json using Guid(138de250db28475c974590f762d87650) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '370c5a6b535b59a271aa10c849dc3733') in 0.002067 seconds
Import took 0.004402 seconds .
========================================================================
Received Import Request.
Time since last request: 0.665546 seconds.
path: Packages/com.unity.xr.arcore/package.json
artifactKey: Guid(96d3d50e9dd0d654c90f6f35bb673559) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.xr.arcore/package.json using Guid(96d3d50e9dd0d654c90f6f35bb673559) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fd080359d3ddf23c18069b99935e356') in 0.002046 seconds
Import took 0.004503 seconds .
========================================================================
Received Import Request.
Time since last request: 0.475854 seconds.
path: Packages/com.unity.ext.nunit/package.json
artifactKey: Guid(8143d3a8390f2c64685e3bc272bd9e90) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.ext.nunit/package.json using Guid(8143d3a8390f2c64685e3bc272bd9e90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a515a5f6954512393903c606c76dbd1f') in 0.007113 seconds
Import took 0.009616 seconds .
========================================================================
Received Import Request.
Time since last request: 20.350567 seconds.
path: Packages/com.unity.ide.rider/package.json
artifactKey: Guid(66c95bb3c74257f41bae2622511dc02d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.ide.rider/package.json using Guid(66c95bb3c74257f41bae2622511dc02d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '07c78b2820d61f6510e9a349cb7c5ed0') in 0.024709 seconds
Import took 0.027137 seconds .
========================================================================
Received Import Request.
Time since last request: 1.566633 seconds.
path: Packages/com.unity.subsystemregistration/package.json
artifactKey: Guid(39ae12a67d2824dda9cb95e774ab4ab1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.subsystemregistration/package.json using Guid(39ae12a67d2824dda9cb95e774ab4ab1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c42ff1e19e13467f64180e0d118d29f5') in 0.002051 seconds
Import took 0.004360 seconds .
========================================================================
Received Import Request.
Time since last request: 0.393787 seconds.
path: Packages/com.unity.test-framework/package.json
artifactKey: Guid(d6a2e6e4803de7b43baacdc355fc144d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.test-framework/package.json using Guid(d6a2e6e4803de7b43baacdc355fc144d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b836bfee6db3d38966d9886caecbdb3') in 0.018109 seconds
Import took 0.020544 seconds .
========================================================================
Received Import Request.
Time since last request: 0.209330 seconds.
path: Packages/com.unity.textmeshpro/package.json
artifactKey: Guid(220e9325710f4235a43492dd1ee4980d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.textmeshpro/package.json using Guid(220e9325710f4235a43492dd1ee4980d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '232a64afcd2128cfaf31f12c93ab6984') in 0.007219 seconds
Import took 0.009471 seconds .
========================================================================
Received Import Request.
Time since last request: 0.380904 seconds.
path: Packages/com.unity.collab-proxy/package.json
artifactKey: Guid(743fda8c4b219c8429fb5a77ede1c879) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy/package.json using Guid(743fda8c4b219c8429fb5a77ede1c879) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d08a04ef91ee2f04155d7c2c9f4eb96') in 0.020230 seconds
Import took 0.022544 seconds .
========================================================================
Received Import Request.
Time since last request: 3.530496 seconds.
path: Packages/com.unity.collab-proxy
artifactKey: Guid(1adad61bfb44214ee3e887b5febc4396) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy using Guid(1adad61bfb44214ee3e887b5febc4396) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80abca710384b3fb58dc25fe431cf506') in 0.005709 seconds
Import took 0.008366 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000342 seconds.
path: Packages/com.unity.collab-proxy
artifactKey: Guid(1adad61bfb44214ee3e887b5febc4396) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy using Guid(1adad61bfb44214ee3e887b5febc4396) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80abca710384b3fb58dc25fe431cf506') in 0.002098 seconds
Import took 0.004246 seconds .
========================================================================
Received Import Request.
Time since last request: 130.279482 seconds.
path: Assets/scripts
artifactKey: Guid(f4615122f25845d40bfeb937c13b8126) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts using Guid(f4615122f25845d40bfeb937c13b8126) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62b47b1dad2a9d27edf068b1c2ad8750') in 0.005314 seconds
Import took 0.008511 seconds .
========================================================================
Received Import Request.
Time since last request: 17.565421 seconds.
path: Assets/scripts/ARPlaceOnPlane.cs
artifactKey: Guid(15670efff7d349f4d81e61299127b32a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/ARPlaceOnPlane.cs using Guid(15670efff7d349f4d81e61299127b32a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58f4a699dda0cc230dee0b2e762ffbcc') in 0.005300 seconds
Import took 0.007789 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000663 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.955 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.43 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1446 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 72.4 MB.
System memory in use after: 72.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 1905.
Total: 1.789500 ms (FindLiveObjects: 0.138600 ms CreateObjectMapping: 0.046400 ms MarkObjects: 1.546900 ms DeleteObjects: 0.056600 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Import Request.
Time since last request: 287.094097 seconds.
path: Assets/Canvas.prefab
artifactKey: Guid(6ee782535783db74c9ec8a1e642532ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Canvas.prefab using Guid(6ee782535783db74c9ec8a1e642532ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b62afcf72f7e6dea7d85ee4f966d6426') in 0.044331 seconds
Import took 0.047153 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000918 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.30 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.897 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1447 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 72.6 MB.
System memory in use after: 72.6 MB.
Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 1911.
Total: 1.804300 ms (FindLiveObjects: 0.142400 ms CreateObjectMapping: 0.042100 ms MarkObjects: 1.547000 ms DeleteObjects: 0.072100 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Import Request.
Time since last request: 334.492566 seconds.
path: Assets/scripts/TakePicture.cs
artifactKey: Guid(a2cd3cd1beeac2e48a52df8b634c6bf3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/TakePicture.cs using Guid(a2cd3cd1beeac2e48a52df8b634c6bf3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '202b77a601289fc2b7396a265ab29cd6') in 0.008366 seconds
Import took 0.011366 seconds .
========================================================================
Received Import Request.
Time since last request: 0.034745 seconds.
path: Assets/scripts/TakePicture.cs
artifactKey: Guid(a2cd3cd1beeac2e48a52df8b634c6bf3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/TakePicture.cs using Guid(a2cd3cd1beeac2e48a52df8b634c6bf3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '202b77a601289fc2b7396a265ab29cd6') in 0.001959 seconds
Import took 0.004418 seconds .
========================================================================
Received Import Request.
Time since last request: 4.455098 seconds.
path: Assets/scripts/FlashImage.prefab
artifactKey: Guid(b95381635c8318844a98efdddbca235d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/FlashImage.prefab using Guid(b95381635c8318844a98efdddbca235d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c394f9a9d6736a75a44d649d0dfac0ac') in 0.049531 seconds
Import took 0.054733 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000748 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.28 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.899 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1447 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 72.6 MB.
System memory in use after: 72.7 MB.
Unloading 9 unused Assets to reduce memory usage. Loaded Objects now: 1915.
Total: 1.684900 ms (FindLiveObjects: 0.157600 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.427600 ms DeleteObjects: 0.055900 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Import Request.
Time since last request: 160.457897 seconds.
path: Assets/Animation
artifactKey: Guid(afecfa20c6f5dc740bb32592748a97af) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Animation using Guid(afecfa20c6f5dc740bb32592748a97af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efd56d0ce1132cb945d7aafb5ce1c931') in 0.008068 seconds
Import took 0.010813 seconds .
========================================================================
Received Import Request.
Time since last request: 3.410816 seconds.
path: Assets/Plugins/NativeGallery
artifactKey: Guid(f279f25c82d221b42a59fd3f4101277c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery using Guid(f279f25c82d221b42a59fd3f4101277c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '150134dd56c6fa6ebb2cb091db15ac1f') in 0.005791 seconds
Import took 0.008151 seconds .
========================================================================
Received Import Request.
Time since last request: 0.037284 seconds.
path: Assets/Plugins/NativeGallery/NativeGallery.Runtime.asmdef
artifactKey: Guid(6e5063adab271564ba0098a06a8cebda) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery/NativeGallery.Runtime.asmdef using Guid(6e5063adab271564ba0098a06a8cebda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1930de01b7baeea7d707c97e14a59110') in 0.008798 seconds
Import took 0.011418 seconds .
========================================================================
Received Import Request.
Time since last request: 0.963194 seconds.
path: Assets/Plugins/NativeGallery/Android
artifactKey: Guid(0a607dcda26e7614f86300c6ca717295) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery/Android using Guid(0a607dcda26e7614f86300c6ca717295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9d4e4f4ea6b04802ca545db52048233') in 0.002174 seconds
Import took 0.004755 seconds .
========================================================================
Received Import Request.
Time since last request: 0.810592 seconds.
path: Assets/Plugins/NativeGallery/Android/NGCallbackHelper.cs
artifactKey: Guid(2d517fd0f2f85f24698df2775bee58e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery/Android/NGCallbackHelper.cs using Guid(2d517fd0f2f85f24698df2775bee58e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ddc9fa0f1b7ce794c47b33d8f4ca5b4e') in 0.005369 seconds
Import took 0.007783 seconds .
========================================================================
Received Import Request.
Time since last request: 0.028531 seconds.
path: Assets/Plugins/NativeGallery/Android/NGCallbackHelper.cs
artifactKey: Guid(2d517fd0f2f85f24698df2775bee58e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery/Android/NGCallbackHelper.cs using Guid(2d517fd0f2f85f24698df2775bee58e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ddc9fa0f1b7ce794c47b33d8f4ca5b4e') in 0.001944 seconds
Import took 0.004663 seconds .
========================================================================
Received Import Request.
Time since last request: 0.437700 seconds.
path: Assets/Plugins/NativeGallery/Android/NGMediaReceiveCallbackAndroid.cs
artifactKey: Guid(4c18d702b07a63945968db47201b95c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery/Android/NGMediaReceiveCallbackAndroid.cs using Guid(4c18d702b07a63945968db47201b95c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29e3b8a7d4df87a0bb6a6aba4e712c8d') in 0.005838 seconds
Import took 0.008900 seconds .
========================================================================
Received Import Request.
Time since last request: 0.236993 seconds.
path: Assets/Plugins/NativeGallery/Android/NGPermissionCallbackAndroid.cs
artifactKey: Guid(a07afac614af1294d8e72a3c083be028) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/NativeGallery/Android/NGPermissionCallbackAndroid.cs using Guid(a07afac614af1294d8e72a3c083be028) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df0771ed1e70ac6648d33335fbe2185a') in 0.005768 seconds
Import took 0.008483 seconds .
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.16 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 43.9 MB.
System memory in use after: 44.0 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1916.
Total: 2.079600 ms (FindLiveObjects: 0.161700 ms CreateObjectMapping: 0.048000 ms MarkObjects: 1.821600 ms DeleteObjects: 0.047200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000749 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.28 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.923 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1446 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 72.5 MB.
System memory in use after: 72.6 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 1920.
Total: 1.771100 ms (FindLiveObjects: 0.160700 ms CreateObjectMapping: 0.041100 ms MarkObjects: 1.519800 ms DeleteObjects: 0.048500 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Import Request.
Time since last request: 3546.608057 seconds.
path: ProjectSettings/TagManager.asset
artifactKey: Guid(00000000000000003000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing ProjectSettings/TagManager.asset using Guid(00000000000000003000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e1ade904f8483502412a943970edefa') in 0.017781 seconds
Import took 0.020859 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000763 seconds.
path: ProjectSettings/TagManager.asset
artifactKey: Guid(00000000000000003000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing ProjectSettings/TagManager.asset using Guid(00000000000000003000000000000000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e1ade904f8483502412a943970edefa') in 0.002404 seconds
Import took 0.004909 seconds .
========================================================================
Received Import Request.
Time since last request: 231.593767 seconds.
path: Assets/Blender_2.81.obj
artifactKey: Guid(ae4babb9dbdb95b42af63ad271b97d75) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Blender_2.81.obj using Guid(ae4babb9dbdb95b42af63ad271b97d75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f808ad160557e9e243a16bba160bdbd') in 0.299855 seconds
Import took 0.302722 seconds .
========================================================================
Received Import Request.
Time since last request: 70.895180 seconds.
path: Assets/characterRogh.png
artifactKey: Guid(6a811edec640b7649bdda50565a08111) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/characterRogh.png using Guid(6a811edec640b7649bdda50565a08111) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d48cdaee990d20d91a8ab74d3bc3ce6') in 0.054859 seconds
Import took 0.057629 seconds .
========================================================================
Received Import Request.
Time since last request: 104.875321 seconds.
path: Assets/TEXTURA CUERPO.png
artifactKey: Guid(66209c4fe8c95784ebbce81894938f75) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/TEXTURA CUERPO.png using Guid(66209c4fe8c95784ebbce81894938f75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '331a7978d6717511d9ec9c161619c273') in 0.213820 seconds
Import took 0.216746 seconds .
========================================================================
Received Import Request.
Time since last request: 185.301311 seconds.
path: Assets/Blender_2.81.obj
artifactKey: Guid(ae4babb9dbdb95b42af63ad271b97d75) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Blender_2.81.obj using Guid(ae4babb9dbdb95b42af63ad271b97d75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e593f0050cd0662e535cd0658332377e') in 0.041991 seconds
Import took 0.044866 seconds .
========================================================================
Received Import Request.
Time since last request: 63.895802 seconds.
path: Assets/Blender_2.81.obj
artifactKey: Guid(ae4babb9dbdb95b42af63ad271b97d75) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Blender_2.81.obj using Guid(ae4babb9dbdb95b42af63ad271b97d75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e805451f354cfe5f569108e3f251339') in 0.088725 seconds
Import took 0.091375 seconds .
========================================================================
Received Import Request.
Time since last request: 39.296202 seconds.
path: Assets/New Material.mat
artifactKey: Guid(dfebef2927c5c6f48836a21aaa0a3fce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/New Material.mat using Guid(dfebef2927c5c6f48836a21aaa0a3fce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9343dacc568e185d25eab8b980fd0c4') in 0.018302 seconds
Import took 0.021351 seconds .
========================================================================
Received Import Request.
Time since last request: 54.657851 seconds.
path: Assets/Resource
artifactKey: Guid(ecd76fdbb3478d94baa7c2db5225916b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource using Guid(ecd76fdbb3478d94baa7c2db5225916b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '783ceda76fc80c851ef4f66518307e3f') in 0.005712 seconds
Import took 0.008220 seconds .
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.06 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.5 MB.
System memory in use after: 44.6 MB.
Unloading 7 unused Assets to reduce memory usage. Loaded Objects now: 1958.
Total: 2.898600 ms (FindLiveObjects: 0.159700 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.608600 ms DeleteObjects: 0.085400 ms)
========================================================================
Received Import Request.
Time since last request: 4479.684641 seconds.
path: Assets/scripts/CreateManager.cs
artifactKey: Guid(e2482c1d576dc9f468c6f6f47cad48ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/CreateManager.cs using Guid(e2482c1d576dc9f468c6f6f47cad48ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5214628c8cec62fe2c0aa24a2042f55') in 0.006095 seconds
Import took 0.008686 seconds .
========================================================================
Received Import Request.
Time since last request: 0.003264 seconds.
path: Assets/scripts/CreateManager.cs
artifactKey: Guid(e2482c1d576dc9f468c6f6f47cad48ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/CreateManager.cs using Guid(e2482c1d576dc9f468c6f6f47cad48ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5214628c8cec62fe2c0aa24a2042f55') in 0.001976 seconds
Import took 0.004291 seconds .
========================================================================
Received Import Request.
Time since last request: 1.364668 seconds.
path: Assets/scripts/Screenshot.cs
artifactKey: Guid(e0baf652ad5cdfa42a7ba9e658e97921) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/Screenshot.cs using Guid(e0baf652ad5cdfa42a7ba9e658e97921) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee3d5ae83ffa37f0d00a0a4a9d9fbfcd') in 0.005649 seconds
Import took 0.008016 seconds .
========================================================================
Received Import Request.
Time since last request: 31.112915 seconds.
path: Assets/Resource/New Material.mat
artifactKey: Guid(dfebef2927c5c6f48836a21aaa0a3fce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/New Material.mat using Guid(dfebef2927c5c6f48836a21aaa0a3fce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21f80d77e9672c382bca6da448cf192c') in 0.066887 seconds
Import took 0.069710 seconds .
========================================================================
Received Import Request.
Time since last request: 0.002091 seconds.
path: Assets/Resource/New Material.mat
artifactKey: Guid(dfebef2927c5c6f48836a21aaa0a3fce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/New Material.mat using Guid(dfebef2927c5c6f48836a21aaa0a3fce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21f80d77e9672c382bca6da448cf192c') in 0.062630 seconds
Import took 0.065085 seconds .
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.00 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.5 MB.
System memory in use after: 44.6 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1958.
Total: 3.222900 ms (FindLiveObjects: 0.140800 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.976300 ms DeleteObjects: 0.061300 ms)
========================================================================
Received Import Request.
Time since last request: 111.318606 seconds.
path: Assets/Materials/characterRogh.mat
artifactKey: Guid(ae4c520258da70a48bf293e5edaaa907) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Materials/characterRogh.mat using Guid(ae4c520258da70a48bf293e5edaaa907) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b0264fba106cd92b9c3578607cabd9db') in 0.024976 seconds
Import took 0.027439 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000251 seconds.
path: Assets/Materials/TEXTURA CUERPO.mat
artifactKey: Guid(f5a52e6f951f1c64e91cc824dad68f2e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Materials/TEXTURA CUERPO.mat using Guid(f5a52e6f951f1c64e91cc824dad68f2e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a60acca24772a181bf761e3793c14804') in 0.060639 seconds
Import took 0.062896 seconds .
========================================================================
Received Import Request.
Time since last request: 3.580461 seconds.
path: Packages/com.unity.collab-proxy/Editor/Assets/Icons/added-file-light.png
artifactKey: Guid(397fff6c3885f8343bb65714f0064b5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy/Editor/Assets/Icons/added-file-light.png using Guid(397fff6c3885f8343bb65714f0064b5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a83b9603b1d2f5f41c183991b0ffc61') in 0.007956 seconds
Import took 0.010390 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000326 seconds.
path: Packages/com.unity.collab-proxy/Editor/Assets/Icons/added-file-light@2x.png
artifactKey: Guid(ec2e3aa6d0ab8ce4eac29b56d65d61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Packages/com.unity.collab-proxy/Editor/Assets/Icons/added-file-light@2x.png using Guid(ec2e3aa6d0ab8ce4eac29b56d65d61d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bcd3d77ad8b67a6fa7239c75bcbc9205') in 0.008542 seconds
Import took 0.011255 seconds .
========================================================================
Received Import Request.
Time since last request: 36.730007 seconds.
path: Assets/Resource/Ghost Variant.prefab
artifactKey: Guid(126c3c0855dbc2b4c9071b1153c8d6fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost Variant.prefab using Guid(126c3c0855dbc2b4c9071b1153c8d6fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67bbc6091b17618ad71b88aa2409105f') in 0.075832 seconds
Import took 0.078647 seconds .
========================================================================
Received Import Request.
Time since last request: 11.821882 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03a286997a1e7bbb1d6e23d4bb7f458a') in 0.074339 seconds
Import took 0.076916 seconds .
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.04 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.5 MB.
System memory in use after: 44.6 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 2.723000 ms (FindLiveObjects: 0.236500 ms CreateObjectMapping: 0.074400 ms MarkObjects: 2.352900 ms DeleteObjects: 0.057800 ms)
========================================================================
Received Import Request.
Time since last request: 134.994184 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a502d063f0edafd840e29f201212f20') in 0.068196 seconds
Import took 0.070975 seconds .
========================================================================
Received Import Request.
Time since last request: 0.122655 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0cd55b3cea60a5a6086123c81238ea33') in 0.056622 seconds
Import took 0.059577 seconds .
========================================================================
Received Import Request.
Time since last request: 3.792184 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48260c2ffdcf5c4e3f2643050c6f142f') in 0.069961 seconds
Import took 0.072511 seconds .
========================================================================
Received Import Request.
Time since last request: 3.375780 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '76eda2c24bd0a12b199a182030670359') in 0.057965 seconds
Import took 0.060682 seconds .
========================================================================
Received Import Request.
Time since last request: 1.765213 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '060aad65e4281eb32dc88d29fbec4d45') in 0.066577 seconds
Import took 0.069201 seconds .
========================================================================
Received Import Request.
Time since last request: 1.761885 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '260d8a763a214e601c5e7285c5118d34') in 0.065744 seconds
Import took 0.068290 seconds .
========================================================================
Received Import Request.
Time since last request: 2.383285 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58cbdb59152d9520d5c7099b8638c190') in 0.056006 seconds
Import took 0.058712 seconds .
========================================================================
Received Import Request.
Time since last request: 1.771806 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92821ffd7be0ec9dedcc4bb9c074cd68') in 0.055570 seconds
Import took 0.058275 seconds .
========================================================================
Received Import Request.
Time since last request: 1.974871 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a20caac05078e4826076cb9c7e78b950') in 0.070519 seconds
Import took 0.073368 seconds .
========================================================================
Received Import Request.
Time since last request: 3.561561 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0364e2487c645d0978067f43c87d2b82') in 0.067544 seconds
Import took 0.070344 seconds .
========================================================================
Received Import Request.
Time since last request: 10.440490 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7697139b566bd8e9ede2f89232cb82c2') in 0.068206 seconds
Import took 0.070837 seconds .
========================================================================
Received Import Request.
Time since last request: 1.970525 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e97f8dcff777299c1d67abb164433a00') in 0.065877 seconds
Import took 0.068450 seconds .
========================================================================
Received Import Request.
Time since last request: 8.600298 seconds.
path: Assets/Resource/Ghost.prefab
artifactKey: Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Resource/Ghost.prefab using Guid(58719f614a1384f408b5a5b9b286077c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd38e2d5663ed96fe8c2bcc78c4a76461') in 0.068662 seconds
Import took 0.071487 seconds .
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.13 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.6 MB.
System memory in use after: 44.7 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 3.190400 ms (FindLiveObjects: 0.181100 ms CreateObjectMapping: 0.054200 ms MarkObjects: 2.895000 ms DeleteObjects: 0.058900 ms)
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.06 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.6 MB.
System memory in use after: 44.7 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 2.283700 ms (FindLiveObjects: 0.178600 ms CreateObjectMapping: 0.052200 ms MarkObjects: 1.999700 ms DeleteObjects: 0.052000 ms)
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 0.94 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.6 MB.
System memory in use after: 44.7 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 2.608300 ms (FindLiveObjects: 0.158800 ms CreateObjectMapping: 0.045700 ms MarkObjects: 2.352700 ms DeleteObjects: 0.050100 ms)
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.41 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.6 MB.
System memory in use after: 44.7 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 2.305700 ms (FindLiveObjects: 0.248800 ms CreateObjectMapping: 0.063600 ms MarkObjects: 1.945600 ms DeleteObjects: 0.046800 ms)
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 0.98 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.6 MB.
System memory in use after: 44.7 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 2.176900 ms (FindLiveObjects: 0.187000 ms CreateObjectMapping: 0.048600 ms MarkObjects: 1.883800 ms DeleteObjects: 0.055800 ms)
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.03 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.6 MB.
System memory in use after: 44.7 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 2.618000 ms (FindLiveObjects: 0.184000 ms CreateObjectMapping: 0.050400 ms MarkObjects: 2.326900 ms DeleteObjects: 0.055900 ms)
========================================================================
Received Import Request.
Time since last request: 4951.670821 seconds.
path: Assets/balloon1.png
artifactKey: Guid(34b3def5fd224744c909f70ee1e528b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/balloon1.png using Guid(34b3def5fd224744c909f70ee1e528b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a4fc3527660b6f8f8a8296cf8d5566a') in 0.062408 seconds
Import took 0.108549 seconds .
========================================================================
Received Import Request.
Time since last request: 16.806818 seconds.
path: Assets/balloon1.png
artifactKey: Guid(34b3def5fd224744c909f70ee1e528b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/balloon1.png using Guid(34b3def5fd224744c909f70ee1e528b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9a9f4f0c3eecafb27696d16f9abfb4a') in 0.052344 seconds
Import took 0.054983 seconds .
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.14 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.7 MB.
System memory in use after: 44.8 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1963.
Total: 35.398300 ms (FindLiveObjects: 0.182600 ms CreateObjectMapping: 0.047900 ms MarkObjects: 35.084700 ms DeleteObjects: 0.081200 ms)
========================================================================
Received Import Request.
Time since last request: 372.540026 seconds.
path: Assets/scripts/SceneManagement.cs
artifactKey: Guid(2f84027d7c6a39247899ca8bd8491d5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/SceneManagement.cs using Guid(2f84027d7c6a39247899ca8bd8491d5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c3c995d81075af224583f6fd112cbe2') in 0.005967 seconds
Import took 0.008749 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000686 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.30 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 1.101 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1447 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 73.1 MB.
System memory in use after: 73.2 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 1968.
Total: 1.813200 ms (FindLiveObjects: 0.155300 ms CreateObjectMapping: 0.048000 ms MarkObjects: 1.556900 ms DeleteObjects: 0.052400 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000832 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.28 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.933 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.28 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1447 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 73.1 MB.
System memory in use after: 73.2 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 1972.
Total: 1.812300 ms (FindLiveObjects: 0.147900 ms CreateObjectMapping: 0.064700 ms MarkObjects: 1.553700 ms DeleteObjects: 0.045000 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Import Request.
Time since last request: 177.199257 seconds.
path: Assets/scripts/balloon1.controller
artifactKey: Guid(5bec4d08ef9391142aff290502896950) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/balloon1.controller using Guid(5bec4d08ef9391142aff290502896950) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad2d7d1624836e7d3da4e270c67a97e3') in 0.016651 seconds
Import took 0.019378 seconds .
========================================================================
Received Import Request.
Time since last request: 1.176324 seconds.
path: Assets/scripts/balloon_1.anim
artifactKey: Guid(1dbf1541553773b4e8190b3f5df04ec6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/balloon_1.anim using Guid(1dbf1541553773b4e8190b3f5df04ec6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd93c96847147a15492e6478cacc71530') in 0.009454 seconds
Import took 0.011894 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000581 seconds.
path: Assets/scripts/balloon_1.anim
artifactKey: Guid(1dbf1541553773b4e8190b3f5df04ec6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/balloon_1.anim using Guid(1dbf1541553773b4e8190b3f5df04ec6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd93c96847147a15492e6478cacc71530') in 0.002262 seconds
Import took 0.004569 seconds .
========================================================================
Received Import Request.
Time since last request: 67.040318 seconds.
path: Assets/scripts/balloon2.controller
artifactKey: Guid(af95d6dea145e964da4b7d9054f3006f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/balloon2.controller using Guid(af95d6dea145e964da4b7d9054f3006f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c7a8caec659b8f53f5ebafe8d9e2dd1') in 0.006347 seconds
Import took 0.009086 seconds .
========================================================================
Received Import Request.
Time since last request: 0.469488 seconds.
path: Assets/scripts/balloon_2.anim
artifactKey: Guid(a1e94da572daf354ba88a2a1aa833299) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/scripts/balloon_2.anim using Guid(a1e94da572daf354ba88a2a1aa833299) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c0bd82aaecb5b3a11c89ca9ba69ded7') in 0.005994 seconds
Import took 0.008569 seconds .
========================================================================
Received Import Request.
Time since last request: 141.667722 seconds.
path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd72340d5e05b8fda383a1f3e3984adad') in 0.005846 seconds
Import took 0.008240 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.000662 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.899 seconds
Platform modules already initialized, skipping
Switching build target platform(5) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(524288) extendedPlatform(0)
Refreshing native plugins compatible for Editor in 0.27 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1447 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 73.2 MB.
System memory in use after: 73.2 MB.
Unloading 9 unused Assets to reduce memory usage. Loaded Objects now: 1975.
Total: 1.795500 ms (FindLiveObjects: 0.167100 ms CreateObjectMapping: 0.047500 ms MarkObjects: 1.520000 ms DeleteObjects: 0.060200 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.30 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.5 MB.
System memory in use after: 44.6 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1976.
Total: 18.048900 ms (FindLiveObjects: 0.275400 ms CreateObjectMapping: 0.046500 ms MarkObjects: 17.640400 ms DeleteObjects: 0.084500 ms)
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 0.96 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 44.4 MB.
System memory in use after: 44.5 MB.
Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1976.
Total: 2.461200 ms (FindLiveObjects: 0.182000 ms CreateObjectMapping: 0.045900 ms MarkObjects: 2.175800 ms DeleteObjects: 0.056300 ms)
AssetImportWorkerClient::OnTransportError - code=2 error=End of file