AssetImportWorker0-prev.log
88.5 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
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 19042.867; Version 2009; 64bit' Language: 'ko' Physical Memory: 16243 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
AssetImportWorker0
-projectPath
C:/Users/ahhye/Desktop/Programming/2021-1_Capstone_Design1/prac/creating-map
-logFile
Logs/AssetImportWorker0.log
-srvPort
65160
Successfully changed project path to: C:/Users/ahhye/Desktop/Programming/2021-1_Capstone_Design1/prac/creating-map
C:/Users/ahhye/Desktop/Programming/2021-1_Capstone_Design1/prac/creating-map
Using Asset Import Pipeline V2.
Refreshing native plugins compatible for Editor in 41.60 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/ahhye/Desktop/Programming/2021-1_Capstone_Design1/prac/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: 8121 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:56984
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.004663 seconds.
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 30.26 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 1.672 seconds
Platform modules already initialized, skipping
Registering precompiled user dll's ...
Registered in 0.002053 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.21 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 1.184 seconds
Platform modules already initialized, skipping
========================================================================
Worker process is ready to serve import requests
Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds
Refreshing native plugins compatible for Editor in 0.32 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1115 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 57.4 MB.
System memory in use after: 57.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 1557.
Total: 2.355100 ms (FindLiveObjects: 0.410900 ms CreateObjectMapping: 0.071800 ms MarkObjects: 1.772300 ms DeleteObjects: 0.098900 ms)
========================================================================
Received Import Request.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_flower_01.fbx
artifactKey: Guid(7d350a824190e0647822f95e9f7bbc97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_flower_01.fbx using Guid(7d350a824190e0647822f95e9f7bbc97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd7265a87a8dabf3d112390db8eabeff2') in 0.889648 seconds
Import took 0.892687 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000329 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_cloud_02.fbx
artifactKey: Guid(4432020e36e26f946a400515834f11b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_cloud_02.fbx using Guid(4432020e36e26f946a400515834f11b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '781187bc9dc39758f74337fb6bda88f1') in 0.046218 seconds
Import took 0.049311 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000306 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_02.fbx
artifactKey: Guid(d1fd41beb70267947bc1c996df07593d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_02.fbx using Guid(d1fd41beb70267947bc1c996df07593d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1122fde2180b420ed7f5a61d87a71a4') in 0.049763 seconds
Import took 0.052400 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000264 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_cloud_01.fbx
artifactKey: Guid(b36c73269c1668c4bbfb76bf41a74b15) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_cloud_01.fbx using Guid(b36c73269c1668c4bbfb76bf41a74b15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e600a2b4514fd9792d4e490a970b6535') in 0.034690 seconds
Import took 0.036790 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000324 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_tree_02.fbx
artifactKey: Guid(7dca68918011bd644a4dc268eea79b44) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_tree_02.fbx using Guid(7dca68918011bd644a4dc268eea79b44) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6611f5905906c86ceaa5cfc4808d49d3') in 0.034642 seconds
Import took 0.037425 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000259 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_sky_01.fbx
artifactKey: Guid(092e8eab260eaf84e890e2e5dbc513b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_sky_01.fbx using Guid(092e8eab260eaf84e890e2e5dbc513b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'acd88a57e7e7158db18a1a4c3e886419') in 0.049132 seconds
Import took 0.064792 seconds .
========================================================================
Received Import Request.
Time since last request: 1.038231 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_bush_02.fbx
artifactKey: Guid(d4997bb047d8fbb458f4d63b2322ebdc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_bush_02.fbx using Guid(d4997bb047d8fbb458f4d63b2322ebdc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8f1705a8cd16d3d44ee93b85c6ba132') in 0.062454 seconds
Import took 0.068332 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000345 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_grass_small_01b.fbx
artifactKey: Guid(60f048e3ccfd7d0498e095661396963b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_grass_small_01b.fbx using Guid(60f048e3ccfd7d0498e095661396963b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c166d1b12eea9abf5b711b9016816181') in 0.416290 seconds
Import took 0.419867 seconds .
========================================================================
Received Import Request.
Time since last request: 0.024531 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_sand_01.fbx
artifactKey: Guid(b75a02a185084be49bc0ead09438de21) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_sand_01.fbx using Guid(b75a02a185084be49bc0ead09438de21) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e480385290f2e2550d8f6b8f5ca11da') in 0.104693 seconds
Import took 0.108103 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000343 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_plant_02.fbx
artifactKey: Guid(2ef20853860a4694c9c08c312d121b56) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_plant_02.fbx using Guid(2ef20853860a4694c9c08c312d121b56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4ce4baf30b19f67a6e61d42144ded74') in 0.051319 seconds
Import took 0.054855 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000321 seconds.
path: Assets/RPGPP_LT/Materials/rpgpp_lt_sky_a.mat
artifactKey: Guid(ff33af19770dd3e489f9c65e388009fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_sky_a.mat using Guid(ff33af19770dd3e489f9c65e388009fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37fbfafee8058781128242aec32e59b3') in 0.758881 seconds
Import took 0.761878 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000245 seconds.
path: Assets/RPGPP_LT/Materials/rpgpp_lt_mat_a.mat
artifactKey: Guid(58d53420af384224ea4cfee8973d18cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_mat_a.mat using Guid(58d53420af384224ea4cfee8973d18cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '86e9ee71aad9df0dc574a20008a282ec') in 0.023904 seconds
Import took 0.026585 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000495 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_flower_02.fbx
artifactKey: Guid(7710c12951e94d24eb1b65f105f6823e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_flower_02.fbx using Guid(7710c12951e94d24eb1b65f105f6823e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecd578133408c190a30af177ab00bfcf') in 0.027524 seconds
Import took 0.031399 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000328 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_01.fbx
artifactKey: Guid(305f277e1529222439b495a441de2f0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_01.fbx using Guid(305f277e1529222439b495a441de2f0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82555a6318086173b55ca171fcacde74') in 0.025490 seconds
Import took 0.028456 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000692 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_flower_03.fbx
artifactKey: Guid(f97780a5b4f3ed64ca0fe117ef736a11) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_flower_03.fbx using Guid(f97780a5b4f3ed64ca0fe117ef736a11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e49752c340c71c5427a599da644d9313') in 0.028272 seconds
Import took 0.030993 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000314 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_03.fbx
artifactKey: Guid(455995b8866658b42b3da7b1cab18535) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_03.fbx using Guid(455995b8866658b42b3da7b1cab18535) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3cf06050558f13e6af6638a2de0b4c6') in 0.027532 seconds
Import took 0.029619 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000300 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_grass_01.fbx
artifactKey: Guid(264414c28ea0fbb41b924fd17d9228b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_grass_01.fbx using Guid(264414c28ea0fbb41b924fd17d9228b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '246498b369f070fe7f06abbdc8c1aae5') in 0.028898 seconds
Import took 0.030918 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000308 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_hill_small_01.fbx
artifactKey: Guid(3602432658d7f1540978cbbd6875ad2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_hill_small_01.fbx using Guid(3602432658d7f1540978cbbd6875ad2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '400a627cf11bb94d7c0220c99edc9d53') in 0.031585 seconds
Import took 0.033562 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000300 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_mountain_01.fbx
artifactKey: Guid(9d123ff5b15c0bd4fbd33779e2acdbd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_mountain_01.fbx using Guid(9d123ff5b15c0bd4fbd33779e2acdbd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6a4c9722e06b3831e101c8bb1cd4d47') in 0.028511 seconds
Import took 0.030719 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000299 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_grass_02.fbx
artifactKey: Guid(a90ec1b8be596134b912428bfce1f226) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_grass_02.fbx using Guid(a90ec1b8be596134b912428bfce1f226) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a605a950aa07ee8da745716261077c9f') in 0.030426 seconds
Import took 0.032593 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000447 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_path_01b.fbx
artifactKey: Guid(70fbff8150321794f8532fef4f4d7c98) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_path_01b.fbx using Guid(70fbff8150321794f8532fef4f4d7c98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53b9cd0b370c49ebfb2f38e58b8b9edb') in 0.028295 seconds
Import took 0.030506 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000299 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rocks_tiny_01.fbx
artifactKey: Guid(2e716c43576f71b4aa87e6cb4ebeaeab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rocks_tiny_01.fbx using Guid(2e716c43576f71b4aa87e6cb4ebeaeab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06921f938567a38b5b28fd7911e3755f') in 0.029190 seconds
Import took 0.031666 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000498 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_path_01a.fbx
artifactKey: Guid(46a54c5b0997d8b47bf6519139a81b86) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_terrain_path_01a.fbx using Guid(46a54c5b0997d8b47bf6519139a81b86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd310e0a0f9ad5ae6ec6948d64d3714fc') in 0.029886 seconds
Import took 0.032873 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000320 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_hill_small_02.fbx
artifactKey: Guid(87dc0b67e5fe70f40a31e17b0c0058b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_hill_small_02.fbx using Guid(87dc0b67e5fe70f40a31e17b0c0058b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd78efbb58e2fad7cdf367391b9c6878f') in 0.026970 seconds
Import took 0.030836 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000508 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_plant_01.fbx
artifactKey: Guid(82188904581423c4a9ed3fbf3286ccdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_plant_01.fbx using Guid(82188904581423c4a9ed3fbf3286ccdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '66b143b238b39b25d30177e70d003581') in 0.032765 seconds
Import took 0.034954 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000347 seconds.
path: Assets/RPGPP_LT/Materials/rpgpp_lt_cloud_a.mat
artifactKey: Guid(434bfd6528d84e643ade0d2cd5c6fe1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_cloud_a.mat using Guid(434bfd6528d84e643ade0d2cd5c6fe1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '547261b11c1e312abf13d7c85bc0db32') in 0.174779 seconds
Import took 0.178059 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000321 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_tree_pine_01.fbx
artifactKey: Guid(58c79ebc04f48c74fa4869c3f7d941fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_tree_pine_01.fbx using Guid(58c79ebc04f48c74fa4869c3f7d941fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aca10e8806c198d5709dd20f26681440') in 0.043752 seconds
Import took 0.047084 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000250 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_grass_small_01a.fbx
artifactKey: Guid(c191cc4231bc1a940986671275027664) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_grass_small_01a.fbx using Guid(c191cc4231bc1a940986671275027664) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54f7eac283c428cb0370bcb9ede5deda') in 0.041347 seconds
Import took 0.044024 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000373 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_tree_01.fbx
artifactKey: Guid(15977c94193725642b83e5c7be73b2e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_tree_01.fbx using Guid(15977c94193725642b83e5c7be73b2e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '607437b7d43ea186bd434ab8983bbff6') in 0.036537 seconds
Import took 0.039670 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000267 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_bush_01.fbx
artifactKey: Guid(d28a5d39d87b52c49824501fac8b689c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_bush_01.fbx using Guid(d28a5d39d87b52c49824501fac8b689c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72a60a65558786e96230222569b4eadf') in 0.043398 seconds
Import took 0.045733 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000268 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_small_01.fbx
artifactKey: Guid(274fdec0feeaa784f96a62f99c4be287) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_small_01.fbx using Guid(274fdec0feeaa784f96a62f99c4be287) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9894628b23cf730fe9920730dbb06611') in 0.041839 seconds
Import took 0.044654 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000306 seconds.
path: Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_small_02.fbx
artifactKey: Guid(7110966a22a1bd74c894def7bbb4b8cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature/rpgpp_lt_rock_small_02.fbx using Guid(7110966a22a1bd74c894def7bbb4b8cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24ed6881eb93c97a46517b1455e50846') in 0.037179 seconds
Import took 0.040133 seconds .
========================================================================
Received Import Request.
Time since last request: 117.392616 seconds.
path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5c2f2c2a1bc51d97acb4e2643276eeb') in 0.051890 seconds
Import took 0.067041 seconds .
========================================================================
Received Import Request.
Time since last request: 10558.496623 seconds.
path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebb63a44df0b3e6cb1c6e7ae518eac76') in 0.027852 seconds
Import took 0.031788 seconds .
========================================================================
Received Import Request.
Time since last request: 35.096291 seconds.
path: Assets/RPGPP_LT/Models/Nature
artifactKey: Guid(0411daae2008b22408fa9a2285a99184) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Nature using Guid(0411daae2008b22408fa9a2285a99184) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b30136fb38a0257600616cf0df264768') in 0.023689 seconds
Import took 0.029225 seconds .
========================================================================
Received Import Request.
Time since last request: 11.690009 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_banner_01a.fbx
artifactKey: Guid(d7113c6e2a0f65c4abdb33666078052f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_banner_01a.fbx using Guid(d7113c6e2a0f65c4abdb33666078052f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bed3d59feebc11dd7285d4e253720c8c') in 0.032221 seconds
Import took 0.035310 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000396 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_barrel_01.fbx
artifactKey: Guid(caf770415cf8b3745b977df80c57628b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_barrel_01.fbx using Guid(caf770415cf8b3745b977df80c57628b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9cd856213769f87ef1c76995fc7972d') in 0.029950 seconds
Import took 0.032597 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000316 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_bowl_metal_01.fbx
artifactKey: Guid(09cc238bd856b5d468789a6d2d0f48ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_bowl_metal_01.fbx using Guid(09cc238bd856b5d468789a6d2d0f48ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3adae84d9a325328e6543bb6fb377a2') in 0.051452 seconds
Import took 0.060131 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000331 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_ladder_01.fbx
artifactKey: Guid(5a5a8e9d7228e204a91c0fb79c12479b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_ladder_01.fbx using Guid(5a5a8e9d7228e204a91c0fb79c12479b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '224a6283d6361767e8c5a61de28c478c') in 0.048943 seconds
Import took 0.058675 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000328 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_well_01.fbx
artifactKey: Guid(54708add4b909204cb861ed2bd2cfcdf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_well_01.fbx using Guid(54708add4b909204cb861ed2bd2cfcdf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b2899c598dacc150fb36fd6703f49a6') in 0.071576 seconds
Import took 0.074556 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000089 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_banner_01b.fbx
artifactKey: Guid(dc3de67326229ab459a1320acc34b8ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_banner_01b.fbx using Guid(dc3de67326229ab459a1320acc34b8ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '147407eae8051ad4f89f7c9b0bde8f9b') in 0.061997 seconds
Import took 0.067794 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000262 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_shield_wall_01b.fbx
artifactKey: Guid(ea48d15a3d30c4943927bc8edcd3ff96) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_shield_wall_01b.fbx using Guid(ea48d15a3d30c4943927bc8edcd3ff96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '997b48a2292935e7745fe00f5970e8d7') in 0.080965 seconds
Import took 0.084432 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000288 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_vase_01.fbx
artifactKey: Guid(9bd069d17b875254f9fc1eeccdd647b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_vase_01.fbx using Guid(9bd069d17b875254f9fc1eeccdd647b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6780f79fc106921596f637ca757adba6') in 0.034424 seconds
Import took 0.037893 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000273 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_log_wood_01.fbx
artifactKey: Guid(83ca3216726525148a325296526fcfa7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_log_wood_01.fbx using Guid(83ca3216726525148a325296526fcfa7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '971f4a7ba648a7b4740e8029f9c382e1') in 0.041786 seconds
Import took 0.044065 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000277 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_chair_01a.fbx
artifactKey: Guid(c7acbad2649a15647a7a4dfd8cceb5ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_chair_01a.fbx using Guid(c7acbad2649a15647a7a4dfd8cceb5ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '903edd3eb5fc8853935cf46b95661fa1') in 0.033918 seconds
Import took 0.051587 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000834 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_bench_wood_01.fbx
artifactKey: Guid(6bc5a23d8cb251f40b96a1fbf4ddb4fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_bench_wood_01.fbx using Guid(6bc5a23d8cb251f40b96a1fbf4ddb4fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71dcfa0f47432fefcacae02dd9882205') in 0.045047 seconds
Import took 0.052428 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000349 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_bird_house_01.fbx
artifactKey: Guid(8edf1a08abb5cb342a2a608b289c1f91) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_bird_house_01.fbx using Guid(8edf1a08abb5cb342a2a608b289c1f91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '605e613e8a510c973d951bcc5d31c32e') in 0.041886 seconds
Import took 0.045464 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000108 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_trough_01.fbx
artifactKey: Guid(8b3f67c33dd9e9c4ea594b19207b4fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_trough_01.fbx using Guid(8b3f67c33dd9e9c4ea594b19207b4fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19dea8b08af29259ae24af23f433b58d') in 0.043767 seconds
Import took 0.049328 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000614 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_wood_path_01b.fbx
artifactKey: Guid(f867a2534aa85914d9e6b62f681cdf69) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_wood_path_01b.fbx using Guid(f867a2534aa85914d9e6b62f681cdf69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0099d3aebd0145cfaff028fe5b96c52') in 0.042454 seconds
Import took 0.048285 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000262 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_table_01.fbx
artifactKey: Guid(16c4b1c9bf28bc44eab122106a0e4864) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_table_01.fbx using Guid(16c4b1c9bf28bc44eab122106a0e4864) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73c0586d62809c115d8dece53a0de591') in 0.049923 seconds
Import took 0.057508 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000328 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_box_wood_01.fbx
artifactKey: Guid(ab945ff7c1d59bb4a8b506cb8c7dafcd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_box_wood_01.fbx using Guid(ab945ff7c1d59bb4a8b506cb8c7dafcd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fcfcbce1f82b16455f0496c71621f28') in 0.045442 seconds
Import took 0.048160 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000114 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_hanger_wood_01.fbx
artifactKey: Guid(dc53ddfef4a2d414f83c0332e80bfbb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_hanger_wood_01.fbx using Guid(dc53ddfef4a2d414f83c0332e80bfbb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'acaaffcc8b93288584cca6017bbff91f') in 0.040891 seconds
Import took 0.044031 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000371 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_bathtub_wood_01.fbx
artifactKey: Guid(1a8449922d22bae4791e0335226fa1aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_bathtub_wood_01.fbx using Guid(1a8449922d22bae4791e0335226fa1aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae9402a015de70afe3eabd8d6bf3cf48') in 0.067114 seconds
Import took 0.071927 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000289 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_sack_01.fbx
artifactKey: Guid(8f07894e139232f4fb48b79133ad05fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_sack_01.fbx using Guid(8f07894e139232f4fb48b79133ad05fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1794b20a45b28f9da54b90ab6e879271') in 0.040354 seconds
Import took 0.043604 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000245 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_wagon_01.fbx
artifactKey: Guid(f34a4e9b86005de4da2625205407868e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_wagon_01.fbx using Guid(f34a4e9b86005de4da2625205407868e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1cec3dd02a9ba6d122e1141d0bd421a') in 0.046652 seconds
Import took 0.054419 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000316 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_bucket_01.fbx
artifactKey: Guid(e978333221b12f44ba9099ca8d181f25) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_bucket_01.fbx using Guid(e978333221b12f44ba9099ca8d181f25) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74b9bfb2fc59debf0cb632daeb099a78') in 0.070380 seconds
Import took 0.074049 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000783 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_jug_01.fbx
artifactKey: Guid(d68abfcba378a4f46847fa7f406b6ba6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_jug_01.fbx using Guid(d68abfcba378a4f46847fa7f406b6ba6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '197c573d302236cedc867f1c5c55a795') in 0.068056 seconds
Import took 0.071025 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000255 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_sack_open_01.fbx
artifactKey: Guid(1716e599fb056014ca8f5786b3a82fcf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_sack_open_01.fbx using Guid(1716e599fb056014ca8f5786b3a82fcf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4689798255882c597bb0da94a638a9e2') in 0.085523 seconds
Import took 0.089582 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000356 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_hanger_clothes_01.fbx
artifactKey: Guid(30c389f0d35cc414d9e841ff82ce1424) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_hanger_clothes_01.fbx using Guid(30c389f0d35cc414d9e841ff82ce1424) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73b0ccd3f53d3145d5a46edc3469d040') in 0.091902 seconds
Import took 0.094658 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000256 seconds.
path: Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_05.fbx
artifactKey: Guid(7d1c542ac0453aa40a248ffb042193c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_05.fbx using Guid(7d1c542ac0453aa40a248ffb042193c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a655cb21bdc9a1b448a5e6b2c76fb89') in 0.042293 seconds
Import took 0.046927 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000117 seconds.
path: Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_03.fbx
artifactKey: Guid(52eeab1f0ce4d934591972b6df5d179b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_03.fbx using Guid(52eeab1f0ce4d934591972b6df5d179b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b1aa736a5f58dfc79b47617568f05a9') in 0.044622 seconds
Import took 0.050400 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000331 seconds.
path: Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_04.fbx
artifactKey: Guid(cc4034e4bb7d9cd418975561c7bcd316) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_04.fbx using Guid(cc4034e4bb7d9cd418975561c7bcd316) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7566466b983ca4bbb99e15212e14607c') in 0.043495 seconds
Import took 0.049726 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000345 seconds.
path: Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_01.fbx
artifactKey: Guid(af5390e2a0373984db3740f21c0ec034) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_01.fbx using Guid(af5390e2a0373984db3740f21c0ec034) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05d18e7bcf66f8f53dfcb2e90ccd327c') in 0.048933 seconds
Import took 0.051730 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000324 seconds.
path: Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_02.fbx
artifactKey: Guid(3ad660daf3a1e02458b9f3eca418861a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_02.fbx using Guid(3ad660daf3a1e02458b9f3eca418861a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03055a912de44924f26e3e8f33cc937d') in 0.061410 seconds
Import took 0.064781 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000321 seconds.
path: Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_01.fbx
artifactKey: Guid(af5390e2a0373984db3740f21c0ec034) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Structures/rpgpp_lt_building_01.fbx using Guid(af5390e2a0373984db3740f21c0ec034) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05d18e7bcf66f8f53dfcb2e90ccd327c') in 0.041326 seconds
Import took 0.044945 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000369 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_package_01.fbx
artifactKey: Guid(4a9eb490516647a4d8765165bfb9cf47) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_package_01.fbx using Guid(4a9eb490516647a4d8765165bfb9cf47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '70f0bcb988865f4d2243a79a8d44851a') in 0.036874 seconds
Import took 0.039719 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000292 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_rake_01.fbx
artifactKey: Guid(7deee4ad3618a17429fa704cea48558c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_rake_01.fbx using Guid(7deee4ad3618a17429fa704cea48558c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee62e2f09d05f883d6ce1723c25a2a8f') in 0.031663 seconds
Import took 0.034282 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000269 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_vase_02.fbx
artifactKey: Guid(65a171ea06543b04fa7aa086cd66702d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_vase_02.fbx using Guid(65a171ea06543b04fa7aa086cd66702d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29d4c9be0b7aa608d0b2cf17fffb6af1') in 0.032689 seconds
Import took 0.035859 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000278 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_broom_01.fbx
artifactKey: Guid(752014a26efd03145b74d57634ef9245) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_broom_01.fbx using Guid(752014a26efd03145b74d57634ef9245) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e809f799e5070dbd1250e94a19e745b4') in 0.027607 seconds
Import took 0.030225 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000286 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_chair_01b.fbx
artifactKey: Guid(c23d7dd34e2d29a42bf0998f5f20de59) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_chair_01b.fbx using Guid(c23d7dd34e2d29a42bf0998f5f20de59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53b3e45d7ed42864d43095e40ebbeb15') in 0.034949 seconds
Import took 0.038097 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000380 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_shield_wall_01a.fbx
artifactKey: Guid(6db1e633533718d49bd0b8329bc37412) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_shield_wall_01a.fbx using Guid(6db1e633533718d49bd0b8329bc37412) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5c4ae415630b146f55781aa2574691b6') in 0.030999 seconds
Import took 0.033942 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000249 seconds.
path: Assets/RPGPP_LT/Models/Props/rpgpp_lt_wood_path_01a.fbx
artifactKey: Guid(d4d6eed92fb93e948b95c2fc4d1f6f8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Models/Props/rpgpp_lt_wood_path_01a.fbx using Guid(d4d6eed92fb93e948b95c2fc4d1f6f8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd5aac777b9d9b0c2f6ec176856c9c0a') in 0.030619 seconds
Import took 0.032948 seconds .
========================================================================
Received Import Request.
Time since last request: 6.032131 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_01.prefab
artifactKey: Guid(6fc2010b5899cfd488a0ddf205679e2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_01.prefab using Guid(6fc2010b5899cfd488a0ddf205679e2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8a9a402e3c0eeedab20d97fcfaef5f7') in 0.029743 seconds
Import took 0.037765 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000393 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rocks_tiny_01.prefab
artifactKey: Guid(e1154cf6ac27b2f45b4ae35582e7e363) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rocks_tiny_01.prefab using Guid(e1154cf6ac27b2f45b4ae35582e7e363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22863d60f8cd77a8532bbb62a5e26c16') in 0.027666 seconds
Import took 0.030419 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000391 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_small_01.prefab
artifactKey: Guid(dc9954dcaaaee02409e17bacb3dcc453) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_small_01.prefab using Guid(dc9954dcaaaee02409e17bacb3dcc453) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03edd9159b8a409b974fb6ff8c5e37ba') in 0.034485 seconds
Import took 0.038289 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000433 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_02.prefab
artifactKey: Guid(491dc122236ad9749a046177ea69736d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_02.prefab using Guid(491dc122236ad9749a046177ea69736d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '794058b2cae62f213b159816729f1fdf') in 0.028604 seconds
Import took 0.031995 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000258 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_03.prefab
artifactKey: Guid(0fd5be61d8c00de419d45d6bf745a69c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_03.prefab using Guid(0fd5be61d8c00de419d45d6bf745a69c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb9d404f6294de32660bde3c68f182d9') in 0.024714 seconds
Import took 0.030036 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000444 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_small_02.prefab
artifactKey: Guid(9f21020355643c74c88002634abcdabd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Rocks/rpgpp_lt_rock_small_02.prefab using Guid(9f21020355643c74c88002634abcdabd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96ac64ecf7e773ef958fd3f967b96b79') in 0.025986 seconds
Import took 0.030133 seconds .
========================================================================
Received Import Request.
Time since last request: 1.922375 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Sky/rpgpp_lt_cloud_01.prefab
artifactKey: Guid(6fdeb1faa1b42904e9210dd047b256ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Sky/rpgpp_lt_cloud_01.prefab using Guid(6fdeb1faa1b42904e9210dd047b256ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8cb6c992d9856f577d43cfc9a058da8') in 0.016822 seconds
Import took 0.019721 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000379 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Sky/rpgpp_lt_sky_01.prefab
artifactKey: Guid(f31c6bb6e68212e41b0bcae74612a240) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Sky/rpgpp_lt_sky_01.prefab using Guid(f31c6bb6e68212e41b0bcae74612a240) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e7a89f7c4f064af89f836e3aadc132ac') in 0.022468 seconds
Import took 0.025077 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000323 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Sky/rpgpp_lt_cloud_02.prefab
artifactKey: Guid(f661498175107c749a33d97304c423eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Sky/rpgpp_lt_cloud_02.prefab using Guid(f661498175107c749a33d97304c423eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e60a0c5645413485bf1fae0f4960b56a') in 0.028415 seconds
Import took 0.031275 seconds .
========================================================================
Received Import Request.
Time since last request: 20.449745 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_hill_small_01.prefab
artifactKey: Guid(5c9211eb71cff4f4996a21d92317f601) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_hill_small_01.prefab using Guid(5c9211eb71cff4f4996a21d92317f601) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e151b456403bdc877a65b7eb2f4d791') in 0.022282 seconds
Import took 0.024961 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000383 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_path_01a.prefab
artifactKey: Guid(a25996a7d0674de40a8273b54b50aa7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_path_01a.prefab using Guid(a25996a7d0674de40a8273b54b50aa7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35ce840ce2b2831d508ee877312b99e5') in 0.030492 seconds
Import took 0.033195 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000347 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_hill_small_02.prefab
artifactKey: Guid(6dcae7204dd466c4c862bc640ea7c02e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_hill_small_02.prefab using Guid(6dcae7204dd466c4c862bc640ea7c02e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0895e33c9e692c774fe8054d61f02fc0') in 0.034597 seconds
Import took 0.037440 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000400 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_sand_01.prefab
artifactKey: Guid(e7489574cca6d4645a7019414b8288e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_sand_01.prefab using Guid(e7489574cca6d4645a7019414b8288e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f8015652918e67c1e0861a8113242f39') in 0.034357 seconds
Import took 0.037552 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000281 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_grass_01.prefab
artifactKey: Guid(bdf8e7438a7816543998181bd3067573) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_grass_01.prefab using Guid(bdf8e7438a7816543998181bd3067573) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7e4b7e86ba907f360eaf9bf4f964872') in 0.036010 seconds
Import took 0.038319 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000313 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_path_01b.prefab
artifactKey: Guid(63ce2b31e16acab4d8a41f884c36333c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_path_01b.prefab using Guid(63ce2b31e16acab4d8a41f884c36333c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e9f115de0a2a0291adaeb1dfbb798dd') in 0.032586 seconds
Import took 0.034822 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000270 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_mountain_01.prefab
artifactKey: Guid(9d200fbd47e9c7f45ad54450ebd25b94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_mountain_01.prefab using Guid(9d200fbd47e9c7f45ad54450ebd25b94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02faa077bc2924dfd0f9e8da5f21a346') in 0.038798 seconds
Import took 0.041275 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000311 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_grass_02.prefab
artifactKey: Guid(68cbfa1438162b243ac02fb9e3e30581) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Terrain/rpgpp_lt_terrain_grass_02.prefab using Guid(68cbfa1438162b243ac02fb9e3e30581) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ab11aa49562421013c5058bdcd71bbb') in 0.024466 seconds
Import took 0.028767 seconds .
========================================================================
Received Import Request.
Time since last request: 7.405839 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Bushes/rpgpp_lt_bush_01.prefab
artifactKey: Guid(bd1a894f239d58d4dbf63f27e28096bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Bushes/rpgpp_lt_bush_01.prefab using Guid(bd1a894f239d58d4dbf63f27e28096bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '366f8d7243711f627334426d19a85e9c') in 0.017791 seconds
Import took 0.019988 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000372 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Bushes/rpgpp_lt_bush_02.prefab
artifactKey: Guid(efd8147160aa6c64c8121a2ed788744e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Bushes/rpgpp_lt_bush_02.prefab using Guid(efd8147160aa6c64c8121a2ed788744e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1b0bc3f2615a706580132bea7f6807a') in 0.027508 seconds
Import took 0.029815 seconds .
========================================================================
Received Import Request.
Time since last request: 0.656626 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Flowers/rpgpp_lt_flower_01.prefab
artifactKey: Guid(1aad01ae01d836647b215e40f1f4c1a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Flowers/rpgpp_lt_flower_01.prefab using Guid(1aad01ae01d836647b215e40f1f4c1a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6c71b821c8c714e379f17f705be331e') in 0.022236 seconds
Import took 0.025948 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000253 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Flowers/rpgpp_lt_flower_03.prefab
artifactKey: Guid(f71e980e020ab924ebed9a227a648ec8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Flowers/rpgpp_lt_flower_03.prefab using Guid(f71e980e020ab924ebed9a227a648ec8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5660e18a1545de70d713d501d7a2b8de') in 0.041686 seconds
Import took 0.044165 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000569 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Flowers/rpgpp_lt_flower_02.prefab
artifactKey: Guid(186ecc7a1f977cc4fab5658c00fa3c4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Flowers/rpgpp_lt_flower_02.prefab using Guid(186ecc7a1f977cc4fab5658c00fa3c4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56c3abf929cb1e5d9ebd678cbbe16a38') in 0.041930 seconds
Import took 0.045046 seconds .
========================================================================
Received Import Request.
Time since last request: 0.607847 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Plants/rpgpp_lt_plant_01.prefab
artifactKey: Guid(5286e490afadac545ae3a1595b1e96e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Plants/rpgpp_lt_plant_01.prefab using Guid(5286e490afadac545ae3a1595b1e96e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38c599e456a1971fa6fc4199754edbf0') in 0.023112 seconds
Import took 0.027049 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000548 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Plants/rpgpp_lt_plant_02.prefab
artifactKey: Guid(e85c18dfba00c9540859ea847782af5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Plants/rpgpp_lt_plant_02.prefab using Guid(e85c18dfba00c9540859ea847782af5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41e09fb1d63d64f9cddb45ebd442d1bb') in 0.034569 seconds
Import took 0.037298 seconds .
========================================================================
Received Import Request.
Time since last request: 0.781814 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_01.prefab
artifactKey: Guid(ae9772ea62bbc724eb9b8ef81109f733) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_01.prefab using Guid(ae9772ea62bbc724eb9b8ef81109f733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd813d555ee47c1b702f0fa55c25b537f') in 0.031447 seconds
Import took 0.035983 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000355 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_pine_01.prefab
artifactKey: Guid(22a3fd8d3e59a1149bdcd775c0e87241) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_pine_01.prefab using Guid(22a3fd8d3e59a1149bdcd775c0e87241) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ce0cd5752023b35adaffa7fada63df5') in 0.042914 seconds
Import took 0.045832 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000317 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_02.prefab
artifactKey: Guid(6910e2407cd484a42a0c2598114751a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_02.prefab using Guid(6910e2407cd484a42a0c2598114751a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11ad92ba92bf22c32be68d9e24e13594') in 0.024077 seconds
Import took 0.026940 seconds .
========================================================================
Received Import Request.
Time since last request: 0.003167 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_02.prefab
artifactKey: Guid(6910e2407cd484a42a0c2598114751a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Trees/rpgpp_lt_tree_02.prefab using Guid(6910e2407cd484a42a0c2598114751a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11ad92ba92bf22c32be68d9e24e13594') in 0.027300 seconds
Import took 0.030166 seconds .
========================================================================
Received Import Request.
Time since last request: 3.023976 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_barrel_01.prefab
artifactKey: Guid(08b7d3dcb8d6b9247b1800cd79905e16) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_barrel_01.prefab using Guid(08b7d3dcb8d6b9247b1800cd79905e16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3e178f22f47abc0859aa1551e5c5d45') in 0.022806 seconds
Import took 0.026484 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000372 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_sack_01.prefab
artifactKey: Guid(f274f0fb5e5bc294ca9a0ff4cf1f0ff7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_sack_01.prefab using Guid(f274f0fb5e5bc294ca9a0ff4cf1f0ff7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54deadb30b396ffc0c421fa63960454d') in 0.036533 seconds
Import took 0.039749 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000259 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_bowl_metal_01.prefab
artifactKey: Guid(c20b40242fb425a48840e03f7f3a50f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_bowl_metal_01.prefab using Guid(c20b40242fb425a48840e03f7f3a50f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2734417b4dff0660cada843e889fe747') in 0.034184 seconds
Import took 0.036761 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000368 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_trough_01.prefab
artifactKey: Guid(7f3b1263233678a4a92861d908051fe3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_trough_01.prefab using Guid(7f3b1263233678a4a92861d908051fe3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80d0e59035e09407114e29c64606889c') in 0.029299 seconds
Import took 0.032275 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000324 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_box_wood_01.prefab
artifactKey: Guid(144403e0e442d2a448335e0c845d665b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_box_wood_01.prefab using Guid(144403e0e442d2a448335e0c845d665b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6a0abbeb5f14b773bffa066b631b5e4') in 0.027885 seconds
Import took 0.031111 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000294 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_bucket_01.prefab
artifactKey: Guid(05723fa5edef5fa4ab72eb90ae0bf7b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_bucket_01.prefab using Guid(05723fa5edef5fa4ab72eb90ae0bf7b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd9a023bb42a0efbd3e1094b4cb338dc') in 0.032662 seconds
Import took 0.038705 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000286 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_jug_01.prefab
artifactKey: Guid(957bb31991bce1640a18d0a109c71f3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_jug_01.prefab using Guid(957bb31991bce1640a18d0a109c71f3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea514c561f6d14baa5e45a92674aad4a') in 0.046366 seconds
Import took 0.048909 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000313 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_bathtub_wood_01.prefab
artifactKey: Guid(d354bbf6d0a7bc543b86d5b1337c7933) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_bathtub_wood_01.prefab using Guid(d354bbf6d0a7bc543b86d5b1337c7933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f3a31477a588ee93117d0aa9387f86f') in 0.032856 seconds
Import took 0.035589 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000247 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_sack_open_01.prefab
artifactKey: Guid(5fb4dbc1b7c07b9418845eb61970d9df) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_sack_open_01.prefab using Guid(5fb4dbc1b7c07b9418845eb61970d9df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '99614df16c431c90d2190342a69a65f6') in 0.022485 seconds
Import took 0.025549 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000287 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_vase_02.prefab
artifactKey: Guid(645e0ccb96eef934aa12bd4c02a4bd66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_vase_02.prefab using Guid(645e0ccb96eef934aa12bd4c02a4bd66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ee0473b5df7553f26fefbbf935232a7') in 0.022586 seconds
Import took 0.029540 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000298 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_vase_01.prefab
artifactKey: Guid(1645880bdf365054a8c29b271c30eb36) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_vase_01.prefab using Guid(1645880bdf365054a8c29b271c30eb36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fdab219ebea497250f42b33a50a3c96c') in 0.029181 seconds
Import took 0.032252 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000319 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_package_01.prefab
artifactKey: Guid(388d2ede35ec91345943f17a010818fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Containers/rpgpp_lt_package_01.prefab using Guid(388d2ede35ec91345943f17a010818fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c70e2fa00b9c7f858bf508a7dbcd8fb') in 0.029775 seconds
Import took 0.033317 seconds .
========================================================================
Received Import Request.
Time since last request: 3.670887 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: '108816e5a238efe10e951115e67d1cdc') in 0.037374 seconds
Import took 0.044258 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000331 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: '0a39a43155f653049da90ea6d62ecf4f') in 0.029349 seconds
Import took 0.032043 seconds .
========================================================================
Received Import Request.
Time since last request: 1.185128 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Furniture/Tables/rpgpp_lt_table_01.prefab
artifactKey: Guid(4c1686a5131ac8b45bfe913f509289c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Furniture/Tables/rpgpp_lt_table_01.prefab using Guid(4c1686a5131ac8b45bfe913f509289c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6638f91b02d2501926bcda14438a39bc') in 0.017089 seconds
Import took 0.019354 seconds .
========================================================================
Received Import Request.
Time since last request: 0.587532 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Furniture/Hangers/rpgpp_lt_hanger_clothes_01.prefab
artifactKey: Guid(9e6377f4cae22eb4194f71c6e76c37b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Furniture/Hangers/rpgpp_lt_hanger_clothes_01.prefab using Guid(9e6377f4cae22eb4194f71c6e76c37b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9f0fa6a2059db89d92c9101ebcc066e') in 0.017803 seconds
Import took 0.021300 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000334 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Furniture/Hangers/rpgpp_lt_hanger_wood_01.prefab
artifactKey: Guid(813f38ebf5eabe1429b83876fbaa47db) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Furniture/Hangers/rpgpp_lt_hanger_wood_01.prefab using Guid(813f38ebf5eabe1429b83876fbaa47db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '050af0a88049b4ecc3d6ed20c6729453') in 0.034714 seconds
Import took 0.037367 seconds .
========================================================================
Received Import Request.
Time since last request: 0.740201 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: '1fb1075c4bca19c1cda244be822ca382') in 0.018665 seconds
Import took 0.020969 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000380 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: '34e8666f5a20b753028569d550ea7ff5') in 0.026525 seconds
Import took 0.029084 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000302 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: 'bbb760d4222579fd65848c17cf2b8547') in 0.025306 seconds
Import took 0.028156 seconds .
========================================================================
Received Import Request.
Time since last request: 1.544759 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Misc/rpgpp_lt_bird_house_01.prefab
artifactKey: Guid(7689b2d5def66f04eb3b0905d7b65084) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Misc/rpgpp_lt_bird_house_01.prefab using Guid(7689b2d5def66f04eb3b0905d7b65084) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f3cb712180864dadac02f452523b6ac') in 0.018408 seconds
Import took 0.023179 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000320 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Misc/rpgpp_lt_wagon_01.prefab
artifactKey: Guid(87d1d734739f10440b2bdbb449c09a9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Misc/rpgpp_lt_wagon_01.prefab using Guid(87d1d734739f10440b2bdbb449c09a9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e38e32246fe817d940776255550da723') in 0.041161 seconds
Import took 0.044157 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000440 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Misc/rpgpp_lt_well_01.prefab
artifactKey: Guid(4500da6a464da55408dd1ff2324163a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Misc/rpgpp_lt_well_01.prefab using Guid(4500da6a464da55408dd1ff2324163a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ed1130813f2cdfa9e81dc8a0cd79522') in 0.022523 seconds
Import took 0.024823 seconds .
========================================================================
Received Import Request.
Time since last request: 2.931675 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Banners/rpgpp_lt_banner_01a.prefab
artifactKey: Guid(e1032c9b5d7d362489670d42997dceb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Banners/rpgpp_lt_banner_01a.prefab using Guid(e1032c9b5d7d362489670d42997dceb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0877901b36c187d2f5f53cf9e1311d3c') in 0.030742 seconds
Import took 0.036514 seconds .
========================================================================
Received Import Request.
Time since last request: 0.068410 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Banners/rpgpp_lt_banner_01b.prefab
artifactKey: Guid(002f7a569314a244fb643e8ea8d00376) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Banners/rpgpp_lt_banner_01b.prefab using Guid(002f7a569314a244fb643e8ea8d00376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c82e85b6b41317bb60770a1871cd23b') in 0.028633 seconds
Import took 0.032638 seconds .
========================================================================
Received Import Request.
Time since last request: 0.926851 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Shields/rpgpp_lt_shield_wall_01a.prefab
artifactKey: Guid(37435aefe5da6f74f8b28c81bb4ffad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Shields/rpgpp_lt_shield_wall_01a.prefab using Guid(37435aefe5da6f74f8b28c81bb4ffad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '622e9db2d2d215ac1ddf4884e81b5087') in 0.023534 seconds
Import took 0.028546 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000322 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Shields/rpgpp_lt_shield_wall_01b.prefab
artifactKey: Guid(0aae23549399ae240aa3fcaf1b7ae6b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Wall_decor/Shields/rpgpp_lt_shield_wall_01b.prefab using Guid(0aae23549399ae240aa3fcaf1b7ae6b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bccdc860e9621a39a58fc668d788ce4d') in 0.033611 seconds
Import took 0.036465 seconds .
========================================================================
Received Import Request.
Time since last request: 1.162286 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Wood/rpgpp_lt_log_wood_01.prefab
artifactKey: Guid(bbb972e8372282f4093c9484693385fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Wood/rpgpp_lt_log_wood_01.prefab using Guid(bbb972e8372282f4093c9484693385fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43a59f13e5dff84625bd6fd2141c8147') in 0.020969 seconds
Import took 0.023991 seconds .
========================================================================
Received Import Request.
Time since last request: 4.234102 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_01.prefab
artifactKey: Guid(cd87e5026d1695148aabe96121c526ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_01.prefab using Guid(cd87e5026d1695148aabe96121c526ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d82fba049149a099deb6413ee45e00a') in 0.021421 seconds
Import took 0.024930 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000365 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_02.prefab
artifactKey: Guid(2767c12992d890f44b14f433fe854668) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_02.prefab using Guid(2767c12992d890f44b14f433fe854668) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31be68cc03b37fc651b7ed71a0e1bb2b') in 0.028421 seconds
Import took 0.030617 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000396 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_03.prefab
artifactKey: Guid(2b519101e10d4a74580d4c86ac9e03e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_03.prefab using Guid(2b519101e10d4a74580d4c86ac9e03e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f2a5ba007c37c3a4bb3165343685961') in 0.025195 seconds
Import took 0.028430 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000351 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_04.prefab
artifactKey: Guid(71442e8cd72511e4fabb72f1a2cc82dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_04.prefab using Guid(71442e8cd72511e4fabb72f1a2cc82dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9880b3dbd3fb8d86818b0a94b268177b') in 0.032947 seconds
Import took 0.035419 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000380 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_03.prefab
artifactKey: Guid(2b519101e10d4a74580d4c86ac9e03e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_03.prefab using Guid(2b519101e10d4a74580d4c86ac9e03e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f2a5ba007c37c3a4bb3165343685961') in 0.033016 seconds
Import took 0.035304 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000407 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_05.prefab
artifactKey: Guid(386f40ad68cdd3c4fbcb471ef2d93772) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Buildings/Bld_closed/rpgpp_lt_building_05.prefab using Guid(386f40ad68cdd3c4fbcb471ef2d93772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fbe41dc57b362109bd1cd5e24c44f753') in 0.025122 seconds
Import took 0.028505 seconds .
========================================================================
Received Import Request.
Time since last request: 2.311863 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Parts/Wood_path/rpgpp_lt_wood_path_01a.prefab
artifactKey: Guid(c96016c34e7be62488e588470988ef5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Parts/Wood_path/rpgpp_lt_wood_path_01a.prefab using Guid(c96016c34e7be62488e588470988ef5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5103ebc66b47257048f8d7a871b21a1a') in 0.018061 seconds
Import took 0.021029 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000289 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Parts/Wood_path/rpgpp_lt_wood_path_01b.prefab
artifactKey: Guid(0ba258545da721e488ecb71ffd143b6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Parts/Wood_path/rpgpp_lt_wood_path_01b.prefab using Guid(0ba258545da721e488ecb71ffd143b6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9aa8740cc1ab3effb0624be60798deae') in 0.021593 seconds
Import took 0.024349 seconds .
========================================================================
Received Import Request.
Time since last request: 0.003535 seconds.
path: Assets/RPGPP_LT/Prefabs/Structures/Parts/Wood_path/rpgpp_lt_wood_path_01b.prefab
artifactKey: Guid(0ba258545da721e488ecb71ffd143b6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Structures/Parts/Wood_path/rpgpp_lt_wood_path_01b.prefab using Guid(0ba258545da721e488ecb71ffd143b6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9aa8740cc1ab3effb0624be60798deae') in 0.027261 seconds
Import took 0.029750 seconds .
========================================================================
Received Import Request.
Time since last request: 5.099123 seconds.
path: Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity
artifactKey: Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity using Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34dcb45bc858e78502fe92a938f12696') in 0.009676 seconds
Import took 0.012527 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000935 seconds.
path: Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity
artifactKey: Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity using Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34dcb45bc858e78502fe92a938f12696') in 0.007952 seconds
Import took 0.011037 seconds .
========================================================================
Received Import Request.
Time since last request: 91.532226 seconds.
path: Assets/RPGPP_LT/Textures/rpgpp_lt_sky_a.tga
artifactKey: Guid(5c4fa0e44769f8f46a06d96031e56a4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Textures/rpgpp_lt_sky_a.tga using Guid(5c4fa0e44769f8f46a06d96031e56a4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f8b7ad361a84673e38d33b6a1379436') in 0.054851 seconds
Import took 0.058677 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000312 seconds.
path: Assets/RPGPP_LT/Textures/rpgpp_lt_tex_a.tga
artifactKey: Guid(0bb174f69c9851a48b09bf7d8180c39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Textures/rpgpp_lt_tex_a.tga using Guid(0bb174f69c9851a48b09bf7d8180c39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52e0c0d439d971d6b34a63812d029f43') in 0.037801 seconds
Import took 0.041508 seconds .
========================================================================
Received Import Request.
Time since last request: 3160.676964 seconds.
path: Assets/RPGPP_LT/Prefabs/Props/Furniture/Benches/rpgpp_lt_bench_wood_01.prefab
artifactKey: Guid(94003cdd02bfa0849b07108d63f10e24) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Props/Furniture/Benches/rpgpp_lt_bench_wood_01.prefab using Guid(94003cdd02bfa0849b07108d63f10e24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '060c586bc1ca249185d590f03f4c77fc') in 0.027055 seconds
Import took 0.033115 seconds .
========================================================================
Received Import Request.
Time since last request: 86.420161 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Grass/rpgpp_lt_grass_small_01a.prefab
artifactKey: Guid(00e2e59cbc04eab4a982218df54ce70b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Grass/rpgpp_lt_grass_small_01a.prefab using Guid(00e2e59cbc04eab4a982218df54ce70b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9eb72e29b5912ea83b96266acb28b4c') in 0.022874 seconds
Import took 0.025787 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000351 seconds.
path: Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Grass/rpgpp_lt_grass_small_01b.prefab
artifactKey: Guid(e88b7bb02ae149940a5a0cddf34fe370) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/RPGPP_LT/Prefabs/Nature/Vegetation/Grass/rpgpp_lt_grass_small_01b.prefab using Guid(e88b7bb02ae149940a5a0cddf34fe370) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9b48ab0c1d119c247cf06eca3055609') in 0.028748 seconds
Import took 0.032057 seconds .
AssetImportWorkerClient::OnTransportError - code=2 error=End of file