AssetImportWorker0-prev.log
171 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
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 Pro; OS build 19042.985; Version 2009; 64bit' Language: 'ko' Physical Memory: 16295 MB
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
COMMAND LINE ARGUMENTS:
D:\Unity\Editor\Unity.exe
-adb2
-batchMode
-noUpm
-name
AssetImportWorker0
-projectPath
C:/Users/youhyeoneee/Desktop/JSH_Project1/src/unity/creating-map
-logFile
Logs/AssetImportWorker0.log
-srvPort
56740
Successfully changed project path to: C:/Users/youhyeoneee/Desktop/JSH_Project1/src/unity/creating-map
C:/Users/youhyeoneee/Desktop/JSH_Project1/src/unity/creating-map
Using Asset Import Pipeline V2.
Refreshing native plugins compatible for Editor in 93.61 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2020.3.3f1 (76626098c1c4)
[Subsystems] Discovering subsystems at path D:/Unity/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path C:/Users/youhyeoneee/Desktop/JSH_Project1/src/unity/creating-map/Assets
GfxDevice: creating device client; threaded=0
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: NVIDIA GeForce RTX 2070 (ID=0x1f02)
Vendor:
VRAM: 8031 MB
Driver: 27.21.14.6589
Initialize mono
Mono path[0] = 'D:/Unity/Editor/Data/Managed'
Mono path[1] = 'D:/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
Mono config path = 'D:/Unity/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56068
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.001368 seconds.
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 35.30 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.901 seconds
Platform modules already initialized, skipping
Registering precompiled user dll's ...
Registered in 0.004100 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.74 ms, found 3 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.014 seconds
Platform modules already initialized, skipping
========================================================================
Worker process is ready to serve import requests
Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1506 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 75.5 MB.
System memory in use after: 75.5 MB.
Unloading 13 unused Assets to reduce memory usage. Loaded Objects now: 1956.
Total: 1.999700 ms (FindLiveObjects: 0.223000 ms CreateObjectMapping: 0.057700 ms MarkObjects: 1.636900 ms DeleteObjects: 0.080400 ms)
========================================================================
Received Import Request.
path: Assets/Scripts/UIManager.cs
artifactKey: Guid(0f85f0c412f1ed54d943f53081725bbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/UIManager.cs using Guid(0f85f0c412f1ed54d943f53081725bbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dca186909d764d1dc5b218ad51c9f0f4') in 0.036921 seconds
Import took 0.039638 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003498 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.766 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 74.0 MB.
System memory in use after: 74.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 1960.
Total: 3.630400 ms (FindLiveObjects: 0.317100 ms CreateObjectMapping: 0.116200 ms MarkObjects: 3.116600 ms DeleteObjects: 0.078800 ms)
========================================================================
Received Import Request.
Time since last request: 13.302889 seconds.
path: Assets/Scripts/UIManager.cs
artifactKey: Guid(0f85f0c412f1ed54d943f53081725bbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/UIManager.cs using Guid(0f85f0c412f1ed54d943f53081725bbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34150d9aa3dcf89d1f56590b6b1e7331') in 0.003728 seconds
Import took 0.006054 seconds .
========================================================================
Received Import Request.
Time since last request: 397.566607 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks
artifactKey: Guid(1a054750483f61a4384ff3470141aeed) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks using Guid(1a054750483f61a4384ff3470141aeed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '45d151afb663c61aafde3e865258d2ad') in 0.002934 seconds
Import took 0.005441 seconds .
========================================================================
Received Import Request.
Time since last request: 6.571445 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie
artifactKey: Guid(f76e48a5cce2eaa45a006835c736a29e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie using Guid(f76e48a5cce2eaa45a006835c736a29e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1fb4795844659d24d788eb7972fa1d37') in 0.002695 seconds
Import took 0.005152 seconds .
========================================================================
Received Import Request.
Time since last request: 0.058392 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombi_Walk_01.fbx
artifactKey: Guid(cc6e8279a50f1cb47b046cc6e4e44d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombi_Walk_01.fbx using Guid(cc6e8279a50f1cb47b046cc6e4e44d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1406781f6920ba5ecc7a087936f410c9') in 0.060685 seconds
Import took 0.063635 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000232 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombi_Walk_02.fbx
artifactKey: Guid(f38a03b484fa1ed479f586df2779835a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombi_Walk_02.fbx using Guid(f38a03b484fa1ed479f586df2779835a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c564ac640c4a4f29c3e580fc2667aee7') in 0.006485 seconds
Import took 0.009775 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000268 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombie Distruction.fbx
artifactKey: Guid(14ff10c06043409498076d46075396b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombie Distruction.fbx using Guid(14ff10c06043409498076d46075396b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec234a44bc845076d33436248f4bf659') in 0.007246 seconds
Import took 0.010178 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000275 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombie Die_01.fbx
artifactKey: Guid(0c016698e72925645a2e179c5a995eff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Az@Zombie Die_01.fbx using Guid(0c016698e72925645a2e179c5a995eff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1070cb6dc42bb91e79097ed63a801bf6') in 0.006441 seconds
Import took 0.008775 seconds .
========================================================================
Received Import Request.
Time since last request: 9.942546 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Zombie.controller
artifactKey: Guid(cd0389ed5b17c314c9540eaf217f702e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Zombie/Zombie.controller using Guid(cd0389ed5b17c314c9540eaf217f702e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0eaa0db7b33c5f815fbb3f71624a3ebf') in 0.011383 seconds
Import took 0.013719 seconds .
========================================================================
Received Import Request.
Time since last request: 560.674222 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: '79a7a22dc8208ccb47a43dc0aae258ee') in 0.064171 seconds
Import took 0.067000 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000204 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: '19169d6cd36ca987dc82b3b926067384') in 0.031467 seconds
Import took 0.033508 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000221 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: '00493bf6d7873599d0da7ceaa0b036d3') in 0.011089 seconds
Import took 0.013311 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000145 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: 'e30864fa0fd794a8f7089f7354dfc519') in 0.011333 seconds
Import took 0.013480 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000224 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: '5c741de1ca0dd8a8f746aec916512b39') in 0.009131 seconds
Import took 0.011456 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000271 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: '1cf7a30a81ef12a13f770404de10b7d4') in 0.008987 seconds
Import took 0.011576 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000278 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: 'e30864fa0fd794a8f7089f7354dfc519') in 0.010411 seconds
Import took 0.012610 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000263 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: 'b41228efa7be5c74cd82ea094a99503a') in 0.011732 seconds
Import took 0.014377 seconds .
========================================================================
Received Import Request.
Time since last request: 0.011057 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: 'b41228efa7be5c74cd82ea094a99503a') in 0.010325 seconds
Import took 0.012964 seconds .
========================================================================
Received Import Request.
Time since last request: 0.451239 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: 'f6d5dc92a94362500173f4e0a113886d') in 0.007979 seconds
Import took 0.010476 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000159 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: '43676e95fa21d317c8528d46bb1414bc') in 0.011741 seconds
Import took 0.013772 seconds .
========================================================================
Received Import Request.
Time since last request: 24.650646 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: '81e650605e30aa8381503584ebe87cd6') in 0.010715 seconds
Import took 0.013728 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000196 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_AlbedoTransparency.png
artifactKey: Guid(5818e400cbb286541b34bfe13232431f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_AlbedoTransparency.png using Guid(5818e400cbb286541b34bfe13232431f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '368b25d3c9c67e5b1c3f4c1cf07e7db4') in 0.053545 seconds
Import took 0.056072 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000217 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.fbx
artifactKey: Guid(7b2f451dc7f3fad4f8b8342970631a0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.fbx using Guid(7b2f451dc7f3fad4f8b8342970631a0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '780d4ae29a5eb023b0f46b4b25488dfe') in 0.278048 seconds
Import took 0.280846 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000191 seconds.
path: Assets/SteamVR/InteractionSystem/Poses/SquishySqueeze.asset
artifactKey: Guid(e89c10566133f4049b9923e9f4d6f50f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Poses/SquishySqueeze.asset using Guid(e89c10566133f4049b9923e9f4d6f50f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ce2c718457cc860defc2813cd26c6d0') in 0.005031 seconds
Import took 0.007187 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000182 seconds.
path: Assets/SteamVR/InteractionSystem/Poses/SquishyBase.asset
artifactKey: Guid(c8576ff2e3da53743b7694fbfe3ad743) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Poses/SquishyBase.asset using Guid(c8576ff2e3da53743b7694fbfe3ad743) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ddce08d308e076be9aab47e9f542d11') in 0.003640 seconds
Import took 0.006282 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000193 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/SquishyBall.physicMaterial
artifactKey: Guid(f47bbda4aabe0b84495381b82f446a22) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/SquishyBall.physicMaterial using Guid(f47bbda4aabe0b84495381b82f446a22) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c5303eb712c6774d44623f227f06391') in 0.004651 seconds
Import took 0.006835 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000206 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/Squish.mat
artifactKey: Guid(83d971dc1e971294db95113fe0ecbdd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/Squish.mat using Guid(83d971dc1e971294db95113fe0ecbdd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0883a6a8d64492726d1f7d6e376c9970') in 0.039291 seconds
Import took 0.041974 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000201 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: '81e650605e30aa8381503584ebe87cd6') in 0.008251 seconds
Import took 0.010649 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000213 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_MetallicSmoothness.png
artifactKey: Guid(f8f6383ff3580e748824e6b7f2b7b776) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_MetallicSmoothness.png using Guid(f8f6383ff3580e748824e6b7f2b7b776) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88e5d4dcf14f500f4a8c7456f9243e59') in 0.008724 seconds
Import took 0.011481 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000227 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_Normal.png
artifactKey: Guid(c7ddd637fe41c13448eb3ad8620e2735) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Textures/Squishy_Squish_Normal.png using Guid(c7ddd637fe41c13448eb3ad8620e2735) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c0f840e18f43e0e5980b5e5e3e17825') in 0.011083 seconds
Import took 0.013419 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000225 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.prefab
artifactKey: Guid(4d7627d70abb4e247b7d958e6634b2f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.prefab using Guid(4d7627d70abb4e247b7d958e6634b2f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48ecfba03d835e3e8af04294976004a4') in 0.055399 seconds
Import took 0.058480 seconds .
========================================================================
Received Import Request.
Time since last request: 0.004101 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.prefab
artifactKey: Guid(4d7627d70abb4e247b7d958e6634b2f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Squishy.prefab using Guid(4d7627d70abb4e247b7d958e6634b2f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48ecfba03d835e3e8af04294976004a4') in 0.027520 seconds
Import took 0.031006 seconds .
========================================================================
Received Import Request.
Time since last request: 4.565912 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/URPSquish.mat
artifactKey: Guid(607f3c0c7b39ba74dae7acb29ebb7f2e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/URPSquish.mat using Guid(607f3c0c7b39ba74dae7acb29ebb7f2e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a49a70c95e1a48b4bef863e64ea3a6cd') in 0.007869 seconds
Import took 0.010442 seconds .
========================================================================
Received Import Request.
Time since last request: 0.005129 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/URPSquish.mat
artifactKey: Guid(607f3c0c7b39ba74dae7acb29ebb7f2e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/Squishy/Materials/URPSquish.mat using Guid(607f3c0c7b39ba74dae7acb29ebb7f2e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a49a70c95e1a48b4bef863e64ea3a6cd') in 0.005844 seconds
Import took 0.008348 seconds .
========================================================================
Received Import Request.
Time since last request: 4.077006 seconds.
path: Assets/Scripts/UIManager.cs
artifactKey: Guid(0f85f0c412f1ed54d943f53081725bbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/UIManager.cs using Guid(0f85f0c412f1ed54d943f53081725bbb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17fa91b089d7d5d277c175a19d122823') in 0.001923 seconds
Import took 0.004185 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003897 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.827 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1479 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.8 MB.
System memory in use after: 77.8 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2010.
Total: 1.657000 ms (FindLiveObjects: 0.138300 ms CreateObjectMapping: 0.040100 ms MarkObjects: 1.414700 ms DeleteObjects: 0.063000 ms)
========================================================================
Received Import Request.
Time since last request: 43.835184 seconds.
path: Assets/Scripts/UI Manager.cs
artifactKey: Guid(a611e4ff773f3f149bc61f0048fd2bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/UI Manager.cs using Guid(a611e4ff773f3f149bc61f0048fd2bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b580376d39bf1f211b1aeee3a36f4781') in 0.004950 seconds
Import took 0.007486 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003395 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.810 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.8 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2015.
Total: 1.749500 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.073600 ms MarkObjects: 1.385700 ms DeleteObjects: 0.060200 ms)
========================================================================
Received Import Request.
Time since last request: 200.177388 seconds.
path: Assets/Scripts/UI Manager.cs
artifactKey: Guid(a611e4ff773f3f149bc61f0048fd2bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/UI Manager.cs using Guid(a611e4ff773f3f149bc61f0048fd2bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2fc85f61a7fbc0288ead73f81c21c890') in 0.005883 seconds
Import took 0.008603 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000666 seconds.
path: Assets/Scripts/UI Manager.cs
artifactKey: Guid(a611e4ff773f3f149bc61f0048fd2bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/UI Manager.cs using Guid(a611e4ff773f3f149bc61f0048fd2bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2fc85f61a7fbc0288ead73f81c21c890') in 0.002162 seconds
Import took 0.004287 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004529 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.758 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1479 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.8 MB.
System memory in use after: 77.9 MB.
Unloading 9 unused Assets to reduce memory usage. Loaded Objects now: 2018.
Total: 1.964100 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.074400 ms MarkObjects: 1.590600 ms DeleteObjects: 0.059600 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003524 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.797 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.8 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2023.
Total: 1.812900 ms (FindLiveObjects: 0.229900 ms CreateObjectMapping: 0.050600 ms MarkObjects: 1.449700 ms DeleteObjects: 0.081500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003530 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.777 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.8 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2027.
Total: 1.747300 ms (FindLiveObjects: 0.139100 ms CreateObjectMapping: 0.040000 ms MarkObjects: 1.481600 ms DeleteObjects: 0.084000 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003366 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.765 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.8 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2031.
Total: 1.765200 ms (FindLiveObjects: 0.159300 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.489400 ms DeleteObjects: 0.066500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004535 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.835 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.6 MB.
System memory in use after: 77.6 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2035.
Total: 1.854900 ms (FindLiveObjects: 0.236400 ms CreateObjectMapping: 0.059700 ms MarkObjects: 1.465700 ms DeleteObjects: 0.092100 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003496 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.810 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2039.
Total: 2.109000 ms (FindLiveObjects: 0.185900 ms CreateObjectMapping: 0.051500 ms MarkObjects: 1.796100 ms DeleteObjects: 0.073200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003717 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.828 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2043.
Total: 1.800400 ms (FindLiveObjects: 0.226800 ms CreateObjectMapping: 0.073100 ms MarkObjects: 1.433900 ms DeleteObjects: 0.065200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003452 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.825 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.7 MB.
System memory in use after: 77.8 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2047.
Total: 2.450500 ms (FindLiveObjects: 0.181100 ms CreateObjectMapping: 0.053400 ms MarkObjects: 2.129300 ms DeleteObjects: 0.085400 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004451 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.809 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2051.
Total: 2.243900 ms (FindLiveObjects: 0.226200 ms CreateObjectMapping: 0.069200 ms MarkObjects: 1.871200 ms DeleteObjects: 0.076300 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003397 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.802 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2055.
Total: 3.151700 ms (FindLiveObjects: 0.298600 ms CreateObjectMapping: 0.079600 ms MarkObjects: 2.686500 ms DeleteObjects: 0.085400 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003595 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.872 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 78.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2059.
Total: 1.954000 ms (FindLiveObjects: 0.153900 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.694100 ms DeleteObjects: 0.058500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003742 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.794 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2063.
Total: 1.991100 ms (FindLiveObjects: 0.170300 ms CreateObjectMapping: 0.050500 ms MarkObjects: 1.706400 ms DeleteObjects: 0.062600 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004653 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.799 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2067.
Total: 2.400500 ms (FindLiveObjects: 0.268100 ms CreateObjectMapping: 0.048700 ms MarkObjects: 2.021800 ms DeleteObjects: 0.060800 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003457 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.830 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 78.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2071.
Total: 1.697300 ms (FindLiveObjects: 0.195200 ms CreateObjectMapping: 0.051500 ms MarkObjects: 1.386800 ms DeleteObjects: 0.062200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003406 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.832 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.6 MB.
System memory in use after: 77.7 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2075.
Total: 1.973500 ms (FindLiveObjects: 0.161800 ms CreateObjectMapping: 0.049800 ms MarkObjects: 1.699000 ms DeleteObjects: 0.061600 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003445 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.833 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.1 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2079.
Total: 1.818600 ms (FindLiveObjects: 0.202800 ms CreateObjectMapping: 0.053000 ms MarkObjects: 1.496800 ms DeleteObjects: 0.065200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003566 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.816 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 78.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2083.
Total: 2.377100 ms (FindLiveObjects: 0.367700 ms CreateObjectMapping: 0.121200 ms MarkObjects: 1.823500 ms DeleteObjects: 0.063700 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003914 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.63 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.800 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.1 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2087.
Total: 2.082800 ms (FindLiveObjects: 0.293400 ms CreateObjectMapping: 0.128900 ms MarkObjects: 1.576300 ms DeleteObjects: 0.082700 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003490 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.813 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 78.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2091.
Total: 1.621900 ms (FindLiveObjects: 0.164100 ms CreateObjectMapping: 0.043700 ms MarkObjects: 1.357200 ms DeleteObjects: 0.056100 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003377 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.791 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.1 MB.
System memory in use after: 78.2 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2095.
Total: 1.826800 ms (FindLiveObjects: 0.232200 ms CreateObjectMapping: 0.055500 ms MarkObjects: 1.476600 ms DeleteObjects: 0.061500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004288 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.796 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2099.
Total: 2.368300 ms (FindLiveObjects: 0.263500 ms CreateObjectMapping: 0.109800 ms MarkObjects: 1.894200 ms DeleteObjects: 0.099500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003430 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.819 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.1 MB.
System memory in use after: 78.2 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2103.
Total: 1.819700 ms (FindLiveObjects: 0.174800 ms CreateObjectMapping: 0.047700 ms MarkObjects: 1.525900 ms DeleteObjects: 0.070300 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004183 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.811 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2107.
Total: 1.978100 ms (FindLiveObjects: 0.215500 ms CreateObjectMapping: 0.067300 ms MarkObjects: 1.630400 ms DeleteObjects: 0.063500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003629 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.825 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.1 MB.
System memory in use after: 78.2 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2111.
Total: 1.854100 ms (FindLiveObjects: 0.207700 ms CreateObjectMapping: 0.047700 ms MarkObjects: 1.539600 ms DeleteObjects: 0.058300 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004090 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.779 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2115.
Total: 1.808500 ms (FindLiveObjects: 0.229100 ms CreateObjectMapping: 0.061500 ms MarkObjects: 1.458600 ms DeleteObjects: 0.058400 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003428 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.843 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.7 MB.
System memory in use after: 77.8 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2119.
Total: 2.076800 ms (FindLiveObjects: 0.160400 ms CreateObjectMapping: 0.048100 ms MarkObjects: 1.791900 ms DeleteObjects: 0.075200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003591 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.836 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.1 MB.
System memory in use after: 78.2 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2123.
Total: 2.620900 ms (FindLiveObjects: 0.242300 ms CreateObjectMapping: 0.081500 ms MarkObjects: 2.236500 ms DeleteObjects: 0.059300 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003831 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.779 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 78.0 MB.
System memory in use after: 78.1 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2127.
Total: 1.982900 ms (FindLiveObjects: 0.235300 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.622400 ms DeleteObjects: 0.075300 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003746 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.815 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 77.9 MB.
System memory in use after: 77.9 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2131.
Total: 1.798400 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.046600 ms MarkObjects: 1.480400 ms DeleteObjects: 0.064700 ms)
========================================================================
Received Import Request.
Time since last request: 3232.819781 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars
artifactKey: Guid(80575d31bdef86b4b9748c61bb6f235f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars using Guid(80575d31bdef86b4b9748c61bb6f235f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8829473af04ffbe9ee16d09e74abe8bf') in 0.005584 seconds
Import took 0.008836 seconds .
========================================================================
Received Import Request.
Time since last request: 0.057438 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B06_Ch_04_Avatar.fbx
artifactKey: Guid(7f1972951ac6fc345881da2aa3dc3442) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B06_Ch_04_Avatar.fbx using Guid(7f1972951ac6fc345881da2aa3dc3442) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4465996eaa3227ba7ec982258ca996fa') in 0.133192 seconds
Import took 0.135670 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000228 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbx
artifactKey: Guid(9b232a5e676587d478938ebb2d6c7d36) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbx using Guid(9b232a5e676587d478938ebb2d6c7d36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b5eb287ee13594f339bb582985a487a') in 0.020545 seconds
Import took 0.022820 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000274 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B25_Ch_04_Avatar.fbx
artifactKey: Guid(df988c47aa443964a8924d60247c7a1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B25_Ch_04_Avatar.fbx using Guid(df988c47aa443964a8924d60247c7a1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c7be482fdea083399a415dab0cb88f43') in 0.018011 seconds
Import took 0.020320 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000182 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B18_Ch_01_AvatarZombie.fbx
artifactKey: Guid(2c7fb3d27117eeb4a9182ee87a7025b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B18_Ch_01_AvatarZombie.fbx using Guid(2c7fb3d27117eeb4a9182ee87a7025b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d51320bd428171fdafc9b83f5789162') in 0.022076 seconds
Import took 0.024966 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000241 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B30_Ch_05_Avatar.fbx
artifactKey: Guid(1934d7a3170d2a44281dfb3617f80d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B30_Ch_05_Avatar.fbx using Guid(1934d7a3170d2a44281dfb3617f80d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7101e0be9073a4a3d2b2ea3ccf807d0f') in 0.018378 seconds
Import took 0.020823 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000172 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B12_Ch_02_Avatar.fbx
artifactKey: Guid(30eacfcb4c137bf4a9aaa3266373bd9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B12_Ch_02_Avatar.fbx using Guid(30eacfcb4c137bf4a9aaa3266373bd9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4117e6cc097c075fe367fb8e0d8a1025') in 0.020689 seconds
Import took 0.023526 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000244 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B20_Ch_01_Avatar.fbx
artifactKey: Guid(3d15d42cbf37faf4cb25ebab81c2f973) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B20_Ch_01_Avatar.fbx using Guid(3d15d42cbf37faf4cb25ebab81c2f973) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9980cb9178bba3bfb589fe9741fdc378') in 0.019204 seconds
Import took 0.021660 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000248 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B12_Ch_02_Avatar.fbx
artifactKey: Guid(30eacfcb4c137bf4a9aaa3266373bd9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B12_Ch_02_Avatar.fbx using Guid(30eacfcb4c137bf4a9aaa3266373bd9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4117e6cc097c075fe367fb8e0d8a1025') in 0.016709 seconds
Import took 0.019291 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000235 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B20_Ch_01_Avatar.fbx
artifactKey: Guid(3d15d42cbf37faf4cb25ebab81c2f973) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B20_Ch_01_Avatar.fbx using Guid(3d15d42cbf37faf4cb25ebab81c2f973) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9980cb9178bba3bfb589fe9741fdc378') in 0.015380 seconds
Import took 0.017983 seconds .
========================================================================
Received Import Request.
Time since last request: 3.550416 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs
artifactKey: Guid(f746f35c46d2b694090217ed9a319695) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs using Guid(f746f35c46d2b694090217ed9a319695) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7726d0383b687db6e7860f491d55dc50') in 0.002913 seconds
Import took 0.005777 seconds .
========================================================================
Received Import Request.
Time since last request: 0.074716 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B06_Ch_04_Avatar.prefab
artifactKey: Guid(889859d3862ff3b46b48aa6898f9773e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B06_Ch_04_Avatar.prefab using Guid(889859d3862ff3b46b48aa6898f9773e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c54640c5ceb57cf0ff8d635cf0104cc0') in 0.010863 seconds
Import took 0.013414 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000249 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B12_Ch_02_Avatar.prefab
artifactKey: Guid(7d6889c17c68e1947ad3f422fbca01a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B12_Ch_02_Avatar.prefab using Guid(7d6889c17c68e1947ad3f422fbca01a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37c643748c0be882ae5ffb10b010e43d') in 0.011822 seconds
Import took 0.014202 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000214 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B28_Ch_05_Avatar.prefab
artifactKey: Guid(159e60b48e323134684b9f7426982bd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B28_Ch_05_Avatar.prefab using Guid(159e60b48e323134684b9f7426982bd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fcf8f810044a67ead4cf59a225c75ab7') in 0.010683 seconds
Import took 0.013510 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000172 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B30_Ch_05_Avatar.prefab
artifactKey: Guid(6009a5cb76b01ad41b78f123a6aeee96) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B30_Ch_05_Avatar.prefab using Guid(6009a5cb76b01ad41b78f123a6aeee96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '83af12ef465aab2b78ec0e585ad48a20') in 0.011440 seconds
Import took 0.014670 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000185 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B18_Ch_01_AvatarZombie.prefab
artifactKey: Guid(527a8e48b0dc4c547b7071327d154307) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B18_Ch_01_AvatarZombie.prefab using Guid(527a8e48b0dc4c547b7071327d154307) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '534b0854ef80ab0cdb0f4c6496d8ee05') in 0.014617 seconds
Import took 0.017809 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000187 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B20_Ch_01_Avatar.prefab
artifactKey: Guid(e0ef6083a5069634e8cc03171793c34d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B20_Ch_01_Avatar.prefab using Guid(e0ef6083a5069634e8cc03171793c34d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '785341ed131aae3db46199fdac97483c') in 0.010094 seconds
Import took 0.012734 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000182 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B25_Ch_04_Avatar.prefab
artifactKey: Guid(d114356fbca98b441817a460d0ce759e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B25_Ch_04_Avatar.prefab using Guid(d114356fbca98b441817a460d0ce759e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c8722ff2f4067000b1c9b307872fba0') in 0.010916 seconds
Import took 0.013557 seconds .
========================================================================
Received Import Request.
Time since last request: 344.214365 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@ComboFinish.fbx
artifactKey: Guid(225072896c8a76b4f9ba2f97cc6396c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@ComboFinish.fbx using Guid(225072896c8a76b4f9ba2f97cc6396c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '86635fcce9351e420d26009b54ec09b4') in 0.007860 seconds
Import took 0.010935 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000255 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@dodge L.fbx
artifactKey: Guid(4f0770abd4e545a419d40562754ad6df) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@dodge L.fbx using Guid(4f0770abd4e545a419d40562754ad6df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53d09aae2eb3ba949f0b43f0633a5d46') in 0.006831 seconds
Import took 0.009105 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000190 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@run fist.fbx
artifactKey: Guid(16e105ea7c991e34daa597d153130e0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@run fist.fbx using Guid(16e105ea7c991e34daa597d153130e0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1104203c29cca4f8e48592cbf4efd14') in 0.007464 seconds
Import took 0.010235 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000189 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@kick.fbx
artifactKey: Guid(d0ea25b5e5333cd4f8a6ea2a82fc4134) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@kick.fbx using Guid(d0ea25b5e5333cd4f8a6ea2a82fc4134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a31b3bff00a9c0c202953d09d0c5303f') in 0.007040 seconds
Import took 0.009852 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000255 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@counter atk.fbx
artifactKey: Guid(60618ebe88ff8bb4281305e63b08ff05) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@counter atk.fbx using Guid(60618ebe88ff8bb4281305e63b08ff05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27ec9efc0dee188776fe50682d4a8744') in 0.006738 seconds
Import took 0.009352 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000196 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@idle.fbx
artifactKey: Guid(1279ce1156a3ff845bb3568546de1e57) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@idle.fbx using Guid(1279ce1156a3ff845bb3568546de1e57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ce2225d55ee15e07ce0527a2e9efc3f') in 0.006686 seconds
Import took 0.009573 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000156 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@getup.fbx
artifactKey: Guid(cfbb407ab968a994ebdb214c5531c5c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@getup.fbx using Guid(cfbb407ab968a994ebdb214c5531c5c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72a2b6070c782efd935772d981bb441a') in 0.006917 seconds
Import took 0.009779 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000183 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@hypo.fbx
artifactKey: Guid(86b388147abb21445a1106a893329acd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@hypo.fbx using Guid(86b388147abb21445a1106a893329acd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1124880de17485ea9b1943b76d7ccbb2') in 0.006914 seconds
Import took 0.009290 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000217 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@jog 2h.fbx
artifactKey: Guid(626360514eca96949820371bb2066d3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/StreetFight/SF@jog 2h.fbx using Guid(626360514eca96949820371bb2066d3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9dfb05b20dcdfc59a30cf8b204ef4cc0') in 0.006506 seconds
Import took 0.009099 seconds .
========================================================================
Received Import Request.
Time since last request: 1.948162 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/SwordFight/S@Sword_attack big left.mb.fbx
artifactKey: Guid(3c59eeb345b95004fa9f9c2ca9c41d47) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/SwordFight/S@Sword_attack big left.mb.fbx using Guid(3c59eeb345b95004fa9f9c2ca9c41d47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91113f1b4cb6e502176ad7205efbf65c') in 0.006393 seconds
Import took 0.008856 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000239 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/SwordFight/S@Sword_attack big right.fbx
artifactKey: Guid(87a1913430402c14a8fe126de4a3a26e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/SwordFight/S@Sword_attack big right.fbx using Guid(87a1913430402c14a8fe126de4a3a26e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f58f1e1bdf77a77f6214eec88869ccfb') in 0.006497 seconds
Import took 0.009062 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000272 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/SwordFight/S@Sword_intro walk.fbx
artifactKey: Guid(b68a29e75d587f545a803cc7f7a62b58) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/SwordFight/S@Sword_intro walk.fbx using Guid(b68a29e75d587f545a803cc7f7a62b58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '351fc2ee16ba59154a5144f2324b7b87') in 0.008583 seconds
Import took 0.011582 seconds .
========================================================================
Received Import Request.
Time since last request: 2.011142 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfAnticipation_01.fbx
artifactKey: Guid(bdc7912b837d8574581a2e31256d4db8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfAnticipation_01.fbx using Guid(bdc7912b837d8574581a2e31256d4db8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62cacbc55db928739b7320ebfc673fa5') in 0.008302 seconds
Import took 0.011282 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000269 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle.fbx
artifactKey: Guid(95f825eb610d58645a6fbf1e916ffa64) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle.fbx using Guid(95f825eb610d58645a6fbf1e916ffa64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79c98463a647a17db839762535be1afc') in 0.007490 seconds
Import took 0.010517 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000217 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle2.fbx
artifactKey: Guid(6d31cb477d31b18408250d6eb2288c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Golf/G@GolfIdle2.fbx using Guid(6d31cb477d31b18408250d6eb2288c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e441f65b35c7ff82325a3ad08e686264') in 0.006635 seconds
Import took 0.009343 seconds .
========================================================================
Received Import Request.
Time since last request: 88.527978 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/T@Idle_01.fbx
artifactKey: Guid(b2536cdee0b872247aadab4fcbb21db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/T@Idle_01.fbx using Guid(b2536cdee0b872247aadab4fcbb21db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c8132111822e1c3653770d6e403f2ce') in 0.006793 seconds
Import took 0.009656 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000176 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/T@Serve.fbx
artifactKey: Guid(f974a057df2c6da4f95fbab9de24a1af) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/T@Serve.fbx using Guid(f974a057df2c6da4f95fbab9de24a1af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74af1bef1849b2c80827222772ad12e6') in 0.008185 seconds
Import took 0.010787 seconds .
========================================================================
Received Import Request.
Time since last request: 86.842800 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/Batch_30_Ch_05_Avatar.controller
artifactKey: Guid(965bd9c1a8e0e7443b4825c513e37086) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/Batch_30_Ch_05_Avatar.controller using Guid(965bd9c1a8e0e7443b4825c513e37086) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0cfe993005c3b41da05aedbb5e62342b') in 0.003844 seconds
Import took 0.006276 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003451 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.808 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 91.9 MB.
System memory in use after: 92.0 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2137.
Total: 2.559400 ms (FindLiveObjects: 0.326700 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.051100 ms DeleteObjects: 0.096100 ms)
========================================================================
Received Import Request.
Time since last request: 80.153601 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JoeJeff.fbx
artifactKey: Guid(f50eaab9ff2788842bdf5c2875f3778b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/JoeJeff/JoeJeff.fbx using Guid(f50eaab9ff2788842bdf5c2875f3778b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2c97b3abe8fae9650c5c2b04a66ec11') in 0.274729 seconds
Import took 0.277465 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000228 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Bowling.fbx
artifactKey: Guid(f636b5276af76f048921d9e25883ea03) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Bowling.fbx using Guid(f636b5276af76f048921d9e25883ea03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90f778009151773b4595dc435df917d7') in 0.014250 seconds
Import took 0.016415 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000228 seconds.
path: Assets/VIDE/Data/DemoAssets/Blue.fbx
artifactKey: Guid(d7421de41d8295f458907417e8b03adc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/VIDE/Data/DemoAssets/Blue.fbx using Guid(d7421de41d8295f458907417e8b03adc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6067bd4a2c9b9642f5da1fdd61078ca7') in 0.038850 seconds
Import took 0.041501 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000194 seconds.
path: Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Buggy Controller.fbx
artifactKey: Guid(02842627faccabf418acf404c32f7b7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Samples/BuggyBuddy/Buggy Controller.fbx using Guid(02842627faccabf418acf404c32f7b7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0d5ea1ae549c76e1ea45a56adcda01c3') in 0.056453 seconds
Import took 0.058879 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000226 seconds.
path: Assets/SteamVR/InteractionSystem/Longbow/Models/Longbow.fbx
artifactKey: Guid(e694f124da5bfd84d97e67e8c2719420) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/SteamVR/InteractionSystem/Longbow/Models/Longbow.fbx using Guid(e694f124da5bfd84d97e67e8c2719420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc02893a3e0f2b78bce89409240e4a53') in 0.030672 seconds
Import took 0.033182 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003724 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.802 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 92.4 MB.
System memory in use after: 92.5 MB.
Unloading 9 unused Assets to reduce memory usage. Loaded Objects now: 2142.
Total: 1.955200 ms (FindLiveObjects: 0.149200 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.635400 ms DeleteObjects: 0.124600 ms)
========================================================================
Received Import Request.
Time since last request: 109.109637 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/Batch_30_Ch_05_Avatar.controller
artifactKey: Guid(965bd9c1a8e0e7443b4825c513e37086) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis/Batch_30_Ch_05_Avatar.controller using Guid(965bd9c1a8e0e7443b4825c513e37086) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67f94f0d644fd1d5bcd1467a64b87b86') in 0.015300 seconds
Import took 0.017614 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004104 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.789 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 92.6 MB.
System memory in use after: 92.6 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2146.
Total: 1.800500 ms (FindLiveObjects: 0.179100 ms CreateObjectMapping: 0.077600 ms MarkObjects: 1.477000 ms DeleteObjects: 0.065600 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003375 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.793 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 92.6 MB.
System memory in use after: 92.6 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2150.
Total: 1.712700 ms (FindLiveObjects: 0.163900 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.444200 ms DeleteObjects: 0.058400 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004327 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.807 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 92.4 MB.
System memory in use after: 92.5 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2154.
Total: 2.398200 ms (FindLiveObjects: 0.219000 ms CreateObjectMapping: 0.060000 ms MarkObjects: 2.059300 ms DeleteObjects: 0.058500 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003503 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.64 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.797 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1480 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 92.6 MB.
System memory in use after: 92.7 MB.
Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 2158.
Total: 1.939800 ms (FindLiveObjects: 0.183700 ms CreateObjectMapping: 0.052900 ms MarkObjects: 1.630500 ms DeleteObjects: 0.071500 ms)
========================================================================
Received Import Request.
Time since last request: 466.986627 seconds.
path: Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis
artifactKey: Guid(e01a2954fe58e7f4f843da1e748bd083) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/AnimationPacks/Tennis using Guid(e01a2954fe58e7f4f843da1e748bd083) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f78ebe34955665d977a25a970b2ef0b') in 0.004431 seconds
Import took 0.007403 seconds .
========================================================================
Received Import Request.
Time since last request: 8.840483 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials
artifactKey: Guid(6402244fceac850448f986e8ef45b7d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials using Guid(6402244fceac850448f986e8ef45b7d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e32e1262174132c4b56c1e320e213fc0') in 0.002850 seconds
Import took 0.005364 seconds .
========================================================================
Received Import Request.
Time since last request: 0.050889 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Jambie_texture.mat
artifactKey: Guid(efc7eea160c00f247a421ea7ef1a4933) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Jambie_texture.mat using Guid(efc7eea160c00f247a421ea7ef1a4933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e55a0449c0a737ea94b6eb368955db0') in 0.049837 seconds
Import took 0.052101 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000250 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Vector_colours.mat
artifactKey: Guid(af1c4e64ca0ce1a4fa470580553a1cfd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Vector_colours.mat using Guid(af1c4e64ca0ce1a4fa470580553a1cfd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e6526331663f70b02696e4cf51f0975') in 0.009806 seconds
Import took 0.012218 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000209 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.mat
artifactKey: Guid(ff0eeaceb189f8c458fc573cf4a16a3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.mat using Guid(ff0eeaceb189f8c458fc573cf4a16a3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23b3d0053136e4f4989fd0cf4f4d700b') in 0.008276 seconds
Import took 0.010697 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000168 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.png
artifactKey: Guid(2b25cce7098a2344480fa0abc7901f11) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.png using Guid(2b25cce7098a2344480fa0abc7901f11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '887577a3ce4e278389b207d1b2c85f05') in 0.013581 seconds
Import took 0.015929 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000213 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.mat
artifactKey: Guid(a8dcecb44f36d0741a83d4a1835477ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/Zombie_texture.mat using Guid(a8dcecb44f36d0741a83d4a1835477ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96b1ad5e9584684d882e4d78972f7251') in 0.009945 seconds
Import took 0.012594 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000209 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.png
artifactKey: Guid(cc6145fc375d04c4e91b26fa51f679cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Materials/vehicles_texture.png using Guid(cc6145fc375d04c4e91b26fa51f679cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3619200c2db1d70bc408d88839674a60') in 0.007598 seconds
Import took 0.010138 seconds .
========================================================================
Received Import Request.
Time since last request: 6.056092 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B30_Ch_05_Avatar.prefab
artifactKey: Guid(6009a5cb76b01ad41b78f123a6aeee96) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/Prefabs/B30_Ch_05_Avatar.prefab using Guid(6009a5cb76b01ad41b78f123a6aeee96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82412dffd5cdd7c20f9e9a6003017bbb') in 0.020734 seconds
Import took 0.023402 seconds .
========================================================================
Received Import Request.
Time since last request: 38.178683 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/BasketBall.fbx
artifactKey: Guid(9035705c11ed9d9438dd54d3fb81c7a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/BasketBall.fbx using Guid(9035705c11ed9d9438dd54d3fb81c7a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc61a31383174fe1666508f1ab33a189') in 0.023489 seconds
Import took 0.026025 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000180 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/FootBall.fbx
artifactKey: Guid(a68ea4bf23f4f9747ac1c37d5ae30306) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/FootBall.fbx using Guid(a68ea4bf23f4f9747ac1c37d5ae30306) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c0753b30ec1a7e822b3939056b4c12f') in 0.013938 seconds
Import took 0.016217 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000247 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Pistol.fbx
artifactKey: Guid(5e305378da762b94398c7f67fbb283aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Pistol.fbx using Guid(5e305378da762b94398c7f67fbb283aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0a304e4f646b87585b4a413af0752a24') in 0.012757 seconds
Import took 0.015015 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000172 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Sword_02.fbx
artifactKey: Guid(7a070e573ca95864bacd67568034854a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Sword_02.fbx using Guid(7a070e573ca95864bacd67568034854a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06119836120213ab5af85b8fe2947d09') in 0.018750 seconds
Import took 0.021394 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000210 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Hammer.fbx
artifactKey: Guid(cd5e785b37446f74bb58a7c26a1d5d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Hammer.fbx using Guid(cd5e785b37446f74bb58a7c26a1d5d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae6dc59e437f26f296c4f41933bbcc73') in 0.015018 seconds
Import took 0.017154 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000208 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Spear_01.fbx
artifactKey: Guid(340c08e4d850b1446816e414d501b5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Spear_01.fbx using Guid(340c08e4d850b1446816e414d501b5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da14cac0aadf31a04d6f04a9ccd1df07') in 0.011321 seconds
Import took 0.013808 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000206 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/TennisBat.fbx
artifactKey: Guid(bbedce53432f9b046bfe7a73fa08d71b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/TennisBat.fbx using Guid(bbedce53432f9b046bfe7a73fa08d71b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b90cb20523aec287ec1612d8a6334836') in 0.012337 seconds
Import took 0.014835 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000214 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_02.fbx
artifactKey: Guid(fe612c66c8bcbc040b2a0305d7d71bd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_02.fbx using Guid(fe612c66c8bcbc040b2a0305d7d71bd4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '753eb9fd28c9c77de11419d3126e86cf') in 0.013309 seconds
Import took 0.015838 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000200 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Sword_01.fbx
artifactKey: Guid(84c2b6d3a850de7448ad8fed7dd40407) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Sword_01.fbx using Guid(84c2b6d3a850de7448ad8fed7dd40407) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f59e7a4d9b198d396b0636915222a397') in 0.011407 seconds
Import took 0.013743 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000179 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_01.fbx
artifactKey: Guid(b7fd086c56a35164ba29d0212f93c2b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_Stick_01.fbx using Guid(b7fd086c56a35164ba29d0212f93c2b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce4bcfbd56bbcefde19edec6d4d74dfd') in 0.012106 seconds
Import took 0.014469 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000227 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_SkateBoard.fbx
artifactKey: Guid(b85b4b8b44f270d489196774ff37e2af) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_SkateBoard.fbx using Guid(b85b4b8b44f270d489196774ff37e2af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ca6326c3cd17d743b1077f50e3f0c16') in 0.013238 seconds
Import took 0.015442 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000167 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/GolfBats.fbx
artifactKey: Guid(dd08f653a6191f743831e1b2f6e013e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/GolfBats.fbx using Guid(dd08f653a6191f743831e1b2f6e013e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd06bf1d1a8c7468111d5934042dc8a36') in 0.027345 seconds
Import took 0.029804 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000180 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/HockyBAt.fbx
artifactKey: Guid(0c40e99cb8ed472479a3ccd10cf8363d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/HockyBAt.fbx using Guid(0c40e99cb8ed472479a3ccd10cf8363d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '628db0dc82c430fa60975c407928e8be') in 0.015720 seconds
Import took 0.018021 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000237 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/TennsBall.fbx
artifactKey: Guid(6d65ff3600680834e86eab4da30fad51) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/TennsBall.fbx using Guid(6d65ff3600680834e86eab4da30fad51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5346c4bc6d122d7e5163b7449492c631') in 0.012439 seconds
Import took 0.014896 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000175 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/P_Bat_01.fbx
artifactKey: Guid(8a308aa29e4a4c54d820aac9453fe326) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/P_Bat_01.fbx using Guid(8a308aa29e4a4c54d820aac9453fe326) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '936afb7efb2dfec8794ebac1462cc0d8') in 0.016935 seconds
Import took 0.019809 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000204 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/CricketBat.fbx
artifactKey: Guid(8be108a3cee4db34c902bff475fb3c45) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/CricketBat.fbx using Guid(8be108a3cee4db34c902bff475fb3c45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c733bf1d18106f1deab8bec42672cac') in 0.015540 seconds
Import took 0.017902 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000239 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Rifile.fbx
artifactKey: Guid(b9eb63fe97712a345986f9051a608348) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Rifile.fbx using Guid(b9eb63fe97712a345986f9051a608348) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5fb883d4ff80592d75c8b3a816bc704') in 0.014255 seconds
Import took 0.016583 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000242 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/CricketBall.fbx
artifactKey: Guid(ba6fe526282e45f47898a5ee480921a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/CricketBall.fbx using Guid(ba6fe526282e45f47898a5ee480921a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8a0238fe4eeba55f82ebec8a1c8b5fe') in 0.012853 seconds
Import took 0.015763 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000218 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/GolfBall.fbx
artifactKey: Guid(820201259fbfa1b44abec28204d0f785) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/GolfBall.fbx using Guid(820201259fbfa1b44abec28204d0f785) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '779f02bfcc489ff57f10c05694481ea6') in 0.012356 seconds
Import took 0.014731 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000228 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/RugbyBall.fbx
artifactKey: Guid(a465364e5423f2248b571d2643a5c1d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/RugbyBall.fbx using Guid(a465364e5423f2248b571d2643a5c1d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '435c25de59e41e3a0dc4be4c933ac646') in 0.012032 seconds
Import took 0.014324 seconds .
========================================================================
Received Import Request.
Time since last request: 0.843755 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Materials/DemoPlane.mat
artifactKey: Guid(a5bc3061607b9ac488f6e9c73f1a1c96) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Materials/DemoPlane.mat using Guid(a5bc3061607b9ac488f6e9c73f1a1c96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85dbe43231a84c79145199ebb8a9f96d') in 0.008926 seconds
Import took 0.012060 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000199 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Materials/vehicles_texture.mat
artifactKey: Guid(a1d5a3abcbb18b0438c4b52ddb6b0c78) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Materials/vehicles_texture.mat using Guid(a1d5a3abcbb18b0438c4b52ddb6b0c78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efcf1a2638e129574af6f6518bb9cc55') in 0.013363 seconds
Import took 0.016620 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000179 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/Materials/Vector_colours.mat
artifactKey: Guid(e8fabadb5c73f5e478bff786c7fb1398) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/Materials/Vector_colours.mat using Guid(e8fabadb5c73f5e478bff786c7fb1398) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d4a617f75d8deff6874e66777f9e441') in 0.008183 seconds
Import took 0.011186 seconds .
========================================================================
Received Import Request.
Time since last request: 1.009885 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/AllProps.prefab
artifactKey: Guid(4a59aee993f6902468e2cbebbf966e6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/AllProps.prefab using Guid(4a59aee993f6902468e2cbebbf966e6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28920aee63caed794ac9745ac48072fd') in 0.025503 seconds
Import took 0.028301 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000228 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennisBat.prefab
artifactKey: Guid(742d3c234fa248d4a9a8e8724fc1306e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennisBat.prefab using Guid(742d3c234fa248d4a9a8e8724fc1306e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce90f2bfa6268b9df66f77ca1345275d') in 0.008484 seconds
Import took 0.010766 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000238 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBats.prefab
artifactKey: Guid(7f1c976e19a51094aa37ac985fe04b41) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBats.prefab using Guid(7f1c976e19a51094aa37ac985fe04b41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de68510b70cc919c0bed04f746c07557') in 0.008747 seconds
Import took 0.011330 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000162 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_02.prefab
artifactKey: Guid(a0693c28d5a2e1f40a7e445ddb94ef1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_02.prefab using Guid(a0693c28d5a2e1f40a7e445ddb94ef1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e117606d2a83952d625aff7446b1c935') in 0.008168 seconds
Import took 0.010568 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000305 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBat.prefab
artifactKey: Guid(3b2c6ee265ce83142b49b4094ff76b72) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBat.prefab using Guid(3b2c6ee265ce83142b49b4094ff76b72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1538db086a099a17bf744d0d747e2dd') in 0.008640 seconds
Import took 0.011689 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000209 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBall.prefab
artifactKey: Guid(2fb31e8f67cd8d141a371293062cd28d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/CricketBall.prefab using Guid(2fb31e8f67cd8d141a371293062cd28d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48069141d1520d5e323c5a14ea511895') in 0.008174 seconds
Import took 0.010605 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000225 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/BasketBall.prefab
artifactKey: Guid(11fe7e2ec569efd47b35362153930997) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/BasketBall.prefab using Guid(11fe7e2ec569efd47b35362153930997) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c72ebdd38cee0bda857b3e571d98e8b') in 0.007881 seconds
Import took 0.010388 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000264 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Bat_01.prefab
artifactKey: Guid(6d0a3d3e77f25c64fb8ab7523d178a79) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Bat_01.prefab using Guid(6d0a3d3e77f25c64fb8ab7523d178a79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15ffe6d8f67c262f3bc4a2b5533a8d82') in 0.008897 seconds
Import took 0.011754 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000252 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/HockyBAt.prefab
artifactKey: Guid(57f63e37ad68fbb49bf8ca74b7f9dffd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/HockyBAt.prefab using Guid(57f63e37ad68fbb49bf8ca74b7f9dffd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '978086c6a74a2f1fa309b9b03d82d055') in 0.007909 seconds
Import took 0.010398 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000199 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennsBall.prefab
artifactKey: Guid(71d614b7169ae3d4899c34a9710bb3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/TennsBall.prefab using Guid(71d614b7169ae3d4899c34a9710bb3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b44e23e01c2065dedce0aa1148276d1') in 0.007785 seconds
Import took 0.010136 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000225 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBall.prefab
artifactKey: Guid(ea96061e1636a0b498977aefc98a2eb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/GolfBall.prefab using Guid(ea96061e1636a0b498977aefc98a2eb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed230c1ad2463830af14c9d41f404909') in 0.009332 seconds
Import took 0.012083 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000228 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_SkateBoard.prefab
artifactKey: Guid(e06638a288f6c7a468dcb9bcf39410e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_SkateBoard.prefab using Guid(e06638a288f6c7a468dcb9bcf39410e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4d7dc0fd2a7efcc945e873fc1cd1de4') in 0.008123 seconds
Import took 0.010709 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000216 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/RugbyBall.prefab
artifactKey: Guid(0b8c2ad763f1b8147b1b4f56db8d9e0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/RugbyBall.prefab using Guid(0b8c2ad763f1b8147b1b4f56db8d9e0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '197ec47d38937d8fc3be5ee3298953bb') in 0.008589 seconds
Import took 0.011045 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000197 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Bowling.prefab
artifactKey: Guid(571fee8fe694f5c46b80b52cce7a7a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Bowling.prefab using Guid(571fee8fe694f5c46b80b52cce7a7a94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f0771965bdf98de2955acbdf976914b') in 0.008304 seconds
Import took 0.010878 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000185 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Pistol.prefab
artifactKey: Guid(80f89a532e693784a8e6c40247c4702b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Pistol.prefab using Guid(80f89a532e693784a8e6c40247c4702b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75f25fe5302e86830085314bd6d46e96') in 0.008733 seconds
Import took 0.011094 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000199 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/FootBall.prefab
artifactKey: Guid(219de8f7633b6e84c9394d360619967b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/FootBall.prefab using Guid(219de8f7633b6e84c9394d360619967b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'faa5075c448db55306d57dbb8a4197b6') in 0.008871 seconds
Import took 0.011600 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000187 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_02.prefab
artifactKey: Guid(55fb53d98542bf649a82879eedce54ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_02.prefab using Guid(55fb53d98542bf649a82879eedce54ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b372d83577e30f1e489fc2edcbccfc9') in 0.008599 seconds
Import took 0.011033 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000190 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Hammer.prefab
artifactKey: Guid(8866e981d74a31444b70aa589a8ad24c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Hammer.prefab using Guid(8866e981d74a31444b70aa589a8ad24c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6feb7c3b7014a59c92915bb828c24ddf') in 0.007850 seconds
Import took 0.010161 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000184 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_01.prefab
artifactKey: Guid(1b43c3ff2ac856f459a9e8bbec696d36) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Sword_01.prefab using Guid(1b43c3ff2ac856f459a9e8bbec696d36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da7bb48d02bea3159b96b2e87211e23c') in 0.007510 seconds
Import took 0.009946 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000180 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Spear_01.prefab
artifactKey: Guid(3841a6dcd1a967c439f2422d6102c50b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Spear_01.prefab using Guid(3841a6dcd1a967c439f2422d6102c50b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8a793fc50423a6bae2c0aa1dd4df083') in 0.008776 seconds
Import took 0.011547 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000203 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Rifile.prefab
artifactKey: Guid(c96ad459540985244a1a0bda56252f4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/Rifile.prefab using Guid(c96ad459540985244a1a0bda56252f4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '349305a2d5b04106831d5bbe9828a98f') in 0.008822 seconds
Import took 0.011390 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000155 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_01.prefab
artifactKey: Guid(01c435ffbe18b3043b1152ee3a75c828) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Props/PropsPrefab/P_Stick_01.prefab using Guid(01c435ffbe18b3043b1152ee3a75c828) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73730e47825326f9d3c6bd02bbf2370f') in 0.008702 seconds
Import took 0.011750 seconds .
========================================================================
Received Import Request.
Time since last request: 2.203496 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbm
artifactKey: Guid(e8007f781ab22784eb6e4cf3b0b9a6ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbm using Guid(e8007f781ab22784eb6e4cf3b0b9a6ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24ce73701c02f3cc76c93c06afb74c66') in 0.002442 seconds
Import took 0.004920 seconds .
========================================================================
Received Import Request.
Time since last request: 0.034655 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbm/vehicles_texture.png
artifactKey: Guid(b9b7406fd45a1d54f88a7ea68731a328) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B28_Ch_05_Avatar.fbm/vehicles_texture.png using Guid(b9b7406fd45a1d54f88a7ea68731a328) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecf9da3217ebe3be8292b85b2a69b47f') in 0.009785 seconds
Import took 0.012052 seconds .
========================================================================
Received Import Request.
Time since last request: 170.874832 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B30_Ch_05_Avatar.fbx
artifactKey: Guid(1934d7a3170d2a44281dfb3617f80d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B30_Ch_05_Avatar.fbx using Guid(1934d7a3170d2a44281dfb3617f80d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b3bee83ea6ca027e9d8c1eb8e248af0') in 0.020834 seconds
Import took 0.023611 seconds .
========================================================================
Received Import Request.
Time since last request: 21.255689 seconds.
path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B30_Ch_05_Avatar.fbx
artifactKey: Guid(1934d7a3170d2a44281dfb3617f80d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B30_Ch_05_Avatar.fbx using Guid(1934d7a3170d2a44281dfb3617f80d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7209e4a711e68e3941cad7fb9eec7975') in 0.016540 seconds
Import took 0.019132 seconds .
========================================================================
Received Import Request.
Time since last request: 341.010462 seconds.
path: Assets/Cattleya/prefabs/clothingSet_04_And_nackedSet.prefab
artifactKey: Guid(01c14961d9931d94f9ccb0cf0c46ba9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/prefabs/clothingSet_04_And_nackedSet.prefab using Guid(01c14961d9931d94f9ccb0cf0c46ba9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29f1649edd53bff18898c9ffee478691') in 0.031702 seconds
Import took 0.034990 seconds .
========================================================================
Received Import Request.
Time since last request: 0.358073 seconds.
path: Assets/Cattleya/sources/clothingSet_04.fbx
artifactKey: Guid(8c2451cba12610a4b83716d152a35013) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/clothingSet_04.fbx using Guid(8c2451cba12610a4b83716d152a35013) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92734397daf4e7fc6b1f8155704cc02e') in 0.060993 seconds
Import took 0.063884 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000236 seconds.
path: Assets/Cattleya/sources/clothingSet_04_And_nackedSet.fbx
artifactKey: Guid(ebaf91e845e67ac4f85b03ca6c72bd32) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/clothingSet_04_And_nackedSet.fbx using Guid(ebaf91e845e67ac4f85b03ca6c72bd32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a97514078044009f3f38d752aeeceb11') in 0.078132 seconds
Import took 0.080732 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000224 seconds.
path: Assets/Cattleya/sources/nackedSet.fbx
artifactKey: Guid(83559fbceef558949926fe1ed703e4f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/nackedSet.fbx using Guid(83559fbceef558949926fe1ed703e4f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d960a3cf21a875406a316d2fc22d825') in 0.054703 seconds
Import took 0.057272 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000271 seconds.
path: Assets/Cattleya/sources/clothingSet_04_tex.png
artifactKey: Guid(784c78924e5396744953169847d21860) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/clothingSet_04_tex.png using Guid(784c78924e5396744953169847d21860) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c52dd4fde9bb714f023086cb2a28fad') in 0.006313 seconds
Import took 0.008483 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000243 seconds.
path: Assets/Cattleya/sources/hair1.png
artifactKey: Guid(f8b7dc5e8d3dff3479902cbf2cf50f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/hair1.png using Guid(f8b7dc5e8d3dff3479902cbf2cf50f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd18e1e69506f713ce2b9dfbb4abbd8ee') in 0.006939 seconds
Import took 0.009261 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000261 seconds.
path: Assets/Cattleya/sources/girl_texture_01.png
artifactKey: Guid(e955f1ae9549b1f418ecd6aa9ba99082) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/girl_texture_01.png using Guid(e955f1ae9549b1f418ecd6aa9ba99082) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0b22165c15a84aa56c519374cb61fea') in 0.007270 seconds
Import took 0.009927 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000219 seconds.
path: Assets/Cattleya/sources/idleAnimation.fbx
artifactKey: Guid(a5e11101db1088e47b2aef562350ae30) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Cattleya/sources/idleAnimation.fbx using Guid(a5e11101db1088e47b2aef562350ae30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ed46b20dbe3816ce5e4c7b73db47f90') in 0.026023 seconds
Import took 0.029099 seconds .
========================================================================
Received Import Request.
Time since last request: 9.186928 seconds.
path: Assets/AnimeGirls/Casual1
artifactKey: Guid(627897e93ade94948bf4796ce71fa87f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/Casual1 using Guid(627897e93ade94948bf4796ce71fa87f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd12c00b7c9b4dd727cb31f499c9cc7cf') in 0.002399 seconds
Import took 0.004641 seconds .
========================================================================
Received Import Request.
Time since last request: 1.835060 seconds.
path: Assets/AnimeGirls/Casual1/Casual1.prefab
artifactKey: Guid(678bf8bc91771fa498236de892b83d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/Casual1/Casual1.prefab using Guid(678bf8bc91771fa498236de892b83d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f5740f134dee394c6d631cb2a20d730') in 0.439184 seconds
Import took 0.442449 seconds .
========================================================================
Received Import Request.
Time since last request: 142.571274 seconds.
path: Assets/AnimeGirls/BaseCharacter/Underwear1.prefab
artifactKey: Guid(1733e098fdf8a9447bda920a3e41b14e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/Underwear1.prefab using Guid(1733e098fdf8a9447bda920a3e41b14e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c31dcdcc0bd99aa32d549cc0b75d1aed') in 0.032190 seconds
Import took 0.035474 seconds .
========================================================================
Received Import Request.
Time since last request: 14.415322 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Body.mat
artifactKey: Guid(8e526af249278a0498ce8273e07fcc49) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Body.mat using Guid(8e526af249278a0498ce8273e07fcc49) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '76c6ee587be2c07c920783f75353125b') in 0.008358 seconds
Import took 0.010895 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000176 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Hair_head.mat
artifactKey: Guid(903deec0895457d43a093ac8ee3e1d97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Hair_head.mat using Guid(903deec0895457d43a093ac8ee3e1d97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0d48b5760d3be52a53bfb4e9ccce481e') in 0.008119 seconds
Import took 0.010734 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000184 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_4_head.mat
artifactKey: Guid(33f16960b5faae741a694a6018f8f68d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_4_head.mat using Guid(33f16960b5faae741a694a6018f8f68d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e0cfdc79e80fc6430b215b9524f4e40') in 0.007903 seconds
Import took 0.010415 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000262 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/EyeBack.mat
artifactKey: Guid(b97b55ed446d8ed48acc18d42edf2de0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/EyeBack.mat using Guid(b97b55ed446d8ed48acc18d42edf2de0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1d08964fc269e23b67b4d341a63f319') in 0.007301 seconds
Import took 0.009598 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000169 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_2_head.mat
artifactKey: Guid(a5046b7e2e9bd10459e090170ab26f07) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_2_head.mat using Guid(a5046b7e2e9bd10459e090170ab26f07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf957ff67c2da36ac3e99c8ff55134af') in 0.009028 seconds
Import took 0.011628 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000255 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_EyeReflection.mat
artifactKey: Guid(1b5c7ed19ffba894c8cea260f2347c40) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_EyeReflection.mat using Guid(1b5c7ed19ffba894c8cea260f2347c40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49cc4bf873a9dbdb6fd9127a32e76a6f') in 0.007406 seconds
Import took 0.009738 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000209 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eyelashes.mat
artifactKey: Guid(29c9dd3707158b2448cc0bdf81c33ce8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eyelashes.mat using Guid(29c9dd3707158b2448cc0bdf81c33ce8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '30702b38ae231c2afc5559a1f6dceebf') in 0.008511 seconds
Import took 0.010980 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000183 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_underwear_2.mat
artifactKey: Guid(5869b0877c9aac0429ded83b64254243) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_underwear_2.mat using Guid(5869b0877c9aac0429ded83b64254243) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd603ba0ab174e854395415db8069de4a') in 0.042822 seconds
Import took 0.045227 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000229 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_1_hair.mat
artifactKey: Guid(99a79f6de2825ec4bb471ef12eee8b52) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_1_hair.mat using Guid(99a79f6de2825ec4bb471ef12eee8b52) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1c597b9fb7e9fb7c32cba1202e3df4d') in 0.008025 seconds
Import took 0.010358 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000232 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_3_hair.mat
artifactKey: Guid(ac66396422b86cb4c92dad11a754d445) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_3_hair.mat using Guid(ac66396422b86cb4c92dad11a754d445) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '486a53f903579fab9c5fc817fb42777d') in 0.007548 seconds
Import took 0.009710 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000184 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eyebrows.mat
artifactKey: Guid(aa86a0f3e62852142bfc3a5d4cd7a828) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eyebrows.mat using Guid(aa86a0f3e62852142bfc3a5d4cd7a828) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '302fb59c21c3a0a7c8115632c3142dd9') in 0.007097 seconds
Import took 0.009583 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000158 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_underwear_1.mat
artifactKey: Guid(fe5f139c27784a24493f695dd3cd1be0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_underwear_1.mat using Guid(fe5f139c27784a24493f695dd3cd1be0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbf39fdd0012a983c4bab256720ac029') in 0.027497 seconds
Import took 0.029879 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000223 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eye.mat
artifactKey: Guid(023452b84affa6f43a8feea0e1c55499) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eye.mat using Guid(023452b84affa6f43a8feea0e1c55499) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec3c2cf2766f9269503e705aa1a277f9') in 0.007362 seconds
Import took 0.009907 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000223 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_4_hair.mat
artifactKey: Guid(e1eb634c482838147a8f9f789fdfb8c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_4_hair.mat using Guid(e1eb634c482838147a8f9f789fdfb8c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5b86096207e28753e7aed2dffbc1cb8') in 0.010213 seconds
Import took 0.012882 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000192 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_transp_Eye_color4.mat
artifactKey: Guid(b634fca61d42a294a8d558c7cf413446) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_transp_Eye_color4.mat using Guid(b634fca61d42a294a8d558c7cf413446) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da790edbefeca5c5772d71af5f0f1120') in 0.007730 seconds
Import took 0.009925 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000221 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_2_hair.mat
artifactKey: Guid(9e09ff6eb81e1bb46ac6c49cc77be78a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_2_hair.mat using Guid(9e09ff6eb81e1bb46ac6c49cc77be78a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '255714e3e68d34405f155da0b2d56842') in 0.007764 seconds
Import took 0.010161 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000172 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Face.mat
artifactKey: Guid(45f47006298912f4dbec4062603b460f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Face.mat using Guid(45f47006298912f4dbec4062603b460f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c75e077d1b669517553a6853068f96c') in 0.007638 seconds
Import took 0.009870 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000213 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_underwear_3.mat
artifactKey: Guid(d2903b263d559f54794c1af4772a0e14) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_underwear_3.mat using Guid(d2903b263d559f54794c1af4772a0e14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5625b5ada330c3642af7c3be7cbfa645') in 0.010881 seconds
Import took 0.013632 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000236 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eyeliner.mat
artifactKey: Guid(b8022f4bfe3976845b403285a16c5320) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eyeliner.mat using Guid(b8022f4bfe3976845b403285a16c5320) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee24afad6c43dba3221ad351fc791758') in 0.007456 seconds
Import took 0.010242 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000193 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_transp_Eye_color2.mat
artifactKey: Guid(cdb22899674873642a8b09020709ae1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_transp_Eye_color2.mat using Guid(cdb22899674873642a8b09020709ae1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96b6cc4a8eeddd510b805a8e385de78a') in 0.007853 seconds
Import took 0.010218 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000199 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eye_reflection.mat
artifactKey: Guid(02b619845fcb6e741b4be7e71e36c491) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Eye_reflection.mat using Guid(02b619845fcb6e741b4be7e71e36c491) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd7968784f70fdc0e5e45f8746505d963') in 0.007206 seconds
Import took 0.009534 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000221 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/mouth_inside.mat
artifactKey: Guid(6591b6a58c1933643bb87bf9fbef044c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/mouth_inside.mat using Guid(6591b6a58c1933643bb87bf9fbef044c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4d648c2368eaf53d09e47a26d047f82') in 0.007210 seconds
Import took 0.009902 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000212 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_transp_Eye_color3.mat
artifactKey: Guid(005e240c72f4ad94a986acc901553162) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_transp_Eye_color3.mat using Guid(005e240c72f4ad94a986acc901553162) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3081b7e2857eadc454189d6c016c285') in 0.008011 seconds
Import took 0.010346 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000199 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_3_head.mat
artifactKey: Guid(1d5e3b19234a64f44984ae99e6ca6545) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_3_head.mat using Guid(1d5e3b19234a64f44984ae99e6ca6545) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4cbfb5531f45aff9dfb8fa443eaa310d') in 0.010716 seconds
Import took 0.013005 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000161 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_5_head.mat
artifactKey: Guid(35480311dac00b44e8b4aa462037a655) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_5_head.mat using Guid(35480311dac00b44e8b4aa462037a655) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff81f96229f5bf50d74233b70bedd771') in 0.008122 seconds
Import took 0.010694 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000163 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_5_hair.mat
artifactKey: Guid(3a1e33245c62cf54dad1f33cb1420dc1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_5_hair.mat using Guid(3a1e33245c62cf54dad1f33cb1420dc1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aced829264eec3f1bf1be70f3f4730f6') in 0.007887 seconds
Import took 0.010231 seconds .
========================================================================
Received Import Request.
Time since last request: 0.000201 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_1_head.mat
artifactKey: Guid(d76781e69b0e937439800ef45648aed7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/Mat/Mat_Hair_1_head.mat using Guid(d76781e69b0e937439800ef45648aed7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e018137806c82329e847843617160df9') in 0.007292 seconds
Import took 0.009724 seconds .
========================================================================
Received Import Request.
Time since last request: 0.508956 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/BaseCharacter.fbx
artifactKey: Guid(d8e6717bd7507b44c9fc5a0a6749ec6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/BaseCharacter.fbx using Guid(d8e6717bd7507b44c9fc5a0a6749ec6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f98474fa4726b12ccf68a1572d70a5b0') in 0.091864 seconds
Import took 0.094833 seconds .
========================================================================
Received Import Request.
Time since last request: 94.681184 seconds.
path: Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/T@Idle_01.fbx
artifactKey: Guid(b2536cdee0b872247aadab4fcbb21db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/AnimeGirls/BaseCharacter/BaseCharacter/Sourcefiles/T@Idle_01.fbx using Guid(b2536cdee0b872247aadab4fcbb21db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3fa77d75498b40705a008a0b0749bf0') in 0.005266 seconds
Import took 0.007818 seconds .
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003560 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.826 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.65 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1483 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.7 MB.
System memory in use after: 93.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2166.
Total: 1.756800 ms (FindLiveObjects: 0.151700 ms CreateObjectMapping: 0.043100 ms MarkObjects: 1.341900 ms DeleteObjects: 0.219400 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003428 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.859 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2170.
Total: 2.409700 ms (FindLiveObjects: 0.296700 ms CreateObjectMapping: 0.090400 ms MarkObjects: 1.685600 ms DeleteObjects: 0.336000 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003556 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.788 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.6 MB.
System memory in use after: 93.3 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2174.
Total: 2.466400 ms (FindLiveObjects: 0.284200 ms CreateObjectMapping: 0.075800 ms MarkObjects: 1.739900 ms DeleteObjects: 0.365100 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003493 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.799 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.6 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2178.
Total: 2.100300 ms (FindLiveObjects: 0.271000 ms CreateObjectMapping: 0.077300 ms MarkObjects: 1.492500 ms DeleteObjects: 0.258600 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003357 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.811 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2182.
Total: 2.238200 ms (FindLiveObjects: 0.233500 ms CreateObjectMapping: 0.039700 ms MarkObjects: 1.708300 ms DeleteObjects: 0.255700 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003543 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.813 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2186.
Total: 2.195300 ms (FindLiveObjects: 0.158600 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.736200 ms DeleteObjects: 0.257000 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.051982 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.810 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.6 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2190.
Total: 2.277200 ms (FindLiveObjects: 0.293300 ms CreateObjectMapping: 0.097500 ms MarkObjects: 1.569300 ms DeleteObjects: 0.315700 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003892 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.800 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2194.
Total: 2.350700 ms (FindLiveObjects: 0.295800 ms CreateObjectMapping: 0.096500 ms MarkObjects: 1.693700 ms DeleteObjects: 0.262900 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003566 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.811 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.6 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2198.
Total: 3.739300 ms (FindLiveObjects: 0.521400 ms CreateObjectMapping: 0.186300 ms MarkObjects: 2.667900 ms DeleteObjects: 0.362300 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003558 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.790 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.5 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2202.
Total: 1.928100 ms (FindLiveObjects: 0.177400 ms CreateObjectMapping: 0.050200 ms MarkObjects: 1.455200 ms DeleteObjects: 0.244100 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004872 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.964 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.6 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2206.
Total: 3.555300 ms (FindLiveObjects: 0.281800 ms CreateObjectMapping: 0.115500 ms MarkObjects: 2.819400 ms DeleteObjects: 0.335200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.004605 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.834 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.4 MB.
System memory in use after: 93.1 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2210.
Total: 1.993400 ms (FindLiveObjects: 0.158500 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.544200 ms DeleteObjects: 0.245900 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003422 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.838 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.7 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2214.
Total: 2.422600 ms (FindLiveObjects: 0.232600 ms CreateObjectMapping: 0.063300 ms MarkObjects: 1.807000 ms DeleteObjects: 0.318200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003866 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.829 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.6 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2218.
Total: 3.071900 ms (FindLiveObjects: 0.247200 ms CreateObjectMapping: 0.086800 ms MarkObjects: 2.371000 ms DeleteObjects: 0.364800 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003406 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.827 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.7 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2222.
Total: 2.329700 ms (FindLiveObjects: 0.266000 ms CreateObjectMapping: 0.083800 ms MarkObjects: 1.706400 ms DeleteObjects: 0.272200 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003643 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.829 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.7 MB.
System memory in use after: 93.4 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2226.
Total: 2.236200 ms (FindLiveObjects: 0.347300 ms CreateObjectMapping: 0.064800 ms MarkObjects: 1.558800 ms DeleteObjects: 0.264100 ms)
========================================================================
Received Prepare
Registering precompiled user dll's ...
Registered in 0.003653 seconds.
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 0.847 seconds
Platform modules already initialized, skipping
Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1482 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 93.8 MB.
System memory in use after: 93.6 MB.
Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 2230.
Total: 2.609200 ms (FindLiveObjects: 0.310300 ms CreateObjectMapping: 0.084100 ms MarkObjects: 1.822600 ms DeleteObjects: 0.390900 ms)
AssetImportWorkerClient::OnTransportError - code=2 error=End of file