AssetImportWorker1.log
108 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
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
Using pre-set license
Built from '2020.3/staging' branch; Version is '2020.3.3f1 (76626098c1c4) revision 7758432'; Using compiler version '192528614'; Build Type 'Release'
OS: 'Windows 10 Home; OS build 19043.962; Version 2009; 64bit' Language: 'ko' Physical Memory: 3929 MB
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
COMMAND LINE ARGUMENTS:
C:\Program Files\Unity\Editor\Unity.exe
-adb2
-batchMode
-noUpm
-name
AssetImportWorker1
-projectPath
C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
-logFile
Logs/AssetImportWorker1.log
-srvPort
64676
Successfully changed project path to: C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
Using Asset Import Pipeline V2.
Refreshing native plugins compatible for Editor in 86.43 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2020.3.3f1 (76626098c1c4)
[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map/Assets
GfxDevice: creating device client; threaded=0
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: Intel(R) HD Graphics 620 (ID=0x5916)
Vendor:
VRAM: 1964 MB
Driver: 23.20.16.4849
Initialize mono
Mono path[0] = 'C:/Program Files/Unity/Editor/Data/Managed'
Mono path[1] = 'C:/Program Files/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
Mono config path = 'C:/Program Files/Unity/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56236
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: C:/Program Files/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.021413 seconds.
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 105.04 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 8.658 seconds
Platform modules already initialized, skipping
Registering precompiled user dll's ...
Registered in 0.005250 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.60 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 3.360 seconds
Platform modules already initialized, skipping
========================================================================
Worker process is ready to serve import requests
Launched and connected shader compiler UnityShaderCompiler.exe after 0.46 seconds
Refreshing native plugins compatible for Editor in 0.59 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1116 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 58.4 MB.
System memory in use after: 58.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 1560.
Total: 20.468400 ms (FindLiveObjects: 0.361600 ms CreateObjectMapping: 1.994200 ms MarkObjects: 17.340500 ms DeleteObjects: 0.769200 ms)
========================================================================
Received Import Request.
path: Assets/Free Stylized Garden Asset/Materials/Mailbox.mat
artifactKey: Guid(a62a4fa098b764b0483320c2a76395f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Materials/Mailbox.mat using Guid(a62a4fa098b764b0483320c2a76395f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '705578ff1f2b957e1c42d8b740dc2a43') in 3.803835 seconds
Import took 3.814121 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000908 seconds.
path: Assets/Free Stylized Garden Asset/Models/Fence Post.fbx
artifactKey: Guid(31137871a7088472f9ef92c576a877cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Models/Fence Post.fbx using Guid(31137871a7088472f9ef92c576a877cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '536568badbf9bde861726a505474dc52') in 1.115585 seconds
Import took 1.122870 seconds .
========================================================================
Received Import Request.
Time since last request: 0.005209 seconds.
path: Assets/Free Stylized Garden Asset/Prefabs/Small Plant.prefab
artifactKey: Guid(8954fed6c14284471bfce602998d3e5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Prefabs/Small Plant.prefab using Guid(8954fed6c14284471bfce602998d3e5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f2a1c1dc873e87ad0d4d155611afcd9') in 1.207094 seconds
Import took 1.214257 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000674 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Fence Post NOR.png
artifactKey: Guid(1b710297c24ad4726aadfa335e9a2904) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Fence Post NOR.png using Guid(1b710297c24ad4726aadfa335e9a2904) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf9706a0b44618209522f362dfcb8027') in 0.229405 seconds
Import took 0.236881 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000977 seconds.
path: Assets/Free Stylized Garden Asset/Materials/Fence Gate.mat
artifactKey: Guid(0e1444e55047c4c6c80b85b82ed0971d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Materials/Fence Gate.mat using Guid(0e1444e55047c4c6c80b85b82ed0971d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96124c9467ef6db59d5fd8cb58c5c0ff') in 0.130480 seconds
Import took 0.148149 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000637 seconds.
path: Assets/Free Stylized Garden Asset/Models/Fence Gate.fbx
artifactKey: Guid(bf7d0ec61e8384e9d81ea708769f3f7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Models/Fence Gate.fbx using Guid(bf7d0ec61e8384e9d81ea708769f3f7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a0997381ac4bbeed88466eb3bd6be029') in 0.099720 seconds
Import took 0.104796 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000995 seconds.
path: Assets/Free Stylized Garden Asset/Models/Fence.fbx
artifactKey: Guid(3d6555e5c610f4b069f4a717655917b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Models/Fence.fbx using Guid(3d6555e5c610f4b069f4a717655917b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed44a8792d39265a8864cc8af3c56de1') in 0.129310 seconds
Import took 0.145402 seconds .
========================================================================
Received Import Request.
Time since last request: 0.004645 seconds.
path: Assets/Free Stylized Garden Asset/Prefabs/Fence.prefab
artifactKey: Guid(67cc81d5424ea4fccbc7267473502366) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Prefabs/Fence.prefab using Guid(67cc81d5424ea4fccbc7267473502366) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4c96bc4071e3c7004c44d5f6e0a0853') in 0.098236 seconds
Import took 0.113481 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000957 seconds.
path: Assets/Free Stylized Garden Asset/Models/Mailbox 01.fbx
artifactKey: Guid(12202fd1aa44a40cb98ca2d1162cda3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Models/Mailbox 01.fbx using Guid(12202fd1aa44a40cb98ca2d1162cda3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71eacc786f73537f787eb58b8a68f496') in 3.331670 seconds
Import took 3.340180 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000757 seconds.
path: Assets/Free Stylized Garden Asset/Prefabs/Mailbox.prefab
artifactKey: Guid(748077ed833c34102965ab1dad2a8817) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Prefabs/Mailbox.prefab using Guid(748077ed833c34102965ab1dad2a8817) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd973cc0ef0c9809d739891f4a8d6fc0d') in 0.102001 seconds
Import took 0.108085 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000649 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Fence Gate NOR.png
artifactKey: Guid(dfb3c6534d8ab4532a6c1227bcdf763e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Fence Gate NOR.png using Guid(dfb3c6534d8ab4532a6c1227bcdf763e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9c226e6d7c13653d3ed1144f5a6ae1f') in 0.115229 seconds
Import took 0.134038 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000824 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Fence Gate COL.png
artifactKey: Guid(4cf1bd1a8a4a34a5c9a67d6a342ef4db) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Fence Gate COL.png using Guid(4cf1bd1a8a4a34a5c9a67d6a342ef4db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '954f444ba56b6f1d6ff70ef166ecd0b8') in 0.168546 seconds
Import took 0.178083 seconds .
========================================================================
Received Import Request.
Time since last request: 0.012522 seconds.
path: Assets/Free Stylized Garden Asset/Materials/Fence.mat
artifactKey: Guid(2d2f75d94738441e4be512df8ce2eabc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Materials/Fence.mat using Guid(2d2f75d94738441e4be512df8ce2eabc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4be63e2356fe32da6481062ab04c542') in 0.184082 seconds
Import took 0.189911 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000494 seconds.
path: Assets/Free Stylized Garden Asset/Materials/Fence Post.mat
artifactKey: Guid(c1154d3e840764be7ac4a3cf55913826) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Materials/Fence Post.mat using Guid(c1154d3e840764be7ac4a3cf55913826) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c89404d01c4ff439703ecf04c3ee8fa') in 0.194196 seconds
Import took 0.200618 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000614 seconds.
path: Assets/Free Stylized Garden Asset/Models/Small Plant.fbx
artifactKey: Guid(515e22959e97d43469e84d7b5c6b9dfe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Models/Small Plant.fbx using Guid(515e22959e97d43469e84d7b5c6b9dfe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0eff8e841a04cea3d26bae99f3c93606') in 0.138981 seconds
Import took 0.145640 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000732 seconds.
path: Assets/Free Stylized Garden Asset/Prefabs/Fence Post.prefab
artifactKey: Guid(b5f88c299f5594273a868f2f3fe5b675) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Prefabs/Fence Post.prefab using Guid(b5f88c299f5594273a868f2f3fe5b675) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abecf872e40f7bd0145ff749ef97f211') in 1.158772 seconds
Import took 1.167350 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001060 seconds.
path: Assets/Free Stylized Garden Asset/Prefabs/Fence Gate.prefab
artifactKey: Guid(8f48e43b0272a466693157f5acf48bdf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Prefabs/Fence Gate.prefab using Guid(8f48e43b0272a466693157f5acf48bdf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c38063dd38f41846880499b6e3803f0') in 0.079739 seconds
Import took 0.157238 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000866 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Fence Post COL.png
artifactKey: Guid(cd41ea2b18cd1435692d9119fbe8fdeb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Fence Post COL.png using Guid(cd41ea2b18cd1435692d9119fbe8fdeb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1073496db3efdc36a4fb76a80558f02') in 0.423484 seconds
Import took 0.429852 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000176 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Fence COL.png
artifactKey: Guid(608da5df57291436d820ba6dfb6ace04) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Fence COL.png using Guid(608da5df57291436d820ba6dfb6ace04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'baed88abe6cf74e84f51a3ef1f0a5092') in 0.050294 seconds
Import took 0.214969 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000625 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Mailbox COL.png
artifactKey: Guid(d8416d7971cc442208365dc0dc246bf6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Mailbox COL.png using Guid(d8416d7971cc442208365dc0dc246bf6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3bd789df5e53f1ec5e2cc3c6f0996015') in 0.045419 seconds
Import took 0.147002 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000593 seconds.
path: Assets/Free Stylized Garden Asset/Materials/Small Plant.mat
artifactKey: Guid(d65383c7ac4d447c299b8286e1d55f08) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Materials/Small Plant.mat using Guid(d65383c7ac4d447c299b8286e1d55f08) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1dd5670a8f4e816e4a4268424aa67da') in 0.113277 seconds
Import took 0.117202 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000701 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Small Plant COL.png
artifactKey: Guid(4daea160c09e4491eba20200c8ce7484) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Small Plant COL.png using Guid(4daea160c09e4491eba20200c8ce7484) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1323d99e3cc4dc6d940aa4699bb6327e') in 0.461394 seconds
Import took 0.558415 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000773 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Mailbox NOR.png
artifactKey: Guid(1f07d8753a0c94b7c8635388ef855baf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Mailbox NOR.png using Guid(1f07d8753a0c94b7c8635388ef855baf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '153566d23242bfa3ed0951784900195a') in 0.170211 seconds
Import took 0.317908 seconds .
========================================================================
Received Import Request.
Time since last request: 0.104830 seconds.
path: Assets/Free Stylized Garden Asset/Textures/Fence NOR.png
artifactKey: Guid(c7926a838874d4106bc6b4c81e07ff64) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Free Stylized Garden Asset/Textures/Fence NOR.png using Guid(c7926a838874d4106bc6b4c81e07ff64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe877da8c0de5118390d0f818f4001bb') in 0.748688 seconds
Import took 0.758896 seconds .
========================================================================
Received Import Request.
Time since last request: 3063.076034 seconds.
path: Assets/City Pack/Prefab/BD001_0.prefab
artifactKey: Guid(660de991c6e96574594b49018232048b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Prefab/BD001_0.prefab using Guid(660de991c6e96574594b49018232048b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82540a5227f53f492d3087ae84cd3bb1') in 0.869722 seconds
Import took 1.014195 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001464 seconds.
path: Assets/City Pack/Prefab/BL001_2.prefab
artifactKey: Guid(a7a018567498e9447a9048ef34dbee82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Prefab/BL001_2.prefab using Guid(a7a018567498e9447a9048ef34dbee82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b57a97087d81333f27ab48ff07ab55c8') in 0.238957 seconds
Import took 0.247499 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000604 seconds.
path: Assets/City Pack/Prefab/SL001_0.prefab
artifactKey: Guid(c2bd7604de1e4774cabe40e7de088fd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Prefab/SL001_0.prefab using Guid(c2bd7604de1e4774cabe40e7de088fd2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6d95ca95316c0f9311b7457a40d53ce') in 0.082584 seconds
Import took 0.089504 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001340 seconds.
path: Assets/City Pack/Prefab/SL001_10.prefab
artifactKey: Guid(7175fe6e56c60c44c8a9ee462bdf43fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Prefab/SL001_10.prefab using Guid(7175fe6e56c60c44c8a9ee462bdf43fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61a69f2286fcdf441e058cf1c04fa88b') in 0.084351 seconds
Import took 0.101418 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001074 seconds.
path: Assets/City Pack/Prefab/CP_V1.0.4_15.prefab
artifactKey: Guid(d8fa3df575c32414c8ceb24bfbb3b9a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Prefab/CP_V1.0.4_15.prefab using Guid(d8fa3df575c32414c8ceb24bfbb3b9a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ddd696308b33137ce339c63e4006efd') in 0.431556 seconds
Import took 0.441238 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001124 seconds.
path: Assets/City Pack/Prefab/CP_V1.0.4_24.prefab
artifactKey: Guid(b0994952525b5f842b8ab94d60308a31) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Prefab/CP_V1.0.4_24.prefab using Guid(b0994952525b5f842b8ab94d60308a31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa0f62bd2f82328eb4e3fc3ebc979f5e') in 0.159176 seconds
Import took 0.165648 seconds .
========================================================================
Received Import Request.
Time since last request: 9.018950 seconds.
path: Assets/City Pack/Demo/cityvers01_anim01.gif
artifactKey: Guid(3dab1f192d7dcba4eb713c1217e313f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Demo/cityvers01_anim01.gif using Guid(3dab1f192d7dcba4eb713c1217e313f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd523d73eff3800a3617fd8fc2036b25') in 0.286313 seconds
Import took 0.292072 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001128 seconds.
path: Assets/City Pack/Demo/CS03.png
artifactKey: Guid(b6f4c46665467e04bb78a03b87bb1cb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Demo/CS03.png using Guid(b6f4c46665467e04bb78a03b87bb1cb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b12da1624f2b5a9912a84389759da176') in 0.073338 seconds
Import took 0.083257 seconds .
========================================================================
Received Import Request.
Time since last request: 0.005135 seconds.
path: Assets/City Pack/Demo/cityvers01_anim02.gif
artifactKey: Guid(e60f138c2a1210342bc010cae9907ede) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/City Pack/Demo/cityvers01_anim02.gif using Guid(e60f138c2a1210342bc010cae9907ede) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f644849920996aea749e16eee1740e08') in 0.144341 seconds
Import took 0.157795 seconds .
========================================================================
Received Import Request.
Time since last request: 18.632106 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_broom_01.prefab
artifactKey: Guid(a463cb358b3f799499b5078f511ef61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_broom_01.prefab using Guid(a463cb358b3f799499b5078f511ef61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e7b2b5c19cb94e37cf125d283c6281c') in 0.103670 seconds
Import took 0.111274 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000718 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_rake_01.prefab
artifactKey: Guid(b44415eef131de742a4190453fc4d68e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_rake_01.prefab using Guid(b44415eef131de742a4190453fc4d68e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e77374dd350ab72e28d11961431bf9e5') in 0.055060 seconds
Import took 0.071539 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000673 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_broom_01.prefab
artifactKey: Guid(a463cb358b3f799499b5078f511ef61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_broom_01.prefab using Guid(a463cb358b3f799499b5078f511ef61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e7b2b5c19cb94e37cf125d283c6281c') in 0.073003 seconds
Import took 0.078953 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000677 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_ladder_01.prefab
artifactKey: Guid(7087784e228be8745af45599a5130532) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_ladder_01.prefab using Guid(7087784e228be8745af45599a5130532) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c232dfabcc393d8fa4e87b98e0943999') in 0.156417 seconds
Import took 0.168030 seconds .
========================================================================
Received Import Request.
Time since last request: 0.015398 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_ladder_01.prefab
artifactKey: Guid(7087784e228be8745af45599a5130532) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Items/rpgpp_lt_ladder_01.prefab using Guid(7087784e228be8745af45599a5130532) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c232dfabcc393d8fa4e87b98e0943999') in 0.087329 seconds
Import took 0.094680 seconds .
========================================================================
Received Import Request.
Time since last request: 2.818306 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Furniture/Chairs/rpgpp_lt_chair_01a.prefab
artifactKey: Guid(af46e0e24402dfa49aea336191bc47ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Furniture/Chairs/rpgpp_lt_chair_01a.prefab using Guid(af46e0e24402dfa49aea336191bc47ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e383f5a396d633e485b9e517561b0e7c') in 0.059229 seconds
Import took 0.066267 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000487 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Furniture/Chairs/rpgpp_lt_chair_01b.prefab
artifactKey: Guid(7a77ea810bbc0db4992e500affe32dbf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Furniture/Chairs/rpgpp_lt_chair_01b.prefab using Guid(7a77ea810bbc0db4992e500affe32dbf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0d8714692fb76e97718d46056599c65') in 0.045981 seconds
Import took 0.065612 seconds .
========================================================================
Received Import Request.
Time since last request: 4389.986722 seconds.
path: Assets/Food icons Pack/PNG/nut.png
artifactKey: Guid(fa3924bde7f974cb799caaa5594f3409) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Food icons Pack/PNG/nut.png using Guid(fa3924bde7f974cb799caaa5594f3409) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05465b20ca944f188bd73dc18d313bb0') in 0.317700 seconds
Import took 0.424328 seconds .
========================================================================
Received Import Request.
Time since last request: 6.307882 seconds.
path: Assets/Food icons Pack/PNG/Materials/nut.mat
artifactKey: Guid(663ca108ca49be14b9b5dd1fc2467e3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Food icons Pack/PNG/Materials/nut.mat using Guid(663ca108ca49be14b9b5dd1fc2467e3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1bfc1f1c49ef492d4ab7ad2b05dd58a3') in 0.215958 seconds
Import took 0.240612 seconds .
========================================================================
Received Import Request.
Time since last request: 19.812198 seconds.
path: Assets/Food icons Pack/PSD/foodiconspack.psd
artifactKey: Guid(347d349f97f2a4499ada5fe3efcc9713) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Food icons Pack/PSD/foodiconspack.psd using Guid(347d349f97f2a4499ada5fe3efcc9713) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a3c6769629b8b07385cbb882927f2fd') in 0.342137 seconds
Import took 0.356655 seconds .
========================================================================
Received Import Request.
Time since last request: 20.501658 seconds.
path: Assets/Food icons Pack/PSD/Materials/foodiconspack.mat
artifactKey: Guid(3e6f80844b36f204dbce5f0d67c83972) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Food icons Pack/PSD/Materials/foodiconspack.mat using Guid(3e6f80844b36f204dbce5f0d67c83972) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff0a718ef2f5a8faacfe1436639f808d') in 0.250997 seconds
Import took 0.263320 seconds .
========================================================================
Received Import Request.
Time since last request: 485.746000 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfAnticipation_01.fbx
artifactKey: Guid(bdc7912b837d8574581a2e31256d4db8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfAnticipation_01.fbx using Guid(bdc7912b837d8574581a2e31256d4db8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '151f98d82d1abe468f34d2de69270217') in 0.179509 seconds
Import took 0.250986 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000920 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle.fbx
artifactKey: Guid(95f825eb610d58645a6fbf1e916ffa64) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle.fbx using Guid(95f825eb610d58645a6fbf1e916ffa64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b0b545f507b7602a1d9764e67294073') in 0.030523 seconds
Import took 0.039017 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000858 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle2.fbx
artifactKey: Guid(6d31cb477d31b18408250d6eb2288c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle2.fbx using Guid(6d31cb477d31b18408250d6eb2288c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb7daf8614ad37d280321a69e71bcd47') in 0.035841 seconds
Import took 0.046471 seconds .
========================================================================
Received Import Request.
Time since last request: 1.580736 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@ComboFinish.fbx
artifactKey: Guid(225072896c8a76b4f9ba2f97cc6396c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@ComboFinish.fbx using Guid(225072896c8a76b4f9ba2f97cc6396c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6bdc5712b1e7585bec32aad8140d39e6') in 0.032173 seconds
Import took 0.044818 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000694 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@dodge L.fbx
artifactKey: Guid(4f0770abd4e545a419d40562754ad6df) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@dodge L.fbx using Guid(4f0770abd4e545a419d40562754ad6df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49dea96dac2253e9f5dde632c0cfda4d') in 0.023916 seconds
Import took 0.032668 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000798 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@kick.fbx
artifactKey: Guid(d0ea25b5e5333cd4f8a6ea2a82fc4134) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@kick.fbx using Guid(d0ea25b5e5333cd4f8a6ea2a82fc4134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1c2c1c2d914ed28967d6a3ea55d13ff') in 0.104425 seconds
Import took 0.113819 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000783 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@counter atk.fbx
artifactKey: Guid(60618ebe88ff8bb4281305e63b08ff05) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@counter atk.fbx using Guid(60618ebe88ff8bb4281305e63b08ff05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9643cb590c07f705b4758d59c7ee4aee') in 0.024121 seconds
Import took 0.032110 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000446 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@idle.fbx
artifactKey: Guid(1279ce1156a3ff845bb3568546de1e57) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@idle.fbx using Guid(1279ce1156a3ff845bb3568546de1e57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce32f1001613574a5d97fe7593f1973a') in 0.028400 seconds
Import took 0.036279 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000623 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@getup.fbx
artifactKey: Guid(cfbb407ab968a994ebdb214c5531c5c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@getup.fbx using Guid(cfbb407ab968a994ebdb214c5531c5c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b63a8abfe0edf6983a196a58db98380c') in 0.035541 seconds
Import took 0.044577 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000788 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@hypo.fbx
artifactKey: Guid(86b388147abb21445a1106a893329acd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@hypo.fbx using Guid(86b388147abb21445a1106a893329acd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '858f58f3abf5165c08886d1f918582c7') in 0.055130 seconds
Import took 0.065667 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000745 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@jog 2h.fbx
artifactKey: Guid(626360514eca96949820371bb2066d3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@jog 2h.fbx using Guid(626360514eca96949820371bb2066d3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc91b616407be48d6a7e771b50c9b743') in 0.076775 seconds
Import took 0.083816 seconds .
========================================================================
Received Import Request.
Time since last request: 4.015143 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Jambie_texture.mat
artifactKey: Guid(efc7eea160c00f247a421ea7ef1a4933) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Jambie_texture.mat using Guid(efc7eea160c00f247a421ea7ef1a4933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e8d4f0d0c1243a538da6398abd1c869e') in 0.055024 seconds
Import took 0.067272 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000498 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Vector_colours.mat
artifactKey: Guid(af1c4e64ca0ce1a4fa470580553a1cfd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Vector_colours.mat using Guid(af1c4e64ca0ce1a4fa470580553a1cfd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8dfcc31e52af8373db0c32da704566e1') in 0.672210 seconds
Import took 0.677781 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000779 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.mat
artifactKey: Guid(ff0eeaceb189f8c458fc573cf4a16a3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.mat using Guid(ff0eeaceb189f8c458fc573cf4a16a3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c848c02c1279f53fc00c6284b1519759') in 0.042378 seconds
Import took 0.048420 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000587 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.png
artifactKey: Guid(2b25cce7098a2344480fa0abc7901f11) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.png using Guid(2b25cce7098a2344480fa0abc7901f11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4bf07d81e0c5e8ba4b8f8bf1a774429') in 0.080023 seconds
Import took 0.090541 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000793 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.mat
artifactKey: Guid(a8dcecb44f36d0741a83d4a1835477ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.mat using Guid(a8dcecb44f36d0741a83d4a1835477ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b076d6938107d68369b1a99b0f92ef2') in 0.118168 seconds
Import took 0.137673 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000479 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.png
artifactKey: Guid(cc6145fc375d04c4e91b26fa51f679cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.png using Guid(cc6145fc375d04c4e91b26fa51f679cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3002a715a491a66eeff4446f18610024') in 0.109782 seconds
Import took 0.114598 seconds .
========================================================================
Received Import Request.
Time since last request: 3.814434 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B06_Ch_04_Avatar.prefab
artifactKey: Guid(889859d3862ff3b46b48aa6898f9773e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B06_Ch_04_Avatar.prefab using Guid(889859d3862ff3b46b48aa6898f9773e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d052980e31785ce59d710238f741091') in 0.417521 seconds
Import took 0.426503 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000750 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B12_Ch_02_Avatar.prefab
artifactKey: Guid(7d6889c17c68e1947ad3f422fbca01a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B12_Ch_02_Avatar.prefab using Guid(7d6889c17c68e1947ad3f422fbca01a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '235662a66c00a166b73f195e3f6a2064') in 0.050663 seconds
Import took 0.057008 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000670 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B28_Ch_05_Avatar.prefab
artifactKey: Guid(159e60b48e323134684b9f7426982bd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B28_Ch_05_Avatar.prefab using Guid(159e60b48e323134684b9f7426982bd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b78caa2c1d5bfa9c5337bfbffc09348') in 0.099952 seconds
Import took 0.108845 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000497 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B30_Ch_05_Avatar.prefab
artifactKey: Guid(6009a5cb76b01ad41b78f123a6aeee96) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B30_Ch_05_Avatar.prefab using Guid(6009a5cb76b01ad41b78f123a6aeee96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '595b8487663543906926b16bb0127bb3') in 0.127726 seconds
Import took 0.137118 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000673 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B18_Ch_01_AvatarZombie.prefab
artifactKey: Guid(527a8e48b0dc4c547b7071327d154307) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B18_Ch_01_AvatarZombie.prefab using Guid(527a8e48b0dc4c547b7071327d154307) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6124371884c50cf0bec3c25723f8b0f') in 0.097813 seconds
Import took 0.114372 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000523 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B20_Ch_01_Avatar.prefab
artifactKey: Guid(e0ef6083a5069634e8cc03171793c34d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B20_Ch_01_Avatar.prefab using Guid(e0ef6083a5069634e8cc03171793c34d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e84be5c488074db3730e3414bc76cba5') in 0.102783 seconds
Import took 0.110742 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000607 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B25_Ch_04_Avatar.prefab
artifactKey: Guid(d114356fbca98b441817a460d0ce759e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B25_Ch_04_Avatar.prefab using Guid(d114356fbca98b441817a460d0ce759e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cacd6a191d032dcd1aeb4d51f8b5b762') in 0.117050 seconds
Import took 0.124200 seconds .
========================================================================
Received Import Request.
Time since last request: 1.729156 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbm/vehicles_texture.png
artifactKey: Guid(b9b7406fd45a1d54f88a7ea68731a328) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbm/vehicles_texture.png using Guid(b9b7406fd45a1d54f88a7ea68731a328) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03d171690c12261445e0bdf8a48404b7') in 0.026515 seconds
Import took 0.035476 seconds .
========================================================================
Received Import Request.
Time since last request: 2.298442 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/BasketBall.fbx
artifactKey: Guid(9035705c11ed9d9438dd54d3fb81c7a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/BasketBall.fbx using Guid(9035705c11ed9d9438dd54d3fb81c7a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10204502bd06da4560ea0ddc58e5cf3a') in 0.115016 seconds
Import took 0.133338 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000553 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/FootBall.fbx
artifactKey: Guid(a68ea4bf23f4f9747ac1c37d5ae30306) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/FootBall.fbx using Guid(a68ea4bf23f4f9747ac1c37d5ae30306) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f300cdd7d64ca0ef33fe1966bd779b19') in 0.209765 seconds
Import took 0.217737 seconds .
========================================================================
Received Import Request.
Time since last request: 0.002645 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Bowling.fbx
artifactKey: Guid(f636b5276af76f048921d9e25883ea03) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Bowling.fbx using Guid(f636b5276af76f048921d9e25883ea03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc8f86091c0d1ed900223914f2bc3649') in 0.292671 seconds
Import took 0.299770 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000573 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/CricketBat.fbx
artifactKey: Guid(8be108a3cee4db34c902bff475fb3c45) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/CricketBat.fbx using Guid(8be108a3cee4db34c902bff475fb3c45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ae8b6e459f5774e83e86de6f74e551b') in 0.195995 seconds
Import took 0.199871 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000482 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/CricketBall.fbx
artifactKey: Guid(ba6fe526282e45f47898a5ee480921a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/CricketBall.fbx using Guid(ba6fe526282e45f47898a5ee480921a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '814719f57c7487d1b4858d2611736310') in 0.148087 seconds
Import took 0.153665 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000663 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/GolfBall.fbx
artifactKey: Guid(820201259fbfa1b44abec28204d0f785) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/GolfBall.fbx using Guid(820201259fbfa1b44abec28204d0f785) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5526554ef746bd098e635c2c916343e7') in 0.130218 seconds
Import took 0.136685 seconds .
========================================================================
Received Import Request.
Time since last request: 0.737364 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/GolfBats.fbx
artifactKey: Guid(dd08f653a6191f743831e1b2f6e013e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/GolfBats.fbx using Guid(dd08f653a6191f743831e1b2f6e013e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd31b95add3ce12118f64fd87f06aa033') in 0.150195 seconds
Import took 0.172562 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000575 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Hammer.fbx
artifactKey: Guid(cd5e785b37446f74bb58a7c26a1d5d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Hammer.fbx using Guid(cd5e785b37446f74bb58a7c26a1d5d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f8fa20c768ac6d030763dfbf1dab1808') in 0.172896 seconds
Import took 0.181501 seconds .
========================================================================
Received Import Request.
Time since last request: 0.007339 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/HockyBAt.fbx
artifactKey: Guid(0c40e99cb8ed472479a3ccd10cf8363d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/HockyBAt.fbx using Guid(0c40e99cb8ed472479a3ccd10cf8363d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e3208f82c7b744856104faffb22baee') in 0.148504 seconds
Import took 0.155200 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000887 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_02.fbx
artifactKey: Guid(fe612c66c8bcbc040b2a0305d7d71bd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_02.fbx using Guid(fe612c66c8bcbc040b2a0305d7d71bd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12ea0573ce94018b90cba4bc44de5b7c') in 0.083923 seconds
Import took 0.097834 seconds .
========================================================================
Received Import Request.
Time since last request: 0.006073 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_01.fbx
artifactKey: Guid(b7fd086c56a35164ba29d0212f93c2b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_01.fbx using Guid(b7fd086c56a35164ba29d0212f93c2b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2c12e4b1e612dcb2e704d1bd318b9ad') in 0.152564 seconds
Import took 0.173259 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000699 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_SkateBoard.fbx
artifactKey: Guid(b85b4b8b44f270d489196774ff37e2af) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_SkateBoard.fbx using Guid(b85b4b8b44f270d489196774ff37e2af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0347f02aa51201c91081d54db436320') in 0.191274 seconds
Import took 0.215673 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001009 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Pistol.fbx
artifactKey: Guid(5e305378da762b94398c7f67fbb283aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Pistol.fbx using Guid(5e305378da762b94398c7f67fbb283aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c2f67ec3af307fd045fa1868f9d0556') in 0.290931 seconds
Import took 0.299411 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000714 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Spear_01.fbx
artifactKey: Guid(340c08e4d850b1446816e414d501b5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Spear_01.fbx using Guid(340c08e4d850b1446816e414d501b5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4cac35ad89566cb0b2cfe5973e726f16') in 0.120265 seconds
Import took 0.127055 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000667 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Sword_01.fbx
artifactKey: Guid(84c2b6d3a850de7448ad8fed7dd40407) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Sword_01.fbx using Guid(84c2b6d3a850de7448ad8fed7dd40407) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4592824550712f9e66ffacd34f1e5f92') in 0.063631 seconds
Import took 0.070808 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000696 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_Bat_01.fbx
artifactKey: Guid(8a308aa29e4a4c54d820aac9453fe326) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_Bat_01.fbx using Guid(8a308aa29e4a4c54d820aac9453fe326) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'edea3363af051247954237d36fbeec44') in 0.139081 seconds
Import took 0.144202 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000602 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Rifile.fbx
artifactKey: Guid(b9eb63fe97712a345986f9051a608348) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Rifile.fbx using Guid(b9eb63fe97712a345986f9051a608348) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4e13804c78c2ff4c6155fcea0a9b558') in 0.118877 seconds
Import took 0.125445 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000855 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/RugbyBall.fbx
artifactKey: Guid(a465364e5423f2248b571d2643a5c1d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/RugbyBall.fbx using Guid(a465364e5423f2248b571d2643a5c1d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc720f99c1ed35452c072a57641a428e') in 0.058055 seconds
Import took 0.067118 seconds .
========================================================================
Received Import Request.
Time since last request: 1.029190 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Sword_02.fbx
artifactKey: Guid(7a070e573ca95864bacd67568034854a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Sword_02.fbx using Guid(7a070e573ca95864bacd67568034854a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f802bd49e560926b5777d6828391da31') in 0.125420 seconds
Import took 0.133889 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000586 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/TennisBat.fbx
artifactKey: Guid(bbedce53432f9b046bfe7a73fa08d71b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/TennisBat.fbx using Guid(bbedce53432f9b046bfe7a73fa08d71b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7588aed326d4745b61aa4f39d8333a7a') in 0.110954 seconds
Import took 0.117374 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000637 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/TennsBall.fbx
artifactKey: Guid(6d65ff3600680834e86eab4da30fad51) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/TennsBall.fbx using Guid(6d65ff3600680834e86eab4da30fad51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c03e9c10d3b808f86ebbbb219693102a') in 0.047389 seconds
Import took 0.054386 seconds .
========================================================================
Received Import Request.
Time since last request: 3.185185 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Materials/DemoPlane.mat
artifactKey: Guid(a5bc3061607b9ac488f6e9c73f1a1c96) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Materials/DemoPlane.mat using Guid(a5bc3061607b9ac488f6e9c73f1a1c96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '30b6d2db742ab70bed20ec131a111a23') in 0.089908 seconds
Import took 0.094414 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000561 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Materials/vehicles_texture.mat
artifactKey: Guid(a1d5a3abcbb18b0438c4b52ddb6b0c78) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Materials/vehicles_texture.mat using Guid(a1d5a3abcbb18b0438c4b52ddb6b0c78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de7a7eaa689a70cf46719d19b2275f60') in 0.113830 seconds
Import took 0.121072 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000618 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Materials/Vector_colours.mat
artifactKey: Guid(e8fabadb5c73f5e478bff786c7fb1398) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Materials/Vector_colours.mat using Guid(e8fabadb5c73f5e478bff786c7fb1398) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53a55b0f4d54a034bf8d37a0a93a8f45') in 0.109850 seconds
Import took 0.118898 seconds .
========================================================================
Received Import Request.
Time since last request: 1.106117 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/AllProps.prefab
artifactKey: Guid(4a59aee993f6902468e2cbebbf966e6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/AllProps.prefab using Guid(4a59aee993f6902468e2cbebbf966e6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57aaefba1c9730cc533edb269bba99d0') in 0.285047 seconds
Import took 0.294662 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000803 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBats.prefab
artifactKey: Guid(7f1c976e19a51094aa37ac985fe04b41) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBats.prefab using Guid(7f1c976e19a51094aa37ac985fe04b41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ae3bcbac8cb4e9872573d50ea9e59e5') in 0.077955 seconds
Import took 0.098254 seconds .
========================================================================
Received Import Request.
Time since last request: 0.004530 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBat.prefab
artifactKey: Guid(3b2c6ee265ce83142b49b4094ff76b72) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBat.prefab using Guid(3b2c6ee265ce83142b49b4094ff76b72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62a16cf5d1edb879e52d0920880a6d3c') in 0.143183 seconds
Import took 0.155764 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000848 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBall.prefab
artifactKey: Guid(2fb31e8f67cd8d141a371293062cd28d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBall.prefab using Guid(2fb31e8f67cd8d141a371293062cd28d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84580c5455c1dd10cdab4e5e992fd08d') in 0.122381 seconds
Import took 0.128384 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000591 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/BasketBall.prefab
artifactKey: Guid(11fe7e2ec569efd47b35362153930997) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/BasketBall.prefab using Guid(11fe7e2ec569efd47b35362153930997) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fde3f6d70e2fc8b5ae1d6ec4780d5a32') in 0.036458 seconds
Import took 0.043517 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000661 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBall.prefab
artifactKey: Guid(ea96061e1636a0b498977aefc98a2eb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBall.prefab using Guid(ea96061e1636a0b498977aefc98a2eb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a5f001e92ce16689f0bff81a1705d5d5') in 0.044575 seconds
Import took 0.055192 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001123 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Bowling.prefab
artifactKey: Guid(571fee8fe694f5c46b80b52cce7a7a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Bowling.prefab using Guid(571fee8fe694f5c46b80b52cce7a7a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34889fe06663d96d6f45e1e7270d5b1c') in 0.076750 seconds
Import took 0.085223 seconds .
========================================================================
Received Import Request.
Time since last request: 0.002998 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/FootBall.prefab
artifactKey: Guid(219de8f7633b6e84c9394d360619967b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/FootBall.prefab using Guid(219de8f7633b6e84c9394d360619967b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17f9c9317f37f835d12ec276920ab3ee') in 0.084057 seconds
Import took 0.097550 seconds .
========================================================================
Received Import Request.
Time since last request: 0.003585 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/FootBall.prefab
artifactKey: Guid(219de8f7633b6e84c9394d360619967b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/FootBall.prefab using Guid(219de8f7633b6e84c9394d360619967b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17f9c9317f37f835d12ec276920ab3ee') in 0.032441 seconds
Import took 0.039842 seconds .
========================================================================
Received Import Request.
Time since last request: 0.510295 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Hammer.prefab
artifactKey: Guid(8866e981d74a31444b70aa589a8ad24c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Hammer.prefab using Guid(8866e981d74a31444b70aa589a8ad24c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '059e88a5268ae232f184628df22c0a52') in 0.059286 seconds
Import took 0.070152 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000819 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Bat_01.prefab
artifactKey: Guid(6d0a3d3e77f25c64fb8ab7523d178a79) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Bat_01.prefab using Guid(6d0a3d3e77f25c64fb8ab7523d178a79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '057685bf25d2e80ffbe36dbb129337df') in 0.050724 seconds
Import took 0.060817 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000691 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/HockyBAt.prefab
artifactKey: Guid(57f63e37ad68fbb49bf8ca74b7f9dffd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/HockyBAt.prefab using Guid(57f63e37ad68fbb49bf8ca74b7f9dffd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '605f5b746cce077ffc0e0051bcfbabfe') in 0.056068 seconds
Import took 0.067491 seconds .
========================================================================
Received Import Request.
Time since last request: 0.466369 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_SkateBoard.prefab
artifactKey: Guid(e06638a288f6c7a468dcb9bcf39410e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_SkateBoard.prefab using Guid(e06638a288f6c7a468dcb9bcf39410e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f552dea0ea95b9a8d9a9995bc10c5dde') in 0.497935 seconds
Import took 0.505211 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000674 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_02.prefab
artifactKey: Guid(a0693c28d5a2e1f40a7e445ddb94ef1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_02.prefab using Guid(a0693c28d5a2e1f40a7e445ddb94ef1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebb195385969c2ad8cb728521e218c33') in 0.037343 seconds
Import took 0.044820 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000704 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Pistol.prefab
artifactKey: Guid(80f89a532e693784a8e6c40247c4702b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Pistol.prefab using Guid(80f89a532e693784a8e6c40247c4702b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57d7468cdd6cd365015a98366f8b09ad') in 0.360095 seconds
Import took 0.365707 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000651 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/RugbyBall.prefab
artifactKey: Guid(0b8c2ad763f1b8147b1b4f56db8d9e0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/RugbyBall.prefab using Guid(0b8c2ad763f1b8147b1b4f56db8d9e0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b566c4af68d307e0bf14fc3e5fb74bbc') in 0.064550 seconds
Import took 0.083115 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001357 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_02.prefab
artifactKey: Guid(55fb53d98542bf649a82879eedce54ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_02.prefab using Guid(55fb53d98542bf649a82879eedce54ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f103a93bf1fcce0eba13d16b1a0583bc') in 0.306477 seconds
Import took 0.318914 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000623 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_01.prefab
artifactKey: Guid(1b43c3ff2ac856f459a9e8bbec696d36) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_01.prefab using Guid(1b43c3ff2ac856f459a9e8bbec696d36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a78b764696d226990aaccfeca9139f37') in 0.046920 seconds
Import took 0.052322 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000623 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Spear_01.prefab
artifactKey: Guid(3841a6dcd1a967c439f2422d6102c50b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Spear_01.prefab using Guid(3841a6dcd1a967c439f2422d6102c50b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '865bd9ed08b86d4ad87e74dc490ac4ed') in 0.140202 seconds
Import took 0.147048 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000620 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Rifile.prefab
artifactKey: Guid(c96ad459540985244a1a0bda56252f4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Rifile.prefab using Guid(c96ad459540985244a1a0bda56252f4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab458fdf1a40f40b6c4f62760aec69cc') in 0.059921 seconds
Import took 0.067434 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001019 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_01.prefab
artifactKey: Guid(01c435ffbe18b3043b1152ee3a75c828) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_01.prefab using Guid(01c435ffbe18b3043b1152ee3a75c828) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0649f9cf48b1d22cd9d3695cf24c70cc') in 0.076342 seconds
Import took 0.086623 seconds .
========================================================================
Received Import Request.
Time since last request: 148.525430 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennisBat.prefab
artifactKey: Guid(742d3c234fa248d4a9a8e8724fc1306e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennisBat.prefab using Guid(742d3c234fa248d4a9a8e8724fc1306e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12fbc1dd16267d90c7d210fdab8df551') in 0.119828 seconds
Import took 0.131787 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000654 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennsBall.prefab
artifactKey: Guid(71d614b7169ae3d4899c34a9710bb3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennsBall.prefab using Guid(71d614b7169ae3d4899c34a9710bb3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1c26cbd5bcb3d950ddc217ca9651b5e') in 0.094865 seconds
Import took 0.113911 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001416 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennisBat.prefab
artifactKey: Guid(742d3c234fa248d4a9a8e8724fc1306e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennisBat.prefab using Guid(742d3c234fa248d4a9a8e8724fc1306e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12fbc1dd16267d90c7d210fdab8df551') in 0.068533 seconds
Import took 0.077932 seconds .
========================================================================
Received Import Request.
Time since last request: 2229.040389 seconds.
path: Assets/Elizabeth Warren caricature/Materials/Elizabeth Warren color.png
artifactKey: Guid(4e8983245b3da9e4e84eb4d7635de30c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Elizabeth Warren caricature/Materials/Elizabeth Warren color.png using Guid(4e8983245b3da9e4e84eb4d7635de30c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f660ee9a5267f7f4bbe3678c150e2baa') in 0.268377 seconds
Import took 0.391695 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001903 seconds.
path: Assets/Elizabeth Warren caricature/Materials/phong1.mat
artifactKey: Guid(3729d42d4ea511f4390b11955f9ff629) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Elizabeth Warren caricature/Materials/phong1.mat using Guid(3729d42d4ea511f4390b11955f9ff629) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d95af4b450248a7f19d1d9fba9b21fd') in 1.597135 seconds
Import took 1.607851 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000835 seconds.
path: Assets/Elizabeth Warren caricature/Materials/Elizabeth Warren normal.png
artifactKey: Guid(e96908c0f4923a44cb12531538c376b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Elizabeth Warren caricature/Materials/Elizabeth Warren normal.png using Guid(e96908c0f4923a44cb12531538c376b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8e976e723543ab343be85cf63eadd91') in 0.353673 seconds
Import took 0.361253 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000655 seconds.
path: Assets/Elizabeth Warren caricature/Materials/Elizabeth Warren spec.png
artifactKey: Guid(d70ffdffa49d727478b80d4ab551dbbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Elizabeth Warren caricature/Materials/Elizabeth Warren spec.png using Guid(d70ffdffa49d727478b80d4ab551dbbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6e3e38814b72ade516cc1b7029edeed') in 0.053892 seconds
Import took 0.061139 seconds .
========================================================================
Received Import Request.
Time since last request: 0.310876 seconds.
path: Assets/Elizabeth Warren caricature/Prefab/Elizabeth Warren prefab.prefab
artifactKey: Guid(b5bf67069f5950943afac56320c54b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Elizabeth Warren caricature/Prefab/Elizabeth Warren prefab.prefab using Guid(b5bf67069f5950943afac56320c54b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bf6fdfc7e837b61e62491382fcc8854') in 0.214000 seconds
Import took 0.224763 seconds .
========================================================================
Received Import Request.
Time since last request: 307.253403 seconds.
path: Assets/Cattleya/prefabs/clothingSet_04_And_nackedSet.prefab
artifactKey: Guid(01c14961d9931d94f9ccb0cf0c46ba9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/prefabs/clothingSet_04_And_nackedSet.prefab using Guid(01c14961d9931d94f9ccb0cf0c46ba9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a207b4802b012be45261b11f8bd1084') in 0.471745 seconds
Import took 0.648253 seconds .
========================================================================
Received Import Request.
Time since last request: 248.064490 seconds.
path: Assets/Models/School Supplies/Eraser.prefab
artifactKey: Guid(1e9452c2e358b30408e6165e6d56053d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Models/School Supplies/Eraser.prefab using Guid(1e9452c2e358b30408e6165e6d56053d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64a5e368757933a789e4365c66907acd') in 1.039498 seconds
Import took 1.058681 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000587 seconds.
path: Assets/Models/School Supplies/Notepad.prefab
artifactKey: Guid(00931e932c93cef48ae2d8cc87408c66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Models/School Supplies/Notepad.prefab using Guid(00931e932c93cef48ae2d8cc87408c66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89523669b83f756e7af8154b6a40f498') in 1.666882 seconds
Import took 1.674659 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001243 seconds.
path: Assets/Models/School Supplies/Pen.prefab
artifactKey: Guid(0bc9f3e0b20fe984697b880329a181fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Models/School Supplies/Pen.prefab using Guid(0bc9f3e0b20fe984697b880329a181fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '529e4e153cfe7e63bab51acc954d6b95') in 0.136217 seconds
Import took 0.150080 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000740 seconds.
path: Assets/Models/School Supplies/Pencil.prefab
artifactKey: Guid(acd1035e6037f5340b25cdc9d4460022) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Models/School Supplies/Pencil.prefab using Guid(acd1035e6037f5340b25cdc9d4460022) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9eb771b5d5f8d5214134fc0282237671') in 0.102407 seconds
Import took 0.112460 seconds .
========================================================================
Received Import Request.
Time since last request: 259.395411 seconds.
path: Assets/LowPolyOfficeProps_LITE/Materials/EmissiveLight.mat
artifactKey: Guid(d4947c064a3f1fc4795d4022a0623f15) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Materials/EmissiveLight.mat using Guid(d4947c064a3f1fc4795d4022a0623f15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '284c56188d93c1a41a06034b56141e33') in 0.295793 seconds
Import took 0.517352 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000763 seconds.
path: Assets/LowPolyOfficeProps_LITE/Materials/PlainMaterial.mat
artifactKey: Guid(6f8cb0cd933f38245891b18b44b6c61c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Materials/PlainMaterial.mat using Guid(6f8cb0cd933f38245891b18b44b6c61c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06c2f423aa13b688ae718767ade8de4a') in 0.123106 seconds
Import took 0.130374 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000563 seconds.
path: Assets/LowPolyOfficeProps_LITE/Materials/LPOP_TextureAtlas1.mat
artifactKey: Guid(16cb512cb0149e644a3e5929b3266a44) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Materials/LPOP_TextureAtlas1.mat using Guid(16cb512cb0149e644a3e5929b3266a44) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d2d1df4b5fd84bfa7380b17e5b5cc47') in 0.548222 seconds
Import took 0.555030 seconds .
========================================================================
Received Import Request.
Time since last request: 0.557289 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Briefcase.prefab
artifactKey: Guid(1f1181424ea20d64ea8a1054356fb358) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Briefcase.prefab using Guid(1f1181424ea20d64ea8a1054356fb358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '986699bd9665ceedbe387d68c161c5ea') in 0.093673 seconds
Import took 0.105459 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000788 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/CellPhone.prefab
artifactKey: Guid(bd7dac146a034144fb4a57250777c4d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/CellPhone.prefab using Guid(bd7dac146a034144fb4a57250777c4d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e565f70919bfc89b58b0571dcd043fb9') in 0.100577 seconds
Import took 0.107552 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000593 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Teal.prefab
artifactKey: Guid(c0ceea3170ebaca40b64c2630442a89d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Teal.prefab using Guid(c0ceea3170ebaca40b64c2630442a89d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9eb233dffb362c0fcbae9cd32b9d396') in 0.138022 seconds
Import took 0.146285 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000631 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference.prefab
artifactKey: Guid(7d255bce5b634604dbc1ed9f1e878f20) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference.prefab using Guid(7d255bce5b634604dbc1ed9f1e878f20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60156c6d8907ae8cb79bd865bcf53e78') in 0.098719 seconds
Import took 0.105764 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000717 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Olive.prefab
artifactKey: Guid(fe5121614a9f24d4ba9c5a3636ff4151) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Olive.prefab using Guid(fe5121614a9f24d4ba9c5a3636ff4151) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b93f777a776cb4038751aad770146606') in 0.094489 seconds
Import took 0.103324 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000580 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Purple.prefab
artifactKey: Guid(c42b35532e0b3ca428d6923660102d7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Purple.prefab using Guid(c42b35532e0b3ca428d6923660102d7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18520c53fa62c8dcc436691f6aa39965') in 0.092102 seconds
Import took 0.101644 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000625 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Green.prefab
artifactKey: Guid(f0fd1300e91d2bf43b23bde299755026) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Green.prefab using Guid(f0fd1300e91d2bf43b23bde299755026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f454486f4fed84d1d47bdb1ead0b7d1a') in 0.109368 seconds
Import took 0.114179 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000675 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Red.prefab
artifactKey: Guid(bc0122c4f4cf45141b4325e217b4288f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Red.prefab using Guid(bc0122c4f4cf45141b4325e217b4288f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fc509e222bca6eb073964a14520e7eb') in 0.131155 seconds
Import took 0.138392 seconds .
========================================================================
Received Import Request.
Time since last request: 73.439997 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Turquoise.prefab
artifactKey: Guid(b54ade383d0758b43b6e719ba435b430) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Turquoise.prefab using Guid(b54ade383d0758b43b6e719ba435b430) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb9b4a92f23765c900fc1a60430860d5') in 0.082231 seconds
Import took 0.093524 seconds .
========================================================================
Received Import Request.
Time since last request: 0.269611 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Violet.prefab
artifactKey: Guid(a51df466658a0c44f9c9569a7834edc5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Conference_Violet.prefab using Guid(a51df466658a0c44f9c9569a7834edc5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '891b2d602ceb6df49f9adbea773f4f63') in 0.074826 seconds
Import took 0.085660 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000912 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair.prefab
artifactKey: Guid(813aadab227158e46897ad49dc9b8dbd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair.prefab using Guid(813aadab227158e46897ad49dc9b8dbd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b61e41d3df0581a709d1043d07ae39cf') in 0.134722 seconds
Import took 0.141816 seconds .
========================================================================
Received Import Request.
Time since last request: 0.089922 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Green.prefab
artifactKey: Guid(0bdc1db6cb4c7a5429b33a0cc442a5af) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Green.prefab using Guid(0bdc1db6cb4c7a5429b33a0cc442a5af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa4ff9e9a260356fa0d1252e21fad67f') in 0.053712 seconds
Import took 0.062006 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000756 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Olive.prefab
artifactKey: Guid(4559f4ce49fdc20499383a1c582501e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Olive.prefab using Guid(4559f4ce49fdc20499383a1c582501e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '438a7cc2821ff4a57eaf00b01e68f14e') in 0.132254 seconds
Import took 0.139724 seconds .
========================================================================
Received Import Request.
Time since last request: 0.091491 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Purple.prefab
artifactKey: Guid(e09a754dc686e734eb3b914283c8f5ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Purple.prefab using Guid(e09a754dc686e734eb3b914283c8f5ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6371715b390f17ba18f673579c65ec39') in 0.052736 seconds
Import took 0.058967 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000562 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Red.prefab
artifactKey: Guid(1df03b106f100cd419dc3c0a744d2bb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Red.prefab using Guid(1df03b106f100cd419dc3c0a744d2bb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a9b2af12dc759ba3bb46d770219de08') in 0.076911 seconds
Import took 0.087155 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000645 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Teal.prefab
artifactKey: Guid(fcd02a61a397a6b45b32df5833bdbe6d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Teal.prefab using Guid(fcd02a61a397a6b45b32df5833bdbe6d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '454fa22a14621da0a8a3ff2382dbcd87') in 0.194552 seconds
Import took 0.203784 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000817 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Red.prefab
artifactKey: Guid(1df03b106f100cd419dc3c0a744d2bb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Red.prefab using Guid(1df03b106f100cd419dc3c0a744d2bb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a9b2af12dc759ba3bb46d770219de08') in 0.089154 seconds
Import took 0.190217 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000794 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Violet.prefab
artifactKey: Guid(5831283518cce8b4c8c7cfa7dd1b8b80) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Violet.prefab using Guid(5831283518cce8b4c8c7cfa7dd1b8b80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85d54a15272e9d412f7dc9f9f08d92b0') in 0.128245 seconds
Import took 0.136748 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000526 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Green.prefab
artifactKey: Guid(3c4892661a827e04a97474743a73c0b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Green.prefab using Guid(3c4892661a827e04a97474743a73c0b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'acaec0b534939a02f218532b0661a4ee') in 0.121673 seconds
Import took 0.130802 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000562 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Turquoise.prefab
artifactKey: Guid(f7fd5bedd08c0bf4fa8553343dc88e7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_DeskChair_Turquoise.prefab using Guid(f7fd5bedd08c0bf4fa8553343dc88e7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aaff828c3d4feef2234ff227fce0f285') in 0.087575 seconds
Import took 0.095799 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000539 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office.prefab
artifactKey: Guid(2ff7704997af3ca468ea39420cfd35ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office.prefab using Guid(2ff7704997af3ca468ea39420cfd35ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '802124e1e058fa37685c09815f5ce1e4') in 0.101334 seconds
Import took 0.114938 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001730 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Purple.prefab
artifactKey: Guid(584445047de52fb4ab7f6b25554eb174) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Purple.prefab using Guid(584445047de52fb4ab7f6b25554eb174) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2951bed429e1373a1f6c5325506522de') in 0.118071 seconds
Import took 0.128692 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000514 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Olive.prefab
artifactKey: Guid(f14cbdd8ee1424e469bf00996f0eeaf1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Olive.prefab using Guid(f14cbdd8ee1424e469bf00996f0eeaf1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8eddd1012074508dea989272219389bd') in 0.148401 seconds
Import took 0.154640 seconds .
========================================================================
Received Import Request.
Time since last request: 0.137258 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Red.prefab
artifactKey: Guid(2ba61ae89b603e04384293242684b09e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Red.prefab using Guid(2ba61ae89b603e04384293242684b09e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20534cc5ddf3f81f21577f07f553605a') in 0.218384 seconds
Import took 0.256389 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001096 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Turquoise.prefab
artifactKey: Guid(4e57406919c506c42a59b989fd5d8c4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Turquoise.prefab using Guid(4e57406919c506c42a59b989fd5d8c4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '408eb873301817480d0c2097d628b775') in 0.202347 seconds
Import took 0.209907 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001432 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinet_DrawerKeyLock.prefab
artifactKey: Guid(3639bf5810525ab4fa32d65d1b6323a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinet_DrawerKeyLock.prefab using Guid(3639bf5810525ab4fa32d65d1b6323a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0556d45047b1bb6762515c2f1ef932c8') in 0.130522 seconds
Import took 0.137741 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000957 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinet_Drawer.prefab
artifactKey: Guid(bf955aa6cf5b1774180125d6b6201b35) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinet_Drawer.prefab using Guid(bf955aa6cf5b1774180125d6b6201b35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '818fdf625b65a84fa42c1cd8fcc7ac56') in 0.133792 seconds
Import took 0.141178 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000641 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Laptop_Off.prefab
artifactKey: Guid(f0c2d9c0796a76d428d02150209c6d26) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Laptop_Off.prefab using Guid(f0c2d9c0796a76d428d02150209c6d26) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2b4d161da723de57f604baa07827bd4') in 0.151548 seconds
Import took 0.157475 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000568 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Laptop_Closed.prefab
artifactKey: Guid(20661e78605491946911818aa730569b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Laptop_Closed.prefab using Guid(20661e78605491946911818aa730569b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5febe6dd4f2f276906105032437cd094') in 0.132515 seconds
Import took 0.142305 seconds .
========================================================================
Received Import Request.
Time since last request: 0.005931 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Teal.prefab
artifactKey: Guid(f459aae84ece7154f8d0ee90f554eeb4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Teal.prefab using Guid(f459aae84ece7154f8d0ee90f554eeb4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1edf72d63ab85cf43b23253b0f3d7272') in 0.630687 seconds
Import took 0.742934 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000726 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Laptop_On.prefab
artifactKey: Guid(112cc81e36e745449bf229e4dbb3e073) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Laptop_On.prefab using Guid(112cc81e36e745449bf229e4dbb3e073) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aded2dc4c7503fc3aefafed56d523420') in 0.088963 seconds
Import took 0.094920 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000504 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Pen.prefab
artifactKey: Guid(25a0ecfef2d64e744a3a13f1e8d37a38) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Pen.prefab using Guid(25a0ecfef2d64e744a3a13f1e8d37a38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '142f8b51645276a6e7e532abee428044') in 0.099470 seconds
Import took 0.105525 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000744 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Violet.prefab
artifactKey: Guid(74da286b950020745b667e6d613b1b8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Chair_Office_Violet.prefab using Guid(74da286b950020745b667e6d613b1b8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46aa3b9a3259311f8d7e732e7b2120c2') in 0.105784 seconds
Import took 0.113461 seconds .
========================================================================
Received Import Request.
Time since last request: 0.001173 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/PenClosed.prefab
artifactKey: Guid(5ffb34a81ed9b0748b11b3451513f590) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/PenClosed.prefab using Guid(5ffb34a81ed9b0748b11b3451513f590) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff1cd442f3f0e66b6654107561540a61') in 0.083861 seconds
Import took 0.092888 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000795 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinetSingle_Case.prefab
artifactKey: Guid(a4827c3c34b766743b61c499b08e4c75) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinetSingle_Case.prefab using Guid(a4827c3c34b766743b61c499b08e4c75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd86c90a412ed0a1acf9360c078a6551b') in 0.096742 seconds
Import took 0.104328 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000512 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinetThreeStack_Case.prefab
artifactKey: Guid(4f34910326e789e4f9b1781fe5d280e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/FilingCabinetThreeStack_Case.prefab using Guid(4f34910326e789e4f9b1781fe5d280e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5eb937c655d05ade77aa14f91a29f29e') in 0.093750 seconds
Import took 0.101530 seconds .
========================================================================
Received Import Request.
Time since last request: 1.186820 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/PenLid.prefab
artifactKey: Guid(95eea767e49458344b1f963160375d43) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/PenLid.prefab using Guid(95eea767e49458344b1f963160375d43) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bad7412c53d034a108e39a0cdf0f05c4') in 0.057490 seconds
Import took 0.066354 seconds .
========================================================================
Received Import Request.
Time since last request: 0.106231 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/PenLidTop.prefab
artifactKey: Guid(5d38df3483541b24eb4740bb137f8a7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/PenLidTop.prefab using Guid(5d38df3483541b24eb4740bb137f8a7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f23797c56f8d73efee7f70dd378a51e') in 0.054251 seconds
Import took 0.063516 seconds .
========================================================================
Received Import Request.
Time since last request: 0.442403 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/PlantPotLargeA.prefab
artifactKey: Guid(5e6c0a296760d204c9e34091c18540fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/PlantPotLargeA.prefab using Guid(5e6c0a296760d204c9e34091c18540fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '914b4c1e2310ddc15fdbeb4a1fd3703f') in 0.057129 seconds
Import took 0.068325 seconds .
========================================================================
Received Import Request.
Time since last request: 0.339940 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/PlantTypeA.prefab
artifactKey: Guid(5016dee2f2df1774e9c4ea33160fca26) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/PlantTypeA.prefab using Guid(5016dee2f2df1774e9c4ea33160fca26) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4946074dd6fe722bbf4bc791d5f541e') in 0.054704 seconds
Import took 0.066218 seconds .
========================================================================
Received Import Request.
Time since last request: 0.002154 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Table_Conference.prefab
artifactKey: Guid(2e14b1c602571994f82e0f629cc6312f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Table_Conference.prefab using Guid(2e14b1c602571994f82e0f629cc6312f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c20ce4458fa9e2c8fb06adc2ab5aa4b8') in 0.129267 seconds
Import took 0.136692 seconds .
========================================================================
Received Import Request.
Time since last request: 0.119766 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Table_OfficeDesk.prefab
artifactKey: Guid(683ef653b4b09b94993b7fd393c95978) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Table_OfficeDesk.prefab using Guid(683ef653b4b09b94993b7fd393c95978) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e71dc9128f0d7c275ac31303f3f8aca') in 0.051404 seconds
Import took 0.059103 seconds .
========================================================================
Received Import Request.
Time since last request: 0.324716 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Table_OfficeDesk2.prefab
artifactKey: Guid(cd74bf6cea4234840b01646a5b3f339a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Table_OfficeDesk2.prefab using Guid(cd74bf6cea4234840b01646a5b3f339a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e80b84e46f98a90ae868fda7f0f8007b') in 0.061322 seconds
Import took 0.071177 seconds .
========================================================================
Received Import Request.
Time since last request: 0.318621 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Tablet.prefab
artifactKey: Guid(a76d0962e5aaba2479107524e448f23d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Tablet.prefab using Guid(a76d0962e5aaba2479107524e448f23d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '99a7d5f8185ec741cc19645b72592e07') in 0.148141 seconds
Import took 0.156061 seconds .
========================================================================
Received Import Request.
Time since last request: 0.262995 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Umbrella_Closed.prefab
artifactKey: Guid(9bc41a8d18c3dd243b9c2d0bd23d47bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Umbrella_Closed.prefab using Guid(9bc41a8d18c3dd243b9c2d0bd23d47bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03c83fb6f85b27665249782e16b43d95') in 0.054233 seconds
Import took 0.074390 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000817 seconds.
path: Assets/LowPolyOfficeProps_LITE/Prefabs/Umbrella_Open.prefab
artifactKey: Guid(40b06279c59767642a5c0e96f8835280) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/LowPolyOfficeProps_LITE/Prefabs/Umbrella_Open.prefab using Guid(40b06279c59767642a5c0e96f8835280) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '465805f0e6f3c640c85bb77baa9eb9ea') in 0.142876 seconds
Import took 0.150437 seconds .
AssetImportWorkerClient::OnTransportError - code=2 error=End of file