Projects /
BetaHub /
Issues /
#42 Player sent into the sky upon exiting helicopter if obstructed by another player /
GZW-backup-2024.05.01-08.01.00.log - Log File
Filename: GZW-backup-2024.05.01-08.01.00.log
Size: 384 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
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
Log file open, 05/01/24 04:00:04 LogWindows: Enabling Tpause support LogConsoleManager: Warning: Console object named 'MFG.AI.UseFastSetTransform' already exists but is being registered again, but we weren't expected it to be! (FConsoleManager::AddConsoleObject) LogConsoleManager: Warning: Console object named 'MFG.AI.UseFastSetTransform' already exists but is being registered again, but we weren't expected it to be! (FConsoleManager::AddConsoleObject) LogConsoleManager: Warning: Console object named 'MFG.AI.UseFastSetTransform' already exists but is being registered again, but we weren't expected it to be! (FConsoleManager::AddConsoleObject) LogWindows: Custom abort handler registered for crash reporting. LogPakFile: Initializing PakPlatformFile LogIoDispatcher: Display: Reading toc: ../../../GZW/Content/Paks/global.utoc LogIoDispatcher: Display: Toc signature hash: DF33483E65C9B6005E8E36E036B68A3B7C1A9B76 LogIoDispatcher: Display: Mounting container '../../../GZW/Content/Paks/global.utoc' in location slot 0 LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../GZW/Content/Paks/global.utoc LogPakFile: Display: Found Pak file ../../../GZW/Content/Paks/GZW-WindowsClient.pak attempting to mount. LogPakFile: Display: Mounting pak file ../../../GZW/Content/Paks/GZW-WindowsClient.pak. LogIoDispatcher: Display: Reading toc: ../../../GZW/Content/Paks/GZW-WindowsClient.utoc LogIoDispatcher: Display: Toc signature hash: BA9FC9118A952E93EF5DE356AE6C1D4CA0EAC775 LogIoDispatcher: Display: Mounting container '../../../GZW/Content/Paks/GZW-WindowsClient.utoc' in location slot 0 LogPakFile: Display: Mounted IoStore container "../../../GZW/Content/Paks/GZW-WindowsClient.utoc" LogPakFile: Display: Mounted Pak file '../../../GZW/Content/Paks/GZW-WindowsClient.pak', mount point: '../../../' LogICUInternationalization: ICU TimeZone Detection - Raw Offset: -5:00, Platform Override: '' LogAssetRegistry: Premade AssetRegistry loaded from '../../../GZW/AssetRegistry.bin' LogInit: Session CrashGUID >==================================================== Session CrashGUID > UECC-Windows-98D4FA514C024667BDD7DA8989FE2D28 Session CrashGUID >==================================================== LogConfig: Using compiled CustomConfig Steam LogStreaming: Warning: Failed to read file 'E:/SteamLibrary/steamapps/common/Gray Zone Warfare/Cloud/IoStoreOnDemand.ini' error. LogPluginManager: Mounting Engine plugin AISupport LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor LogPluginManager: Mounting Engine plugin ACLPlugin LogPluginManager: Mounting Engine plugin AnimationData LogPluginManager: Mounting Engine plugin AnimationLocomotionLibrary LogPluginManager: Mounting Engine plugin AnimationModifierLibrary LogPluginManager: Mounting Engine plugin AnimationWarping LogPluginManager: Mounting Engine plugin ControlRigSpline LogPluginManager: Mounting Engine plugin ControlRig LogPluginManager: Mounting Engine plugin DeformerGraph LogPluginManager: Mounting Engine plugin GameplayInsights LogPluginManager: Mounting Engine plugin IKRig LogPluginManager: Mounting Engine plugin BlueprintFileUtils LogPluginManager: Mounting Engine plugin Bridge LogPluginManager: Mounting Engine plugin CameraShakePreviewer LogPluginManager: Mounting Engine plugin GameplayCameras LogPluginManager: Mounting Engine plugin OpenColorIO LogPluginManager: Mounting Engine plugin OodleNetwork LogPluginManager: Mounting Engine plugin AnimationSharing LogPluginManager: Mounting Engine plugin MultiUserClient LogPluginManager: Mounting Engine plugin ConcertMain LogPluginManager: Mounting Engine plugin ConcertSyncClient LogPluginManager: Mounting Engine plugin ConcertSyncCore LogPluginManager: Mounting Engine plugin ConcertSharedSlate LogPluginManager: Mounting Engine plugin PluginUtils LogPluginManager: Mounting Engine plugin AssetManagerEditor LogPluginManager: Mounting Engine plugin BlueprintHeaderView LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes LogPluginManager: Mounting Engine plugin ConsoleVariables LogPluginManager: Mounting Engine plugin DataValidation LogPluginManager: Mounting Engine plugin EditorScriptingUtilities LogPluginManager: Mounting Engine plugin FacialAnimation LogPluginManager: Mounting Engine plugin GameplayTagsEditor LogPluginManager: Mounting Engine plugin GeometryMode LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode LogPluginManager: Mounting Engine plugin LightMixer LogPluginManager: Mounting Engine plugin ObjectMixer LogPluginManager: Mounting Engine plugin PluginBrowser LogPluginManager: Mounting Engine plugin SequencerAnimTools LogPluginManager: Mounting Engine plugin SpeedTreeImporter LogPluginManager: Mounting Engine plugin UVEditor LogPluginManager: Mounting Engine plugin EnhancedInput LogPluginManager: Found config from plugin[EnhancedInput] Input LogPluginManager: Mounting Engine plugin VariantManagerContent LogPluginManager: Mounting Engine plugin VariantManager LogPluginManager: Mounting Engine plugin ActorPalette LogPluginManager: Mounting Engine plugin AutomationUtils LogPluginManager: Mounting Engine plugin ChaosEditor LogPluginManager: Mounting Engine plugin ChaosNiagara LogPluginManager: Mounting Engine plugin ChaosSolverPlugin LogPluginManager: Mounting Engine plugin ChaosUserDataPT LogPluginManager: Mounting Engine plugin CharacterAI LogPluginManager: Mounting Engine plugin ControlFlows LogPluginManager: Mounting Engine plugin Dataflow LogPluginManager: Mounting Engine plugin Fracture LogPluginManager: Mounting Engine plugin FullBodyIK LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin LogPluginManager: Mounting Engine plugin Landmass LogPluginManager: Mounting Engine plugin LocalizableMessage LogPluginManager: Mounting Engine plugin ModularGameplay LogPluginManager: Mounting Engine plugin PlatformCrypto LogPluginManager: Mounting Engine plugin PythonScriptPlugin LogPluginManager: Mounting Engine plugin StructUtils LogPluginManager: Mounting Engine plugin Text3D LogPluginManager: Mounting Engine plugin ToolPresets LogPluginManager: Mounting Engine plugin VirtualHeightfieldMesh LogPluginManager: Mounting Engine plugin Volumetrics LogPluginManager: Mounting Engine plugin Niagara LogPluginManager: Mounting Engine plugin Fab LogPluginManager: Mounting Engine plugin AlembicHairImporter LogPluginManager: Mounting Engine plugin AlembicImporter LogPluginManager: Mounting Engine plugin InterchangeEditor LogPluginManager: Mounting Engine plugin Interchange LogPluginManager: Mounting Engine plugin ImgMedia LogPluginManager: Mounting Engine plugin MediaCompositing LogPluginManager: Mounting Engine plugin MediaPlate LogPluginManager: Mounting Engine plugin MeshPainting LogPluginManager: Mounting Engine plugin TcpMessaging LogPluginManager: Mounting Engine plugin ActorSequence LogPluginManager: Mounting Engine plugin LevelSequenceEditor LogPluginManager: Mounting Engine plugin MovieRenderPipeline LogPluginManager: Mounting Engine plugin SequencerScripting LogPluginManager: Mounting Engine plugin TemplateSequence LogPluginManager: Mounting Engine plugin EOSShared LogPluginManager: Mounting Engine plugin OnlineBase LogPluginManager: Mounting Engine plugin OnlineServicesNull LogPluginManager: Found config from plugin[OnlineServicesNull] Engine LogPluginManager: Mounting Engine plugin OnlineServicesOSSAdapter LogPluginManager: Mounting Engine plugin OnlineServices LogPluginManager: Mounting Engine plugin OnlineSubsystemEOS LogPluginManager: Mounting Engine plugin OnlineSubsystemNull LogPluginManager: Mounting Engine plugin OnlineSubsystemSteam LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils LogPluginManager: Mounting Engine plugin OnlineSubsystem LogPluginManager: Mounting Engine plugin SocketSubsystemEOS LogPluginManager: Mounting Engine plugin EOSVoiceChat LogPluginManager: Mounting Engine plugin LauncherChunkInstaller LogPluginManager: Mounting Engine plugin ActorLayerUtilities LogPluginManager: Mounting Engine plugin AssetTags LogPluginManager: Mounting Engine plugin AudioCapture LogPluginManager: Mounting Engine plugin AudioModulation LogPluginManager: Mounting Engine plugin AudioSynesthesia LogPluginManager: Mounting Engine plugin AudioWidgets LogPluginManager: Mounting Engine plugin CableComponent LogPluginManager: Mounting Engine plugin ChunkDownloader LogPluginManager: Mounting Engine plugin CommonUI LogPluginManager: Mounting Engine plugin ComputeFramework LogPluginManager: Mounting Engine plugin CustomMeshComponent LogPluginManager: Mounting Engine plugin DataRegistry LogPluginManager: Mounting Engine plugin SQLiteCore LogPluginManager: Mounting Engine plugin GameplayAbilities LogPluginManager: Mounting Engine plugin GameplayStateTree LogPluginManager: Mounting Engine plugin GeometryCache LogPluginManager: Mounting Engine plugin GeometryProcessing LogPluginManager: Mounting Engine plugin HairStrands LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary LogPluginManager: Mounting Engine plugin Metasound LogPluginManager: Mounting Engine plugin MsQuic LogPluginManager: Mounting Engine plugin ProceduralMeshComponent LogPluginManager: Mounting Engine plugin PropertyAccessEditor LogPluginManager: Mounting Engine plugin ResonanceAudio LogPluginManager: Mounting Engine plugin RigVM LogPluginManager: Mounting Engine plugin SignificanceManager LogPluginManager: Mounting Engine plugin SoundFields LogPluginManager: Mounting Engine plugin StateTree LogPluginManager: Mounting Engine plugin SteamShared LogPluginManager: Mounting Engine plugin Synthesis LogPluginManager: Mounting Engine plugin WaveTable LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector LogPluginManager: Mounting Engine plugin WindowsMoviePlayer LogPluginManager: Mounting Engine plugin InterchangeTests LogPluginManager: Mounting Engine plugin TraceUtilities LogPluginManager: Mounting Engine plugin MultiUserTakes LogPluginManager: Mounting Engine plugin Takes LogPluginManager: Mounting Project plugin AnimationBudgetAllocator LogPluginManager: Mounting Project plugin NetworkPrediction LogPluginManager: Mounting Project plugin AnybrainSDK LogPluginManager: Mounting Project plugin CogAI LogPluginManager: Mounting Project plugin CogAbility LogPluginManager: Mounting Project plugin CogInput LogPluginManager: Mounting Project plugin Cog LogPluginManager: Mounting Project plugin CommonLoadingScreen LogPluginManager: Mounting Project plugin DLSS LogPluginManager: Mounting Project plugin FSR3 LogPluginManager: Mounting Project plugin GameSettings LogPluginManager: Mounting Project plugin GenericGraph LogPluginManager: Mounting Project plugin Nakama LogPluginManager: Mounting Project plugin Odin LogPluginManager: Mounting Project plugin Skalla LogPluginManager: Mounting Project plugin Streamline LogPluginManager: Mounting Project plugin Wwise LogPluginManager: Mounting Project plugin XeSS LogPluginManager: Mounting Project plugin MadfingerAnimation LogPluginManager: Mounting Project plugin MadfingerCoreA2S LogPluginManager: Mounting Project plugin MadfingerCoreAbilities LogPluginManager: Mounting Project plugin MadfingerCoreAnticheat LogPluginManager: Mounting Project plugin MadfingerCoreAudio LogPluginManager: Mounting Project plugin MadfingerCoreAutomatedTests LogPluginManager: Mounting Project plugin MadfingerCoreCSV LogPluginManager: Mounting Project plugin MadfingerCoreCamera LogPluginManager: Mounting Project plugin MadfingerCoreCrashReporting LogPluginManager: Mounting Project plugin MadfingerCoreCrashpad LogPluginManager: Mounting Project plugin MadfingerCoreErrors LogPluginManager: Mounting Project plugin MadfingerCoreFramework LogPluginManager: Mounting Project plugin MadfingerCoreGUI LogPluginManager: Mounting Project plugin MadfingerCoreInput LogPluginManager: Mounting Project plugin MadfingerCoreInteractions LogPluginManager: Mounting Project plugin MadfingerCoreItem LogPluginManager: Mounting Project plugin MadfingerCoreMessaging LogPluginManager: Mounting Project plugin MadfingerCoreModding LogPluginManager: Mounting Project plugin MadfingerCoreOnline LogPluginManager: Mounting Project plugin MadfingerCorePerformance LogPluginManager: Mounting Project plugin MadfingerCorePlayPresets LogPluginManager: Mounting Project plugin MadfingerCoreQuestTool LogPluginManager: Mounting Project plugin MadfingerCoreQuests LogPluginManager: Mounting Project plugin MadfingerCoreSession LogPluginManager: Mounting Project plugin MadfingerCoreSettings LogPluginManager: Mounting Project plugin MadfingerCoreShaders LogPluginManager: Mounting Project plugin MadfingerCoreTeams LogPluginManager: Mounting Project plugin MadfingerCoreTick LogPluginManager: Mounting Project plugin MadfingerCoreUser LogPluginManager: Mounting Project plugin MadfingerCoreVOIP LogPluginManager: Mounting Project plugin MadfingerCore LogPluginManager: Mounting Project plugin MadfingerDevelopment LogPluginManager: Mounting Project plugin MadfingerGameAI LogPluginManager: Mounting Project plugin MadfingerGameBallisticsContacts LogPluginManager: Mounting Project plugin MadfingerGameBallistics LogPluginManager: Mounting Project plugin MadfingerGameCharacterPrediction LogPluginManager: Mounting Project plugin MadfingerGameCharacterSpawn LogPluginManager: Mounting Project plugin MadfingerGameExploration LogPluginManager: Mounting Project plugin MadfingerGameExplosionManager LogPluginManager: Mounting Project plugin MadfingerGameFactions LogPluginManager: Mounting Project plugin MadfingerGameHealthSystem LogPluginManager: Mounting Project plugin MadfingerGameLootSystem LogPluginManager: Mounting Project plugin MadfingerGameMaterialManager LogPluginManager: Mounting Project plugin MadfingerGameMineField LogPluginManager: Mounting Project plugin MadfingerGameNetDebug LogPluginManager: Mounting Project plugin MadfingerGameProps LogPluginManager: Mounting Project plugin MadfingerGameTransportation LogPluginManager: Mounting Project plugin MadfingerGameUtils LogPluginManager: Mounting Project plugin MadfingerPrefab LogPluginManager: Mounting Project plugin MFGTAAssetUserData LogPluginManager: Mounting Project plugin MadfingerTechArtNodes LogPluginManager: Mounting Project plugin MadfingerTechArtTools LogPluginManager: Mounting Project plugin MadfingerTechArtViewModes LogPluginManager: Mounting Project plugin AICoverSystem LogPluginManager: Mounting Project plugin HTN LogPluginManager: Mounting Project plugin SnappingHelper LogPluginManager: Mounting Project plugin VisualStudioTools LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/AnimationLocomotionLibrary/Content/' mounted to '/AnimationLocomotionLibrary/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/AnimationWarping/Content/' mounted to '/AnimationWarping/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/DeformerGraph/Content/' mounted to '/DeformerGraph/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/BlueprintFileUtils/Content/' mounted to '/BlueprintFileUtils/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ModelingToolsEditorMode/Content/' mounted to '/ModelingToolsEditorMode/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ControlFlows/Content/' mounted to '/ControlFlows/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Landmass/Content/' mounted to '/Landmass/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualHeightfieldMesh/Content/' mounted to '/VirtualHeightfieldMesh/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Volumetrics/Content/' mounted to '/Volumetrics/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Fab/Content/' mounted to '/Fab/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioModulation/Content/' mounted to '/AudioModulation/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/CommonUI/Content/' mounted to '/CommonUI/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GameplayStateTree/Content/' mounted to '/GameplayStateTree/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/HairStrands/Content/' mounted to '/HairStrands/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/StateTree/Content/' mounted to '/StateTree/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/AnybrainSDK/Content/' mounted to '/AnybrainSDK/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/CogAI/Content/' mounted to '/CogAI/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/CogAbility/Content/' mounted to '/CogAbility/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/CogInput/Content/' mounted to '/CogInput/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/Cog/Content/' mounted to '/Cog/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/DLSS/Content/' mounted to '/DLSS/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/FSR3/Content/' mounted to '/FSR3/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/GenericGraph/Content/' mounted to '/GenericGraph/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/Nakama/Content/' mounted to '/Nakama/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/Skalla/Content/' mounted to '/Skalla/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/WWise/Content/' mounted to '/Wwise/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/XeSS/Content/' mounted to '/XeSS/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerAnimation/Content/' mounted to '/MadfingerAnimation/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreA2S/Content/' mounted to '/MadfingerCoreA2S/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreAnticheat/Content/' mounted to '/MadfingerCoreAnticheat/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreAudio/Content/' mounted to '/MadfingerCoreAudio/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreAutomatedTests/Content/' mounted to '/MadfingerCoreAutomatedTests/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreCSV/Content/' mounted to '/MadfingerCoreCSV/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreCrashReporting/Content/' mounted to '/MadfingerCoreCrashReporting/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreCrashpad/Content/' mounted to '/MadfingerCoreCrashpad/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreErrors/Content/' mounted to '/MadfingerCoreErrors/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreGUI/Content/' mounted to '/MadfingerCoreGUI/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreOnline/Content/' mounted to '/MadfingerCoreOnline/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCorePlayPresets/Content/' mounted to '/MadfingerCorePlayPresets/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreQuestTool/Content/' mounted to '/MadfingerCoreQuestTool/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreQuests/Content/' mounted to '/MadfingerCoreQuests/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreSettings/Content/' mounted to '/MadfingerCoreSettings/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreVOIP/Content/' mounted to '/MadfingerCoreVOIP/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerDevelopment/Content/' mounted to '/MadfingerDevelopment/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameAI/Content/' mounted to '/MadfingerGameAI/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameBallisticsContacts/Content/' mounted to '/MadfingerGameBallisticsContacts/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameBallistics/Content/' mounted to '/MadfingerGameBallistics/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameCharacterPrediction/Content/' mounted to '/MadfingerGameCharacterPrediction/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameCharacterSpawn/Content/' mounted to '/MadfingerGameCharacterSpawn/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameExploration/Content/' mounted to '/MadfingerGameExploration/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameExplosionManager/Content/' mounted to '/MadfingerGameExplosionManager/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameFactions/Content/' mounted to '/MadfingerGameFactions/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameHealthSystem/Content/' mounted to '/MadfingerGameHealthSystem/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameLootSystem/Content/' mounted to '/MadfingerGameLootSystem/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameMaterialManager/Content/' mounted to '/MadfingerGameMaterialManager/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameMineField/Content/' mounted to '/MadfingerGameMineField/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameNetDebug/Content/' mounted to '/MadfingerGameNetDebug/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameProps/Content/' mounted to '/MadfingerGameProps/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameTransportation/Content/' mounted to '/MadfingerGameTransportation/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameUtils/Content/' mounted to '/MadfingerGameUtils/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerPrefab/Content/' mounted to '/MadfingerPrefab/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTAAssetUserData/Content/' mounted to '/MFGTAAssetUserData/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTechArtNodes/Content/' mounted to '/MadfingerTechArtNodes/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTechArtTools/Content/' mounted to '/MadfingerTechArtTools/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTechArtViewModes/MadfingerTechArtViewModes/Content/' mounted to '/MadfingerTechArtViewModes/' LogConfig: Applying CVar settings from Section [/Script/FFXFSR3Settings.FFXFSR3Settings] File [Engine] LogConfig: Set CVar [[r.FidelityFX.FSR3.CreateReactiveMask:0]] LogConfig: Set CVar [[r.FidelityFX.FSR3.EnabledInEditorViewport:1]] LogCrashpad: Crashpad is disabled (USE_CRASHPAD = 0) LogHAL: Log category LogControlFlows verbosity has been raised to Verbose. LogEOSSDK: Initializing EOSSDK Version:1.16.3-32303053 LogInit: Using libcurl 8.4.0 LogInit: - built for Windows LogInit: - supports SSL with OpenSSL/1.1.1t LogInit: - supports HTTP deflate (compression) using libz 1.2.13 LogInit: - other features: LogInit: CURL_VERSION_SSL LogInit: CURL_VERSION_LIBZ LogInit: CURL_VERSION_IPV6 LogInit: CURL_VERSION_ASYNCHDNS LogInit: CURL_VERSION_LARGEFILE LogInit: CurlRequestOptions (configurable via config and command line): LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy LogInit: - bDontReuseConnections = false - Libcurl will reuse connections LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host LogInit: - LocalHostAddr = Default LogInit: - BufferSize = 65536 LogSteamShared: Display: Loading Steam SDK 1.58 LogSteamShared: Steam SDK Loaded! LogOnline: STEAM: Steam User is subscribed 1 LogOnline: STEAM: [AppId: 2479810] Client API initialized 1 LogOnline: STEAM: Initializing SteamNetworking Layer LogOnline: STEAM: Missing P2PCleanupTimeout key in OnlineSubsystemSteam of DefaultEngine.ini, using default LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 LogOnline: OSS: Created online subsystem instance for: STEAM LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.16.3-32303053 booting at 2024-05-01T08:00:05.252Z using C LogEOSSDK: LogEOSRTC: Each component will force to use a default background mode for that api version. ApiVersion=[1] BackgroundMode=[LeaveRooms] LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.22621.3374.64bit, ClientId=xyza7891hZIxGeXdKJpiNiBhfYcG07cd, ProductId=320d5d3f30f5495ebae73a8c74bc349d, SandboxId=834b96cd3a6a41c0a6168f1bf8df3cc0, DeploymentId=2d2e36681aab47b6a821ec28cd0e5a73, ProductName=GZW, ProductVersion=++FTW+Main-Engine-CL-68308, IsServer=false, Flags=DisableOverlay+DisableSocialOverlay] LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform LogEOSSDK: LogEOSRTC: LibRTCCore: Initializing LibRTC... LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000054 LogOnline: OSS: Created online subsystem instance for: EOS LogOnline: Warning: OSS: [FOnlineUserEOSPlus::Initialize] BaseUserInterface delegates not bound. Base interface not valid LogOnline: Warning: OSS: [FOnlineStoreEOSPlus::Initialize] BaseStoreInterface delegates not bound. Base interface not valid LogOnline: Warning: OSS: [FOnlineStoreEOSPlus::Initialize] BasePurchaseInterface delegates not bound. Base interface not valid LogOnline: Warning: OSS: [FOnlineVoiceEOSPlus::Initialize] BaseVoiceInterface delegates not bound. Base interface not valid LogOnline: OSS: Created online subsystem instance for: EOSPlus LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [EOSPlus] LogDLSSBlueprint: Loaded DLSS-SR plugin version 3.7.0b LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Enter LogRHI: Using Default RHI: D3D12 LogRHI: Using Highest Feature Level of D3D12: SM6 LogRHI: Loading RHI module D3D12RHI LogD3D12RHI: Aftermath initialized LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 2080 Ti (VendorId: 10de, DeviceId: 1e04, SubSysId: 37121462, Revision: 00a1 LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported LogD3D12RHI: Adapter has 11027MB of dedicated video memory, 0MB of dedicated system memory, and 16290MB of shared system memory, 2 output[s] LogD3D12RHI: Driver Version: 552.22 (internal:31.0.15.5222, unified:552.22) LogD3D12RHI: Driver Date: 4-11-2024 LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16290MB of shared system memory, 0 output[s] LogD3D12RHI: DirectX Agility SDK runtime found. LogD3D12RHI: Chosen D3D12 Adapter Id = 0 LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. LogDLSSNGXVulkanRHIPreInit: GetSelectedDynamicRHIModuleName = D3D12RHI LogDLSSNGXVulkanRHIPreInit: VulkanRHI is not the active DynamicRHI; skipping of pregistering the required NGX DLSS Vulkan device and instance extensions via the VulkanRHIBridge LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Leave LogFSR3: FSR3 Temporal Upscaling Module Started LogFFXFI: FFX Frame Interpolation Module Started Odin: Loaded Library (../../../GZW/Plugins/Externals/Odin/Source/OdinCore/x64/Win/odin.dll) LogStreamlineShaders: Loaded Streamline plugin version 1.3.0-SL2.4.0 LogInit: ExecutableName: GZWClientSteam-Win64-Shipping.exe LogInit: Build: ++FTW+Main-Engine-CL-68308 LogInit: Engine Version: 5.3.2-68308+++FTW+Main-Engine LogInit: Compatible Engine Version: 5.3.2-68308+++FTW+Main-Engine LogInit: Net CL: 68308 LogInit: OS: Windows 11 (22H2) [10.0.22621.3527] (), CPU: 12th Gen Intel(R) Core(TM) i5-12600KF, GPU: NVIDIA GeForce RTX 2080 Ti LogInit: Compiled (64-bit): Apr 30 2024 17:39:50 LogInit: Architecture: x64 LogInit: Compiled with Visual C++: 19.36.32534.00 LogInit: Build Configuration: Shipping LogInit: Branch Name: ++FTW+Main-Engine LogInit: Filtered Command Line: LogInit: Base Directory: E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Binaries/Win64/ LogInit: Allocator: binned2 LogInit: Installed Engine Build: 1 LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool. LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true LogStreaming: Display: AsyncLoading2 - Initialized LogInit: Object subsystem initialized LogConfig: Set CVar [[LevelStreaming.ShouldReuseUnloadedButStillAroundLevels:0]] LogConfig: Set CVar [[net.IsPushModelEnabled:1]] LogConfig: Set CVar [[net.PushModelSkipUndirtiedReplication:1]] LogConfig: Set CVar [[net.PushModelSkipUndirtiedFastArrays:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[net.SubObjects.DefaultUseSubObjectReplicationList:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[net.ReuseReplicatorsForDormantObjects:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[a.Budget.Enabled:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[a.EnableQueuedAnimEventsOnServer:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[wp.Runtime.RuntimeSpatialHashUseAlignedGridLevels:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[wp.Runtime.RuntimeSpatialHashSnapNonAlignedGridLevelsToLowerLevels:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[wp.Runtime.RuntimeSpatialHashPlaceSmallActorsUsingLocation:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[wp.Runtime.RuntimeSpatialHashPlacePartitionActorsUsingLocation:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[ai.nav.GNavmeshSynchronousTileGeneration:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Water.SingleLayer.DepthPrepass:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Streamline.DLSSG.CheckStatusPerFrame:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Streamline.DLSSG.FullScreenMenuDetection:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SkinCache.Mode:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SkinCache.Allow:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Nanite.Streaming.NumInitialRootPages:4096]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[MFG.AI.UseCrowdSimulation:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[MFG.AI.UseRVOAvoidance:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[MFG.AI.Spawn.ForceEnableAllCamps:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[MFG.Core.TickAggregation.Enable:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.setres:1280x720]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.CompileShadersForDevelopment:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.TextureStreaming:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.DecalDepthBias:0.0001]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.EnableForProject:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SeparateTranslucency:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.VirtualTextures:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.VT.EnableAutoImport:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.VelocityOutputPass:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.DiffuseIndirectOffUseDepthBoundsAO:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.HierarchicalScreenTraces.MaxIterations:500]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SupportStationarySkylight:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.PSOPrecaching:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.Enabled:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.ExcludePrecachePSO:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.PSOPrecache.Validation:2]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.PSOPrecache.Resources:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.PSOPrecache.Validation.TrackMinimalPSOs:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.PSOPrecache.TranslucencyAllPass:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.SkipDrawOnPSOPreCaching:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.PSOPrecache.ProxyCreationWhenPSOReady:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] [2024.05.01-08.00.07:893][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:1.000000]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] [2024.05.01-08.00.07:893][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[s.AsyncLoadingTimeLimit:1.000000]] [2024.05.01-08.00.07:894][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] [2024.05.01-08.00.07:894][ 0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]] [2024.05.01-08.00.07:894][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] [2024.05.01-08.00.07:912][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:100]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] [2024.05.01-08.00.07:912][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.ShadowQuality:3]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:4096]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:16]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:1536]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[skalla.SunShadowsMode:2]] [2024.05.01-08.00.07:912][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.AOQuality:2]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] [2024.05.01-08.00.07:912][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:32]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:2000]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[skalla.TextureQuality:3]] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.DetailMode:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[skalla.DetailObjects.LodDistScale:1.0]] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] [2024.05.01-08.00.07:913][ 0]LogRHI: Using Default RHI: D3D12 [2024.05.01-08.00.07:913][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 [2024.05.01-08.00.07:913][ 0]LogRHI: Loading RHI module D3D12RHI [2024.05.01-08.00.07:913][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. [2024.05.01-08.00.07:913][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. [2024.05.01-08.00.07:913][ 0]LogInit: Selected Device Profile: [WindowsClient] [2024.05.01-08.00.07:913][ 0]LogHAL: Display: Platform has ~ 32 GB [34164097024 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) [2024.05.01-08.00.07:913][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] [2024.05.01-08.00.07:913][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] [2024.05.01-08.00.07:913][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@1] File [Scalability] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:1]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:1024]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.05]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:0.7]] [2024.05.01-08.00.07:913][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:0.25]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.5]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.VolumetricFog:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:.5]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:512]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:1.0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:2.0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:4]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:2]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:4]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:2]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[skalla.SunShadowsMode:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@1] File [Scalability] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.AOQuality:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@2] File [Scalability] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSR.Quality:2]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.2]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@1] File [Scalability] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:2]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:4]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1200]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[skalla.TextureQuality:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@1] File [Scalability] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:32]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.RefractionQuality:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SceneColorFormat:3]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.DetailMode:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:2 ; Medium quality]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSS.Scale:0.75]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSS.Quality:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SSGI.Quality:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:0.25]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:32.0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:0]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:1]] [2024.05.01-08.00.07:914][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@1] File [Scalability] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[foliage.DensityScale:0.4]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[grass.DensityScale:0.4]] [2024.05.01-08.00.07:914][ 0]LogConfig: Set CVar [[skalla.DetailObjects.LodDistScale:0.75]] [2024.05.01-08.00.07:914][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] [2024.05.01-08.00.07:914][ 0]LogInit: Computer: DESKTOP-AHQBDI5 [2024.05.01-08.00.07:914][ 0]LogInit: User: Tailshake [2024.05.01-08.00.07:914][ 0]LogInit: CPU Page size=4096, Cores=10 [2024.05.01-08.00.07:914][ 0]LogInit: High frequency timer resolution =10.000000 MHz [2024.05.01-08.00.07:914][ 0]LogMemory: Memory total: Physical=31.8GB (32GB approx) [2024.05.01-08.00.07:914][ 0]LogMemory: Platform Memory Stats for WindowsClient [2024.05.01-08.00.07:914][ 0]LogMemory: Process Physical Memory: 309.25 MB used, 448.23 MB peak [2024.05.01-08.00.07:914][ 0]LogMemory: Process Virtual Memory: 315.58 MB used, 435.91 MB peak [2024.05.01-08.00.07:914][ 0]LogMemory: Physical Memory: 10709.34 MB used, 21872.09 MB free, 32581.42 MB total [2024.05.01-08.00.07:914][ 0]LogMemory: Virtual Memory: 17218.96 MB used, 22530.46 MB free, 39749.42 MB total [2024.05.01-08.00.07:973][ 0]LogWindows: WindowsPlatformFeatures enabled [2024.05.01-08.00.07:973][ 0]LogInit: Physics initialised using underlying interface: Chaos [2024.05.01-08.00.07:974][ 0]LogInit: Using OS detected language (en-US). [2024.05.01-08.00.07:974][ 0]LogInit: Using OS detected locale (en-US). [2024.05.01-08.00.07:974][ 0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language. [2024.05.01-08.00.08:066][ 0]LogWindowsTextInputMethodSystem: Available input methods: [2024.05.01-08.00.08:066][ 0]LogWindowsTextInputMethodSystem: - English (United States) - (Keyboard). [2024.05.01-08.00.08:066][ 0]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard). [2024.05.01-08.00.08:117][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 [2024.05.01-08.00.08:117][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 [2024.05.01-08.00.08:151][ 0]LogRHI: Using Default RHI: D3D12 [2024.05.01-08.00.08:151][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 [2024.05.01-08.00.08:151][ 0]LogRHI: Loading RHI module D3D12RHI [2024.05.01-08.00.08:151][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. [2024.05.01-08.00.08:151][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. [2024.05.01-08.00.08:151][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 [2024.05.01-08.00.08:151][ 0]LogWindows: Attached monitors: [2024.05.01-08.00.08:151][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1032), device: '\\.\DISPLAY6' [PRIMARY] [2024.05.01-08.00.08:151][ 0]LogWindows: resolution: 1920x1080, work area: (1920, 0) -> (3840, 1032), device: '\\.\DISPLAY7' [2024.05.01-08.00.08:151][ 0]LogWindows: Found 2 attached monitors. [2024.05.01-08.00.08:151][ 0]LogWindows: Gathering driver information using Windows Setup API [2024.05.01-08.00.08:152][ 0]LogRHI: RHI Adapter Info: [2024.05.01-08.00.08:152][ 0]LogRHI: Name: NVIDIA GeForce RTX 2080 Ti [2024.05.01-08.00.08:152][ 0]LogRHI: Driver Version: 552.22 (internal:31.0.15.5222, unified:552.22) [2024.05.01-08.00.08:152][ 0]LogRHI: Driver Date: 4-11-2024 [2024.05.01-08.00.08:152][ 0]LogD3D12RHI: GPU DeviceId: 0x1e04 (for the marketing name, search the web for "GPU Device Id") [2024.05.01-08.00.08:152][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off [2024.05.01-08.00.08:152][ 0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled [2024.05.01-08.00.08:152][ 0]LogD3D12RHI: [DRED] Using lightweight DRED. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device1 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device2 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device3 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device4 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device5 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device6 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device7 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device8 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device9 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device10 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device11 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: ID3D12Device12 is supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: Bindless resources are supported [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported [2024.05.01-08.00.09:197][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported [2024.05.01-08.00.09:250][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 [2024.05.01-08.00.09:250][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 [2024.05.01-08.00.09:252][ 0]LogRHI: Texture pool is 6463 MB (70% of 9233 MB) [2024.05.01-08.00.09:252][ 0]LogD3D12RHI: Async texture creation enabled [2024.05.01-08.00.09:252][ 0]LogD3D12RHI: RHI has support for 64 bit atomics [2024.05.01-08.00.09:310][ 0]LogVRS: Current RHI supports Variable Rate Shading [2024.05.01-08.00.09:316][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0). [2024.05.01-08.00.09:318][ 0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4787 unique shaders. [2024.05.01-08.00.09:318][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global [2024.05.01-08.00.09:318][ 0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnimationWarping', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'DeformerGraph', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnimationLocomotionLibrary', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintFileUtils', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ModelingToolsEditorMode', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ControlFlows', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Landmass', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Volumetrics', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Fab', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AudioModulation', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'VirtualHeightfieldMesh', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'HairStrands', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'CommonUI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'StateTree', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnybrainSDK', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Cog', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'CogAI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'DLSS', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Nakama', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Wwise', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreAnticheat', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreAudio', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Skalla', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreCrashReporting', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerAnimation', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'XeSS', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreErrors', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreCrashpad', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreA2S', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreQuestTool', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreGUI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreAutomatedTests', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreQuests', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreSettings', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreOnline', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameBallisticsContacts', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerDevelopment', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreVOIP', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCorePlayPresets', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameBallistics', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameAI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameLootSystem', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameExploration', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameCharacterPrediction', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameMaterialManager', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameFactions', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameHealthSystem', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameProps', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MFGTAAssetUserData', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerTechArtNodes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameUtils', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerTechArtTools', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameTransportation', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerTechArtViewModes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerPrefab', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'GameplayStateTree', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'CogAbility', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'CogInput', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'FSR3', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreCSV', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameMineField', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'GenericGraph', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameNetDebug', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameExplosionManager', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameCharacterSpawn', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.09:319][ 0]LogTemp: Display: Clearing the OS Cache [2024.05.01-08.00.09:325][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled [2024.05.01-08.00.09:325][ 0]LogInit: XR: MultiViewport is Disabled [2024.05.01-08.00.09:325][ 0]LogInit: XR: Mobile Multiview is Disabled [2024.05.01-08.00.09:343][ 0]LogSlate: Using FreeType 2.10.0 [2024.05.01-08.00.09:344][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 [2024.05.01-08.00.09:356][ 0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Enter [2024.05.01-08.00.09:356][ 0]LogStreamlineRHI: Using Streamline production binaries from ../../../GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64/. Can be overridden via -slbinaries={production,development,debug} command line switches for non-shipping builds [2024.05.01-08.00.09:356][ 0]LogStreamlineRHI: loading core Streamline functions from Streamline interposer at ../../../GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64/sl.interposer.dll [2024.05.01-08.00.09:438][ 0]LogStreamlineRHI: File '..\..\..\GZW\Plugins\Externals\Streamline\Binaries\ThirdParty\Win64\sl.interposer.dll' is signed by NVIDIA and the signature was verified. [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: SLInterPoserLibrary = 00007FFFAAFB0000 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slInit = 00007FFFAAFB5E90 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slShutdown = 00007FFFAAFB6160 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slIsFeatureSupported = 00007FFFAAFB7240 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slIsFeatureLoaded = 00007FFFAAFB63D0 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slSetFeatureLoaded = 00007FFFAAFB6420 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slEvaluateFeature = 00007FFFAAFB67E0 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slAllocateResources = 00007FFFAAFB6560 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slFreeResources = 00007FFFAAFB66B0 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slSetTag = 00007FFFAAFB6470 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slGetFeatureRequirements = 00007FFFAAFB7F00 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slGetFeatureVersion = 00007FFFAAFB7A90 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slUpgradeInterface = 00007FFFAAFB6C70 [2024.05.01-08.00.09:468][ 0]LogStreamlineRHI: slSetConstants = 00007FFFAAFB6500 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: slGetNativeInterface = 00007FFFAAFB6A50 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: slGetFeatureFunction = 00007FFFAAFB9870 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: slGetNewFrameToken = 00007FFFAAFB99B0 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: slSetD3DDevice = 00007FFFAAFB68E0 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: PlatformCreateStreamlineRHI Enter [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: GDynamicRHIName NVIDIA D3D12 [2024.05.01-08.00.09:469][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Enter [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: DLSS plugin enabled, adding DLSS plugin binary search paths to Streamline init paths [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/DLSS/Binaries/ThirdParty/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll found in search path E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/DLSS/Binaries/ThirdParty/Win64 [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: Skipping loading Streamline DeepDVC since the corresponding UE StreamlineDeepDVC plugin is not enabled [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: Initializing Streamline [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: sl::Preferences::logLevel = 1. Can be overridden via -slloglevel={0,1,2} command line switches [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: sl::Preferences::showConsole = 0. Can be overridden via -sllogconsole={0,1} command line switches [2024.05.01-08.00.09:469][ 0]LogStreamlineRHI: sl::Preferences::featuresToLoad = {kFeatureReflex (3), kFeatureDLSS_G (1000)}. Feature loading can be overridden on the command line with -sl{no}dlssg and -sl{no}debugoverlay (non-shipping) [2024.05.01-08.00.09:474][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:006ms:250us]pluginmanager.cpp:100[setHostSDKVersion] Streamline v2.4.0.80337dff - built on Wed Mar 27 16:31:44 2024 - host SDK v2.4.0 [2024.05.01-08.00.09:476][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:008ms:240us]ota.cpp:382[checkForOTA] Requesting optional updates! [2024.05.01-08.00.09:507][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:039ms:055us]pluginmanager.cpp:479[findPlugins] Looking for plugins in E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64 ... [2024.05.01-08.00.09:507][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:039ms:093us]pluginmanager.cpp:864[loadPlugins] Searching for OTA'd plugins... [2024.05.01-08.00.09:511][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-09][streamline][warn][tid:2372][0s:042ms:836us]ota.cpp:439[getOTAPluginForFeature] No updated version found for plugin: reflex_0 [2024.05.01-08.00.09:511][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-09][streamline][warn][tid:2372][0s:043ms:552us]ota.cpp:439[getOTAPluginForFeature] No updated version found for plugin: dlss_g_0 [2024.05.01-08.00.09:511][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-09][streamline][warn][tid:2372][0s:043ms:627us]ota.cpp:439[getOTAPluginForFeature] No updated version found for plugin: common_0 [2024.05.01-08.00.09:511][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-09][streamline][warn][tid:2372][0s:043ms:681us]ota.cpp:439[getOTAPluginForFeature] No updated version found for plugin: pcl_0 [2024.05.01-08.00.09:536][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:068ms:301us]commoninterface.cpp:145[getSystemCaps] Enumerating up to 8 adapters but only one of them can be used to create a device - no mGPU support in this SDK [2024.05.01-08.00.09:541][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:072ms:677us]commoninterface.cpp:263[getSystemCaps] >----------------------------------------- [2024.05.01-08.00.09:541][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:072ms:715us]commoninterface.cpp:266[getSystemCaps] NVIDIA driver 552.22 [2024.05.01-08.00.09:542][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:073ms:976us]commoninterface.cpp:291[getSystemCaps] Adapter 0 architecture 0x160 implementation 0x2 revision 0xa1 - bit 0x1 - LUID 0.247577193 [2024.05.01-08.00.09:542][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:074ms:002us]commoninterface.cpp:297[getSystemCaps] -----------------------------------------< [2024.05.01-08.00.09:542][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:074ms:408us]commonentry.cpp:1536[getOSVersionAndUpdateTimerResolution] Changed high resolution timer resolution to 5000 [100 ns units] [2024.05.01-08.00.09:542][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:074ms:434us]commonentry.cpp:1610[updateEmbeddedJSON] Detected Windows OS version 10.0.22621 [2024.05.01-08.00.09:542][ 0]LogStreamlineAPI: [Info]: [04-00-09][streamline][info][tid:2372][0s:074ms:495us]pluginmanager.cpp:781[mapPlugins] Loaded plugin 'sl.common' - version 2.4.0.80337dff - id 4294967295 - priority 0 - adapter mask 0x1 - interposer 'no' [2024.05.01-08.00.09:551][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-09][streamline][warn][tid:2372][0s:084ms:134us]pluginmanager.cpp:678[mapPlugins] Ignoring plugin 'sl.deepdvc' since it is was not requested by the host [2024.05.01-08.00.10:279][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-10][streamline][warn][tid:2372][0s:811ms:574us]dlss_gentry.cpp:119[updateEmbeddedJSON] Failed to obtain DLSS-G min spec requirements from NGX, using SL defaults [2024.05.01-08.00.10:279][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-10][streamline][warn][tid:2372][0s:811ms:625us]dlss_gentry.cpp:275[updateEmbeddedJSON] Disabling DLSS-G since it is not supported on current hardware [2024.05.01-08.00.10:279][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:811ms:686us]pluginmanager.cpp:781[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.4.0.80337dff - id 1000 - priority 1000 - adapter mask 0x0 - interposer 'no' [2024.05.01-08.00.10:286][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:818ms:015us]pluginmanager.cpp:781[mapPlugins] Loaded plugin 'sl.pcl' - version 2.4.0.80337dff - id 4 - priority 2 - adapter mask 0x1 - interposer 'no' [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:824ms:496us]pluginmanager.cpp:781[mapPlugins] Loaded plugin 'sl.reflex' - version 2.4.0.80337dff - id 3 - priority 100 - adapter mask 0x1 - interposer 'no' [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-10][streamline][warn][tid:2372][0s:824ms:534us]pluginmanager.cpp:917[loadPlugins] Ignoring plugin 'sl.dlss_g' since it is not supported on this platform [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:824ms:614us]pluginmanager.cpp:1018[loadPlugins] Plugin execution order based on priority: [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:824ms:657us]pluginmanager.cpp:1021[loadPlugins] P0 - sl.common [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:824ms:689us]pluginmanager.cpp:1021[loadPlugins] P2 - sl.pcl [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:824ms:722us]pluginmanager.cpp:1021[loadPlugins] P100 - sl.reflex [2024.05.01-08.00.10:292][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:824ms:751us]pluginmanager.cpp:1202[initializePlugins] Initializing plugins - api 0.0.1 - application ID 100721531 [2024.05.01-08.00.10:293][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:825ms:370us]commonentry.cpp:1140[slOnPluginStartup] At least one plugin requires NGX, trying to initialize ... [2024.05.01-08.00.10:293][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:825ms:568us]commonentry.cpp:909[ngxLog] App logging hooks successfully initialized [2024.05.01-08.00.10:304][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:835ms:916us]commonentry.cpp:909[ngxLog] using path for models: C:\ProgramData/NVIDIA/NGX/models/ [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:730us]commonentry.cpp:909[ngxLog] updated access control list for NGX cache (NGX cache should now be usable by all authenticated users) [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:766us]commonentry.cpp:909[ngxLog] model folder created: C:\ProgramData/NVIDIA/NGX/models/ [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:839us]commonentry.cpp:909[ngxLog] [dlss] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:854us]commonentry.cpp:909[ngxLog] app_B9FEB50=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:865us]commonentry.cpp:909[ngxLog] app_B9FF4BC=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:875us]commonentry.cpp:909[ngxLog] app_B9FD524=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:885us]commonentry.cpp:909[ngxLog] app_86665F8=3.5.10 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:906us]commonentry.cpp:909[ngxLog] app_B9DF510=1.3.106 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:919us]commonentry.cpp:909[ngxLog] app_B9CB0B8=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:929us]commonentry.cpp:909[ngxLog] app_B9E26B0=2.1.28 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:938us]commonentry.cpp:909[ngxLog] app_B9D48D0=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:947us]commonentry.cpp:909[ngxLog] app_E99B5EC=1.2.109 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:843ms:978us]commonentry.cpp:909[ngxLog] app_B9DFA64=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:001us]commonentry.cpp:909[ngxLog] app_B9FD6C0=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:011us]commonentry.cpp:909[ngxLog] app_B9CF688=2.2.15 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:020us]commonentry.cpp:909[ngxLog] app_8741FBC=2.4.12 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:030us]commonentry.cpp:909[ngxLog] app_B9D6F08=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:040us]commonentry.cpp:909[ngxLog] app_B9BF564=2.1.28 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:049us]commonentry.cpp:909[ngxLog] app_B9DB4F4=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:066us]commonentry.cpp:909[ngxLog] app_B9D2F5C=1.2.110 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:076us]commonentry.cpp:909[ngxLog] app_B9D7388=1.0.108 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:086us]commonentry.cpp:909[ngxLog] app_B9F5618=2.1.29 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:095us]commonentry.cpp:909[ngxLog] app_B9DAE68=1.2.109 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:105us]commonentry.cpp:909[ngxLog] app_B9D8C54=1.2.109 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:114us]commonentry.cpp:909[ngxLog] app_3AC09EF=3.5.10 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:123us]commonentry.cpp:909[ngxLog] app_B9D3EF0=2.1.28 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:133us]commonentry.cpp:909[ngxLog] app_B9B2084=2.1.40 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:143us]commonentry.cpp:909[ngxLog] app_B9FACDC=2.1.28 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:152us]commonentry.cpp:909[ngxLog] app_F7361DC=2.1.28 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:160us]commonentry.cpp:909[ngxLog] app_B9C3560=2.1.19 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:170us]commonentry.cpp:909[ngxLog] app_B9B0430=2.1.28 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:181us]commonentry.cpp:909[ngxLog] app_86D9294=3.1.13 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:191us]commonentry.cpp:909[ngxLog] app_86B0DB4=2.2.10 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:199us]commonentry.cpp:909[ngxLog] app_E658703=0.0.0 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:208us]commonentry.cpp:909[ngxLog] app_E658702=0.0.0 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:217us]commonentry.cpp:909[ngxLog] app_E658701=0.0.0 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:226us]commonentry.cpp:909[ngxLog] app_87D97FC=3.1.11 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:235us]commonentry.cpp:909[ngxLog] app_86AA7B4=2.3.11 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:246us]commonentry.cpp:909[ngxLog] app_8750400=3.1.13 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:255us]commonentry.cpp:909[ngxLog] app_ECFB5BC=2.2.16 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:264us]commonentry.cpp:909[ngxLog] app_87EED68=3.5.10 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:274us]commonentry.cpp:909[ngxLog] app_8723B9C=3.5.10 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:283us]commonentry.cpp:909[ngxLog] [dlisp] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:294us]commonentry.cpp:909[ngxLog] app_B9CF688=2.1.15 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:304us]commonentry.cpp:909[ngxLog] app_E99B5EC=1.2.102 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:313us]commonentry.cpp:909[ngxLog] app_E658703=1.0.101 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:322us]commonentry.cpp:909[ngxLog] app_B9D8C54=1.2.106 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:331us]commonentry.cpp:909[ngxLog] app_B9D2F5C=1.2.106 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:340us]commonentry.cpp:909[ngxLog] app_B9DF510=1.3.101 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:349us]commonentry.cpp:909[ngxLog] app_B9DAE68=1.2.106 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:358us]commonentry.cpp:909[ngxLog] [dlssg] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:374us]commonentry.cpp:909[ngxLog] app_8741FBC=3.5.0 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:384us]commonentry.cpp:909[ngxLog] app_86AA7B4=3.5.0 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:414us]commonentry.cpp:909[ngxLog] app_8750400=3.1.11 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:437us]commonentry.cpp:909[ngxLog] [sl_common_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:456us]commonentry.cpp:909[ngxLog] [sl_dlss_g_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:472us]commonentry.cpp:909[ngxLog] [sl_reflex_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:488us]commonentry.cpp:909[ngxLog] [sl_nis_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:503us]commonentry.cpp:909[ngxLog] [sl_dlss_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:520us]commonentry.cpp:909[ngxLog] [sl_dlss_d_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:535us]commonentry.cpp:909[ngxLog] [dlssd] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:552us]commonentry.cpp:909[ngxLog] app_8741FBC=3.5.10 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:573us]commonentry.cpp:909[ngxLog] [sl_pcl_0] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:589us]commonentry.cpp:909[ngxLog] [deepdvc] [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:617us]commonentry.cpp:909[ngxLog] app_86AA7B4=1.0.0 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:627us]commonentry.cpp:909[ngxLog] listItem.engineVersion .* listItem.genericCMSId 86aa7b4 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:637us]commonentry.cpp:909[ngxLog] project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:648us]commonentry.cpp:909[ngxLog] listItem.engineVersion .* listItem.genericCMSId 8618954 [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:660us]commonentry.cpp:909[ngxLog] listItem.engineVersion .* listItem.genericCMSId b9b05cc [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:669us]commonentry.cpp:909[ngxLog] listItem.engineVersion .* listItem.genericCMSId 876232c [2024.05.01-08.00.10:312][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:844ms:678us]commonentry.cpp:909[ngxLog] Found cms id 86aa7b4 for engine: ue4 engineVersion 5.3 projectID B953BE4645CF6239661366B41AB8EDE3 [2024.05.01-08.00.10:406][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:938ms:560us]commonentry.cpp:909[ngxLog] DRS PROFILE FOUND : ProfileName "Gray Zone Warfare", AppName "gzwclientsteam-win64-shipping.exe" [2024.05.01-08.00.10:419][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][0s:951ms:349us]commonentry.cpp:909[ngxLog] called from module sl.common.dll at E:\SteamLibrary\steamapps\common\Gray Zone Warfare\GZW\Plugins\Externals\Streamline\Binaries\ThirdParty\Win64 [2024.05.01-08.00.10:737][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][1s:269ms:457us]commonentry.cpp:909[ngxLog] app 86AA7B4 feature dlss snippet: E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/DLSS/Binaries/ThirdParty/Win64/nvngx_dlss.dll version: 3.7.0 [2024.05.01-08.00.10:817][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][1s:349ms:701us]commonentry.cpp:909[ngxLog] error: snippet is using newer GPU arch 190 > 160 [2024.05.01-08.00.10:837][ 0]LogStreamlineAPI: [Info]: [04-00-10][streamline][info][tid:2372][1s:369ms:550us]commonentry.cpp:909[ngxLog] app 86AA7B4 feature deepdvc snippet: E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64/nvngx_deepdvc.dll version: 1.0.0 [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:290us]commonentry.cpp:909[ngxLog] [NGXInitLog:219] App logging hooks successfully initialized [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:386us]commonentry.cpp:909[ngxLog] [NGXInitLog:226] Built with APP_NAME = custom_engine_generic [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:424us]commonentry.cpp:909[ngxLog] [NGXCubinD3D12::Init:183] Driver supports Fatbins + PTX [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:457us]commonentry.cpp:909[ngxLog] [NGXCubinKernelMap::InitCubins:62] Setting NGX Generic Cubins for arch fatbin [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:489us]commonentry.cpp:909[ngxLog] [NGXCubinGeneric::SetGPUArch:382] SetGPUArch:: Gpu count = 1, luid: 0xec1ba69 [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:519us]commonentry.cpp:909[ngxLog] [NGXCubinGeneric::SetGPUArch:437] m_gpuArch = 0x160 [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:549us]commonentry.cpp:909[ngxLog] [NGXCubinGeneric::SetGPUArch:448] m_smArch = 0x1 [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:579us]commonentry.cpp:909[ngxLog] [NGXCubinGeneric::genericPostInit:140] Fast UAV clear: supported [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:609us]commonentry.cpp:909[ngxLog] [DLSSCubinKernelMap::InitCubins:235] Setting DLAA Cubins for arch fatbin [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:643us]commonentry.cpp:909[ngxLog] [DLSSCubinKernelMap::InitCubins:235] Setting DLSS Debug Cubins for arch fatbin [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:676us]commonentry.cpp:909[ngxLog] [DLSSCubinKernelMap::InitCubins:235] Setting DLTSS Engine Cubins for arch fatbin [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:709us]commonentry.cpp:909[ngxLog] [DLSSCubinKernelMap::InitCubins:235] Setting DLTSS NW Cubins for arch fatbin [2024.05.01-08.00.11:099][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:631ms:742us]commonentry.cpp:909[ngxLog] [DLSSCubinKernelMap::InitCubins:235] Setting DLTSS NW E5M3_SKIP Cubins for arch fatbin [2024.05.01-08.00.11:335][ 0]LogStreamlineAPI: Warning: [Warn]: [04-00-11][streamline][warn][tid:2372][1s:867ms:940us]commonentry.cpp:1270[slOnPluginStartup] Valid application id is required in production builds - allowing for now but please fix this [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:069us]pluginmanager.cpp:1307[mapPluginCallbacks] Callback sl.common:slSetData:0x0 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:115us]pluginmanager.cpp:1308[mapPluginCallbacks] Callback sl.common:slGetData:0x0 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:148us]pluginmanager.cpp:1309[mapPluginCallbacks] Callback sl.common:slAllocateResources:0x0 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:184us]pluginmanager.cpp:1310[mapPluginCallbacks] Callback sl.common:slFreeResources:0x0 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:207us]pluginmanager.cpp:1311[mapPluginCallbacks] Callback sl.common:slEvaluateFeature:0x7fff7aa9ce40 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:220us]pluginmanager.cpp:1312[mapPluginCallbacks] Callback sl.common:slSetTag:0x7fff7aa9c210 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:230us]pluginmanager.cpp:1313[mapPluginCallbacks] Callback sl.common:slSetConsts:0x7fff7aa9cbb0 [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:240us]pluginmanager.cpp:1090[processPluginHooks] Hook sl.common:slHookVkPresent:before - skipped [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:250us]pluginmanager.cpp:1090[processPluginHooks] Hook sl.common:slHookVkAfterPresent:after - skipped [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:259us]pluginmanager.cpp:1090[processPluginHooks] Hook sl.common:slHookVkCmdBindPipeline:after - skipped [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:270us]pluginmanager.cpp:1090[processPluginHooks] Hook sl.common:slHookVkCmdBindDescriptorSets:after - skipped [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:279us]pluginmanager.cpp:1090[processPluginHooks] Hook sl.common:slHookVkBeginCommandBuffer:after - skipped [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:289us]pluginmanager.cpp:1114[processPluginHooks] Hook sl.common:slHookResizeSwapChainPre:before - OK [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:301us]pluginmanager.cpp:1114[processPluginHooks] Hook sl.common:slHookPresent:before - OK [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:311us]pluginmanager.cpp:1114[processPluginHooks] Hook sl.common:slHookAfterPresent:after - OK [2024.05.01-08.00.11:336][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:868ms:320us]pluginmanager.cpp:1114[processPluginHooks] Hook sl.common:slHookPresent1:before - OK [2024.05.01-08.00.11:340][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Leave [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:106us]pluginmanager.cpp:1307[mapPluginCallbacks] Callback sl.pcl:slSetData:0x7fffb81b4f20 [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: PluginBaseDir ../../../GZW/Plugins/Externals/Streamline [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: SLBinariesDir ../../../GZW/Plugins/Externals/Streamline/Binaries/ThirdParty/Win64/ [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Enter [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Leave [2024.05.01-08.00.11:340][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Enter [2024.05.01-08.00.11:340][ 0]LogStreamlineD3D12RHI: Skip registering IDXGISwapchainProvider, due to no supported feature needing a swap chain provider: (kFeatureDLSS_G, Result::eErrorNoSupportedAdapterFound),(kFeatureImGUI, Result::eErrorFeatureMissing). This can be overriden with -sl{no}swapchainprovider [2024.05.01-08.00.11:340][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Leave [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: Streamline supported by the NVIDIA D3D12 RHI in the StreamlineD3D12RHI module at runtime [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Enter [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: LoadedFeatures = kFeatureReflex (3)) [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: SupportedFeatures = kFeatureReflex (3)) [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Leave [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: PlatformCreateStreamlineRHI Leave [2024.05.01-08.00.11:340][ 0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Leave [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:323us]pluginmanager.cpp:1308[mapPluginCallbacks] Callback sl.pcl:slGetData:0x7fffb81b5070 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:363us]pluginmanager.cpp:1309[mapPluginCallbacks] Callback sl.pcl:slAllocateResources:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:393us]pluginmanager.cpp:1310[mapPluginCallbacks] Callback sl.pcl:slFreeResources:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:422us]pluginmanager.cpp:1311[mapPluginCallbacks] Callback sl.pcl:slEvaluateFeature:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:451us]pluginmanager.cpp:1312[mapPluginCallbacks] Callback sl.pcl:slSetTag:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:469us]pluginmanager.cpp:1313[mapPluginCallbacks] Callback sl.pcl:slSetConsts:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:485us]pluginmanager.cpp:1075[processPluginHooks] Plugin 'sl.pcl' has no registered hooks [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:501us]pluginmanager.cpp:1307[mapPluginCallbacks] Callback sl.reflex:slSetData:0x7fffabd64f30 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:510us]pluginmanager.cpp:1308[mapPluginCallbacks] Callback sl.reflex:slGetData:0x7fffabd65590 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:520us]pluginmanager.cpp:1309[mapPluginCallbacks] Callback sl.reflex:slAllocateResources:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:532us]pluginmanager.cpp:1310[mapPluginCallbacks] Callback sl.reflex:slFreeResources:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:542us]pluginmanager.cpp:1311[mapPluginCallbacks] Callback sl.reflex:slEvaluateFeature:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:551us]pluginmanager.cpp:1312[mapPluginCallbacks] Callback sl.reflex:slSetTag:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:560us]pluginmanager.cpp:1313[mapPluginCallbacks] Callback sl.reflex:slSetConsts:0x0 [2024.05.01-08.00.11:340][ 0]LogStreamlineAPI: [Info]: [04-00-11][streamline][info][tid:2372][1s:872ms:570us]pluginmanager.cpp:1075[processPluginHooks] Plugin 'sl.reflex' has no registered hooks [2024.05.01-08.00.11:341][ 0]LogStreamlineAPI: Error: [Error]: [04-00-11][streamline][error][tid:2372][1s:872ms:580us]sl.cpp:71[slValidateFeatureContext] 'kFeatureDLSS_G' is missing. [2024.05.01-08.00.11:375][ 0]LogD3D12RHI: Found a custom swapchain provider: 'FSR3SwapchainProvider'. [2024.05.01-08.00.11:455][ 0]LogMoviePlayer: Initializing movie player [2024.05.01-08.00.11:461][ 0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnimationLocomotionLibrary', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/AnimationLocomotionLibrary/Content/' mounted to '/AnimationLocomotionLibrary/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnimationWarping', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/AnimationWarping/Content/' mounted to '/AnimationWarping/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'DeformerGraph', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/DeformerGraph/Content/' mounted to '/DeformerGraph/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintFileUtils', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/BlueprintFileUtils/Content/' mounted to '/BlueprintFileUtils/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ModelingToolsEditorMode', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ModelingToolsEditorMode/Content/' mounted to '/ModelingToolsEditorMode/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ControlFlows', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ControlFlows/Content/' mounted to '/ControlFlows/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Landmass', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Landmass/Content/' mounted to '/Landmass/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'VirtualHeightfieldMesh', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualHeightfieldMesh/Content/' mounted to '/VirtualHeightfieldMesh/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Volumetrics', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Volumetrics/Content/' mounted to '/Volumetrics/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Fab', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Fab/Content/' mounted to '/Fab/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AudioModulation', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioModulation/Content/' mounted to '/AudioModulation/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'CommonUI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/CommonUI/Content/' mounted to '/CommonUI/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'GameplayStateTree', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GameplayStateTree/Content/' mounted to '/GameplayStateTree/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'HairStrands', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/HairStrands/Content/' mounted to '/HairStrands/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'StateTree', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/StateTree/Content/' mounted to '/StateTree/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'AnybrainSDK', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/AnybrainSDK/Content/' mounted to '/AnybrainSDK/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'CogAI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/CogAI/Content/' mounted to '/CogAI/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'CogAbility', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/CogAbility/Content/' mounted to '/CogAbility/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'CogInput', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:462][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/CogInput/Content/' mounted to '/CogInput/' [2024.05.01-08.00.11:462][ 0]LogShaderLibrary: Display: Tried to open shader library 'Cog', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/Cog/Content/' mounted to '/Cog/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'DLSS', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/DLSS/Content/' mounted to '/DLSS/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'FSR3', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/FSR3/Content/' mounted to '/FSR3/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'GenericGraph', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/GenericGraph/Content/' mounted to '/GenericGraph/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'Nakama', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/Nakama/Content/' mounted to '/Nakama/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'Skalla', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/Skalla/Content/' mounted to '/Skalla/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'Wwise', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/WWise/Content/' mounted to '/Wwise/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'XeSS', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Externals/XeSS/Content/' mounted to '/XeSS/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerAnimation', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerAnimation/Content/' mounted to '/MadfingerAnimation/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreA2S', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreA2S/Content/' mounted to '/MadfingerCoreA2S/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreAnticheat', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreAnticheat/Content/' mounted to '/MadfingerCoreAnticheat/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreAudio', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreAudio/Content/' mounted to '/MadfingerCoreAudio/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreAutomatedTests', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreAutomatedTests/Content/' mounted to '/MadfingerCoreAutomatedTests/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreCSV', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreCSV/Content/' mounted to '/MadfingerCoreCSV/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreCrashReporting', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreCrashReporting/Content/' mounted to '/MadfingerCoreCrashReporting/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreCrashpad', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreCrashpad/Content/' mounted to '/MadfingerCoreCrashpad/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreErrors', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreErrors/Content/' mounted to '/MadfingerCoreErrors/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreGUI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreGUI/Content/' mounted to '/MadfingerCoreGUI/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreOnline', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreOnline/Content/' mounted to '/MadfingerCoreOnline/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCorePlayPresets', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCorePlayPresets/Content/' mounted to '/MadfingerCorePlayPresets/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreQuestTool', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreQuestTool/Content/' mounted to '/MadfingerCoreQuestTool/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreQuests', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreQuests/Content/' mounted to '/MadfingerCoreQuests/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreSettings', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreSettings/Content/' mounted to '/MadfingerCoreSettings/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerCoreVOIP', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerCoreVOIP/Content/' mounted to '/MadfingerCoreVOIP/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerDevelopment', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerDevelopment/Content/' mounted to '/MadfingerDevelopment/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameAI', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameAI/Content/' mounted to '/MadfingerGameAI/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameBallisticsContacts', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameBallisticsContacts/Content/' mounted to '/MadfingerGameBallisticsContacts/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameBallistics', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameBallistics/Content/' mounted to '/MadfingerGameBallistics/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameCharacterPrediction', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameCharacterPrediction/Content/' mounted to '/MadfingerGameCharacterPrediction/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameCharacterSpawn', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameCharacterSpawn/Content/' mounted to '/MadfingerGameCharacterSpawn/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameExploration', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameExploration/Content/' mounted to '/MadfingerGameExploration/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameExplosionManager', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameExplosionManager/Content/' mounted to '/MadfingerGameExplosionManager/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameFactions', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameFactions/Content/' mounted to '/MadfingerGameFactions/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameHealthSystem', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameHealthSystem/Content/' mounted to '/MadfingerGameHealthSystem/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameLootSystem', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameLootSystem/Content/' mounted to '/MadfingerGameLootSystem/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameMaterialManager', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameMaterialManager/Content/' mounted to '/MadfingerGameMaterialManager/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameMineField', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameMineField/Content/' mounted to '/MadfingerGameMineField/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameNetDebug', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameNetDebug/Content/' mounted to '/MadfingerGameNetDebug/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameProps', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameProps/Content/' mounted to '/MadfingerGameProps/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameTransportation', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameTransportation/Content/' mounted to '/MadfingerGameTransportation/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerGameUtils', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerGameUtils/Content/' mounted to '/MadfingerGameUtils/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerPrefab', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerPrefab/Content/' mounted to '/MadfingerPrefab/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MFGTAAssetUserData', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTAAssetUserData/Content/' mounted to '/MFGTAAssetUserData/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerTechArtNodes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTechArtNodes/Content/' mounted to '/MadfingerTechArtNodes/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerTechArtTools', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTechArtTools/Content/' mounted to '/MadfingerTechArtTools/' [2024.05.01-08.00.11:463][ 0]LogShaderLibrary: Display: Tried to open shader library 'MadfingerTechArtViewModes', but could not find it neither as a monolithic library nor as a chunked one. [2024.05.01-08.00.11:463][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Madfinger/MadfingerTechArtViewModes/MadfingerTechArtViewModes/Content/' mounted to '/MadfingerTechArtViewModes/' [2024.05.01-08.00.11:464][ 0]LogShaderLibrary: Display: Using IoDispatcher for shader code library GZW. Total 20678 unique shaders. [2024.05.01-08.00.11:464][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library GZW [2024.05.01-08.00.11:464][ 0]LogShaderLibrary: Display: Logical shader library 'GZW' has been created as a monolithic library [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile Header Game Version: 68308 [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile Header Engine Data Version: 25 [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile Header TOC Offset: 865 [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile File Size: 4782 Bytes [2024.05.01-08.00.11:464][ 0]LogRHI: Opened FPipelineCacheFile: ../../../GZW/Content/PipelineCaches/Windows/GZW_PCD3D_SM6.stable.upipelinecache (GUID: E4676AA341995ED59904FBA015B30D50) with 34 entries. [2024.05.01-08.00.11:464][ 0]LogRHI: Display: FPipelineCacheFile[GZW] opened GZW, filename GZW, guid E4676AA341995ED59904FBA015B30D50. [2024.05.01-08.00.11:464][ 0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - GZW begining compile. [2024.05.01-08.00.11:464][ 0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'GZW' and enqueued 34 tasks for precompile. (cache contains 34, 34 eligible, 0 had missing shaders. 0 already compiled). BatchSize 50 and BatchTime 16.000000. [2024.05.01-08.00.11:464][ 0]LogRHI: Base name for record PSOs is C:/Users/Tailshake/AppData/Local/GZW/Saved/CollectedPSOs/++FTW+Main-Engine-CL-68308-GZW_PCD3D_SM6_3A785D644FAA469AC5C5D19A796A340C.rec.upipelinecache [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() Begin [2024.05.01-08.00.11:464][ 0]LogRHI: User cache GC is disabled [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() End [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile Header Game Version: 68308 [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile Header Engine Data Version: 25 [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile Header TOC Offset: 259223 [2024.05.01-08.00.11:464][ 0]LogRHI: FPipelineCacheFile File Size: 395880 Bytes [2024.05.01-08.00.11:464][ 0]LogRHI: Opened FPipelineCacheFile: C:/Users/Tailshake/AppData/Local/GZW/Saved/GZW_PCD3D_SM6.upipelinecache (GUID: CDF177A84D4B862F99C127ACC638FC2A) with 1084 entries. [2024.05.01-08.00.11:464][ 0]LogRHI: Display: FPipelineCacheFile User cache [key:GZW_usr] opened 'GZW'=1, filename GZW, guid CDF177A84D4B862F99C127ACC638FC2A. [2024.05.01-08.00.11:464][ 0]LogShaderLibrary: Display: Tried to open again shader library 'GZW', but could not find new components for it (existing components: 1). [2024.05.01-08.00.11:464][ 0]LogInit: Using OS detected language (en-US). [2024.05.01-08.00.11:464][ 0]LogInit: Using OS detected locale (en-US). [2024.05.01-08.00.11:464][ 0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language. [2024.05.01-08.00.11:465][ 0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the locale. [2024.05.01-08.00.11:465][ 0]LogSlate: Warning: FontCache flush requested. Reason: Culture for localization was changed [2024.05.01-08.00.11:465][ 0]LogSlate: Warning: FontCache flush requested. Reason: Culture for localization was changed [2024.05.01-08.00.11:465][ 0]LogAssetRegistry: FAssetRegistry took 0.0001 seconds to start up [2024.05.01-08.00.11:484][ 0]LogPakFile: New pak file ../../../GZW/Content/Paks/GZW-WindowsClient.pak added to pak precacher. [2024.05.01-08.00.11:544][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.11:633][ 0]LogDeviceProfileManager: Available device profiles: [2024.05.01-08.00.11:633][ 0]LogDeviceProfileManager: [0000021EE0FACFE0][0000021EDF04DB70 66] Windows, [2024.05.01-08.00.11:633][ 0]LogDeviceProfileManager: [0000021EE0FACE20][0000021EDF044930 66] WindowsClient, [2024.05.01-08.00.11:633][ 0]LogDeviceProfileManager: Active device profile: [0000021EE0FACE20][0000021EDF044930 66] WindowsClient [2024.05.01-08.00.11:925][ 0]LogRHI: Warning: FShaderPipelineCache GZW completed 34 tasks in 0.00s (0.14s wall time since intial open). [2024.05.01-08.00.12:057][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 9B4EE1C31ED1EF51 [2024.05.01-08.00.12:058][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x9B4EE1C31ED1EF51: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 1 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 4 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:059][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:060][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash AE892EE76B35D34B [2024.05.01-08.00.12:061][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0xAE892EE76B35D34B: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 1 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 7 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:061][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:061][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 40E04299A7630CC9 [2024.05.01-08.00.12:061][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 2B684A4D7CA32DD1 [2024.05.01-08.00.12:062][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x2B684A4D7CA32DD1: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 3 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 4 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:062][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:062][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 6064E0E708471619 [2024.05.01-08.00.12:064][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x6064E0E708471619: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 2 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 7 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:064][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:064][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 80E90212C77D72A3 [2024.05.01-08.00.12:066][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x80E90212C77D72A3: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 3 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 4 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:066][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:066][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 07C8EFC26993B405 [2024.05.01-08.00.12:066][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x07C8EFC26993B405: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 2 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 4 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:066][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:067][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 9BC159D59DD9209C [2024.05.01-08.00.12:068][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x9BC159D59DD9209C: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 3 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 7 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:068][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:068][ 0]LogD3D12RHI: Error: Failed to create PipelineState with hash 481ABD57684698F3 [2024.05.01-08.00.12:071][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x481ABD57684698F3: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 2 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 4 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:071][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:082][ 0]LogD3D12RHI: Warning: Failed to create Graphics PSO with hash 0x40E04299A7630CC9: AlphaToCoverageEnable = 0 IndependentBlendEnable = 1 SampleMask = 0xFFFFFFFF FillMode = 3 CullMode = 1 FrontCounterClockwise = 1 DepthBias = 0 DepthBiasClamp = 0.000000 SlopeScaledDepthBias = 0.000000 DepthClipEnable = 1 MultisampleEnable = 1 AntialiasedLineEnable = 0 ForcedSampleCount = 0 ConservativeRaster = 0 DepthEnable = 1 DepthWriteMask = 1 DepthFunc = 4 StencilEnable = 0 StencilReadMask = 0xFF StencilWriteMask = 0xFF FrontFace = { 1, 1, 1, 8 } BackFace = { 1, 1, 1, 8 } InputLayout.NumElements = 1 InputLayout[0] = { "ATTRIBUTE", 0, 0x6, 0, 0, 0x0, 0 } IBStripCutValue = 0x0 PrimitiveTopologyType = 0x3 NumRenderTargets = 0 DSVFormat = 0x37 SampleDesc = { 1, 0 } NodeMask = 0x1 Flags = 0x0 [2024.05.01-08.00.12:082][ 0]LogRHI: Error: Failed to create GraphicsPipeline [2024.05.01-08.00.12:353][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook). [2024.05.01-08.00.12:353][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal [2024.05.01-08.00.12:353][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled [2024.05.01-08.00.12:389][ 0]LogPackageLocalizationCache: Processed 106 localized package path(s) for 1 prioritized culture(s) in 0.000119 seconds [2024.05.01-08.00.12:432][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.005 s [2024.05.01-08.00.12:450][ 0]LogOnlineServices: [UMFGNakama::UMFGNakama] NakamaServer: Heroic Production Cloud [2024.05.01-08.00.12:454][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2024.05.01-08.00.12:454][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2024.05.01-08.00.12:454][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2024.05.01-08.00.12:458][ 0]LogSkalla: ASKALLACollisionActor#0::ASKALLACollisionActor 0000021EE22999A0 [2024.05.01-08.00.12:458][ 0]LogSkalla: ASKALLAGenericObjectsActor#0::ASKALLAGenericObjectsActor 0000021EA3F45800 [2024.05.01-08.00.12:458][ 0]LogSkalla: USKALLALocalWindComponent::constr 0000021EA3B50100 [2024.05.01-08.00.12:458][ 0]LogSkalla: USKALLAObstacleComponent::constr 0000021EA3F54240 [2024.05.01-08.00.12:458][ 0]LogSkalla: ASkallaTestActor#0: constructed at 0000021EE22995B0 [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDLSS_G) -> (6, Result::eErrorNoSupportedAdapterFound) [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureDLSS_G) versionSL = 2.4.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureDLSS_G) -> (0, Result::eOk) [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: FeatureRequirements kFeatureDLSS_G: flags FeatureRequirementFlags::eHardwareSchedulingRequired|FeatureRequirementFlags::eVSyncOffRequired|FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported| [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: maxNumViewports : 0 [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: osVersion detected: 10.0.22621, required: 10.0.19041 [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: driverVersion detected: 552.22.0, required: 512.15.0 [2024.05.01-08.00.12:533][ 0]LogStreamlineRHI: requiredTags (0): {} [2024.05.01-08.00.12:669][ 0]LogWwise: WwiseModule: Loading AkAudio [2024.05.01-08.00.12:669][ 0]LogLoad: Loading WwiseSoundEngine module: WwiseSoundEngine [2024.05.01-08.00.12:669][ 0]LogWwiseSoundEngine: Display: Loading Wwise Sound Engine version 2023.1 [2024.05.01-08.00.12:669][ 0]LogAkAudio: FAkAudioModule::UpdateWwiseResourceLoaderSettings : Updating Resource Loader settings. [2024.05.01-08.00.12:669][ 0]LogLoad: Loading WwiseResourceLoader module: WwiseResourceLoader [2024.05.01-08.00.12:669][ 0]LogWwiseResourceLoader: Display: Initializing default Resource Loader. [2024.05.01-08.00.12:669][ 0]LogAkAudio: Wwise(R) SDK Version 2023.1.2 Build 8444 [Release(StaticCRT)]. Copyright (c) 2006-2023 Audiokinetic Inc. [2024.05.01-08.00.12:669][ 0]LogLoad: Loading WwiseFileHandler module: WwiseFileHandler [2024.05.01-08.00.12:669][ 0]LogLoad: Loading WwiseProcessing module: WwiseProcessing [2024.05.01-08.00.12:669][ 0]LogWwiseProcessing: Display: Initializing default Processing. [2024.05.01-08.00.12:669][ 0]LogWwiseFileHandler: Display: Initializing default External Source Manager. [2024.05.01-08.00.12:669][ 0]LogWwiseFileHandler: Display: Initializing default Media Manager. [2024.05.01-08.00.12:669][ 0]LogWwiseFileHandler: Display: Initializing default SoundBank Manager. [2024.05.01-08.00.12:684][ 0]LogAkAudio: Wwise plug-in DLL path: E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/WWise/ThirdParty/x64_vc170/Release/bin/ [2024.05.01-08.00.12:686][ 0]LogAkAudio: Wwise SoundEngine successfully initialized. [2024.05.01-08.00.12:687][ 0]LogAkAudio: Initialization complete. [2024.05.01-08.00.12:687][ 0]LogAkAudio: Audiokinetic Audio Device initialized. [2024.05.01-08.00.12:687][ 0]LogLoad: Loading WwiseConcurrency module: WwiseConcurrency [2024.05.01-08.00.12:687][ 0]LogWwiseConcurrency: Display: Initializing default Concurrency. [2024.05.01-08.00.12:687][ 0]LogWwiseFileHandler: Display: Initializing default File Cache. [2024.05.01-08.00.13:164][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'BitDepth' [2024.05.01-08.00.13:164][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'HPFCutoffFrequency' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LowRateFrequency' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LPFCutoffFrequency' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pan' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pitch' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'SampleRate' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'TimeOfDay' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Volume' [2024.05.01-08.00.13:165][ 0]LogAudioModulation: Registering Modulation MetaSound Nodes... [2024.05.01-08.00.13:178][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... [2024.05.01-08.00.13:178][ 0]LogMetasoundEngine: MetaSound Engine Initialized [2024.05.01-08.00.13:178][ 0]LogAudioModulation: Audio Modulation Initialized [2024.05.01-08.00.13:179][ 0]LogNakama: Nakama module loaded [2024.05.01-08.00.13:193][ 0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.' [2024.05.01-08.00.13:193][ 0]LogAutomatedTests: WITH_AUTOMATION_TESTS=0 [2024.05.01-08.00.13:193][ 0]LogTemp: Added Development culture [2024.05.01-08.00.13:198][ 0]LogUObjectArray: 30348 objects as part of root set at end of initial load. [2024.05.01-08.00.13:198][ 0]LogUObjectArray: 8 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set. [2024.05.01-08.00.13:198][ 0]LogUObjectAllocator: 6751120 out of 0 bytes used by permanent object pool. [2024.05.01-08.00.13:198][ 0]LogUObjectArray: CloseDisregardForGC: 30348/30348 objects in disregard for GC pool [2024.05.01-08.00.13:199][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 29486 public script object entries (759.99 KB) [2024.05.01-08.00.13:236][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false [2024.05.01-08.00.13:236][ 0]LogEngine: Initializing Engine... [2024.05.01-08.00.13:266][ 0]LogAssetManager: Display: Ignoring PrimaryAssetType ItemUIAction - Conflicts with MFGItemUIAction - Asset: IUA_Destroy [2024.05.01-08.00.13:266][ 0]LogAssetManager: Display: Ignoring PrimaryAssetType MFGAISetting - Conflicts with AISetting - Asset: DA_AISettings [2024.05.01-08.00.13:266][ 0]LogCoreFrameworkRuntime: Display: Startup job "InitializeGameplayTags()" starting [2024.05.01-08.00.13:269][ 0]LogCoreFrameworkRuntime: Display: Startup job "InitializeGameplayTags()" took 0.00 seconds to complete [2024.05.01-08.00.13:269][ 0]LogCoreFrameworkRuntime: Display: Startup job "InitializeSettings()" starting [2024.05.01-08.00.13:269][ 0]LogCoreFrameworkRuntime: Display: Startup job "InitializeSettings()" took 0.00 seconds to complete [2024.05.01-08.00.13:269][ 0]LogCoreFrameworkRuntime: Display: Startup job "InitializeAbilitySystem()" starting [2024.05.01-08.00.13:271][ 0]LogCoreFrameworkRuntime: Display: Startup job "InitializeAbilitySystem()" took 0.00 seconds to complete [2024.05.01-08.00.13:271][ 0]LogCoreFrameworkRuntime: Display: All startup jobs took 0.00 seconds to complete [2024.05.01-08.00.13:271][ 0]LogInit: Initializing FReadOnlyCVARCache [2024.05.01-08.00.13:271][ 0]LogNetVersion: Set ProjectVersion to 0.1.0. Version Checksum will be recalculated on next use. [2024.05.01-08.00.13:271][ 0]LogInit: Texture streaming: Enabled [2024.05.01-08.00.13:271][ 0]LogAudio: Display: Initializing Audio Device Manager... [2024.05.01-08.00.13:271][ 0]LogAudio: Display: Loading Default Audio Settings Objects... [2024.05.01-08.00.13:346][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). [2024.05.01-08.00.13:346][ 0]LogAudio: Display: AudioInfo: 'BINKA' Registered [2024.05.01-08.00.13:346][ 0]LogAudio: Display: AudioInfo: 'PCM' Registered [2024.05.01-08.00.13:346][ 0]LogAudio: Display: AudioInfo: 'ADPCM' Registered [2024.05.01-08.00.13:346][ 0]LogAudio: Display: AudioInfo: 'OGG' Registered [2024.05.01-08.00.13:346][ 0]LogAudio: Display: AudioInfo: 'OPUS' Registered [2024.05.01-08.00.13:346][ 0]LogAudio: Display: Audio Device Manager Initialized [2024.05.01-08.00.13:346][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Sample Rate: 48000 [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 256 [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 256 [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Number of buffers to queue: 7 [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Max Channels (voices): 32 [2024.05.01-08.00.13:346][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 [2024.05.01-08.00.13:346][ 0]LogAudio: Display: AudioDevice MaxSources: 32 [2024.05.01-08.00.13:346][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). [2024.05.01-08.00.13:346][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). [2024.05.01-08.00.13:346][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). [2024.05.01-08.00.13:346][ 0]LogAudio: Display: Audio Modulation Plugin: DefaultModulationPlugin [2024.05.01-08.00.13:431][ 0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. [2024.05.01-08.00.13:449][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' [2024.05.01-08.00.13:595][ 0]LogAudioMixer: Display: Using Audio Hardware Device SteelSeries Sonar - Gaming (SteelSeries Sonar Virtual Audio Device) [2024.05.01-08.00.13:595][ 0]LogAudioMixer: Display: Initializing Sound Submixes... [2024.05.01-08.00.13:596][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' [2024.05.01-08.00.13:596][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' [2024.05.01-08.00.13:597][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 [2024.05.01-08.00.13:597][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=256, Channels=8, Samples=2048, InstanceID=1 [2024.05.01-08.00.13:602][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 [2024.05.01-08.00.13:602][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 [2024.05.01-08.00.13:602][ 0]LogInit: FAudioDevice initialized with ID 1. [2024.05.01-08.00.13:602][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 [2024.05.01-08.00.13:602][ 0]LogCoreFrameworkRuntime: Display: Startup job "SettingsManager->PreloadSettings()" starting [2024.05.01-08.00.13:602][ 0]LogMFGSettingsManager: Preloading of settings started, current mem usage: phys 1372MB, virt 1750MB [2024.05.01-08.00.13:948][ 0]LogSkalla: USKALLALocalWindComponent::constr 0000021EA458DF00 [2024.05.01-08.00.13:956][ 0]LogMFGSettingsManager: Preloading of settings finished, loaded 1153 settings, took 0.354236s, current mem usage: phys 1866MB, virt 2301MB [2024.05.01-08.00.13:957][ 0]LogCoreFrameworkRuntime: Display: Startup job "SettingsManager->PreloadSettings()" took 0.35 seconds to complete [2024.05.01-08.00.13:957][ 0]LogCoreFrameworkRuntime: Display: All startup jobs took 0.35 seconds to complete [2024.05.01-08.00.13:985][ 0]LogGameUserSettings: UpdateGameModeDeviceProfileAndFps MaxRefreshRate=144, ExperienceSuffix='', UserPicked=''->'', PlatformBase='WindowsClient', AppliedActual='' [2024.05.01-08.00.13:993][ 0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created! [2024.05.01-08.00.13:993][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:0.016667 [2024.05.01-08.00.13:995][ 0]LogOnlineServices: [UMFGNakama::UMFGNakama] NakamaServer: Heroic Production Cloud [2024.05.01-08.00.13:995][ 0]LogNakamaUnreal: Display: Nakama Realtime Client Created on Port: 443 [2024.05.01-08.00.13:995][ 0]LogOnlineSchema: Error: Invalid schema category lobby: Service descriptor id lobby not found. [2024.05.01-08.00.13:995][ 0]LogOnlineSchema: Error: Invalid schema category lobbymember: Service descriptor id lobbymember not found. [2024.05.01-08.00.13:995][ 0]LogOnlineServices: Error: [FLobbiesCommon::Initialize] Failed to initialize schema registry [2024.05.01-08.00.13:995][ 0]LogCoreUserRuntime: HandleNetworkConnectionStatusChanged(Context:1, ServiceName:, OldStatus:NotConnected, NewStatus:Connected) [2024.05.01-08.00.13:995][ 0]LogCoreUserRuntime: HandleNetworkConnectionStatusChanged(Context:4, ServiceName:, OldStatus:NotConnected, NewStatus:NotConnected) [2024.05.01-08.00.13:995][ 0]LogChartCreation: Started creating FPS charts at 16969610.616604 seconds [2024.05.01-08.00.13:995][ 0]LogAnticheat: [UMFGEasyAnticheatSubsystem::Initialize] Enabled: 1 [2024.05.01-08.00.13:999][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. [2024.05.01-08.00.13:999][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2024.05.01-08.00.13:999][ 0]LogUIActionRouter: Display: Found 0 derived classes when attemping to create action router (CommonUIActionRouterBase) [2024.05.01-08.00.14:004][ 0]LogCoreFrameworkRuntime: AddLocalPlayer: Set MFGLocalPlayer_2147482443 to Primary Player [2024.05.01-08.00.14:004][ 0]LogInit: Display: Game Engine Initialized. [2024.05.01-08.00.14:004][ 0]LogWindows: Attached monitors: [2024.05.01-08.00.14:004][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1032), device: '\\.\DISPLAY6' [PRIMARY] [2024.05.01-08.00.14:004][ 0]LogWindows: resolution: 1920x1080, work area: (1920, 0) -> (3840, 1032), device: '\\.\DISPLAY7' [2024.05.01-08.00.14:004][ 0]LogWindows: Found 2 attached monitors. [2024.05.01-08.00.14:004][ 0]LogWindows: Gathering driver information using Windows Setup API [2024.05.01-08.00.14:004][ 0]LogConfig: Applying CVar settings from Section [WaterQuality@1] File [Scalability] [2024.05.01-08.00.14:004][ 0]LogGameUserSettings: [UMFGGameUserSettings::ApplySelectedDisplayID]: No monitor selected, skipping [2024.05.01-08.00.14:004][ 0]LogConsoleManager: Warning: Setting the console variable 'r.FidelityFX.FSR3.Enabled' with 'SetBy<UNKNOWN>' was ignored as it is lower priority than the previous 'SetByConsole'. Value remains '0' [2024.05.01-08.00.14:005][ 0]LogDLSS: FDLSSModule::StartupModule Enter [2024.05.01-08.00.14:005][ 0]LogDLSS: PluginBaseDir ../../../GZW/Plugins/Externals/DLSS [2024.05.01-08.00.14:005][ 0]LogDLSS: NGXBinariesDir ../../../GZW/Plugins/Externals/DLSS/Binaries/ThirdParty/Win64/ [2024.05.01-08.00.14:005][ 0]LogDLSS: GDynamicRHIName NVIDIA D3D12 [2024.05.01-08.00.14:005][ 0]LogDLSS: Plugin settings: NGXAppId = 0 [2024.05.01-08.00.14:005][ 0]LogDLSS: NGX Application ID not specified, using the Project ID by default. [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Enter [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Leave [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: Searching for custom and generic DLSS binaries [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:\SteamLibrary\steamapps\common\Gray Zone Warfare\GZW\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:\SteamLibrary\steamapps\common\Gray Zone Warfare\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll found in search path E:\SteamLibrary\steamapps\common\Gray Zone Warfare\GZW\Plugins\Externals\DLSS\Binaries\ThirdParty\Win64\ [2024.05.01-08.00.14:005][ 0]LogDLSSNGXRHI: DLSS model OTA update enabled [2024.05.01-08.00.14:018][ 0]LogDLSSNGX: [SDK]: [2024-05-01 04:00:14] [NGXSafeInitializeLog:141] App logging hooks successfully initialized [2024.05.01-08.00.14:018][ 0]LogDLSSNGX: [SDK]: [2024-05-01 04:00:14] [NGXLoadLibrary:269] error: failed to load NGXCore: 126 (E:\SteamLibrary\steamapps\common\Gray Zone Warfare\GZW\Binaries\Win64\_nvngx.dll) [2024.05.01-08.00.14:018][ 0]LogDLSSNGX: [SDK]: [2024-05-01 04:00:14] [NGXLoadLibrary:269] error: failed to load NGXCore: 126 (E:\SteamLibrary\steamapps\common\Gray Zone Warfare\GZW\Binaries\Win64\nvngx.dll) [2024.05.01-08.00.14:019][ 0]LogDLSSNGX: [SDK]: [2024-05-01 04:00:14] [NGXGetPathUsingQAI:138] Path to driverStore found using QAI: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_84b2c943d6816eb7 [2024.05.01-08.00.14:027][ 0]LogDLSSNGX: [Core]: [2024-05-01 04:00:14] [NGXSafeInitializeLog:141] App logging hooks successfully initialized [2024.05.01-08.00.14:027][ 0]LogOnline: Warning: STEAM: Failed to obtain steam user stats, user: tails [0x11000010A8E8102] has no stats entries [2024.05.01-08.00.14:036][ 0]LogDLSSNGX: [DLSS]: [2024-05-01 04:00:14] [tid:33440][NGXInitLog:219] App logging hooks successfully initialized [2024.05.01-08.00.14:036][ 0]LogDLSSNGX: [DLSS]: [2024-05-01 04:00:14] [tid:33440][NGXInitLog:226] Built with APP_NAME = custom_engine_generic [2024.05.01-08.00.14:037][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init_with_ProjectID(ProjectID = B953BE4645CF6239661366B41AB8EDE3, EngineVersion=5.3, APIVersion = 0x15, Device=0000021EAB7128F0) -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init (Log C:/Users/Tailshake/AppData/Local/GZW/Saved/Logs/NGX/NGX_2024.05.01-04.00.14_5AA10F584B4986E1934DD0838FB1022F) -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_GetCapabilityParameters -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 445 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS is supported by the currently installed driver. Minimum driver version was reported as: 445.0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR is supported by the currently installed driver. Minimum driver version was reported as: 0.0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_EParameter_SuperSampling_Available -> (1 NVSDK_NGX_Result_Success), DlssAvailable = 1 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_Available -> (3134193680 NVSDK_NGX_Result_FAIL_UnsupportedParameter), DlssRRAvailable = 0 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_FeatureInitResult -> (3134193680 NVSDK_NGX_Result_FAIL_UnsupportedParameter), NVSDK_NGX_Parameter_SuperSamplingDenoising_FeatureInitResult = (3134193664 NVSDK_NGX_Result_Fail) [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSS: QualityMode -2: bSupported = 1, ResolutionFraction = 0.3330. MinResolutionFraction=0.3330, MaxResolutionFraction 0.3330 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSS: QualityMode -1: bSupported = 1, ResolutionFraction = 0.5000. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSS: QualityMode 0: bSupported = 1, ResolutionFraction = 0.5800. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSS: QualityMode 1: bSupported = 1, ResolutionFraction = 0.6670. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSS: QualityMode 2: bSupported = 0, ResolutionFraction = 0.0000. MinResolutionFraction=0.0000, MaxResolutionFraction 0.0000 [2024.05.01-08.00.14:037][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.14:037][ 0]LogDLSS: QualityMode 3: bSupported = 1, ResolutionFraction = 1.0000. MinResolutionFraction=0.9900, MaxResolutionFraction 1.0000 [2024.05.01-08.00.14:037][ 0]LogDLSS: NumRuntimeQualityModes=5, MinDynamicResolutionFraction=0.5000, MaxDynamicResolutionFraction=1.0000 [2024.05.01-08.00.14:037][ 0]LogDLSS: NVIDIA NGX DLSS supported 1 [2024.05.01-08.00.14:037][ 0]LogDLSS: FDLSSDenoiserWrapper(Active) wrapping ScreenSpaceDenoiser [2024.05.01-08.00.14:037][ 0]LogDLSS: FDLSSModule::StartupModule Leave [2024.05.01-08.00.14:037][ 0]LogConfig: Applying CVar settings from Section [WaterQuality@1] File [Scalability] [2024.05.01-08.00.14:037][ 0]LogStreamline: FStreamlineCoreModule::StartupModule Enter [2024.05.01-08.00.14:037][ 0]LogStreamline: RegisterStreamlineReflexHooks Enter [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk) [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex) versionSL = 2.4.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk) [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: maxNumViewports : 0 [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: osVersion detected: 10.0.22621, required: 10.0.0 [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: driverVersion detected: 552.22.0, required: 512.15.0 [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: requiredTags (0): {} [2024.05.01-08.00.14:038][ 0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::lowLatencyAvailable=1 [2024.05.01-08.00.14:038][ 0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::latencyReportAvailable=1 [2024.05.01-08.00.14:038][ 0]LogStreamline: FStreamlineLatencyMarkers::Initialize sl::ReflexState::flashIndicatorDriverControlled=1 [2024.05.01-08.00.14:038][ 0]LogStreamline: RegisterStreamlineReflexHooks Leave [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureImGUI) -> (31, Result::eErrorFeatureMissing) [2024.05.01-08.00.14:038][ 0]LogStreamline: NVIDIA Streamline supported 1 [2024.05.01-08.00.14:038][ 0]LogStreamline: FStreamlineCoreModule::StartupModule Leave [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeaturePCL) -> (0, Result::eOk) [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeaturePCL) versionSL = 2.4.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeaturePCL) -> (0, Result::eOk) [2024.05.01-08.00.14:038][ 0]LogStreamlineRHI: FeatureRequirements kFeaturePCL: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2024.05.01-08.00.14:039][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2024.05.01-08.00.14:039][ 0]LogStreamlineRHI: maxNumViewports : 0 [2024.05.01-08.00.14:039][ 0]LogStreamlineRHI: osVersion detected: 10.0.22621, required: 10.0.0 [2024.05.01-08.00.14:039][ 0]LogStreamlineRHI: driverVersion detected: 552.22.0, required: 512.15.0 [2024.05.01-08.00.14:039][ 0]LogStreamlineRHI: requiredTags (0): {} [2024.05.01-08.00.14:039][ 0]LogXeSS: XeSS plugin version: 1, version name: 1.3.3 [2024.05.01-08.00.14:235][ 0]LogXeSS: Loading XeSS library 1.2.0 on NVIDIA RHI D3D12 [2024.05.01-08.00.14:282][ 0]LogXeSSRHI: Intel XeSS effect supported [2024.05.01-08.00.14:309][ 0]LogXeSS: XeSS successfully initialized [2024.05.01-08.00.15:225][ 0]LogSkalla: Using cached data from "E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Content/SKALLA/PrebuildWorldData/World/cache" [2024.05.01-08.00.15:238][ 0]LogSkalla: Display: Nexus::CEngineCore::Init: setting job manager no-progress timeout to 60000000 us [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: Nexus core(build#20270) starting ... [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: PreferDynVBIB: 0 [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: GPGPU: 1 [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: Enable RenderDoc: 0 [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: OpenMP: use logical cores 1 [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: GPU preference: performance [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: RAM: 32581 MB [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: CPU info: 10 HW core(s), 16 HW thread(s), supports [SIMD4: 1, SIMD8: 1, SIMD16: 0, F16C: 1, AES: 1] [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: Configuring OpenMP to use max 15 thread(s) [2024.05.01-08.00.15:239][ 0]LogSkalla: Display: Nexus::CEngineCore::Init: set user-specified CWD (current working directory) to: "E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/Skalla/Resources" [2024.05.01-08.00.15:258][ 0]LogSkalla: Display: Nexus::CJobMgr::Init: using 10 worker thread(s) [system info: 10 HW CPUs, 16 logical CPUs] [2024.05.01-08.00.15:261][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/AUTOEXEC_COM_INIT.LUA [2024.05.01-08.00.15:261][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/COM_INTERFACES.LUA [2024.05.01-08.00.15:261][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/COM_OBJ_TEMPLATES.LUA [2024.05.01-08.00.15:261][ 0]LogSkalla: Display: Nexus::CComObjMgr::TemplateAddComponent: WARNING: template "voxelTerrain" : component factory "CVoxelTerrain" not registered [2024.05.01-08.00.15:272][ 0]LogSkalla: Display: Nexus::XMLDB::CXMLDB::Init: 186 file(s) processed in 0.011 second(s) [2024.05.01-08.00.15:291][ 0]LogSkalla: Display: Nexus::CEngineCore::Init: using NULL input system [2024.05.01-08.00.15:337][ 0]LogSkalla: Display: Nexus::C_HWOcclVSDDeviceAdaptor::InitShaftGeomBuffers: ACMR before opt 1.361 [2024.05.01-08.00.15:337][ 0]LogSkalla: Display: Nexus::C_HWOcclVSDDeviceAdaptor::InitShaftGeomBuffers: ACMR after opt 0.750 [2024.05.01-08.00.15:343][ 0]LogSkalla: Display: Nexus::CMaterialDefMgr::InitMaterialsFromXMLDB: 174 material definition(s) initialized [2024.05.01-08.00.15:354][ 0]LogSkalla: Display: CSM s-quad : 252 verts, 440 tris [2024.05.01-08.00.15:354][ 0]LogSkalla: Display: Nexus::CRenderer::InitProjGridWaterQuad: proj-grid screen space mesh size 160 x 184 [2024.05.01-08.00.15:354][ 0]LogSkalla: Display: Nexus::CParticlesRenderer::Init: VBs 512 kB, IB 96 kB [2024.05.01-08.00.15:428][ 0]LogSkalla: Display: Nexus::CUIMaterialMgr::LoadMaterialDefXMLFile: processing "DATA\DEFS\UI\MATERIALS\UI_MATERIALS.XML" [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/AUTOEXEC.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/PATHS.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/CMD_ALIASES.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/SYS_UTILS.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_MESSAGES.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_UTILS.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SHADERS/CUSTOM_SHADER_RTECHS.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/DBG_UTILS.LUA [2024.05.01-08.00.15:429][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/RENDER_DBG_UTILS.LUA [2024.05.01-08.00.15:430][ 0]LogSkalla: Display: CWD: "E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Plugins/Externals/Skalla/Resources" [2024.05.01-08.00.15:430][ 0]LogSkalla: Display: Nexus::CImgSynthCache::CImgSynthCache: persistent data cache path: "E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Content/SKALLA/PrebuildWorldData/World/cache" [2024.05.01-08.00.15:430][ 0]LogSkalla: Display: Nexus::CImgSynthCache::InitInternal: 1024 MB in-memory cache size (storage at : "E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Content/SKALLA/PrebuildWorldData/World/cache") [2024.05.01-08.00.15:437][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/INPUT_ACTIONS.LUA [2024.05.01-08.00.15:438][ 0]LogSkalla: Display: Nexus::CRenderTargetsSet::Init: (1280,720) [2024.05.01-08.00.15:438][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/AUTOEXEC_EDITOR.LUA [2024.05.01-08.00.15:438][ 0]LogSkalla: Display: Registering pluging: CGaeaCore [2024.05.01-08.00.15:448][ 0]LogSkalla: Display: Registering pluging: CSkallaTerrainDesigner [2024.05.01-08.00.15:448][ 0]LogSkalla: Display: Nexus::CBaseTerrainGPUSynth::InitTextures: 233471 kB of memory occupied by 7 texture(s) [2024.05.01-08.00.15:448][ 0]LogSkalla: Display: Nexus::CBaseTerrainGPUSynth::Init: textures memory size 377 MB [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CEdCameraPlugin [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CTerrainEditPlugin [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CTerrainUtlPlugin [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CEntityEditor [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CRailsEditPlugin [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CSceneStateHoldFetch [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CKeyCommander [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CCurveEd [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CTestRailSys [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CGameEd [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CEdUIUtilsPlg [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CPhysicsUtilsPlg [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CSysUtilsPlg [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CEditorConsole [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CDetailObjectsMapEd [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CPropertyEd [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CDataEditPlg [2024.05.01-08.00.15:456][ 0]LogSkalla: Display: Registering pluging: CTestSoundPlg [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CScriptGUI [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CTransformPlugin [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CGameHostPlugin [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CStaticDecalsEd [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CEnvFXPlugin [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CCtxMenuPlugin [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CUndoPlugin [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CEditorSettings [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CMdlUtilsPlg [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CCollisionTesterPlg [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: CHotLoadsUtl [2024.05.01-08.00.15:457][ 0]LogSkalla: Display: Registering pluging: COnlineClient [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CSoundPlg [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CAOBakerPlg [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CCurveEditor2 [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CUsrDbgDrawPlg [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CInputDbgPlg [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CProcGenTest [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CEnvMapRenderPlugin [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CNoiseTexGenTool [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CGaeaTestsPlg [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Registering pluging: CAssetProcessingToolsPlg [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_TERRAIN.LUA [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_VOXEL_TERRAIN.LUA [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_WATER.LUA [2024.05.01-08.00.15:458][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_ATMOSPHERE.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_DEBUG_MENUS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_RENDER_MENUS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_SYS_MENUS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_UTILS_MENUS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_GAME.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_PHYS_TEST.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_DETAIL_OBJECTS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_RAILROADS_MENUS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_PHYSICS.LUA [2024.05.01-08.00.15:459][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SYS/EDITOR_ONLINE_MENUS.LUA [2024.05.01-08.00.15:460][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SKALLA_INPUT_ACTIONS.LUA [2024.05.01-08.00.15:460][ 0]LogSkalla: Display: Registered Gaia default input actions [2024.05.01-08.00.15:460][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SKALLA_LOAD_ICONS.LUA [2024.05.01-08.00.15:478][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: DATA/SCRIPTS/SKALLA_UTILS.LUA [2024.05.01-08.00.15:478][ 0]LogSkalla: Display: Init debug menus [2024.05.01-08.00.15:479][ 0]LogSkalla: Display: Nexus::CLuaScriptSys::ExecScript: USER/AUTOEXEC_EDITOR.LUA [2024.05.01-08.00.15:519][ 0]LogSkalla: Display: Nexus::CVirtualTex::Init: vtex page cache tex size 8192 x 4096 [2024.05.01-08.00.15:519][ 0]LogSkalla: Display: Nexus::CVirtualTex::Init: 258 MB used for aux textures, max vtex size 268435456 [2024.05.01-08.00.15:519][ 0]LogSkalla: Display: Nexus::CElevationDataDBView::Create: 524288 kB used for elevation data cache (510 max cached tiles) [2024.05.01-08.00.15:519][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::CreateSurfTexCache [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: CPU tex mem-pool max footprint: 839 MB [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 256, 263169 kB (TerrainHeight,WaterHeight) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 515x515, mips: 1, cnt: 256, 265225 kB (TerrainHeight,WaterHeight) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R8G8, size: 513x513, mips: 1, cnt: 384, 197376 kB (Normals,Biome) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_RG_U16, size: 517x517, mips: 1, cnt: 128, 133644 kB (SurfType) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: GPU tex mem-pool max footprint: 385 MB [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R8G8, size: 513x513, mips: 1, cnt: 256, 131584 kB (Normals,Biome) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 256, 263169 kB (TerrainHeight,WaterHeight) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::CreateSurfTexCacheFullRes [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: CPU tex mem-pool max footprint: 453 MB [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_BGRA8, size: 517x517, mips: 1, cnt: 256, 267289 kB (Albedo) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_DXT5, size: 512x512, mips: 1, cnt: 256, 65536 kB (ExternalMapAlbedo) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 128, 131584 kB (EditorOverlayMask) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: GPU tex mem-pool max footprint: 449 MB [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_BGRA8, size: 513x513, mips: 1, cnt: 256, 263169 kB (Albedo) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_DXT5, size: 512x512, mips: 1, cnt: 256, 65536 kB (ExternalMapAlbedo) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 128, 131584 kB (EditorOverlayMask) [2024.05.01-08.00.15:520][ 0]LogSkalla: Display: Nexus::CTerrainPage2::CTerrainPage2: elevationDataDBView: 65 tileSize, 6 qtree depth, 0 subdiv levels, 5.000000 cell size, 10240.000000 extents, 2049 grid size [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::UpdateVTexSize: terrain vtex size (4194304,4194304), 15 levels, 403.2000 pixels.m-1 [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::Init: terrain elevation grid spacing 5.000 m [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CSkallaTerrainDesigner::SetupTerrainObject: num dynamic subdivisions: 3, min elevations span: 0.061 [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CElevationDataDBView::Create: 524288 kB used for elevation data cache (510 max cached tiles) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::CreateSurfTexCache [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: CPU tex mem-pool max footprint: 839 MB [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 256, 263169 kB (TerrainHeight,WaterHeight) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 515x515, mips: 1, cnt: 256, 265225 kB (TerrainHeight,WaterHeight) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R8G8, size: 513x513, mips: 1, cnt: 384, 197376 kB (Normals,Biome) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_RG_U16, size: 517x517, mips: 1, cnt: 128, 133644 kB (SurfType) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: GPU tex mem-pool max footprint: 385 MB [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R8G8, size: 513x513, mips: 1, cnt: 256, 131584 kB (Normals,Biome) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 256, 263169 kB (TerrainHeight,WaterHeight) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by sys-mem texture pool [SurfTexCacheDefault] [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by gpu-mem texture pool [SurfTexCacheDefaultGPU] [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::Flush: 0 textures removed from cache [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheDefaultGPU: 0 kB used [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheDefault: 0 kB used [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::CreateSurfTexCacheFullRes [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: CPU tex mem-pool max footprint: 453 MB [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_BGRA8, size: 517x517, mips: 1, cnt: 256, 267289 kB (Albedo) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_DXT5, size: 512x512, mips: 1, cnt: 256, 65536 kB (ExternalMapAlbedo) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 128, 131584 kB (EditorOverlayMask) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: GPU tex mem-pool max footprint: 449 MB [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_BGRA8, size: 513x513, mips: 1, cnt: 256, 263169 kB (Albedo) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_DXT5, size: 512x512, mips: 1, cnt: 256, 65536 kB (ExternalMapAlbedo) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::Init: fmt: PIXELFORMAT_R_F32, size: 513x513, mips: 1, cnt: 128, 131584 kB (EditorOverlayMask) [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by sys-mem texture pool [SurfTexCacheFullRes] [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by gpu-mem texture pool [SurfTexCacheFullResGPU] [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::Flush: 0 textures removed from cache [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheFullResGPU: 0 kB used [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheFullRes: 0 kB used [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CElevationDataDBView::CTileCache::~CTileCache: max allocated recs 1 / 510 [2024.05.01-08.00.15:521][ 0]LogSkalla: Display: Nexus::CTerrainPage2::CTerrainPage2: elevationDataDBView: 65 tileSize, 14 qtree depth, 3 subdiv levels, 0.061035 cell size, 32000.000000 extents, 524289 grid size [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::UpdateVTexSize: terrain vtex size (8388608,8388608), 16 levels, 258.0480 pixels.m-1 [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainRenderViewBase::Init: terrain elevation grid spacing 0.061 m [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: DetailObjects layer: "Small objects", tile size: 125.000, qtree level 8 / 10, max instances per tile: 695556, elevations span: 0.244 [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: DetailObjects layer: "Medium objects", tile size: 500.000, qtree level 6 / 10, max instances per tile: 1000000, elevations span: 0.977 [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: DetailObjects layer: "Large objects", tile size: 1000.000, qtree level 5 / 10, max instances per tile: 111556, elevations span: 1.953 [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: DetailObjects layer: "Far objects", tile size: 2000.000, qtree level 4 / 10, max instances per tile: 40000, elevations span: 3.906 [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::FlushTextures: 0 textures removed from cache [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::Flush: Albedo (0 textures removed from cache(s)) [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::FlushTextures: 0 textures removed from cache [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::Flush: ExternalMapAlbedo (0 textures removed from cache(s)) [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::FlushTextures: 0 textures removed from cache [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::Flush: EditorOverlayMask (0 textures removed from cache(s)) [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::FlushTextures: 0 textures removed from cache [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::Flush: WaterHeight (0 textures removed from cache(s)) [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::FlushTextures: 0 textures removed from cache [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::Flush: SurfType (0 textures removed from cache(s)) [2024.05.01-08.00.15:523][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::FlushTextures: 0 textures removed from cache [2024.05.01-08.00.15:524][ 0]LogSkalla: Display: Nexus::CTerrainSurfTexCache::Flush: Biome (0 textures removed from cache(s)) [2024.05.01-08.00.15:536][ 0]LogSkalla: Display: Nexus::CAssetRegistry::S_PImpl::ScanDir: scanning "E:/SteamLibrary/steamapps/common/Gray Zone Warfare/GZW/Content/" [2024.05.01-08.00.15:538][ 0]LogSkalla: Display: Nexus::CAssetRegistry::S_PImpl::ScanDir: 0 file name rec(s) taking 0 kB [2024.05.01-08.00.15:596][ 0]LogInit: Display: Starting Game. [2024.05.01-08.00.15:596][ 0]LogNet: Browse: /Game/Maps/MainMenu/L_MainMenu?Name=Player [2024.05.01-08.00.15:596][ 0]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. [2024.05.01-08.00.15:596][ 0]LogLoadingScreen: GameState hasn't yet replicated (it's null) [2024.05.01-08.00.15:597][ 0]LogSkalla: Display: Nexus::CSkallaTerrainDesigner::UpdateAutosave: scene changed (file name "") [2024.05.01-08.00.15:600][ 0]LogSkalla: Display: Nexus::CNGraphBasedElevationMod::UpdateParams: needs update [2024.05.01-08.00.15:600][ 0]LogSkalla: Display: Nexus::CNGraphBasedElevationMod::UpdateParams: terrain biomes table content changed [2024.05.01-08.00.15:600][ 0]LogSkalla: Display: Nexus::CNGraphBasedElevationMod::UpdateParams: terrain textures table content changed [2024.05.01-08.00.15:600][ 0]LogSkalla: Display: Nexus::CNGraphBasedElevationMod::UpdateParams: terrain models table content changed [2024.05.01-08.00.15:600][ 0]LogSkalla: Display: Nexus::CNGraphBasedElevationMod::UpdateParams: terrain semantic layers changed [2024.05.01-08.00.15:600][ 0]LogRHI: ShaderPipelineCache: Batch mode changed (1): Size: 51 -> 50, Time: 16.000000 -> 16.000000 [2024.05.01-08.00.15:600][ 0]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. [2024.05.01-08.00.15:606][ 0]LogSkalla: Display: Nexus::CNGraphBasedElevationMod::UpdateParams: data updated, new version 1 [2024.05.01-08.00.15:608][ 0]LogSlate: Slate font cache was flushed [2024.05.01-08.00.15:608][ 0]LogLoadingScreen: Loading screen showing: 1. Reason: GameState hasn't yet replicated (it's null) [2024.05.01-08.00.15:609][ 0]LogLoad: LoadMap: /Game/Maps/MainMenu/L_MainMenu?Name=Player [2024.05.01-08.00.15:609][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_0 [2024.05.01-08.00.15:609][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2024.05.01-08.00.15:609][ 0]LogSkalla: FSKALLAModule::OnWorldCleanup 0000021F01E76E00 - no worldId associated with this world [2024.05.01-08.00.15:611][ 0]LogStreaming: Display: 0.009 ms for processing 264 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (4555->4555) packages and 184 (6515->6331) public exports. [2024.05.01-08.00.15:611][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. [2024.05.01-08.00.15:617][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms [2024.05.01-08.00.15:619][ 0]LogUIActionRouter: Cleaned out [0] inactive UI action bindings [2024.05.01-08.00.15:758][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'L_MainMenu'. [2024.05.01-08.00.15:758][ 0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created! [2024.05.01-08.00.15:758][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:0.016667 [2024.05.01-08.00.15:758][ 0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - GZW_usr begining compile. [2024.05.01-08.00.15:760][ 0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'GZW_usr' and enqueued 1084 tasks for precompile. (cache contains 1084, 1084 eligible, 0 had missing shaders. 0 already compiled). BatchSize 50 and BatchTime 16.000000. [2024.05.01-08.00.15:832][ 0]LogAIModule: Creating AISystem for world L_MainMenu [2024.05.01-08.00.15:999][ 0]LogLoad: Game class is 'B_GameMode_MainMenu_C' [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:023][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:024][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:025][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: [2024.05.01-08.00.16:027][ 0]LogWorld: Bringing World /Game/Maps/MainMenu/L_MainMenu.L_MainMenu up for play (max tick rate 0) at 2024.05.01-04.00.16 [2024.05.01-08.00.16:029][ 0]LogWorld: Bringing up level for play took: 0.029733 [2024.05.01-08.00.16:029][ 0]LogGame: Warning: User ID is not V2, MFGPlayerState_2147482329 [2024.05.01-08.00.16:029][ 0]LogGameUserSettings: Error: Cannot set Audio Output Device, failed to match device name to the System shareset. [2024.05.01-08.00.16:030][ 0]LogCoreGUI: [BP_UIPolicy_C_2147482445] is adding player [MFGLocalPlayer_2147482443]'s primary layout [BP_Frontend_C_2147482321] to the viewport [2024.05.01-08.00.16:031][ 0]LogGameGUI: UMFGFrontend::SetIsVendorUnlocked: LOCKED: UI.Menu.Entry.Traders.Artisan [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::SetIsVendorUnlocked: LOCKED: UI.Menu.Entry.Traders.Banshee [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::SetIsVendorUnlocked: LOCKED: UI.Menu.Entry.Traders.Gunny [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::SetIsVendorUnlocked: LOCKED: UI.Menu.Entry.Traders.Handshake [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::SetIsVendorUnlocked: LOCKED: UI.Menu.Entry.Traders.LabRat [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::SetIsVendorUnlocked: LOCKED: UI.Menu.Entry.Traders.Turncoat [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::RegisterUIStateChangedListener(MFGCharacterApparelDataProcessor_2147482302) [2024.05.01-08.00.16:032][ 0]LogGameMap: MapDataProcessor registered to SquadSubsystem as a GUI Listener [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::RegisterStaticDataProcessorTargetProviders() :: MFGVendorDataProcessorTargetProvider_2147482294 [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::RegisterStateWorkers() :: UI.State.MainMenu -> MFGFrontendState_MainMenu [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::RegisterStateWorkers() :: UI.State.MainMenu.NewChar -> MFGFrontendState_NewChar [2024.05.01-08.00.16:032][ 0]LogGameGUI: UMFGFrontend::RegisterStateWorkers() :: UI.State.Options -> MFGFrontendState_Options [2024.05.01-08.00.16:036][ 0]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Overlay, W_OverlayLayout_C_2147482290) [2024.05.01-08.00.16:059][ 0]LogGameUIScenery: UMFGWorldSubsystem_UISceneries::SpawnSceneryActor() :: Spawning scenery actor from class BP_3dBackground_Loader_C [2024.05.01-08.00.16:060][ 0]LogGameUIScenery: UMFGWorldSubsystem_UISceneries::SpawnSceneryActor() :: Scenery actor BP_3dBackground_Loader_C_2147482280 spawned [2024.05.01-08.00.16:060][ 0]LogGameGUI: UMFGFrontend::RegisterUIStateChangedListener(MFGGameHUD_2147482287) [2024.05.01-08.00.16:081][ 0]LogPersistence: Display: Initializing UMFGPlayerPersistenceComponent, userId: [2024.05.01-08.00.16:154][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481918(SK_Firearm_ColtM4A1_2147481917) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:167][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481854(SK_Firearm_ColtM4A1_2147481853) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:169][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481695(SK_Firearm_ColtM4A1_2147481694) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:171][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481631(SK_Firearm_ColtM4A1_2147481630) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:173][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481472(SK_Firearm_ColtM4A1_2147481471) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:175][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481408(SK_Firearm_ColtM4A1_2147481407) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:177][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481249(SK_Firearm_ColtM4A1_2147481248) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:178][ 0]LogItems: Warning: UMFGItemMeshComponent::CreateSpecialComponents MuzzleComponent was not found on MFGItemMeshComponent_2147481185(SK_Firearm_ColtM4A1_2147481184) for ROLE_Authority. Fallback to default (50,0,0) [2024.05.01-08.00.16:179][ 0]LogGame: B_GameState_MainMenu_C_2147482339::BeginPlay() [2024.05.01-08.00.16:179][ 0]LogGame: ================ GameState BeginPlay ================ [2024.05.01-08.00.16:179][ 0]LogLoad: Took 0.570178 seconds to LoadMap(/Game/Maps/MainMenu/L_MainMenu) [2024.05.01-08.00.17:455][ 0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1 [2024.05.01-08.00.17:455][ 0]LogMFGNetPrediction: Default__MFGCharacterPredictionSettings::DeferredInitialize() took 0.000000 seconds to load DataAssets [2024.05.01-08.00.17:455][ 0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0 [2024.05.01-08.00.17:455][ 0]LogRHI: Display: ShaderPipelineCache: Batching Resumed. [2024.05.01-08.00.17:464][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() [2024.05.01-08.00.17:464][ 0]LogLoad: (Engine Initialization) Total time: 13.37 seconds [2024.05.01-08.00.17:465][ 0]LogGameGUI: UMFGFrontend::RegisterUIStateChangedListener(B_GameFlow_MainMenu_C_2147481164) [2024.05.01-08.00.17:465][ 0]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Modal, W_Splash_Screen_C_2147481161) [2024.05.01-08.00.17:466][ 0]LogGameGUI: UMFGFrontend::PushWidget(UI.Overlay.Notification.VoIP, W_VoIPPanel_C) [2024.05.01-08.00.17:469][ 0]LogCoreUIResources: UI cached resources: 51 [2024.05.01-08.00.17:517][ 0]LogContentStreaming: Texture pool size now 1200 MB [2024.05.01-08.00.17:522][ 1]LogUIActionRouter: Display: Applying input config for leaf-most node [W_Splash_Screen_C_2147481161] [2024.05.01-08.00.17:522][ 1]LogUIActionRouter: Display: UIInputConfig being changed. bForceRefresh: 1 [2024.05.01-08.00.17:523][ 1]LogUIActionRouter: Display: InputMode: Previous (None), New (ECommonInputMode::Menu) [2024.05.01-08.00.17:523][ 1]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture [2024.05.01-08.00.17:523][ 1]LogViewport: Display: Viewport HideCursorDuringCapture Changed, False -> True [2024.05.01-08.00.17:523][ 1]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock [2024.05.01-08.00.17:523][ 1]LogViewport: Display: Player bShowMouseCursor Changed, False -> True [2024.05.01-08.00.17:523][ 1]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_Splash_Screen_C_2147481161], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.17:525][ 1]LogCoreItemRuntime: Warning: FMFGItemVisualsReplicatedMaterialOverrides::UpdateMesh::<lambda_1>::operator () Mesh was desroyed while waiting for the material [2024.05.01-08.00.17:525][ 1]LogCoreItemRuntime: Warning: FMFGItemVisualsReplicatedMaterialOverrides::UpdateMesh::<lambda_1>::operator () Mesh was desroyed while waiting for the material [2024.05.01-08.00.17:525][ 1]LogCoreItemRuntime: Warning: FMFGItemVisualsReplicatedMaterialOverrides::UpdateMesh::<lambda_1>::operator () Mesh was desroyed while waiting for the material [2024.05.01-08.00.17:525][ 1]LogCoreItemRuntime: Warning: FMFGItemVisualsReplicatedMaterialOverrides::UpdateMesh::<lambda_1>::operator () Mesh was desroyed while waiting for the material [2024.05.01-08.00.17:525][ 1]LogCoreItemRuntime: Warning: FMFGItemVisualsReplicatedMaterialOverrides::UpdateMesh::<lambda_1>::operator () Mesh was desroyed while waiting for the material [2024.05.01-08.00.17:526][ 1]LogViewport: Scene viewport resized to 1920x1080, mode Fullscreen. [2024.05.01-08.00.17:558][ 1]LogSkalla: Updated terrain textures table [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3300556913 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2096836983 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 158472296 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1824200069 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3529543158 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3943642983 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4179666636 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2189088541 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 61174020 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1966659127 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 997833537 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3602089452 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 713882330 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2197595535 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3613720070 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 806954436 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2066437039 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1077751320 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 554259522 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3632779981 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1780921721 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 7220898 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1712292106 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1263412221 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2789102537 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4149621685 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 315166081 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1764833543 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3188373219 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 561552822 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3345791633 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3143661947 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3106337137 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 582021727 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 767965247 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1721422210 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2172072623 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2580267501 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 921800655 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3251190002 [2024.05.01-08.00.17:582][ 1]LogRHI: Display: Encountered a new graphics PSO: 3820402456 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2273877190 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3770912177 [2024.05.01-08.00.17:582][ 1]LogRHI: Display: Encountered a new graphics PSO: 1111999533 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 798648156 [2024.05.01-08.00.17:582][ 1]LogRHI: Display: Encountered a new graphics PSO: 2458428745 [2024.05.01-08.00.17:582][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2544900903 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3948040183 [2024.05.01-08.00.17:583][ 1]LogRHI: Display: Encountered a new graphics PSO: 1809194856 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3160879922 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1027623682 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 552389954 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3494664788 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1421919308 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2715936517 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 53319646 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1632195992 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3172241277 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 625231445 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3560890637 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1016036211 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3442940582 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4000245742 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2745720187 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2395961342 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 125167947 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 902306764 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1461343992 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1274782226 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4132199486 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4038088812 [2024.05.01-08.00.17:583][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3897890317 [2024.05.01-08.00.17:645][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 869025634 [2024.05.01-08.00.17:645][ 1]LogRHI: Display: Encountered a new graphics PSO: 2507687428 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2412133072 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1609283085 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1519029837 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1954361417 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1631127407 [2024.05.01-08.00.17:665][ 1]LogRHI: Display: Encountered a new graphics PSO: 2386072169 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2102272760 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1346452042 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1816917391 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2393868678 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2582446689 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1933505314 [2024.05.01-08.00.17:665][ 1]LogRHI: Display: Encountered a new graphics PSO: 2083047151 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 182784269 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3123731568 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1181596795 [2024.05.01-08.00.17:665][ 1]LogRHI: Display: Encountered a new graphics PSO: 1993669690 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4074912220 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1434530409 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1012292767 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 850479213 [2024.05.01-08.00.17:665][ 1]LogRHI: Display: Encountered a new graphics PSO: 3841929782 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1533421211 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4278516053 [2024.05.01-08.00.17:665][ 1]LogRHI: Display: Encountered a new graphics PSO: 965298558 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2167673884 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 936685756 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1947414221 [2024.05.01-08.00.17:665][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4153011566 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 1598212589 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 4111491198 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 2937979988 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 2355219772 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 2334264919 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 107870549 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 1579077058 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 2887345613 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 3887359110 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 760077294 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 1249747434 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 1150989592 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 598396700 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 777785889 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 3523269132 [2024.05.01-08.00.17:670][ 1]LogRHI: Display: Encountered a new graphics PSO: 267382814 [2024.05.01-08.00.17:670][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2564262815 [2024.05.01-08.00.17:670][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 730808084 [2024.05.01-08.00.17:670][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1834282000 [2024.05.01-08.00.17:670][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3006170425 [2024.05.01-08.00.17:670][ 1]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1133619194 [2024.05.01-08.00.17:784][ 1]LogStreaming: Display: FlushAsyncLoading(1449): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.17:833][ 1]LogStreamlineRHI: SLisFeatureSupported(kFeatureDeepDVC) -> (31, Result::eErrorFeatureMissing) [2024.05.01-08.00.17:839][ 2]LogWorldStreaming: World Streaming Done, world: L_MainMenu, type: 1, netmode: 0 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1425854145 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2320626531 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1866598370 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2121809912 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2755801581 [2024.05.01-08.00.17:873][ 3]LogRHI: Display: Encountered a new graphics PSO: 878319339 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 547668288 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2012445959 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1755947131 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4005835216 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2131999978 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1577202546 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3706437599 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4052140346 [2024.05.01-08.00.17:873][ 3]LogRHI: Display: Encountered a new graphics PSO: 2661348478 [2024.05.01-08.00.17:873][ 3]LogRHI: Display: Encountered a new graphics PSO: 2316335421 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1719906834 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4265557399 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2389284327 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2166857850 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1952382906 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2088690787 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1971564884 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 475324322 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2070193574 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 313772880 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1303216363 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 786299439 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1877511560 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1284981984 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1756057315 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2081778003 [2024.05.01-08.00.17:873][ 3]LogRHI: Display: Encountered a new graphics PSO: 576113387 [2024.05.01-08.00.17:873][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1282830996 [2024.05.01-08.00.17:885][ 3]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 12.404979 [2024.05.01-08.00.17:886][ 3]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. [2024.05.01-08.00.17:887][ 3]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 12.452019 [2024.05.01-08.00.17:888][ 3]LogConfig: Applying CVar settings from Section [WaterQuality@1] File [Scalability] [2024.05.01-08.00.17:907][ 3]LogRHI: Display: Encountered a new graphics PSO: 3683332688 [2024.05.01-08.00.17:907][ 3]LogRHI: Display: Encountered a new graphics PSO: 2547539223 [2024.05.01-08.00.17:908][ 3]LogRHI: Display: Encountered a new graphics PSO: 4098610424 [2024.05.01-08.00.17:908][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 43922251 [2024.05.01-08.00.17:908][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2297801431 [2024.05.01-08.00.17:908][ 3]LogRHI: Display: Encountered a new graphics PSO: 4051040257 [2024.05.01-08.00.17:908][ 3]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1463264476 [2024.05.01-08.00.17:908][ 3]LogRHI: Display: Encountered a new graphics PSO: 2406367615 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1657586344 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 94149497 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2861856946 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4030360727 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3555144326 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2603964202 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1870838358 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3888053009 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 495554892 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3184096181 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 363432597 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3732855047 [2024.05.01-08.00.17:941][ 4]LogRHI: Display: Encountered a new graphics PSO: 341921735 [2024.05.01-08.00.17:941][ 4]LogRHI: Display: Encountered a new graphics PSO: 2982142471 [2024.05.01-08.00.17:941][ 4]LogRHI: Display: Encountered a new graphics PSO: 3318614843 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 612036125 [2024.05.01-08.00.17:941][ 4]LogRHI: Display: Encountered a new graphics PSO: 2388855408 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 594075671 [2024.05.01-08.00.17:941][ 4]LogRHI: Display: Encountered a new graphics PSO: 1714986728 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3243670154 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1523035501 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1001929263 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 453871736 [2024.05.01-08.00.17:941][ 4]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3387098204 [2024.05.01-08.00.17:941][ 4]LogRenderTargetPool: Warning: r.RenderTargetPoolMin exceeded 1007/400 MB (ok in editor, bad on fixed memory platform) [2024.05.01-08.00.18:007][ 5]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3586463779 [2024.05.01-08.00.18:007][ 5]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 936130458 [2024.05.01-08.00.18:007][ 5]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 907867892 [2024.05.01-08.00.18:007][ 5]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1467166440 [2024.05.01-08.00.18:007][ 5]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 683102487 [2024.05.01-08.00.18:050][ 6]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2683305743 [2024.05.01-08.00.18:050][ 6]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3544527781 [2024.05.01-08.00.18:050][ 6]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2046672056 [2024.05.01-08.00.18:050][ 6]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1860042547 [2024.05.01-08.00.18:050][ 6]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 708261120 [2024.05.01-08.00.18:050][ 6]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2204787644 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3662510577 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3094107004 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3917650872 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4139863513 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2769125105 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 372792851 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1780799345 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1778644685 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 366205676 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1976081677 [2024.05.01-08.00.18:095][ 7]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1169933801 [2024.05.01-08.00.18:095][ 7]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1724978200 [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1185337971 [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4179987976 [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 971460807 [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 727013406 [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 891520139 [2024.05.01-08.00.18:128][ 8]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2001305842 [2024.05.01-08.00.18:159][ 9]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3569589378 [2024.05.01-08.00.18:159][ 9]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 192830401 [2024.05.01-08.00.18:159][ 9]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1737601931 [2024.05.01-08.00.18:179][ 10]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 12.727057 [2024.05.01-08.00.18:180][ 10]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -350433057 [2024.05.01-08.00.18:180][ 10]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 12.727057, Update Interval: 333.615540 [2024.05.01-08.00.18:206][ 11]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3903135045 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1540123864 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2889468977 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1942044845 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1485181592 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 521159416 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3541449498 [2024.05.01-08.00.18:226][ 12]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 175576995 [2024.05.01-08.00.18:262][ 13]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4204542370 [2024.05.01-08.00.18:262][ 13]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 4109373314 [2024.05.01-08.00.18:294][ 15]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2755058660 [2024.05.01-08.00.18:294][ 15]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1485790899 [2024.05.01-08.00.18:294][ 15]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 80537743 [2024.05.01-08.00.18:294][ 15]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 2795395865 [2024.05.01-08.00.18:512][ 30]LogRHI: Warning: FShaderPipelineCache GZW_usr completed 1084 tasks in 0.19s (2.69s wall time since intial open). [2024.05.01-08.00.18:522][ 30]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - Finished, no jobs remaining. [2024.05.01-08.00.19:473][108]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. [2024.05.01-08.00.19:473][108]LogLoadingScreen: (nothing wants to show it anymore) [2024.05.01-08.00.19:473][108]LogLoadingScreen: Garbage Collecting before dropping load screen [2024.05.01-08.00.19:473][108]LogRHI: ShaderPipelineCache: Batch mode changed (0): Size: 72 -> 1, Time: 16.000000 -> 0.000000 [2024.05.01-08.00.19:473][108]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. [2024.05.01-08.00.19:473][108]LogLoadingScreen: LoadingScreen was visible for 3.88s [2024.05.01-08.00.19:475][108]LogStreaming: Display: 0.013 ms for processing 525 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 6 (6269->6263) packages and 107 (9106->8999) public exports. [2024.05.01-08.00.19:476][108]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms [2024.05.01-08.00.19:478][108]LogUIActionRouter: Cleaned out [0] inactive UI action bindings [2024.05.01-08.00.19:485][109]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Menu, W_GameLoading_Screen_C_2147481157) [2024.05.01-08.00.19:501][109]LogSlate: Took 0.014562 seconds to synchronously load lazily loaded font '../../../GZW/Content/UI/Fonts/F_Inter_Bold.ufont' (309K) [2024.05.01-08.00.19:502][110]LogUIActionRouter: Display: Applying input config for leaf-most node [W_GameLoading_Screen_C_2147481157] [2024.05.01-08.00.19:502][110]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_GameLoading_Screen_C_2147481157], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.21:006][237]LogEOSSDK: LogEOSMessaging: Attempting connection to Stomp. LocalUserId=[000...93f] Url=[<Redacted>] [2024.05.01-08.00.21:013][237]LogEOSSDK: LogEOSP2P: Requesting new TURN relay credentials for 000...93f. [2024.05.01-08.00.21:018][238]LogEOSSDK: Error: LogEOS: EOS_Auth_CopyUserAuthToken - One or more parameters are null [2024.05.01-08.00.21:018][238]LogOnlineServices: [FAuthOSSAdapter::Login][EOSPlus] Successfully logged in as [Steam:1 (tails [0x11000010A8E8102]_+_|00020f781be84f608621c43bcb37093f)] [2024.05.01-08.00.21:018][238]LogOnlineIdentity: STEAM: Obtained steam authticket [2024.05.01-08.00.21:121][239]LogOnlineServices: [UMFGAuthNakama::AuthenticateImpl] Authentication with steamToken=[1400000090DDAD66F0B2C05B02818E0A01001001B4D7316618000000010000000200000011722F14ADF7ED95AC35D0010E000000B2000000320000000400000002818E0A01001001C2D6250050441862B701A8C0000000009D9331661D434D660100459E0D000000000078FAAF9AE70E8DA0E1ED5AF0DDA0AEB5EB9C2C2F57DA0A09AEB54BE113A506EAA50086B2C783F9D3DE1C5DB891A4CC76758C691B2DE662F1FFD7545CD86D965E95AF83C3E9748F12945A2DD9AD4B85BC2C55189203D034EAF0B76520317322FCBDA39C32494773BF94BAC6738BD4D970D752963A2852850497D4876016612002] [2024.05.01-08.00.21:121][239]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/account/authenticate/steam?create=true&username=&sync=false with content: { "token": "1400000090DDAD66F0B2C05B02818E0A01001001B4D7316618000000010000000200000011722F14ADF7ED95AC35D0010E000000B2000000320000000400000002818E0A01001001C2D6250050441862B701A8C0000000009D9331661D434D660100459E0D000000000078FAAF9AE70E8DA0E1ED5AF0DDA0AEB5EB9C2C2F57DA0A09AEB54BE113A506EAA50086B2C783F9D3DE1C5DB891A4CC76758C691B2DE662F1FFD7545CD86D965E95AF83C3E9748F12945A2DD9AD4B85BC2C55189203D034EAF0B76520317322FCBDA39C32494773BF94BAC6738BD4D970D752963A2852850497D4876016612002" } [2024.05.01-08.00.21:267][251]LogEOSSDK: LogEOSMessaging: Successfully connected to Stomp. LocalUserId=[000...93f] [2024.05.01-08.00.21:461][267]LogOnlineServices: [FMFGAuthService::Login::<lambda_2>::()::<lambda_1>::operator ()] Authentication success with user: Tailshake [2024.05.01-08.00.21:622][280]LogNakamaUnreal: Display: Realtime Client Connected [2024.05.01-08.00.21:622][280]LogCoreUserRuntime: Player login Completed - System:4, Successful:0, NewId:GameDefined_0:1 (Nakama ID=[3ea6a681-f73c-4ad1-8b23-49e4f9275d07]), Status:3 [2024.05.01-08.00.21:622][280]LogCoreFrameworkRuntime: [AMFGBasePlayerState::SetUserID] role: ROLE_Authority, userId: 3ea6a681-f73c-4ad1-8b23-49e4f9275d07 [2024.05.01-08.00.21:633][280]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/account with content: [2024.05.01-08.00.21:646][282]LogNakamaUnreal: Display: Realtime Client - Received message: {"status_presence_event":{"joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","status":""}]}} [2024.05.01-08.00.21:646][282]LogNakamaUnreal: Display: Received message with no CID: {"status_presence_event":{"joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","status":""}]}} [2024.05.01-08.00.21:646][282]LogOnlineServices: Received status presence. Leaves-count = 0, Joins-count: 1 [2024.05.01-08.00.21:695][286]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_read with content: "{\r\n\t\"collection\": \"equips\",\r\n\t\"key\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\r\n\t\"userId\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\"\r\n}" [2024.05.01-08.00.21:780][293]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"collection\":\"equips\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"user_id\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"value\":\"{\\\"items\\\": \\\"[(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Shirts_Jackets/IS_PMC_Shirt_ClawgearCombatOperator_Coyote.IS_PMC_Shirt_ClawgearCombatOperator_Coyote\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Gloves/IS_PMC_Gloves_NonameTactical.IS_PMC_Gloves_NonameTactical\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Trousers/IS_PMC_Trousers_ClawgearRaiderMkIV_Coyote.IS_PMC_Trousers_ClawgearRaiderMkIV_Coyote\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Boots_Shoes/IS_PMC_Boots_AKUConeroGTX.IS_PMC_Boots_AKUConeroGTX\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Heads_Bodies/IS_PMC_Head_Caucasian02.IS_PMC_Head_Caucasian02\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/Hair/Hair_Asset10_PonytailMessy/IS_Hair_PonytailMessy_Black.IS_Hair_PonytailMessy_Black\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/Hair/Beard_Asset13_FullShort/IS_Beard_FullShort_Black.IS_Beard_FullShort_Black\\\\\\\"),(Setting=\\\\\\\"/Game/Items/Weapons/Melee/Melee_UsmcFightingKnife/IS_Melee_UsmcFightingKnife.IS_Melee_UsmcFightingKnife\\\\\\\"),(Setting=\\\\\\\"/Game/Items/Gear/SecureContainers/Pouch_R40PersonalUtilityRuckCase/IS_Pouch_R40PersonalUtilityRuckCase.IS_Pouch_R40PersonalUtilityRuckCase\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(sizeX=2,sizeY=2,items=[(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_IzhmashBakeliteAk47_30Rnd_762x39/IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39.IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",n=30),PosX=0,PosY=0),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_IzhmashBakeliteAk47_30Rnd_762x39/IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39.IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",n=30),PosX=1,PosY=0)])),(Setting=\\\\\\\"/Game/Items/Gear/Eyewear/Glasses_Wayfarer/IS_Glasses_Wayfarer.IS_Glasses_Wayfarer\\\\\\\"),(Setting=\\\\\\\"/Game/Items/Gear/ArmorPlateCarriers/Armor_ModularOperatorCarrierGenII/IS_Armor_ModularOperatorCarrierGenII.IS_Armor_ModularOperatorCarrierGenII\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(dur=81.4278,sizeX=4,sizeY=2,items=[(Setting=\\\\\\\"/Game/Items/Provisions/Meals/Prov_Food_PickledBambooShoots/IS_Prov_Food_PickledBambooShoots.IS_Prov_Food_PickledBambooShoots\\\\\\\",PosX=0,PosY=0)])),(Setting=\\\\\\\"/Game/Items/Gear/Backpacks/Backpack_ScorpionOcpConvoyPack/IS_Backpack_ScorpionOcpConvoyPack.IS_Backpack_ScorpionOcpConvoyPack\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(sizeX=4,sizeY=4,items=[(Setting=\\\\\\\"/Game/Items/Provisions/Drinks/Prov_Drink_Water1L/IS_Prov_Drink_Water1L.IS_Prov_Drink_Water1L\\\\\\\",PosX=0,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/IVs/Med_IV_BloodBag_Large/IS_Med_IV_BloodBag_Large.IS_Med_IV_BloodBag_Large\\\\\\\",PosX=0,PosY=2),(Setting=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",PosX=0,PosY=3),(Setting=\\\\\\\"/Game/Items/Provisions/Meals/Prov_Food_MRE/IS_Prov_Food_MRE.IS_Prov_Food_MRE\\\\\\\",PosX=1,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Bandages/Med_Band_CivilGauzeBandage/IS_Med_Band_CivilianGauze.IS_Med_Band_CivilianGauze\\\\\\\",PosX=1,PosY=3),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Bandages/Med_Band_EmergencyTraumaDressing/IS_Med_Band_EmergencyTraumaDressing.IS_Med_Band_EmergencyTraumaDressing\\\\\\\",PosX=2,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/SurgeryKits/Med_Surg_BasicSurgicalSutureKit/IS_Med_Surg_BasicSurgicalSutureKit.IS_Med_Surg_BasicSurgicalSutureKit\\\\\\\",PosX=2,PosY=1),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Splints/Med_Splint_FlexibleSplint/IS_Med_Splint_FlexibleSplint.IS_Med_Splint_FlexibleSplint\\\\\\\",PosX=2,PosY=2),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Tourniquets/Med_Tour_Cat/IS_Med_Tour_Cat.IS_Med_Tour_Cat\\\\\\\",PosX=3,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Pills/Med_Pills_Ibalin/IS_Med_Pills_Ibalin.IS_Med_Pills_Ibalin\\\\\\\",PosX=3,PosY=2),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_Glock17_17Rnd_9x19mm/IS_Mag_Glock17_17Rnd_9x19mm.IS_Mag_Glock17_17Rnd_9x19mm\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/9x19mm/Ammo_Fmj_9x19/IS_Ammo_Fmj_9x19.IS_Ammo_Fmj_9x19\\\\\\\",n=10),PosX=3,PosY=3)])),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Firearms/Firearm_Akm/IS_Firearm_Akm.IS_Firearm_Akm\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataFirearm\\\\\\\"(chamber=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\"),Children=[(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/GasBlocks/GasBlock_Akm6P1Sb12GasTube/IS_GasBlock_Akm6P1Sb12GasTube.IS_GasBlock_Akm6P1Sb12GasTube\\\\\\\",Children=[(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Handguards/Handguard_AkmWooden/IS_Handguard_AkmWooden.IS_Handguard_AkmWooden\\\\\\\",PSock=0)],PSock=0),(Setting=\\\\\\\"/Game/Items/WeaponParts/MuzzleDevices/MuzzleBrakes/Muzzle_AkmSlantBrake/IS_Muzzle_AkmSlantBrake.IS_Muzzle_AkmSlantBrake\\\\\\\",PSock=1),(Setting=\\\\\\\"/Game/Items/WeaponParts/Sights/IronSights/Sight_AkRearSight/IS_Sight_AkRearSight.IS_Sight_AkRearSight\\\\\\\",PSock=2),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_IzhmashBakeliteAk47_30Rnd_762x39/IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39.IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",n=16),PSock=3),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Stocks/Stock_Ak47AkmWooden/IS_Stock_Ak47AkmWooden.IS_Stock_Ak47AkmWooden\\\\\\\",PSock=4),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Receivers/Receiver_AkAkmDustCoverLate/IS_Receiver_AkAkmDustCoverLate.IS_Receiver_AkAkmDustCoverLate\\\\\\\",PSock=5),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/PistolGrips/PistolGrip_AkBakelite/IS_PistolGrip_AkBakelite.IS_PistolGrip_AkBakelite\\\\\\\",PSock=6)]),(Setting=\\\\\\\"/Game/Items/Gear/Belts/Belt_CondorTacticalBelt/IS_Belt_CondorTacticalBelt.IS_Belt_CondorTacticalBelt\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(sizeX=2,sizeY=1,items=[(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Pills/Med_Pills_Ibalin/IS_Med_Pills_Ibalin.IS_Med_Pills_Ibalin\\\\\\\",PosX=0,PosY=0)])),(Setting=\\\\\\\"/Game/Items/AccessItems/Keys/Key_KiuVongsa_UnlraOffice/IS_Key_KiuVongsa_UnlraOffice.IS_Key_KiuVongsa_UnlraOffice\\\\\\\")]\\\", \\\"version\\\": 2, \\\"revision\\\": 0}\",\"version\":\"1bafcdb81ca9a84465e1536ebea9ace8\",\"permission_read\":1,\"permission_write\":1,\"create_time\":{\"seconds\":1714540799},\"update_time\":{\"seconds\":1714548282}}"} [2024.05.01-08.00.21:781][293]LogStreaming: Display: FlushAsyncLoading(1450): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.21:796][293]LogUIActionRouter: Display: Applying input config for leaf-most node [W_GameLoading_Screen_C_2147481157] [2024.05.01-08.00.21:796][293]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_GameLoading_Screen_C_2147481157], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.21:796][293]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Menu, W_GameLoading_Screen_C_2147481157) [2024.05.01-08.00.21:796][293]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_read with content: "{\r\n\t\"collection\": \"equips\",\r\n\t\"key\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\r\n\t\"userId\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\"\r\n}" [2024.05.01-08.00.21:800][294]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3803774999 [2024.05.01-08.00.21:800][294]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 1215362706 [2024.05.01-08.00.21:800][294]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 705890993 [2024.05.01-08.00.21:800][294]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 644395345 [2024.05.01-08.00.21:818][295]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3859895334 [2024.05.01-08.00.21:818][295]LogRHI: Display: Encountered a new graphics PSO: 994023631 [2024.05.01-08.00.21:818][295]LogRHI: Display: Encountered a new graphics PSO: 4287941735 [2024.05.01-08.00.21:818][295]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3127019931 [2024.05.01-08.00.21:818][295]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 3908095628 [2024.05.01-08.00.21:818][295]LogRHI: Display: Encountered a new graphics PSO: 2521014929 [2024.05.01-08.00.21:818][295]LogRHI: Encountered a new graphics PSO for the file cache but it was already precached at runtime: 838733222 [2024.05.01-08.00.21:847][298]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"collection\":\"equips\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"user_id\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"value\":\"{\\\"items\\\": \\\"[(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Shirts_Jackets/IS_PMC_Shirt_ClawgearCombatOperator_Coyote.IS_PMC_Shirt_ClawgearCombatOperator_Coyote\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Gloves/IS_PMC_Gloves_NonameTactical.IS_PMC_Gloves_NonameTactical\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Trousers/IS_PMC_Trousers_ClawgearRaiderMkIV_Coyote.IS_PMC_Trousers_ClawgearRaiderMkIV_Coyote\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Gears/Boots_Shoes/IS_PMC_Boots_AKUConeroGTX.IS_PMC_Boots_AKUConeroGTX\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/PMC_Heads_Bodies/IS_PMC_Head_Caucasian02.IS_PMC_Head_Caucasian02\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/Hair/Hair_Asset10_PonytailMessy/IS_Hair_PonytailMessy_Black.IS_Hair_PonytailMessy_Black\\\\\\\"),(Setting=\\\\\\\"/Game/Characters/Hair/Beard_Asset13_FullShort/IS_Beard_FullShort_Black.IS_Beard_FullShort_Black\\\\\\\"),(Setting=\\\\\\\"/Game/Items/Weapons/Melee/Melee_UsmcFightingKnife/IS_Melee_UsmcFightingKnife.IS_Melee_UsmcFightingKnife\\\\\\\"),(Setting=\\\\\\\"/Game/Items/Gear/SecureContainers/Pouch_R40PersonalUtilityRuckCase/IS_Pouch_R40PersonalUtilityRuckCase.IS_Pouch_R40PersonalUtilityRuckCase\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(sizeX=2,sizeY=2,items=[(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_IzhmashBakeliteAk47_30Rnd_762x39/IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39.IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",n=30),PosX=0,PosY=0),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_IzhmashBakeliteAk47_30Rnd_762x39/IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39.IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",n=30),PosX=1,PosY=0)])),(Setting=\\\\\\\"/Game/Items/Gear/Eyewear/Glasses_Wayfarer/IS_Glasses_Wayfarer.IS_Glasses_Wayfarer\\\\\\\"),(Setting=\\\\\\\"/Game/Items/Gear/ArmorPlateCarriers/Armor_ModularOperatorCarrierGenII/IS_Armor_ModularOperatorCarrierGenII.IS_Armor_ModularOperatorCarrierGenII\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(dur=81.4278,sizeX=4,sizeY=2,items=[(Setting=\\\\\\\"/Game/Items/Provisions/Meals/Prov_Food_PickledBambooShoots/IS_Prov_Food_PickledBambooShoots.IS_Prov_Food_PickledBambooShoots\\\\\\\",PosX=0,PosY=0)])),(Setting=\\\\\\\"/Game/Items/Gear/Backpacks/Backpack_ScorpionOcpConvoyPack/IS_Backpack_ScorpionOcpConvoyPack.IS_Backpack_ScorpionOcpConvoyPack\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(sizeX=4,sizeY=4,items=[(Setting=\\\\\\\"/Game/Items/Provisions/Drinks/Prov_Drink_Water1L/IS_Prov_Drink_Water1L.IS_Prov_Drink_Water1L\\\\\\\",PosX=0,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/IVs/Med_IV_BloodBag_Large/IS_Med_IV_BloodBag_Large.IS_Med_IV_BloodBag_Large\\\\\\\",PosX=0,PosY=2),(Setting=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",PosX=0,PosY=3),(Setting=\\\\\\\"/Game/Items/Provisions/Meals/Prov_Food_MRE/IS_Prov_Food_MRE.IS_Prov_Food_MRE\\\\\\\",PosX=1,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Bandages/Med_Band_CivilGauzeBandage/IS_Med_Band_CivilianGauze.IS_Med_Band_CivilianGauze\\\\\\\",PosX=1,PosY=3),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Bandages/Med_Band_EmergencyTraumaDressing/IS_Med_Band_EmergencyTraumaDressing.IS_Med_Band_EmergencyTraumaDressing\\\\\\\",PosX=2,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/SurgeryKits/Med_Surg_BasicSurgicalSutureKit/IS_Med_Surg_BasicSurgicalSutureKit.IS_Med_Surg_BasicSurgicalSutureKit\\\\\\\",PosX=2,PosY=1),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Splints/Med_Splint_FlexibleSplint/IS_Med_Splint_FlexibleSplint.IS_Med_Splint_FlexibleSplint\\\\\\\",PosX=2,PosY=2),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Tourniquets/Med_Tour_Cat/IS_Med_Tour_Cat.IS_Med_Tour_Cat\\\\\\\",PosX=3,PosY=0),(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Pills/Med_Pills_Ibalin/IS_Med_Pills_Ibalin.IS_Med_Pills_Ibalin\\\\\\\",PosX=3,PosY=2),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_Glock17_17Rnd_9x19mm/IS_Mag_Glock17_17Rnd_9x19mm.IS_Mag_Glock17_17Rnd_9x19mm\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/9x19mm/Ammo_Fmj_9x19/IS_Ammo_Fmj_9x19.IS_Ammo_Fmj_9x19\\\\\\\",n=10),PosX=3,PosY=3)])),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Firearms/Firearm_Akm/IS_Firearm_Akm.IS_Firearm_Akm\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataFirearm\\\\\\\"(chamber=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\"),Children=[(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/GasBlocks/GasBlock_Akm6P1Sb12GasTube/IS_GasBlock_Akm6P1Sb12GasTube.IS_GasBlock_Akm6P1Sb12GasTube\\\\\\\",Children=[(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Handguards/Handguard_AkmWooden/IS_Handguard_AkmWooden.IS_Handguard_AkmWooden\\\\\\\",PSock=0)],PSock=0),(Setting=\\\\\\\"/Game/Items/WeaponParts/MuzzleDevices/MuzzleBrakes/Muzzle_AkmSlantBrake/IS_Muzzle_AkmSlantBrake.IS_Muzzle_AkmSlantBrake\\\\\\\",PSock=1),(Setting=\\\\\\\"/Game/Items/WeaponParts/Sights/IronSights/Sight_AkRearSight/IS_Sight_AkRearSight.IS_Sight_AkRearSight\\\\\\\",PSock=2),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Magazines/Mag_IzhmashBakeliteAk47_30Rnd_762x39/IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39.IS_Mag_IzhmashBakeliteAk47_30Rnd_762x39\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataMagazine\\\\\\\"(proj=\\\\\\\"/Game/Items/Ammunitions/762x39mm/Ammo_Sp_762x39/IS_Ammo_Sp_762x39.IS_Ammo_Sp_762x39\\\\\\\",n=16),PSock=3),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Stocks/Stock_Ak47AkmWooden/IS_Stock_Ak47AkmWooden.IS_Stock_Ak47AkmWooden\\\\\\\",PSock=4),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/Receivers/Receiver_AkAkmDustCoverLate/IS_Receiver_AkAkmDustCoverLate.IS_Receiver_AkAkmDustCoverLate\\\\\\\",PSock=5),(Setting=\\\\\\\"/Game/Items/WeaponParts/FunctionalParts/PistolGrips/PistolGrip_AkBakelite/IS_PistolGrip_AkBakelite.IS_PistolGrip_AkBakelite\\\\\\\",PSock=6)]),(Setting=\\\\\\\"/Game/Items/Gear/Belts/Belt_CondorTacticalBelt/IS_Belt_CondorTacticalBelt.IS_Belt_CondorTacticalBelt\\\\\\\",Data=\\\\\\\"/Script/MadfingerGame.MFGRealtimeDataContainer\\\\\\\"(sizeX=2,sizeY=1,items=[(Setting=\\\\\\\"/Game/Items/MedicalItems/Medicaments/Pills/Med_Pills_Ibalin/IS_Med_Pills_Ibalin.IS_Med_Pills_Ibalin\\\\\\\",PosX=0,PosY=0)])),(Setting=\\\\\\\"/Game/Items/AccessItems/Keys/Key_KiuVongsa_UnlraOffice/IS_Key_KiuVongsa_UnlraOffice.IS_Key_KiuVongsa_UnlraOffice\\\\\\\")]\\\", \\\"version\\\": 2, \\\"revision\\\": 0}\",\"version\":\"1bafcdb81ca9a84465e1536ebea9ace8\",\"permission_read\":1,\"permission_write\":1,\"create_time\":{\"seconds\":1714540799},\"update_time\":{\"seconds\":1714548282}}"} [2024.05.01-08.00.21:849][298]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/friend/steam?reset=false with content: { "token": "1400000090DDAD66F0B2C05B02818E0A01001001B4D7316618000000010000000200000011722F14ADF7ED95AC35D0010E000000B2000000320000000400000002818E0A01001001C2D6250050441862B701A8C0000000009D9331661D434D660100459E0D000000000078FAAF9AE70E8DA0E1ED5AF0DDA0AEB5EB9C2C2F57DA0A09AEB54BE113A506EAA50086B2C783F9D3DE1C5DB891A4CC76758C691B2DE662F1FFD7545CD86D965E95AF83C3E9748F12945A2DD9AD4B85BC2C55189203D034EAF0B76520317322FCBDA39C32494773BF94BAC6738BD4D970D752963A2852850497D4876016612002" } [2024.05.01-08.00.21:849][298]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "rpc": { "id": "get_region_data", "payload": "" }, "cid": "0" } [2024.05.01-08.00.21:849][298]LogNakamaUnreal: Display: Realtime Client - Request rpc sent with CID: 0 [2024.05.01-08.00.21:849][298]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_read with content: "{\r\n\t\"collection\": \"rewards\",\r\n\t\"key\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\r\n\t\"userId\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\"\r\n}" [2024.05.01-08.00.21:921][304]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"0","rpc":{"id":"get_region_data","payload":"{\"AnybrainGameKey\":\"e9c1a3a8-0341-4012-926e-0171134728e8\",\"AnybrainGameSecret\":\"HahUUU1eBlHRO62yf97iLRB2adRMlmcc\",\"OdinAccessKey\":\"AcIjhh+U/G52N21HcfpTh+8aBbqZHhJQ8xhogT0htVNh\",\"Pairs\":{\"Asia East\":\"https://asia-northeast.gateway.odin.4players.io\",\"Asia North East\":\"https://asia-northeast.gateway.odin.4players.io\",\"Asia South East\":\"https://asia-northeast.gateway.odin.4players.io\",\"Europe East\":\"https://gateway.odin.4players.io\",\"Europe West\":\"https://gateway.odin.4players.io\",\"Middle East\":\"https://gateway.odin.4players.io\",\"Oceania\":\"https://oceania.gateway.odin.4players.io\",\"South America\":\"https://southamerica.gateway.odin.4players.io\",\"US Central\":\"https://us-central.gateway.odin.4players.io\",\"US East\":\"https://us-east.gateway.odin.4players.io\",\"US West\":\"https://us-west.gateway.odin.4players.io\"}}"}} [2024.05.01-08.00.21:959][307]LogNakamaUnreal: Warning: Response (Code: 404) - Contents: {"code":5,"error":{"Message":"Empty read result","Code":5},"message":"Empty read result"} [2024.05.01-08.00.21:959][307]LogOnlineServices: Warning: [FMFGPlayerPersistenceService::NakamaLoadRPCRequest::<lambda_2>::operator ()] Failed RPC request, code: 5, message: Empty read result [2024.05.01-08.00.21:959][307]LogOnlineServices: Warning: [FMFGPlayerPersistenceService::LoadOnlineDataClient::<lambda_1>::()::<lambda_1>::operator ()] Failed to read data: empty_data_result [2024.05.01-08.00.21:959][307]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_read?http_key=xvt1ke4tP0ZiS1L3 with content: "{\r\n\t\"collection\": \"profiles\",\r\n\t\"key\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\r\n\t\"userId\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\"\r\n}" [2024.05.01-08.00.22:022][312]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"collection\":\"profiles\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"user_id\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"value\":\"{\\\"version\\\": 0, \\\"revision\\\": 0, \\\"vendorData\\\": [{\\\"eXP\\\": 0, \\\"level\\\": 0, \\\"vendor\\\": \\\"Vendor.Artisan\\\", \\\"moneySpent\\\": 0}, {\\\"eXP\\\": 0, \\\"level\\\": 0, \\\"vendor\\\": \\\"Vendor.Banshee\\\", \\\"moneySpent\\\": 0}, {\\\"eXP\\\": 0, \\\"level\\\": 1, \\\"vendor\\\": \\\"Vendor.Gunny\\\", \\\"moneySpent\\\": 0}, {\\\"eXP\\\": 0, \\\"level\\\": 1, \\\"vendor\\\": \\\"Vendor.Handshake\\\", \\\"moneySpent\\\": 0}, {\\\"eXP\\\": 0, \\\"level\\\": 1, \\\"vendor\\\": \\\"Vendor.LabRat\\\", \\\"moneySpent\\\": 0}, {\\\"eXP\\\": 0, \\\"level\\\": 0, \\\"vendor\\\": \\\"Vendor.Turncoat\\\", \\\"moneySpent\\\": 0}], \\\"exploredAreas\\\": []}\",\"version\":\"16259ee8c900fdb7c8dc92e94671d06b\",\"permission_read\":1,\"permission_write\":1,\"create_time\":{\"seconds\":1714540984},\"update_time\":{\"seconds\":1714540984}}"} [2024.05.01-08.00.22:022][312]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_read?http_key=xvt1ke4tP0ZiS1L3 with content: "{\r\n\t\"collection\": \"client-profiles\",\r\n\t\"key\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\r\n\t\"userId\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\"\r\n}" [2024.05.01-08.00.22:059][315]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"collection\":\"client-profiles\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"user_id\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"value\":\"{\\\"version\\\": 0, \\\"revision\\\": 0, \\\"seenquests\\\": [\\\"DA_Quest_LabRat_Quest_1C\\\", \\\"DA_Quest_Main_Quest_1C\\\"], \\\"worldftuecompleted\\\": true, \\\"mainmenuftuecompleted\\\": true}\",\"version\":\"1799b65d0566cf28e1e7dfb45f393781\",\"permission_read\":1,\"permission_write\":1,\"create_time\":{\"seconds\":1714541046},\"update_time\":{\"seconds\":1714546475}}"} [2024.05.01-08.00.22:059][315]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/notification?limit=100&cacheable_cursor= with content: [2024.05.01-08.00.22:060][315]LogProfile: [UMFGProfileClientSubsystem::UpdateStatus] Profile->UpdateStatus: 2, 0, [2024.05.01-08.00.22:060][315]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/profile_update_metadata_client with content: "{\"faction\":\"\",\"rank\":\"\",\"totalxp\":\"\",\"status\":\"MainMenu\",\"squad\":\"None\",\"matchid\":\"\",\"issupporter\":false}" [2024.05.01-08.00.22:060][315]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_read?http_key=xvt1ke4tP0ZiS1L3 with content: "{\r\n\t\"collection\": \"chat\",\r\n\t\"key\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\r\n\t\"userId\": \"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\"\r\n}" [2024.05.01-08.00.22:158][323]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"collection\":\"chat\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"user_id\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"value\":\"{\\\"isSquadPinned\\\": false, \\\"clientChannels\\\": [{\\\"iD\\\": \\\"46da7668-b313-42a8-b5fa-db212e8b1426\\\", \\\"type\\\": \\\"Private\\\", \\\"isPinned\\\": false}, {\\\"iD\\\": \\\"Vendor.Artisan\\\", \\\"type\\\": \\\"Vendor\\\", \\\"isPinned\\\": false}, {\\\"iD\\\": \\\"Vendor.Banshee\\\", \\\"type\\\": \\\"Vendor\\\", \\\"isPinned\\\": false}, {\\\"iD\\\": \\\"Vendor.Gunny\\\", \\\"type\\\": \\\"Vendor\\\", \\\"isPinned\\\": false}, {\\\"iD\\\": \\\"Vendor.Handshake\\\", \\\"type\\\": \\\"Vendor\\\", \\\"isPinned\\\": false}, {\\\"iD\\\": \\\"Vendor.LabRat\\\", \\\"type\\\": \\\"Vendor\\\", \\\"isPinned\\\": false}, {\\\"iD\\\": \\\"Vendor.Turncoat\\\", \\\"type\\\": \\\"Vendor\\\", \\\"isPinned\\\": false}], \\\"isGlobalPinned\\\": false, \\\"isInstancePinned\\\": false}\",\"version\":\"cfec9d3f983c3565acec7444bf1c3f85\",\"permission_read\":1,\"permission_write\":1,\"create_time\":{\"seconds\":1714540984},\"update_time\":{\"seconds\":1714548284}}"} [2024.05.01-08.00.22:158][323]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"Success\":0}"} [2024.05.01-08.00.22:158][323]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "46da7668-b313-42a8-b5fa-db212e8b1426", "type": 2, "persistence": true, "hidden": false }, "cid": "1" } [2024.05.01-08.00.22:158][323]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 1 [2024.05.01-08.00.22:182][325]LogNakamaUnreal: Display: Realtime Client - Received message: {"notifications":{"notifications":[{"id":"616ecf0f-0620-4620-9f9c-fdd020a32aac","subject":"Profile Metadata updated","content":"{\"faction\":\"Faction.Player.Gamma\",\"isSupporter\":false,\"matchId\":\"\",\"rank\":\"1\",\"squad\":\"NoSquad\",\"status\":\"MainMenu\",\"totalXP\":\"0\"}","code":30,"sender_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","create_time":"2024-05-01T08:00:21Z"}]}} [2024.05.01-08.00.22:183][325]LogNakamaUnreal: Display: Received message with no CID: {"notifications":{"notifications":[{"id":"616ecf0f-0620-4620-9f9c-fdd020a32aac","subject":"Profile Metadata updated","content":"{\"faction\":\"Faction.Player.Gamma\",\"isSupporter\":false,\"matchId\":\"\",\"rank\":\"1\",\"squad\":\"NoSquad\",\"status\":\"MainMenu\",\"totalXP\":\"0\"}","code":30,"sender_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","create_time":"2024-05-01T08:00:21Z"}]}} [2024.05.01-08.00.22:183][325]LogOnlineServices: Received notification. Count = 1, First: 616ecf0f-0620-4620-9f9c-fdd020a32aac [2024.05.01-08.00.22:183][325]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "status_update": { "status": "{\"faction\":\"Faction.Player.Gamma\",\"isSupporter\":false,\"matchId\":\"\",\"rank\":\"1\",\"squad\":\"NoSquad\",\"status\":\"MainMenu\",\"totalXP\":\"0\"}" }, "cid": "2" } [2024.05.01-08.00.22:183][325]LogNakamaUnreal: Display: Realtime Client - Request status_update sent with CID: 2 [2024.05.01-08.00.22:219][328]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"4.3ea6a681-f73c-4ad1-8b23-49e4f9275d07.46da7668-b313-42a8-b5fa-db212e8b1426.","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","persistence":true}]}} [2024.05.01-08.00.22:219][328]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"4.3ea6a681-f73c-4ad1-8b23-49e4f9275d07.46da7668-b313-42a8-b5fa-db212e8b1426.","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","persistence":true}]}} [2024.05.01-08.00.22:243][330]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/friend?limit=1000 with content: [2024.05.01-08.00.22:255][331]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"1","channel":{"id":"4.3ea6a681-f73c-4ad1-8b23-49e4f9275d07.46da7668-b313-42a8-b5fa-db212e8b1426.","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","persistence":true},"user_id_one":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","user_id_two":"46da7668-b313-42a8-b5fa-db212e8b1426"}} [2024.05.01-08.00.22:255][331]LogNakamaUnreal: Display: Making POST request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/rpc/storage_write_client with content: "{\"collections\":[{\"collection\":\"chat\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"userId\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"value\":\"{\\\"clientChannels\\\":[{\\\"iD\\\":\\\"46da7668-b313-42a8-b5fa-db212e8b1426\\\",\\\"type\\\":\\\"Private\\\",\\\"isPinned\\\":false}],\\\"isGlobalPinned\\\":false,\\\"isInstancePinned\\\":false,\\\"isSquadPinned\\\":false}\",\"version\":\"\",\"permissionRead\":\"NO_READ\",\"permissionWrite\":\"NO_WRITE\",\"createTime\":\"0001.01.01-00.00.00\",\"updateTime\":\"0001.01.01-00.00.00\"}]}" [2024.05.01-08.00.22:256][331]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "Vendor.Artisan3ea6a681-f73c-4ad1-8b23-49e4f9275d07", "type": 1, "persistence": false, "hidden": false }, "cid": "3" } [2024.05.01-08.00.22:256][331]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 3 [2024.05.01-08.00.22:281][333]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"2"} [2024.05.01-08.00.22:308][335]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "status_follow": { "user_ids": [ "7430ad8e-fc7d-438f-b90e-fbfbf31d73f9", "46da7668-b313-42a8-b5fa-db212e8b1426", "f5cdfd89-404b-476a-a342-4661247e3f89", "ff6accf6-9e1f-4617-965b-905b5463e2fd", "7c9f9530-684e-473e-889a-faa490239852", "81fafdbe-f6b6-4a8f-afaa-de3e82d8903f" ] }, "cid": "4" } [2024.05.01-08.00.22:308][335]LogNakamaUnreal: Display: Realtime Client - Request status_follow sent with CID: 4 [2024.05.01-08.00.22:320][336]LogNakamaUnreal: Display: Request Successful: {"payload":"{\"acks\":[{\"collection\":\"chat\",\"key\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"version\":\"a087b7573e583cbbeb8fc4826cd59aa5\",\"user_id\":\"3ea6a681-f73c-4ad1-8b23-49e4f9275d07\",\"create_time\":{\"seconds\":1714540984,\"nanos\":936062000},\"update_time\":{\"seconds\":1714550421,\"nanos\":450066000}}]}"} [2024.05.01-08.00.22:320][336]LogMessenger: [UMFGMessengerClientSubsystem::SaveCollection::<lambda_1>::operator ()]: Saving Chat Collection ok [2024.05.01-08.00.22:320][336]LogNakamaUnreal: Display: Realtime Client - Received message: {"status_presence_event":{"joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","status":"{\"faction\":\"Faction.Player.Gamma\",\"isSupporter\":false,\"matchId\":\"\",\"rank\":\"1\",\"squad\":\"NoSquad\",\"status\":\"MainMenu\",\"totalXP\":\"0\"}"}],"leaves":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","status":""}]}} [2024.05.01-08.00.22:320][336]LogNakamaUnreal: Display: Received message with no CID: {"status_presence_event":{"joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","status":"{\"faction\":\"Faction.Player.Gamma\",\"isSupporter\":false,\"matchId\":\"\",\"rank\":\"1\",\"squad\":\"NoSquad\",\"status\":\"MainMenu\",\"totalXP\":\"0\"}"}],"leaves":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake","status":""}]}} [2024.05.01-08.00.22:320][336]LogOnlineServices: Received status presence. Leaves-count = 1, Joins-count: 1 [2024.05.01-08.00.22:346][338]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"3","channel":{"id":"2...Vendor.Artisan3ea6a681-f73c-4ad1-8b23-49e4f9275d07","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"},"room_name":"Vendor.Artisan3ea6a681-f73c-4ad1-8b23-49e4f9275d07"}} [2024.05.01-08.00.22:346][338]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"2...Vendor.Artisan3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:346][338]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"2...Vendor.Artisan3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:346][338]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "Vendor.Banshee3ea6a681-f73c-4ad1-8b23-49e4f9275d07", "type": 1, "persistence": false, "hidden": false }, "cid": "5" } [2024.05.01-08.00.22:346][338]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 5 [2024.05.01-08.00.22:387][341]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"4","status":{}} [2024.05.01-08.00.22:414][343]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"5","channel":{"id":"2...Vendor.Banshee3ea6a681-f73c-4ad1-8b23-49e4f9275d07","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"},"room_name":"Vendor.Banshee3ea6a681-f73c-4ad1-8b23-49e4f9275d07"}} [2024.05.01-08.00.22:414][343]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"2...Vendor.Banshee3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:414][343]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"2...Vendor.Banshee3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:414][343]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "Vendor.Gunny3ea6a681-f73c-4ad1-8b23-49e4f9275d07", "type": 1, "persistence": false, "hidden": false }, "cid": "6" } [2024.05.01-08.00.22:414][343]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 6 [2024.05.01-08.00.22:482][348]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"6","channel":{"id":"2...Vendor.Gunny3ea6a681-f73c-4ad1-8b23-49e4f9275d07","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"},"room_name":"Vendor.Gunny3ea6a681-f73c-4ad1-8b23-49e4f9275d07"}} [2024.05.01-08.00.22:483][348]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "Vendor.Handshake3ea6a681-f73c-4ad1-8b23-49e4f9275d07", "type": 1, "persistence": false, "hidden": false }, "cid": "7" } [2024.05.01-08.00.22:483][348]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 7 [2024.05.01-08.00.22:524][351]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"2...Vendor.Gunny3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:525][351]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"2...Vendor.Gunny3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:625][358]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"7","channel":{"id":"2...Vendor.Handshake3ea6a681-f73c-4ad1-8b23-49e4f9275d07","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"},"room_name":"Vendor.Handshake3ea6a681-f73c-4ad1-8b23-49e4f9275d07"}} [2024.05.01-08.00.22:625][358]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "Vendor.LabRat3ea6a681-f73c-4ad1-8b23-49e4f9275d07", "type": 1, "persistence": false, "hidden": false }, "cid": "8" } [2024.05.01-08.00.22:625][358]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 8 [2024.05.01-08.00.22:653][360]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"2...Vendor.Handshake3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:653][360]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"2...Vendor.Handshake3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:681][362]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"8","channel":{"id":"2...Vendor.LabRat3ea6a681-f73c-4ad1-8b23-49e4f9275d07","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"},"room_name":"Vendor.LabRat3ea6a681-f73c-4ad1-8b23-49e4f9275d07"}} [2024.05.01-08.00.22:681][362]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "channel_join": { "target": "Vendor.Turncoat3ea6a681-f73c-4ad1-8b23-49e4f9275d07", "type": 1, "persistence": false, "hidden": false }, "cid": "9" } [2024.05.01-08.00.22:681][362]LogNakamaUnreal: Display: Realtime Client - Request channel_join sent with CID: 9 [2024.05.01-08.00.22:720][365]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"2...Vendor.LabRat3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:720][365]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"2...Vendor.LabRat3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:758][368]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"9","channel":{"id":"2...Vendor.Turncoat3ea6a681-f73c-4ad1-8b23-49e4f9275d07","self":{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"},"room_name":"Vendor.Turncoat3ea6a681-f73c-4ad1-8b23-49e4f9275d07"}} [2024.05.01-08.00.22:758][368]LogNakamaUnreal: Display: Realtime Client - Received message: {"channel_presence_event":{"channel_id":"2...Vendor.Turncoat3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:758][368]LogNakamaUnreal: Display: Received message with no CID: {"channel_presence_event":{"channel_id":"2...Vendor.Turncoat3ea6a681-f73c-4ad1-8b23-49e4f9275d07","joins":[{"user_id":"3ea6a681-f73c-4ad1-8b23-49e4f9275d07","session_id":"db4a30ea-0790-11ef-8cdf-8ea10f188463","username":"Tailshake"}]}} [2024.05.01-08.00.22:758][368]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/4.3ea6a681-f73c-4ad1-8b23-49e4f9275d07.46da7668-b313-42a8-b5fa-db212e8b1426.?limit=100&forward=true with content: [2024.05.01-08.00.22:820][373]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/2...Vendor.Artisan3ea6a681-f73c-4ad1-8b23-49e4f9275d07?limit=100&forward=true with content: [2024.05.01-08.00.22:891][379]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/2...Vendor.Banshee3ea6a681-f73c-4ad1-8b23-49e4f9275d07?limit=100&forward=true with content: [2024.05.01-08.00.22:965][385]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/2...Vendor.Gunny3ea6a681-f73c-4ad1-8b23-49e4f9275d07?limit=100&forward=true with content: [2024.05.01-08.00.23:028][390]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/2...Vendor.Handshake3ea6a681-f73c-4ad1-8b23-49e4f9275d07?limit=100&forward=true with content: [2024.05.01-08.00.23:193][394]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/2...Vendor.LabRat3ea6a681-f73c-4ad1-8b23-49e4f9275d07?limit=100&forward=true with content: [2024.05.01-08.00.23:274][400]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/channel/2...Vendor.Turncoat3ea6a681-f73c-4ad1-8b23-49e4f9275d07?limit=100&forward=true with content: [2024.05.01-08.00.24:194][465]LogMFGAnybrain: Anybrain SDK started for user 3ea6a681-f73c-4ad1-8b23-49e4f9275d07 [2024.05.01-08.00.24:760][465]LogMFGAnybrain: Pausing Anybrain SDK [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::SetState() :: PreviousState = None [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::DeduceDataProcessorTarget() :: static provider MFGVendorDataProcessorTargetProvider_2147482294 [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::SetDataProcessorTarget(None, UI.State.MainMenu) [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::SetState() :: CurrentState = UI.State.MainMenu [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::SetState() :: activating MFGFrontendState_MainMenu_2147482293 state worker [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Menu, S_MenuLayout_C_2147480830) [2024.05.01-08.00.24:763][465]LogStreaming: Display: FlushAsyncLoading(1472): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.24:763][465]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Full.MainMenu, W_HomePanel_C) [2024.05.01-08.00.24:765][465]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Top, W_PlayerInfoPanel_C) [2024.05.01-08.00.24:765][465]LogGameGUI: UMFGFrontend::RegisterUIStateChangedListener(EndExpeditionButton) [2024.05.01-08.00.24:766][465]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Actions, W_ActionsBar_C) [2024.05.01-08.00.24:767][465]LogSlate: Took 0.000642 seconds to synchronously load lazily loaded font '../../../GZW/Content/UI/Fonts/F_Inter_Regular.ufont' (303K) [2024.05.01-08.00.24:768][465]LogStreaming: Display: FlushAsyncLoading(1474): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.24:768][465]LogGameGUI: UMFGFrontend::RegisterMenuBarListener(PlayerInfoWidget) [2024.05.01-08.00.24:768][465]LogGameGUI: UMFGFrontend::RegisterTabBarListener(PlayerInfoWidget) [2024.05.01-08.00.24:770][466]LogNakamaUnreal: Display: Making GET request to https://gzw-prod.us-east1.nakamacloud.io:443/v2/user?ids=3ea6a681-f73c-4ad1-8b23-49e4f9275d07 with content: [2024.05.01-08.00.24:770][466]LogUIActionRouter: Display: Applying input config for leaf-most node [W_MainMenuBackgroundPanel] [2024.05.01-08.00.24:770][466]LogUIActionRouter: Display: UIInputConfig being changed. bForceRefresh: 0 [2024.05.01-08.00.24:770][466]LogUIActionRouter: Display: InputMode: Previous (ECommonInputMode::Menu), New (ECommonInputMode::Game) [2024.05.01-08.00.24:770][466]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_MainMenuBackgroundPanel], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.24:855][471]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "status_follow": { "user_ids": [ "3ea6a681-f73c-4ad1-8b23-49e4f9275d07" ] }, "cid": "1" } [2024.05.01-08.00.24:855][471]LogNakamaUnreal: Display: Realtime Client - Request status_follow sent with CID: 1 [2024.05.01-08.00.24:930][475]LogNakamaUnreal: Display: Realtime Client - Received message: {"cid":"1","status":{}} [2024.05.01-08.00.26:959][641]LogStreaming: Display: FlushAsyncLoading(1475,1476): 2 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::SetState() :: PreviousState = UI.State.MainMenu [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::DeduceDataProcessorTarget() :: static provider MFGVendorDataProcessorTargetProvider_2147482294 [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::SetDataProcessorTarget(None, UI.State.Options) [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::SetState() :: CurrentState = UI.State.Options [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::SetState() :: deactivating MFGFrontendState_MainMenu_2147482293 state worker [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::HandleWidgetRemovingFromLayer(S_MenuLayout_C_2147480830) [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Full.MainMenu) [2024.05.01-08.00.27:243][665]LogUIActionRouter: Display: Applying input config for leaf-most node [PlayerInfoWidget] [2024.05.01-08.00.27:243][665]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [PlayerInfoWidget], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Top) [2024.05.01-08.00.27:243][665]LogUIActionRouter: Display: Applying input config for leaf-most node [S_MenuLayout_C_2147480830] [2024.05.01-08.00.27:243][665]LogUIActionRouter: Display: [User 0] Focused desired target S_MenuLayout_C_2147480830 [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Actions) [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::HandleWidgetRemovedFromLayer(S_MenuLayout_C_2147480830) [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::SetState() :: activating MFGFrontendState_Options_2147482291 state worker [2024.05.01-08.00.27:243][665]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Menu, S_OptionsLayout_C_2147480774) [2024.05.01-08.00.27:243][665]LogStreaming: Display: FlushAsyncLoading(1477): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.27:244][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Menu, W_OptionsMenuBar_C) [2024.05.01-08.00.27:244][665]LogStringTable: Warning: Failed to find string table entry for '/Game/UI/Screens/Options/ST_Options.ST_Options' 'UI.Menu.Options.Entry'. Did you forget to add a string table redirector? [2024.05.01-08.00.27:244][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Left, W_GameOptionsPanel_C) [2024.05.01-08.00.27:245][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Right, W_Preview_Panel_C) [2024.05.01-08.00.27:245][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Bottom, W_Options_ConfirmationPanel_C) [2024.05.01-08.00.27:245][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Full, W_Empty_Panel_C) [2024.05.01-08.00.27:245][665]LogGameGUI: UMFGFrontend::HandleMenuPanelEntrySelected(UI.Menu.Options.Entry.Game) [2024.05.01-08.00.27:245][665]LogGameGUI: UMFGFrontend::DeduceDataProcessorTarget() :: static provider MFGVendorDataProcessorTargetProvider_2147482294 [2024.05.01-08.00.27:245][665]LogGameGUI: UMFGFrontend::SetDataProcessorTarget(None, UI.State.Options, UI.Menu.Options.Entry.Game) [2024.05.01-08.00.27:268][665]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Actions, W_ActionsBar_C) [2024.05.01-08.00.27:270][665]LogGameGUI: UMFGFrontend::RegisterFrontendActionListener(W_GameOptionsPanel_C_2147480751) [2024.05.01-08.00.27:270][665]LogGameGUI: UMFGFrontend::RegisterMenuBarListener(W_GameOptionsPanel_C_2147480751) [2024.05.01-08.00.27:270][666]LogUIActionRouter: Display: Applying input config for leaf-most node [W_Options_ConfirmationPanel_C_2147480746] [2024.05.01-08.00.27:270][666]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_Options_ConfirmationPanel_C_2147480746] - setting focus directly to the widget as a last resort. [2024.05.01-08.00.27:270][666]LogGameGUI: UMFGFrontend::UnregisterMenuBarListener(PlayerInfoWidget) [2024.05.01-08.00.27:270][666]LogGameGUI: UMFGFrontend::UnregisterTabBarListener(PlayerInfoWidget) [2024.05.01-08.00.27:270][666]LogGameGUI: UMFGFrontend::UnregisterUIStateChangedListener(EndExpeditionButton) [2024.05.01-08.00.33:212][163]LogGameGUI: UMFGFrontend::HandleMenuPanelEntrySelected(UI.Menu.Options.Entry.Graphics) [2024.05.01-08.00.33:212][163]LogGameGUI: UMFGFrontend::DeduceDataProcessorTarget() :: static provider MFGVendorDataProcessorTargetProvider_2147482294 [2024.05.01-08.00.33:212][163]LogGameGUI: UMFGFrontend::SetDataProcessorTarget(None, UI.State.Options, UI.Menu.Options.Entry.Graphics) [2024.05.01-08.00.33:212][163]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Left, W_GraphicsOptionsPanel_C) [2024.05.01-08.00.33:212][163]LogGameGUI: UMFGFrontend::UnregisterFrontendActionListener(W_GameOptionsPanel_C_2147480751) [2024.05.01-08.00.33:212][163]LogGameGUI: UMFGFrontend::UnregisterMenuBarListener(W_GameOptionsPanel_C_2147480751) [2024.05.01-08.00.33:212][163]LogUIActionRouter: Warning: LeafmostActiveNode not updated. [2024.05.01-08.00.33:212][163]LogStreaming: Display: FlushAsyncLoading(1475,1479): 1 QueuedPackages, 0 AsyncPackages [2024.05.01-08.00.33:214][163]LogGameGUI: UMFGFrontend::RegisterFrontendActionListener(W_GraphicsOptionsPanel_C_2147480307) [2024.05.01-08.00.33:214][163]LogGameGUI: UMFGFrontend::RegisterMenuBarListener(W_GraphicsOptionsPanel_C_2147480307) [2024.05.01-08.00.33:214][164]LogUIActionRouter: Display: Applying input config for leaf-most node [W_GraphicsOptionsPanel_C_2147480307] [2024.05.01-08.00.33:214][164]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_GraphicsOptionsPanel_C_2147480307], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.33:277][165]LogConsoleManager: Warning: Setting the console variable 'r.ScreenPercentage' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '58.8257' [2024.05.01-08.00.33:277][165]LogConfig: Applying CVar settings from Section [WaterQuality@1] File [Scalability] [2024.05.01-08.00.33:429][179]LogConsoleManager: Warning: Setting the console variable 'r.ScreenPercentage' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '58.8257' [2024.05.01-08.00.33:429][179]LogConfig: Applying CVar settings from Section [WaterQuality@1] File [Scalability] [2024.05.01-08.00.47:784][374]LogCoreUIResources: UI cached resources: 50 [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::DeduceDataProcessorTarget() :: static provider MFGVendorDataProcessorTargetProvider_2147482294 [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::SetDataProcessorTarget(None, UI.Menu.Options.Entry.Graphics, UI.State.MainMenu) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::SetState() :: CurrentState = UI.State.MainMenu [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::SetState() :: deactivating MFGFrontendState_Options_2147482291 state worker [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::HandleWidgetRemovingFromLayer(S_OptionsLayout_C_2147480774) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Left) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::UnregisterFrontendActionListener(W_GraphicsOptionsPanel_C_2147480307) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::UnregisterMenuBarListener(W_GraphicsOptionsPanel_C_2147480307) [2024.05.01-08.00.47:796][375]LogUIActionRouter: Display: Applying input config for leaf-most node [W_Options_ConfirmationPanel_C_2147480746] [2024.05.01-08.00.47:796][375]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_Options_ConfirmationPanel_C_2147480746] - setting focus directly to the widget as a last resort. [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Right) [2024.05.01-08.00.47:796][375]LogUIActionRouter: Warning: LeafmostActiveNode not updated. [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Bottom) [2024.05.01-08.00.47:796][375]LogUIActionRouter: Display: Applying input config for leaf-most node [W_Empty_Panel_C_2147480734] [2024.05.01-08.00.47:796][375]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_Empty_Panel_C_2147480734], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Options.Full) [2024.05.01-08.00.47:796][375]LogUIActionRouter: Display: Applying input config for leaf-most node [S_OptionsLayout_C_2147480774] [2024.05.01-08.00.47:796][375]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [S_OptionsLayout_C_2147480774] - setting focus directly to the widget as a last resort. [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Actions) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::HandleWidgetRemovedFromLayer(S_OptionsLayout_C_2147480774) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Menu) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::SetState() :: activating MFGFrontendState_MainMenu_2147482293 state worker [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::HandleWidgetAddedToLayer(UI.Layer.Menu, S_MenuLayout_C_2147480830) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Full.MainMenu, W_HomePanel_C) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Top, W_PlayerInfoPanel_C) [2024.05.01-08.00.47:796][375]LogGameGUI: UMFGFrontend::RegisterUIStateChangedListener(EndExpeditionButton) [2024.05.01-08.00.47:797][375]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Actions, W_ActionsBar_C) [2024.05.01-08.00.47:799][375]LogGameGUI: UMFGFrontend::RegisterMenuBarListener(PlayerInfoWidget) [2024.05.01-08.00.47:799][375]LogGameGUI: UMFGFrontend::RegisterTabBarListener(PlayerInfoWidget) [2024.05.01-08.00.47:800][376]LogUIActionRouter: Display: Applying input config for leaf-most node [W_MainMenuBackgroundPanel] [2024.05.01-08.00.47:800][376]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_MainMenuBackgroundPanel], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.52:848][794]LogGameGUI: UMFGFrontend::UnregisterDataProcessorTargetProvider(MFGGameUISystem_2147482446) [2024.05.01-08.00.52:848][794]LogGameGUI: UMFGFrontend::RegisterDataProcessorTargetProvider(MFGGameUISystem_2147482446) [2024.05.01-08.00.52:850][795]LogUIActionRouter: Display: Applying input config for leaf-most node [W_ConfirmPopup_C_2147479970] [2024.05.01-08.00.52:850][795]LogUIActionRouter: Display: UIInputConfig being changed. bForceRefresh: 0 [2024.05.01-08.00.52:850][795]LogUIActionRouter: Display: InputMode: Previous (ECommonInputMode::Game), New (ECommonInputMode::Menu) [2024.05.01-08.00.52:850][795]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_ConfirmPopup_C_2147479970] - setting focus directly to the widget as a last resort. [2024.05.01-08.00.53:909][882]LogUIActionRouter: Display: Applying input config for leaf-most node [W_MainMenuBackgroundPanel] [2024.05.01-08.00.53:909][882]LogUIActionRouter: Display: UIInputConfig being changed. bForceRefresh: 0 [2024.05.01-08.00.53:909][882]LogUIActionRouter: Display: InputMode: Previous (ECommonInputMode::Menu), New (ECommonInputMode::Game) [2024.05.01-08.00.53:909][882]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_MainMenuBackgroundPanel], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.56:129][ 65]LogGameGUI: UMFGFrontend::UnregisterDataProcessorTargetProvider(MFGGameUISystem_2147482446) [2024.05.01-08.00.56:129][ 65]LogGameGUI: UMFGFrontend::RegisterDataProcessorTargetProvider(MFGGameUISystem_2147482446) [2024.05.01-08.00.56:131][ 66]LogUIActionRouter: Display: Applying input config for leaf-most node [W_ConfirmPopup_C_2147479958] [2024.05.01-08.00.56:131][ 66]LogUIActionRouter: Display: UIInputConfig being changed. bForceRefresh: 0 [2024.05.01-08.00.56:131][ 66]LogUIActionRouter: Display: InputMode: Previous (ECommonInputMode::Game), New (ECommonInputMode::Menu) [2024.05.01-08.00.56:131][ 66]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_ConfirmPopup_C_2147479958] - setting focus directly to the widget as a last resort. [2024.05.01-08.00.56:924][130]Closing by request [2024.05.01-08.00.56:924][130]LogWindows: FPlatformMisc::RequestExit(0, UGameEngine::HandleExitCommand) [2024.05.01-08.00.56:924][130]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0, UGameEngine::HandleExitCommand) [2024.05.01-08.00.56:924][130]LogCore: Engine exit requested (reason: Win RequestExit) [2024.05.01-08.00.56:925][131]LogUIActionRouter: Display: Applying input config for leaf-most node [W_MainMenuBackgroundPanel] [2024.05.01-08.00.56:925][131]LogUIActionRouter: Display: UIInputConfig being changed. bForceRefresh: 0 [2024.05.01-08.00.56:925][131]LogUIActionRouter: Display: InputMode: Previous (ECommonInputMode::Menu), New (ECommonInputMode::Game) [2024.05.01-08.00.56:925][131]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [W_MainMenuBackgroundPanel], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.56:925][131]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) [2024.05.01-08.00.56:925][131]LogInit: Display: PreExit Game. [2024.05.01-08.00.56:926][131]LogWorld: BeginTearingDown for /Game/Maps/MainMenu/L_MainMenu [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::HandleWidgetRemovingFromLayer(S_MenuLayout_C_2147480830) [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Full.MainMenu) [2024.05.01-08.00.56:926][131]LogUIActionRouter: Display: Applying input config for leaf-most node [PlayerInfoWidget] [2024.05.01-08.00.56:926][131]LogUIActionRouter: Display: [User 0] No focus target for leaf-most node [PlayerInfoWidget], and the widget isn't focusable - focusing the game viewport. [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Panel.Top) [2024.05.01-08.00.56:926][131]LogUIActionRouter: Display: Applying input config for leaf-most node [S_MenuLayout_C_2147480830] [2024.05.01-08.00.56:926][131]LogUIActionRouter: Display: [User 0] Focused desired target S_MenuLayout_C_2147480830 [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::PushWidget(UI.Menu.Layout.Bar.Actions) [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::HandleWidgetRemovedFromLayer(S_MenuLayout_C_2147480830) [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::UnregisterUIStateChangedListener(MFGCharacterApparelDataProcessor_2147482302) [2024.05.01-08.00.56:926][131]LogGameMap: MapDataProcessor unregistered from SquadSubsystem as a GUI Listener [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::UnregisterMenuBarListener(PlayerInfoWidget) [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::UnregisterTabBarListener(PlayerInfoWidget) [2024.05.01-08.00.56:926][131]LogGameGUI: UMFGFrontend::UnregisterUIStateChangedListener(EndExpeditionButton) [2024.05.01-08.00.56:927][131]LogGameGUI: UMFGFrontend::RegisterUIStateChangedListener(MFGGameHUD_2147482287) [2024.05.01-08.00.56:927][131]LogPersistence: Display: Deinitializing UMFGPlayerPersistenceComponent, userId:3ea6a681-f73c-4ad1-8b23-49e4f9275d07 [2024.05.01-08.00.56:927][131]LogGame: B_GameState_MainMenu_C_2147482339::EndPlay(EEndPlayReason::Quit) [2024.05.01-08.00.56:927][131]LogMFGAnybrain: Stopping Anybrain SDK [2024.05.01-08.00.57:790][131]LogCoreFrameworkRuntime: RemoveLocalPlayer: Unsetting Primary Player from MFGLocalPlayer_2147482443 [2024.05.01-08.00.57:790][131]LogNakamaUnreal: Display: Realtime Client: Sent Message: { "status_update": { "status": "{\r\n\t\"faction\": \"\",\r\n\t\"rank\": \"\",\r\n\t\"totalXP\": \"\",\r\n\t\"status\": \"Offline\",\r\n\t\"squad\": \"NoSquad\",\r\n\t\"matchId\": \"\",\r\n\t\"isSupporter\": false\r\n}" }, "cid": "2" } [2024.05.01-08.00.57:790][131]LogNakamaUnreal: Display: Realtime Client - Request status_update sent with CID: 2 [2024.05.01-08.00.57:790][131]LogChartCreation: Stopped creating FPS charts at 16969654.411502 seconds [2024.05.01-08.00.57:790][131]LogWorld: UWorld::CleanupWorld for L_MainMenu, bSessionEnded=true, bCleanupResources=true [2024.05.01-08.00.57:790][131]LogSkalla: FSKALLAModule::OnWorldCleanup 0000021F0FC452A0 - no worldId associated with this world [2024.05.01-08.00.57:793][131]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2024.05.01-08.00.57:793][131]LogGameUIScenery: UMFGWorldSubsystem_UISceneries::DespawnSceneryActorAndReset() :: Releasing scenery actor BP_3dBackground_Loader_C_2147482280 [2024.05.01-08.00.58:286][131]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... [2024.05.01-08.00.58:287][131]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... [2024.05.01-08.00.58:287][131]LogAudio: Display: Audio Device unregistered from world 'L_MainMenu'. [2024.05.01-08.00.58:287][131]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1 [2024.05.01-08.00.58:287][131]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 [2024.05.01-08.00.58:287][131]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 [2024.05.01-08.00.58:289][131]LogAudio: Display: Audio Device Manager Shutdown [2024.05.01-08.00.58:289][131]LogStreamline: Unregistering of OnPreResizeWindowBackBuffer callback during FSlateApplication::OnPreShutdown [2024.05.01-08.00.58:289][131]LogStreamline: Unregistering of OnSlateWindowDestroyed callback during FSlateApplication::OnPreShutdown [2024.05.01-08.00.58:289][131]LogSlate: Request Window 'GZW ' being destroyed [2024.05.01-08.00.58:289][131]LogSlate: Window 'GZW ' being destroyed [2024.05.01-08.00.58:391][131]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard). [2024.05.01-08.00.58:401][131]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 [2024.05.01-08.00.58:401][131]LogExit: Preparing to exit. [2024.05.01-08.00.58:410][131]LogMoviePlayer: Shutting down movie player [2024.05.01-08.00.58:423][131]LogSkalla: ASkallaTestActor#0: BeginDestroy: freeing local wind 4294967295 [2024.05.01-08.00.58:430][131]LogOnlineServices: Warning: [FMFGProfileService::UpdateStatusFireAndForget::<lambda_2>::operator ()] Failed updating status: [2024.05.01-08.00.58:430][131]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2024.05.01-08.00.58:446][131]LogExit: Game engine shut down [2024.05.01-08.00.58:448][131]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled [2024.05.01-08.00.58:471][131]LogSkalla: ASKALLACollisionActor#0::~ASKALLACollisionActor 0000021EE22999A0 [2024.05.01-08.00.58:471][131]LogSkalla: ASKALLAGenericObjectsActor#0::~ASKALLAGenericObjectsActor 0000021EA3F45800 [2024.05.01-08.00.58:471][131]LogSkalla: USKALLALocalWindComponent::destr 0000021EA3B50100 [2024.05.01-08.00.58:471][131]LogSkalla: USKALLAObstacleComponent::destr 0000021EA3F54240 [2024.05.01-08.00.58:471][131]LogSkalla: ASkallaTestActor#0: destroyed at 0000021EE22995B0 [2024.05.01-08.00.58:476][131]LogSkalla: USKALLALocalWindComponent::destr 0000021EA458DF00 [2024.05.01-08.00.58:491][131]LogExit: Object subsystem successfully closed. [2024.05.01-08.00.58:505][131]LogRHI: FPipelineFileCacheManager Incremental saved 1127 total, 43 new, 0 removed, 0 cons .upipelinecache (took 2.76ms): C:/Users/Tailshake/AppData/Local/GZW/Saved/GZW_PCD3D_SM6.upipelinecache. [2024.05.01-08.00.58:519][131]LogModuleManager: Shutting down and abandoning module WebSockets (620) [2024.05.01-08.00.58:549][131]LogModuleManager: Shutting down and abandoning module AIModule (618) [2024.05.01-08.00.58:549][131]LogModuleManager: Shutting down and abandoning module NavigationSystem (617) [2024.05.01-08.00.58:549][131]LogModuleManager: Shutting down and abandoning module XeSSBlueprint (614) [2024.05.01-08.00.58:549][131]LogModuleManager: Shutting down and abandoning module XeSSPlugin (612) [2024.05.01-08.00.58:549][131]LogXeSS: XeSS plugin shut down [2024.05.01-08.00.58:566][131]LogXeSSRHI: Removed Intel XeSS effect [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module StreamlineBlueprint (610) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module StreamlineCore (608) [2024.05.01-08.00.58:566][131]LogStreamline: FStreamlineCoreModule::ShutdownModule Enter [2024.05.01-08.00.58:566][131]LogStreamline: UnregisterStreamlineReflexHooks Enter [2024.05.01-08.00.58:566][131]LogStreamline: UnregisterStreamlineReflexHooks Leave [2024.05.01-08.00.58:566][131]LogStreamline: FStreamlineCoreModule::ShutdownModule Leave [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module NGXVulkanRHI (606) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module NGXD3D11RHI (604) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module DLSS (602) [2024.05.01-08.00.58:566][131]LogDLSS: FDLSSModule::ShutdownModule Enter [2024.05.01-08.00.58:566][131]LogDLSSNGXD3D12RHI: FNGXD3D12RHI::~FNGXD3D12RHI Enter [2024.05.01-08.00.58:566][131]LogDLSSNGXRHI: NGXRHI::ReleaseAllocatedFeatures Enter [2024.05.01-08.00.58:566][131]LogDLSSNGXRHI: NGXRHI::ReleaseAllocatedFeatures Leave [2024.05.01-08.00.58:566][131]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_DestroyParameters -> (1 NVSDK_NGX_Result_Success) [2024.05.01-08.00.58:566][131]LogDLSSNGXD3D12RHI: FNGXD3D12RHI::~FNGXD3D12RHI Leave [2024.05.01-08.00.58:566][131]LogDLSSNGXRHI: NGXRHI::~NGXRHI Enter [2024.05.01-08.00.58:566][131]LogDLSSNGXRHI: NGXRHI::~NGXRHI Leave [2024.05.01-08.00.58:566][131]LogDLSS: FDLSSModule::ShutdownModule Leave [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module NGXD3D12RHI (601) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module NGXRHI (600) [2024.05.01-08.00.58:566][131]LogDLSSNGXRHI: FNGXRHIModule::ShutdownModule Enter [2024.05.01-08.00.58:566][131]LogDLSSNGXRHI: FNGXRHIModule::ShutdownModule Leave [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (596) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (594) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module FractureEngine (592) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module CharacterAI (590) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module SessionServices (588) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (586) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MovieScene (584) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (582) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (580) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (578) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module AudioMixer (577) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module AudioMixerCore (576) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (572) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module TypedElementFramework (570) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module HTN (568) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module AICoverSystem (566) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MadfingerTechArtToolsRuntime (564) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MadfingerPrefabRuntime (562) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MadfingerGameUtilsRuntime (560) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MadfingerGameTransportationRuntime (558) [2024.05.01-08.00.58:566][131]LogModuleManager: Shutting down and abandoning module MadfingerGamePropsRuntime (556) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameMineFieldRuntime (554) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameMaterialManagerRuntime (552) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameLootSystemRuntime (550) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameHealthSystemRuntime (548) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameFactionsRuntime (546) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameExplosionManagerRuntime (544) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameExplorationRuntime (542) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameCharacterSpawnRuntime (540) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameCharacterPredictionRuntime (538) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameBallisticsRuntime (536) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameBallisticsContactsRuntime (534) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameAIRuntime (532) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerDevelopmentRuntime (530) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreRuntime (528) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreVOIPRuntime (526) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreUserRuntime (524) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreTickRuntime (522) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreTeamsRuntime (520) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreSettingsRuntime (518) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreSessionRuntime (516) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreQuestsRuntime (514) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCorePerformanceRuntime (512) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreOnlineRuntime (510) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreModdingRuntime (508) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreMessagingRuntime (506) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreItemRuntime (504) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreInteractionsRuntime (502) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreInputRuntime (500) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreGUIRuntime (498) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreFrameworkRuntime (496) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreErrorRuntime (494) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreCameraRuntime (492) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreCSVRuntime (490) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreAutomatedTests (488) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreAudioRuntime (486) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreAnticheatRuntime (484) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreAbilitiesRuntime (482) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreA2SRuntime (480) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AnimNode (478) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module NakamaBlueprints (476) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module NakamaUnreal (474) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GameSettings (472) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CommonLoadingScreen (470) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogDebug (468) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogCommon (466) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogEngine (464) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogWindow (462) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogImGui (460) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogInput (458) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogAbility (456) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CogAI (454) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module NetworkPrediction (452) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module TakeMovieScene (450) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module TraceUtilities (448) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ResonanceAudio (446) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module HairStrandsRuntime (444) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module DynamicMesh (442) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (440) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (438) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GeometryCache (436) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CommonInput (434) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module CommonUI (432) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AudioWidgets (430) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (429) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AudioCapture (426) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AudioCaptureWasapi (425) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AssetTags (422) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (420) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module EOSVoiceChat (418) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module TemplateSequence (412) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module SequencerScripting (410) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (408) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (406) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (404) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (402) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MediaPlate (400) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MediaCompositing (398) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ImgMedia (396) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (394) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (392) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module InterchangeExport (390) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module InterchangeMessages (388) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GLTFCore (386) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module Text3D (384) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module StructUtilsEngine (382) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module LocalizableMessageBlueprint (380) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module LocalizableMessage (378) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module Landmass (376) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (374) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (372) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module DataflowNodes (370) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (368) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ControlFlows (366) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (364) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ChaosNiagara (362) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AutomationUtils (360) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (358) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MultiUserClientLibrary (356) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (354) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module BlueprintFileUtils (352) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ControlRigSpline (350) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AnimationWarpingRuntime (348) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AnimationLocomotionLibraryRuntime (346) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameTradingGUI (344) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGamePlayerGUI (342) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameOptionsGUI (340) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameMap (338) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameQuickAccessGUI (336) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameQuestsGUI (334) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameSquadGUI (332) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameFriendsGUI (330) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameMessengerGUI (328) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameNewCharGUI (326) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameLootGUI (324) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameItemGUI (322) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameHealthGUI (320) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGameGUI (318) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MadfingerGame (316) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module NakamaCore (314) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GenericGraphRuntime (312) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module AnimationBudgetAllocator (310) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module Synthesis (308) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module StateTreeModule (306) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module SoundFields (304) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module SignificanceManager (302) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module RigVM (300) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (298) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MsQuicRuntime (296) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (294) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (292) [2024.05.01-08.00.58:567][131]LogModuleManager: Shutting down and abandoning module GameplayStateTreeModule (290) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module GameplayAbilities (288) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module SQLiteCore (286) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module DataRegistry (284) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (282) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module CableComponent (280) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (278) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (277) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (274) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AudioModulation (272) [2024.05.01-08.00.58:568][131]LogAudioModulation: Audio Modulation Shutdown [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module MetasoundEngine (271) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module WaveTable (270) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (268) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (266) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (264) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (262) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (260) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module ActorSequence (256) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module TcpMessaging (254) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (252) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module InterchangePipelines (250) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module InterchangeImport (248) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (246) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module InterchangeNodes (244) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (242) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module Niagara (240) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module SignalProcessing (239) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module NiagaraCore (236) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module StructUtils (234) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module ModularGameplay (232) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module PBIK (230) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module FullBodyIK (228) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module EnhancedInput (226) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module FacialAnimation (224) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AnimationSharing (222) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module GameplayCameras (220) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module IKRig (218) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module OptimusCore (216) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module ControlRig (214) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module Constraints (213) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module LevelSequence (211) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module MFGTAAssetUserDataEditor (208) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module Wwise (206) [2024.05.01-08.00.58:568][131]LogModuleManager: Shutting down and abandoning module AkAudio (205) [2024.05.01-08.00.58:581][131]LogAkAudio: Audiokinetic Audio Device terminated. [2024.05.01-08.00.58:581][131]LogModuleManager: Shutting down and abandoning module WwiseConcurrency (204) [2024.05.01-08.00.58:581][131]LogWwiseConcurrency: Display: Shutting down default Concurrency. [2024.05.01-08.00.58:581][131]LogModuleManager: Shutting down and abandoning module WwiseProcessing (202) [2024.05.01-08.00.58:581][131]LogWwiseProcessing: Display: Shutting down default Processing. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:581][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogModuleManager: Shutting down and abandoning module WwiseFileHandler (200) [2024.05.01-08.00.58:582][131]LogWwiseFileHandler: Display: Shutting down SoundBank Manager. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogWwiseFileHandler: Display: Shutting down External Source Manager. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogWwiseFileHandler: Display: Shutting down Media Manager. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogWwiseFileHandler: Display: Shutting down File Cache. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogModuleManager: Shutting down and abandoning module WwiseResourceLoader (198) [2024.05.01-08.00.58:582][131]LogWwiseResourceLoader: Display: Shutting down default Resource Loader. [2024.05.01-08.00.58:582][131]LogLoad: Skipping reloading missing WwiseConcurrency module: Exiting. [2024.05.01-08.00.58:582][131]LogModuleManager: Shutting down and abandoning module WwiseSoundEngine (196) [2024.05.01-08.00.58:582][131]LogWwiseSoundEngine: Unloading Wwise Sound Engine [2024.05.01-08.00.58:582][131]LogModuleManager: Shutting down and abandoning module CommonStartupLoadingScreen (192) [2024.05.01-08.00.58:582][131]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (190) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (188) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module PacketHandler (186) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (184) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module MediaAssets (182) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module Overlay (180) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module UMG (178) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module Slate (176) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module SlateCore (174) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module MRMesh (172) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module Messaging (170) [2024.05.01-08.00.58:585][131]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (168) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module Networking (166) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module Core (164) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (162) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module Media (160) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module TelemetryUtils (157) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module StreamlineRHI (154) [2024.05.01-08.00.58:586][131]LogStreamlineRHI: FStreamlineRHIModule::ShutdownModule Enter [2024.05.01-08.00.58:586][131]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::~FStreamlineD3D12RHI Enter [2024.05.01-08.00.58:586][131]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::~FStreamlineD3D12RHI Leave [2024.05.01-08.00.58:586][131]LogStreamlineRHI: FStreamlineRHI::~FStreamlineRHI Enter [2024.05.01-08.00.58:586][131]LogStreamlineRHI: FStreamlineRHI::~FStreamlineRHI Leave [2024.05.01-08.00.58:586][131]LogStreamlineRHI: FStreamlineRHIModule::ShutdownModule Leave [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module StreamlineD3D12RHI (153) [2024.05.01-08.00.58:586][131]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::ShutdownModule Enter [2024.05.01-08.00.58:586][131]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::ShutdownModule Leave [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module FFXD3D12Backend (150) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module ImageWrapper (148) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module InputCore (146) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (144) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (143) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module Chaos (140) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module GeometryCore (139) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (136) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (135) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module AVEncoder (134) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreShadersRuntime (130) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module XeSSPrePass (128) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module StreamlineShaders (126) [2024.05.01-08.00.58:586][131]LogModuleManager: Shutting down and abandoning module Skalla (124) [2024.05.01-08.00.58:586][131]LogSkalla: FSKALLAModule::ShutdownModule - waiting for async tasks [2024.05.01-08.00.58:586][131]LogSkalla: FSKALLAModule::ShutdownModule - cleaning mesh collider cache [2024.05.01-08.00.58:586][131]LogSkalla: FSKALLAModule::ShutdownModule - cleaning cached assets (cnt = 0) [2024.05.01-08.00.58:586][131]LogSkalla: FSKALLAModule::ShutdownModule - cleaning world cached data (cnt = 0) [2024.05.01-08.00.58:586][131]LogSkalla: FSKALLAModule::ShutdownModule - ReleaseSkallaModule [2024.05.01-08.00.58:586][131]LogSkalla: SKALLA: release module(s) [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainRenderViewBase::~CTerrainRenderViewBase: max allocated VBs 66 kB / 262144 kB [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainRenderViewBase::~CTerrainRenderViewBase: max allocated IBs 96 kB / 78125 kB [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by sys-mem texture pool [SurfTexCacheFullRes] [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by gpu-mem texture pool [SurfTexCacheFullResGPU] [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::Flush: 0 textures removed from cache [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheFullResGPU: 0 kB used [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheFullRes: 0 kB used [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by sys-mem texture pool [SurfTexCacheDefault] [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainSurfTexCache::S_PImpl::~S_PImpl: 0 MB used by gpu-mem texture pool [SurfTexCacheDefaultGPU] [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainSurfTexCache::CTexCache::Flush: 0 textures removed from cache [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheDefaultGPU: 0 kB used [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CDelayedAllocTexturePool::~CDelayedAllocTexturePool: SurfTexCacheDefault: 0 kB used [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CTerrainTileMatChunksCache::~CTerrainTileMatChunksCache: 0 allocated indices, 0 allocated verts, 0 cache recs [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CElevationDataDBView::CTileCache::~CTileCache: max allocated recs 1 / 510 [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CDLAFractalGen::S_PImpl::~S_PImpl: AttractorMask size 2 kB [2024.05.01-08.00.58:638][131]LogSkalla: Display: Nexus::CDLAFractalGen::S_PImpl::~S_PImpl: BlockersMask size 2 kB [2024.05.01-08.00.58:639][131]LogSkalla: Display: Nexus::CRenderCtx::CFrameDataAllocator::~CFrameDataAllocator: max allocated mem size = 0 kB [2024.05.01-08.00.58:639][131]LogSkalla: Display: Nexus::CRenderCtx::CFrameDataHeapAllocator::~CFrameDataHeapAllocator: max allocated mem size = 0 kB [2024.05.01-08.00.58:639][131]LogSkalla: Display: Shutting down engine core ... [2024.05.01-08.00.58:643][131]LogSkalla: Display: Nexus::CInMemImgSynthCache::~CInMemImgSynthCache: peak allocated mem size: 0 kB [2024.05.01-08.00.58:643][131]LogSkalla: Display: Nexus::CPersistentDataCache::CDataCache::Flush [2024.05.01-08.00.58:741][131]LogSkalla: Display: --------- Renderer shutdown --------- [2024.05.01-08.00.58:741][131]LogSkalla: Display: VDeclCache: 0 item(s) [2024.05.01-08.00.58:741][131]LogSkalla: Display: Nexus::CCBCache::~CCBCache: total size of allocated CBs: 240 kB [2024.05.01-08.00.58:745][131]LogSkalla: Display: Nexus::CJobMgr::~CJobMgr: shutting down ... [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module Odin (122) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXFrameInterpolation (120) [2024.05.01-08.00.59:700][131]LogFFXFI: FFX Frame Interpolation Module Shutdown [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXFSR3TemporalUpscaling (118) [2024.05.01-08.00.59:700][131]LogFSR3: FSR3 Temporal Upscaling Module Shutdown [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXD3D12 (116) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXRHIBackend (114) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXFrameInterpolationApi (112) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXOpticalFlowApi (110) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXFSR3Api (108) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module FFXShared (106) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module NGXVulkanRHIPreInit (104) [2024.05.01-08.00.59:700][131]LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::ShutdownModule Enter [2024.05.01-08.00.59:700][131]LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::ShutdownModule Leave [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module D3D12RHI (103) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module DLSSBlueprint (100) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module DLSSUtility (98) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (96) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module HairStrandsCore (94) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module ComputeFramework (92) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module ChunkDownloader (90) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (88) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module SocketSubsystemEOS (86) [2024.05.01-08.00.59:700][131]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (84) [2024.05.01-08.00.59:700][131]LogOnline: Display: STEAM: OnlineSubsystemSteam::Shutdown() [2024.05.01-08.00.59:700][131]LogOnline: STEAM: AUTH: Revoking all tickets. [2024.05.01-08.00.59:700][131]LogSteamShared: Unloading the Steam API... [2024.05.01-08.00.59:702][131]LogOnline: Display: STEAM: OnlineSubsystemSteam::Shutdown() [2024.05.01-08.00.59:702][131]LogModuleManager: Shutting down and abandoning module SteamShared (79) [2024.05.01-08.00.59:702][131]LogSteamShared: Freeing the Steam Loaded Modules... [2024.05.01-08.00.59:702][131]LogModuleManager: Shutting down and abandoning module HTTP (73) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module SSL (72) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (68) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (66) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (64) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module OnlineServicesOSSAdapter (62) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module OnlineServicesNull (60) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (59) [2024.05.01-08.00.59:705][131]LogModuleManager: Shutting down and abandoning module EOSShared (56) [2024.05.01-08.00.59:706][131]LogEOSSDK: LogEOSRTC: LibRTCCore: Shutting down LibRTC... [2024.05.01-08.01.00:109][131]LogEOSSDK: FEOSSDKManager::Shutdown EOS_Shutdown Result=[EOS_Success] [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (54) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (52) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module NiagaraShader (50) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module VirtualHeightfieldMesh (48) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module VariantManagerContent (46) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module OpenColorIO (44) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module OptimusSettings (42) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module ACLPlugin (40) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module AISupportModule (38) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreCrashpadRuntime (36) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module MadfingerCoreCrashReportingRuntime (34) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module FFXFSR3Settings (32) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (30) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (28) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (26) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module IoStoreOnDemand (24) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module RenderCore (22) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module Landscape (20) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (18) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (16) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module Renderer (14) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module Engine (12) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module CoreUObject (10) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module SandboxFile (8) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module PlatformCrypto (6) [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module PakFile (4) [2024.05.01-08.01.00:109][131]LogPakFile: Destroying PakPlatformFile [2024.05.01-08.01.00:109][131]LogModuleManager: Shutting down and abandoning module RSA (3) [2024.05.01-08.01.00:323][131]LogD3D12RHI: ~FD3D12DynamicRHI [2024.05.01-08.01.00:346][131]LogExit: Exiting. [2024.05.01-08.01.00:352][131]Log file closed, 05/01/24 04:01:00
Comments
[ #1 ] 7 months ago by
You must be a member of this project to comment.