log_file - Log File
Filename: log_file
Size: 400 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
Log file open, 11/11/25 05:45:09 LogWindows: Enabling Tpause support LogWindows: Custom abort handler registered for crash reporting. LogPakFile: Initializing PakPlatformFile LogPakFile: Display: Found Pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak attempting to mount. LogPakFile: Display: Mounting pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak. LogPakFile: Display: Mounted Pak file '../../../RogueCore/Content/Paks/RogueCore-Windows.pak', mount point: '../../../' LogAssetRegistry: Premade AssetRegistry loaded from '../../../RogueCore/AssetRegistry.bin' LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' LogInit: Session CrashGUID >==================================================== Session CrashGUID > UECC-Windows-085529A54FCBDEF686CF4FA6E9404103 Session CrashGUID >==================================================== LogConfig: No local boot hotfix file found at: [C:/Users/Administrator/AppData/Local/RogueCore/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] LogAudio: Display: Pre-Initializing Audio Device Manager... LogAudio: Display: AudioInfo: 'OPUS' Registered LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. LogAudio: Display: AudioInfo: 'OGG' Registered LogAudio: Display: AudioInfo: 'ADPCM' Registered LogAudio: Display: AudioInfo: 'PCM' Registered LogAudio: Display: AudioInfo: 'BINKA' Registered LogAudio: Display: AudioInfo: 'RADA' Registered LogAudio: Display: Audio Device Manager Pre-Initialized LogPluginManager: Mounting Project plugin DiscordSDK_Win64 LogPluginManager: Mounting Project plugin FSR3 LogPluginManager: Mounting Project plugin BasicUI LogPluginManager: Mounting Project plugin BugReporter LogPluginManager: Mounting Project plugin DiscordSDK LogPluginManager: Mounting Project plugin AnimationPreviewTool LogPluginManager: Mounting Project plugin EditorBase LogPluginManager: Mounting Project plugin UpgradeEditor LogPluginManager: Mounting Project plugin VertexColorBaker LogPluginManager: Mounting Project plugin FSDRawInput LogPluginManager: Mounting Project plugin FSDTests LogPluginManager: Mounting Project plugin GameLauncher LogPluginManager: Mounting Project plugin DLSSMoviePipelineSupport LogPluginManager: Mounting Project plugin DLSS LogPluginManager: Mounting Project plugin NIS LogPluginManager: Mounting Project plugin StreamlineCore LogPluginManager: Mounting Project plugin StreamlineDLSSG LogPluginManager: Mounting Project plugin StreamlineDeepDVC LogPluginManager: Mounting Project plugin StreamlineReflex LogPluginManager: Mounting Project plugin Streamline LogPluginManager: Mounting Project plugin PS5_Mock LogPluginManager: Mounting Engine plugin AISupport LogPluginManager: Mounting Engine plugin ACLPlugin LogPluginManager: Mounting Engine plugin AnimationData LogPluginManager: Mounting Engine plugin ControlRigModules 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 RigLogic LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools LogPluginManager: Mounting Engine plugin TweeningUtils LogPluginManager: Mounting Engine plugin AudioInsights LogPluginManager: Mounting Engine plugin Bridge LogPluginManager: Mounting Engine plugin CameraShakePreviewer LogPluginManager: Mounting Engine plugin EngineCameras LogPluginManager: Mounting Engine plugin GameplayCameras LogPluginManager: Mounting Engine plugin ChaosClothAsset LogPluginManager: Mounting Engine plugin ChaosCloth LogPluginManager: Mounting Engine plugin ChaosVD LogPluginManager: Mounting Engine plugin OpenColorIO LogPluginManager: Mounting Engine plugin OodleNetwork LogPluginManager: Mounting Engine plugin AnimationSharing LogPluginManager: Mounting Engine plugin ConcertMain LogPluginManager: Mounting Engine plugin ConcertSyncClient LogPluginManager: Mounting Engine plugin ConcertSyncCore LogPluginManager: Mounting Engine plugin ConcertSharedSlate LogPluginManager: Mounting Engine plugin NamingTokens LogPluginManager: Mounting Engine plugin PluginUtils LogPluginManager: Mounting Engine plugin TraceSourceFilters LogPluginManager: Mounting Engine plugin UObjectPlugin LogPluginManager: Mounting Engine plugin AssetManagerEditor LogPluginManager: Mounting Engine plugin BlueprintHeaderView LogPluginManager: Mounting Engine plugin ColorGrading LogPluginManager: Mounting Engine plugin ConsoleVariables LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource LogPluginManager: Mounting Engine plugin CurveEditorTools LogPluginManager: Mounting Engine plugin DataValidation LogPluginManager: Mounting Engine plugin EditorScriptingUtilities LogPluginManager: Mounting Engine plugin EngineAssetDefinitions LogPluginManager: Mounting Engine plugin FacialAnimation LogPluginManager: Mounting Engine plugin GameplayTagsEditor LogPluginManager: Mounting Engine plugin GeometryMode LogPluginManager: Mounting Engine plugin LightMixer LogPluginManager: Mounting Engine plugin ObjectMixer LogPluginManager: Mounting Engine plugin SequencerAnimTools LogPluginManager: Mounting Engine plugin UMGWidgetPreview LogPluginManager: Mounting Engine plugin UVEditor LogPluginManager: Mounting Engine plugin EnhancedInput LogPluginManager: Mounting Engine plugin DatasmithContent LogPluginManager: Mounting Engine plugin GLTFExporter LogPluginManager: Mounting Engine plugin VariantManagerContent LogPluginManager: Mounting Engine plugin VariantManager LogPluginManager: Mounting Engine plugin AutomationUtils LogPluginManager: Mounting Engine plugin BackChannel LogPluginManager: Mounting Engine plugin ChaosCaching LogPluginManager: Mounting Engine plugin ChaosNiagara LogPluginManager: Mounting Engine plugin ChaosSolverPlugin LogPluginManager: Mounting Engine plugin ChaosUserDataPT LogPluginManager: Mounting Engine plugin CharacterAI LogPluginManager: Mounting Engine plugin CompositeCore LogPluginManager: Mounting Engine plugin Dataflow LogPluginManager: Mounting Engine plugin EditorDataStorageFeatures LogPluginManager: Mounting Engine plugin EditorDataStorage LogPluginManager: Mounting Engine plugin FullBodyIK LogPluginManager: Mounting Engine plugin LevelSequenceNavigatorBridge LogPluginManager: Mounting Engine plugin LocalizableMessage LogPluginManager: Mounting Engine plugin NFORDenoise LogPluginManager: Mounting Engine plugin PlatformCrypto LogPluginManager: Mounting Engine plugin PythonScriptPlugin LogPluginManager: Mounting Engine plugin RuntimeTelemetry LogPluginManager: Mounting Engine plugin ToolPresets LogPluginManager: Mounting Engine plugin Cascade LogPluginManager: Mounting Engine plugin NiagaraSimCaching LogPluginManager: Mounting Engine plugin Niagara LogPluginManager: Mounting Engine plugin Fab LogPluginManager: Mounting Engine plugin AlembicImporter LogPluginManager: Mounting Engine plugin InterchangeAssets LogPluginManager: Mounting Engine plugin InterchangeEditor LogPluginManager: Mounting Engine plugin Interchange LogPluginManager: Mounting Engine plugin AvfMedia LogPluginManager: Mounting Engine plugin ImgMedia LogPluginManager: Mounting Engine plugin MediaCompositing LogPluginManager: Mounting Engine plugin MediaPlate LogPluginManager: Mounting Engine plugin MfMedia LogPluginManager: Mounting Engine plugin WebMMedia LogPluginManager: Mounting Engine plugin WmfMedia LogPluginManager: Mounting Engine plugin MeshPainting LogPluginManager: Mounting Engine plugin TcpMessaging LogPluginManager: Mounting Engine plugin UdpMessaging LogPluginManager: Mounting Engine plugin MetaHumanSDK 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 NNEDenoiser LogPluginManager: Mounting Engine plugin NNERuntimeORT LogPluginManager: Mounting Engine plugin OnlineBase LogPluginManager: Mounting Engine plugin OnlineServices LogPluginManager: Mounting Engine plugin OnlineSubsystemNull LogPluginManager: Mounting Engine plugin OnlineSubsystemSteam LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils LogPluginManager: Mounting Engine plugin OnlineSubsystem LogPluginManager: Mounting Engine plugin LauncherChunkInstaller LogPluginManager: Mounting Engine plugin ActorLayerUtilities LogPluginManager: Mounting Engine plugin AnalyticsBlueprintLibrary LogPluginManager: Mounting Engine plugin AndroidFileServer 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 ComputeFramework LogPluginManager: Mounting Engine plugin SQLiteCore LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector LogPluginManager: Mounting Engine plugin GeometryCache LogPluginManager: Mounting Engine plugin GeometryProcessing LogPluginManager: Mounting Engine plugin HairStrands LogPluginManager: Mounting Engine plugin Metasound LogPluginManager: Mounting Engine plugin MsQuic LogPluginManager: Mounting Engine plugin ProceduralMeshComponent LogPluginManager: Mounting Engine plugin PropertyAccessEditor LogPluginManager: Mounting Engine plugin PropertyBindingUtils LogPluginManager: Mounting Engine plugin ResonanceAudio LogPluginManager: Mounting Engine plugin RigVM LogPluginManager: Mounting Engine plugin SignificanceManager LogPluginManager: Mounting Engine plugin SoundFields LogPluginManager: Mounting Engine plugin Spatialization LogPluginManager: Mounting Engine plugin StateTree LogPluginManager: Mounting Engine plugin SteamShared LogPluginManager: Mounting Engine plugin SteamSockets LogPluginManager: Mounting Engine plugin Synthesis LogPluginManager: Mounting Engine plugin WaveTable LogPluginManager: Mounting Engine plugin WebMMoviePlayer LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector LogPluginManager: Mounting Engine plugin WindowsMoviePlayer LogPluginManager: Mounting Engine plugin XInputDevice LogPluginManager: Mounting Engine plugin SlateInsights LogPluginManager: Mounting Engine plugin FunctionalTestingEditor LogPluginManager: Mounting Engine plugin InterchangeTests LogPluginManager: Mounting Engine plugin TraceUtilities LogPluginManager: Mounting Engine plugin CameraCalibrationCore LogPluginManager: Mounting Engine plugin Takes LogPluginManager: Mounting Engine plugin WorldMetrics LogHAL: Log category FSDLog_ShippingDebugging verbosity has been raised to VeryVerbose. LogHAL: Log category FSDLog_EngineShippingDebugging verbosity has been raised to VeryVerbose. LogConfig: Applying CVar settings from Section [/Script/FFXFSR3Settings.FFXFSR3Settings] File [Engine] LogFSR3: FSR3 Temporal Upscaling Module Started LogFFXFI: FFX Frame Interpolation Module Started LogDLSSBlueprint: Loaded DLSS-SR plugin version 8.2.0-NGX310.3.0 LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Enter LogRHI: Using Default RHI: D3D12 LogRHI: Using Highest Feature Level of D3D12: SM6 LogRHI: Loading RHI module D3D12RHI LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 4070 SUPER (VendorId: 10de, DeviceId: 2783, SubSysId: 89521043, Revision: 00a1 LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported LogD3D12RHI: Adapter has 11999MB of dedicated video memory, 0MB of dedicated system memory, and 16276MB of shared system memory, 2 output[s], UMA:false LogD3D12RHI: Driver Version: 581.29 (internal:32.0.15.8129, unified:581.29) LogD3D12RHI: Driver Date: 9-5-2025 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 16276MB of shared system memory, 0 output[s], UMA:true 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 LogStreamlineShaders: Loaded Streamline plugin version 8.2.0-SL2.8.0 LogConfig: Applying CVar settings from Section [/Script/CompositeCore.CompositeCorePluginSettings] File [Engine] LogNFORDenoise: NFORDenoise function starting up LogInit: Using libcurl 8.12.1 LogInit: - built for Windows LogInit: - supports SSL with OpenSSL/1.1.1t LogInit: - supports HTTP deflate (compression) using libz 1.3 LogInit: - other features: LogInit: CURL_VERSION_SSL LogInit: CURL_VERSION_LIBZ LogInit: CURL_VERSION_IPV6 LogInit: CURL_VERSION_ASYNCHDNS LogInit: CURL_VERSION_LARGEFILE LogInit: CURL_VERSION_TLSAUTH_SRP LogInit: CURL_VERSION_HTTP2 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 LogInit: CreateHttpThread using FCurlMultiPollEventLoopHttpThread LogInit: Creating http thread with maximum 256 concurrent requests LogSteamShared: Display: Loading Steam SDK 1.57 LogSteamShared: Steam SDK Loaded! LogOnline: STEAM: Steam User is subscribed 1 LogOnline: STEAM: [AppId: 2860770] Client API initialized 1 LogOnline: OSS: Created online subsystem instance for: STEAM LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [STEAM] LogInit: ExecutableName: RogueCore-Win64-Shipping.exe LogInit: Build: UE5-CL-0 LogInit: Platform=Windows LogInit: MachineId=6980b66b431470abebff2b8a7ccb9b6f LogInit: DeviceId= LogInit: Engine Version: 5.6.1-0+UE5 LogInit: Compatible Engine Version: 5.6.0-0+UE5 LogInit: Net CL: 0 LogInit: OS: Windows 11 (23H2) [10.0.22631.5039] (), CPU: Intel(R) Core(TM) i7-14700K, GPU: NVIDIA GeForce RTX 4070 SUPER LogInit: Compiled (64-bit): Oct 31 2025 11:09:35 LogInit: Architecture: x64 LogInit: Compiled with Visual C++: 19.38.33145.00 LogInit: Build Configuration: Shipping LogInit: Branch Name: UE5 LogInit: Command Line: -disablemodding LogInit: Base Directory: E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/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. LogInit: Object subsystem initialized LogConfig: Set CVar [[r.setres:1280x720]] LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] LogConfig: Set CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] LogConfig: Set CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] LogConfig: Set CVar [[net.ResetAckStatePostSeamlessTravel:1]] LogConfig: Set CVar [[net.AllowPIESeamlessTravel:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.Enabled:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.PrintNewPSODescriptors:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.MobileHDR:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.TextureStreaming:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.SeparateTranslucency:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.CustomDepth:3]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.EarlyZPass:2]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DBuffer:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.ClearSceneMethod:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.HZBOcclusion:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.HDR.UI.Level:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.AllowHDR:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.HDR.UI.CompositeMode:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.NGX.DLSS.Enable:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.FidelityFX.FSR3.Enabled:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.FidelityFX.FSR3.CreateReactiveMask:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.FidelityFX.FI.Enabled:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.ReflectionMethod:2]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.LightFunctionAtlas.Size:8]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.Streamline.ForceTagging:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.Nanite.ProjectEnabled:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.Nanite:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.RayTracing:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.Lumen.HardwareRayTracing:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.RayTracing.Shadows:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[r.RayTracing.Skylight:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] [2025.11.10-21.45.10:239][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] [2025.11.10-21.45.10:239][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] [2025.11.10-21.45.10:239][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkylightIntensityMultiplier:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.AOQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LumenScene.DirectLighting.MaxLightsPerTile:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LumenScene.DirectLighting.UpdateFactor:32]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.UpdateFactor:64]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:100]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.NumAdaptiveProbes:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.BentNormal:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:70]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.NumSamples:5]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.DetailMode:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:256]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:256]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.MaxSampleCount:8]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.UseExistenceMask:0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] [2025.11.10-21.45.10:259][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] [2025.11.10-21.45.10:259][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogRHI: Using Default RHI: D3D12 [2025.11.10-21.45.10:260][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 [2025.11.10-21.45.10:260][ 0]LogRHI: Loading RHI module D3D12RHI [2025.11.10-21.45.10:260][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. [2025.11.10-21.45.10:260][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. [2025.11.10-21.45.10:260][ 0]LogInit: Selected Device Profile: [Windows] [2025.11.10-21.45.10:260][ 0]LogHAL: Display: Platform has ~ 32 GB [34134798336 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) [2025.11.10-21.45.10:260][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] [2025.11.10-21.45.10:260][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] [2025.11.10-21.45.10:260][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.FXAA.Quality:3]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:100]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:2]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:4]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:1024]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.04]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:0.85]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:0.8]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.5]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:16]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:64]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:2048]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:0.0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:0.0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:4]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:3]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.6]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.5]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:3]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Upscale.Quality:2]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:0.8]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:0 ; lower gathering accumulator quality]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:2 ; Max3x3 postfilering method]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:1 ; no background occlusion]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:0 ; no bokeh simulation when scattering]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.04 ; only a maximum of 4% of scattered bokeh]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:0 ; no slight out of focus]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:0 ; faster temporal accumulation]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.012 ; required because of AccumulatorQuality=0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.012 ; required because of AccumulatorQuality=0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:4]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:800]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:48]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SceneColorFormat:3]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.DetailMode:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SSS.Quality:-1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SSGI.Quality:2]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:0.5]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:1]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:2]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:64.0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:64.0]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:2]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:96]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@2] File [Scalability] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[foliage.DensityScale:0.8]] [2025.11.10-21.45.10:260][ 0]LogConfig: Set CVar [[grass.DensityScale:0.8]] [2025.11.10-21.45.10:260][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] [2025.11.10-21.45.10:261][ 0]LogInit: Computer: PPG-V2 [2025.11.10-21.45.10:261][ 0]LogInit: User: Administrator [2025.11.10-21.45.10:261][ 0]LogInit: CPU Page size=4096, Cores=20 [2025.11.10-21.45.10:261][ 0]LogInit: High frequency timer resolution =10.000000 MHz [2025.11.10-21.45.10:261][ 0]LogMemory: Memory total: Physical=31.8GB (32GB approx) Virtual=36.5GB [2025.11.10-21.45.10:261][ 0]LogMemory: Platform Memory Stats for Windows [2025.11.10-21.45.10:261][ 0]LogMemory: Process Physical Memory: 202.68 MB used, 206.89 MB peak [2025.11.10-21.45.10:261][ 0]LogMemory: Process Virtual Memory: 209.92 MB used, 209.92 MB peak [2025.11.10-21.45.10:261][ 0]LogMemory: Physical Memory: 8936.20 MB used, 23617.29 MB free, 32553.48 MB total [2025.11.10-21.45.10:261][ 0]LogMemory: Virtual Memory: 15232.81 MB used, 22184.67 MB free, 37417.48 MB total [2025.11.10-21.45.10:272][ 0]LogWindows: WindowsPlatformFeatures enabled [2025.11.10-21.45.10:273][ 0]LogInit: Physics initialised using underlying interface: Chaos [2025.11.10-21.45.10:273][ 0]LogInit: Overriding language with game user settings language configuration option (zh-CN). [2025.11.10-21.45.10:273][ 0]LogInit: Overriding language with game user settings locale configuration option (zh-CN). [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemSteam/Content/Localization/OnlineSubsystemSteam/zh-Hans-CN/OnlineSubsystemSteam.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/zh-Hans-CN/OnlineSubsystemUtils.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/zh-Hans-CN/OnlineSubsystem.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemSteam/Content/Localization/OnlineSubsystemSteam/zh-CN/OnlineSubsystemSteam.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/zh-CN/OnlineSubsystemUtils.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/zh-CN/OnlineSubsystem.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemSteam/Content/Localization/OnlineSubsystemSteam/zh-Hans/OnlineSubsystemSteam.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogInit: Setting process to per monitor DPI aware [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/zh-Hans/OnlineSubsystemUtils.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/zh-Hans/OnlineSubsystem.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemSteam/Content/Localization/OnlineSubsystemSteam/zh/OnlineSubsystemSteam.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/zh/OnlineSubsystemUtils.locres' could not be opened for reading! [2025.11.10-21.45.10:274][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/zh/OnlineSubsystem.locres' could not be opened for reading! [2025.11.10-21.45.10:310][ 0]LogWindowsTextInputMethodSystem: Available input methods: [2025.11.10-21.45.10:310][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 中文(简体) - 百度输入法 (TSF IME). [2025.11.10-21.45.10:310][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 微软拼音 (TSF IME). [2025.11.10-21.45.10:310][ 0]LogWindowsTextInputMethodSystem: Activated input method: 中文(简体,中国) - 中文(简体) - 百度输入法 (TSF IME). [2025.11.10-21.45.10:335][ 0]LogWindowsTouchpad: Display: CacheForceMaxTouchpadSensitivityMode SetMaxTouchpadSensitivity [2025.11.10-21.45.10:344][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 [2025.11.10-21.45.10:344][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 [2025.11.10-21.45.10:404][ 0]LogRHI: Using Default RHI: D3D12 [2025.11.10-21.45.10:404][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 [2025.11.10-21.45.10:404][ 0]LogRHI: Loading RHI module D3D12RHI [2025.11.10-21.45.10:404][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. [2025.11.10-21.45.10:404][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. [2025.11.10-21.45.10:404][ 0]LogD3D12RHI: Integrated GPU (iGPU): false [2025.11.10-21.45.10:404][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 [2025.11.10-21.45.10:404][ 0]LogWindows: Attached monitors: [2025.11.10-21.45.10:404][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1380), device: '\\.\DISPLAY1' [PRIMARY] [2025.11.10-21.45.10:405][ 0]LogWindows: resolution: 1920x1080, work area: (2560, 148) -> (4480, 1168), device: '\\.\DISPLAY2' [2025.11.10-21.45.10:405][ 0]LogWindows: Found 2 attached monitors. [2025.11.10-21.45.10:405][ 0]LogWindows: Gathering driver information using Windows Setup API [2025.11.10-21.45.10:405][ 0]LogRHI: RHI Adapter Info: [2025.11.10-21.45.10:405][ 0]LogRHI: Name: NVIDIA GeForce RTX 4070 SUPER [2025.11.10-21.45.10:405][ 0]LogRHI: Driver Version: 581.29 (internal:32.0.15.8129, unified:581.29) [2025.11.10-21.45.10:405][ 0]LogRHI: Driver Date: 9-5-2025 [2025.11.10-21.45.10:405][ 0]LogD3D12RHI: GPU DeviceId: 0x2783 (for the marketing name, search the web for "GPU Device Id") [2025.11.10-21.45.10:405][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off [2025.11.10-21.45.10:513][ 0]LogOnline: Warning: STEAM: Failed to obtain steam user stats, user: PP_G [0x110000113421239] has no stats entries [2025.11.10-21.45.10:542][ 0]LogNvidiaAftermath: Aftermath initialized [2025.11.10-21.45.10:580][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: [2025.11.10-21.45.10:580][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device1 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device2 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device3 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device4 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device5 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device6 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device7 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device8 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device9 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device10 is supported. [2025.11.10-21.45.10:580][ 0]LogD3D12RHI: ID3D12Device11 is supported. [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: ID3D12Device12 is supported. [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Bindless resources are supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Raster order views are supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported [2025.11.10-21.45.10:581][ 0]LogD3D12RHI: Work Graphs are supported [2025.11.10-21.45.10:623][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000026AB8F06800) [2025.11.10-21.45.10:624][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000026AB8F06AC0) [2025.11.10-21.45.10:624][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000026AB8F06D80) [2025.11.10-21.45.10:624][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 [2025.11.10-21.45.10:624][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 [2025.11.10-21.45.10:878][ 0]LogD3D12RHI: NVIDIA Shader Execution Reordering interface supported! [2025.11.10-21.45.10:878][ 0]LogD3D12RHI: Display: Batched command list execution is disabled for async queues due to known bugs in the current driver. [2025.11.10-21.45.10:878][ 0]LogRHI: Texture pool is 7075 MB (70% of 10107 MB) [2025.11.10-21.45.10:878][ 0]LogD3D12RHI: Async texture creation enabled [2025.11.10-21.45.10:878][ 0]LogD3D12RHI: RHI has support for 64 bit atomics [2025.11.10-21.45.10:884][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading [2025.11.10-21.45.10:886][ 0]LogInit: Initializing FReadOnlyCVARCache [2025.11.10-21.45.10:890][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0). [2025.11.10-21.45.10:891][ 0]LogShaderLibrary: Display: Using ../../../RogueCore/Content/ShaderArchive-Global-PCD3D_SM6-PCD3D_SM6.ushaderbytecode for material shader code. Total 6882 unique shaders. [2025.11.10-21.45.10:891][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global [2025.11.10-21.45.10:891][ 0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library [2025.11.10-21.45.10:891][ 0]LogTemp: Display: Clearing the OS Cache [2025.11.10-21.45.10:894][ 0]LogPakFile: New pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak added to pak precacher. [2025.11.10-21.45.10:907][ 0]LogPakFile: Precache HighWater 16MB [2025.11.10-21.45.10:954][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled [2025.11.10-21.45.10:954][ 0]LogInit: XR: MultiViewport is Disabled [2025.11.10-21.45.10:954][ 0]LogInit: XR: Mobile Multiview is Disabled [2025.11.10-21.45.10:966][ 0]LogSlate: Using FreeType 2.10.0 [2025.11.10-21.45.10:967][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 [2025.11.10-21.45.10:993][ 0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Enter [2025.11.10-21.45.10:993][ 0]LogStreamlineRHI: Using Streamline production binaries from ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/. Can be overridden via -slbinaries={production,development,debug} command line switches for non-shipping builds [2025.11.10-21.45.10:993][ 0]LogStreamlineRHI: loading core Streamline functions from Streamline interposer at ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/sl.interposer.dll [2025.11.10-21.45.11:036][ 0]LogStreamlineRHI: File '..\..\..\RogueCore\Plugins\Nvidia\StreamlineCore\Binaries\ThirdParty\Win64\sl.interposer.dll' is signed by NVIDIA and the signature was verified. [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: SLInterPoserLibrary = 00007FFD04320000 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slInit = 00007FFD04326700 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slShutdown = 00007FFD04326AC0 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slIsFeatureSupported = 00007FFD04328430 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slIsFeatureLoaded = 00007FFD04326D70 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slSetFeatureLoaded = 00007FFD04326DC0 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slEvaluateFeature = 00007FFD04327590 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slAllocateResources = 00007FFD04327310 [2025.11.10-21.45.11:037][ 0]LogStreamlineRHI: slFreeResources = 00007FFD04327460 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slSetTag = 00007FFD04326EC0 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slSetTagForFrame = 00007FFD04327170 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slGetFeatureRequirements = 00007FFD043294D0 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slGetFeatureVersion = 00007FFD04328F50 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slUpgradeInterface = 00007FFD04327AE0 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slSetConstants = 00007FFD043272B0 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slGetNativeInterface = 00007FFD04327860 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slGetFeatureFunction = 00007FFD0432ABB0 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slGetNewFrameToken = 00007FFD0432AD50 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: slSetD3DDevice = 00007FFD043276A0 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: PlatformCreateStreamlineRHI Enter [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: GDynamicRHIName NVIDIA D3D12 [2025.11.10-21.45.11:038][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Enter [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: DLSS plugin enabled, adding DLSS plugin binary search paths to Streamline init paths [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/Binaries/ThirdParty/NVIDIA/NGX/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll found in search path E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64 [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Loading Streamline Reflex since the corresponding cvar r.Streamline.Load.Reflex is set to true [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Skipping loading Streamline Latewarp since the corresponding UE StreamlineLatewarp plugin is not enabled [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Loading Streamline DLSS-FG since the corresponding cvar r.Streamline.Load.DLSSG is set to true [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Loading Streamline DeepDVC since the corresponding cvar r.Streamline.Load.DeepDVC is set to true [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Setting bAllowOTAUpdate to 1 default. See -sl{no}ota command line or project and project user settings [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Setting bUseSlSetTag to 0 default. See -sl{no}settag command line or project and project user settings [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: Initializing Streamline [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: sl::Preferences::logLevel = 1. Can be overridden via -slloglevel={0,1,2} command line switches [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: sl::Preferences::showConsole = 0. Can be overridden via -sllogconsole={0,1} command line switches [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: sl::Preferences::flags = 0xcd PreferenceFlags::eUseFrameBasedResourceTagging|PreferenceFlags::eLoadDownloadedPlugins|PreferenceFlags::eAllowOTA|PreferenceFlags::eUseManualHooking|PreferenceFlags::eDisableCLStateTracking [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: sl::Preferences::featuresToLoad = {kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)}. Feature loading can be overridden on the command line and console variables: [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: command line -sl{no}reflex, -sl{no}dlssg, -sl{no}deepdvc -sl{no}debugoverlay (non-shipping) [2025.11.10-21.45.11:038][ 0]LogStreamlineRHI: console/config r.Streamline.Load.Reflex, r.Streamline.Load.DLSSG, r.Streamline.Load.DeepDVC [2025.11.10-21.45.11:038][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:000ms:884us]pluginManager.cpp:406[setHostSDKVersion] Streamline v2.8.0.b735fd37 - built on Wed Jun 18 09:59:34 2025 - host SDK v2.8.0 [2025.11.10-21.45.11:045][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:008ms:065us]ota.cpp:382[checkForOTA] Requesting optional updates! [2025.11.10-21.45.11:046][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:008ms:587us]pluginManager.cpp:525[findPlugins] Looking for plugins in E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 ... [2025.11.10-21.45.11:046][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:008ms:776us]pluginManager.cpp:916[loadPlugins] Searching for OTA'd plugins... [2025.11.10-21.45.11:046][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:008ms:960us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_reflex_0/versions/133132/files/190_E658703.dll [2025.11.10-21.45.11:046][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:009ms:154us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_dlss_g_0/versions/133132/files/190_E658703.dll [2025.11.10-21.45.11:046][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:009ms:337us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_deepdvc_0/versions/133132/files/190_E658703.dll [2025.11.10-21.45.11:046][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:009ms:506us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_common_0/versions/133132/files/190_E658703.dll [2025.11.10-21.45.11:047][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:009ms:752us]pluginManager.cpp:922[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_pcl_0/versions/133132/files/190_E658703.dll [2025.11.10-21.45.11:054][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:017ms:364us]commonInterface.cpp:150[getSystemCaps] Enumerating up to 8 adapters but only one of them can be used to create a device - no mGPU support in this SDK [2025.11.10-21.45.11:058][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:021ms:407us]commonInterface.cpp:272[getSystemCaps] >----------------------------------------- [2025.11.10-21.45.11:058][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:021ms:429us]commonInterface.cpp:275[getSystemCaps] NVIDIA driver 581.29 [2025.11.10-21.45.11:060][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:022ms:725us]commonInterface.cpp:300[getSystemCaps] Adapter 0 architecture 0x190 implementation 0x4 revision 0xa1 - bit 0x1 - LUID 0.83524 [2025.11.10-21.45.11:060][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:022ms:741us]commonInterface.cpp:306[getSystemCaps] -----------------------------------------< [2025.11.10-21.45.11:060][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:023ms:670us]commonEntry.cpp:1809[updateEmbeddedJSON] Detected Windows OS version 10.0.22631 [2025.11.10-21.45.11:060][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:023ms:741us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.common' - version 2.8.12.ea8968a8 - id 4294967295 - priority 0 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:092][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:055ms:648us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id 190_E658703 - sl.common [2025.11.10-21.45.11:092][ 0]LogStreamlineAPI: Warning: [Warn]: [05-45-11][streamline][warn][tid:4476][0s:055ms:665us]pluginManager.cpp:730[mapPlugins] Ignoring plugin 'sl.common' since it has duplicated unique id [2025.11.10-21.45.11:127][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:089ms:700us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.deepdvc' - version 2.8.0.b735fd37 - id 5 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:673][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:636ms:254us]commonEntry.cpp:821[getNGXFeatureRequirements] NGX feature 11 requirements - minOS 10.0.19041 minHW 0x190 [2025.11.10-21.45.11:675][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:637ms:738us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.8.0.b735fd37 - id 1000 - priority 1000 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:697][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:660ms:158us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.pcl' - version 2.8.0.b735fd37 - id 4 - priority 2 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:719][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:681ms:944us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.reflex' - version 2.8.0.b735fd37 - id 3 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:724][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:686ms:733us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.reflex - 190_E658703 [2025.11.10-21.45.11:724][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:686ms:760us]pluginManager.cpp:712[mapPlugins] Plugin sl.reflex is newer (2.8.12) will choose that [2025.11.10-21.45.11:724][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:686ms:768us]pluginManager.cpp:811[mapPlugins] A duplicate was found, but a newer plugin version was available [2025.11.10-21.45.11:724][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:686ms:776us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.reflex superseded by plugin sl.reflex [2025.11.10-21.45.11:724][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:686ms:792us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.reflex' - version 2.8.12.ea8968a8 - id 3 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:737][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:700ms:369us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.dlss_g - 190_E658703 [2025.11.10-21.45.11:737][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:700ms:389us]pluginManager.cpp:712[mapPlugins] Plugin sl.dlss_g is newer (2.8.12) will choose that [2025.11.10-21.45.11:738][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:700ms:399us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.dlss_g superseded by plugin sl.dlss_g [2025.11.10-21.45.11:738][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:700ms:470us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.8.12.ea8968a8 - id 1000 - priority 1000 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:742][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:704ms:641us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.deepdvc - 190_E658703 [2025.11.10-21.45.11:742][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:704ms:650us]pluginManager.cpp:712[mapPlugins] Plugin sl.deepdvc is newer (2.8.12) will choose that [2025.11.10-21.45.11:742][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:704ms:659us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.deepdvc superseded by plugin sl.deepdvc [2025.11.10-21.45.11:742][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:704ms:697us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.deepdvc' - version 2.8.12.ea8968a8 - id 5 - priority 100 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:158us]pluginManager.cpp:679[mapPlugins] Detected two plugins with the same id sl.pcl - 190_E658703 [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:183us]pluginManager.cpp:712[mapPlugins] Plugin sl.pcl is newer (2.8.12) will choose that [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:193us]pluginManager.cpp:817[mapPlugins] Removing plugin with name: sl.pcl superseded by plugin sl.pcl [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:203us]pluginManager.cpp:828[mapPlugins] Loaded plugin 'sl.pcl' - version 2.8.12.ea8968a8 - id 4 - priority 2 - adapter mask 0x1 - interposer 'no' [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:244us]pluginManager.cpp:1073[loadPlugins] Plugin execution order based on priority: [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:249us]pluginManager.cpp:1076[loadPlugins] P0 - sl.common [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:253us]pluginManager.cpp:1076[loadPlugins] P2 - sl.pcl [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:260us]pluginManager.cpp:1076[loadPlugins] P100 - sl.reflex [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:265us]pluginManager.cpp:1076[loadPlugins] P100 - sl.deepdvc [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:270us]pluginManager.cpp:1076[loadPlugins] P1000 - sl.dlss_g [2025.11.10-21.45.11:746][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:275us]pluginManager.cpp:1261[initializePlugins] Initializing plugins - api 0.0.1 - application ID 100721531 [2025.11.10-21.45.11:747][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:610us]commonEntry.cpp:1280[slOnPluginStartup] At least one plugin requires NGX, trying to initialize ... [2025.11.10-21.45.11:747][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:709ms:753us]commonEntry.cpp:1036[ngxLog] App logging hooks successfully initialized [2025.11.10-21.45.11:754][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:716ms:522us]commonEntry.cpp:1036[ngxLog] Path to driverStore found using QAI: C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_8fb57f19613dba6f [2025.11.10-21.45.11:754][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:716ms:544us]commonEntry.cpp:1036[ngxLog] using path for models: C:\ProgramData/NVIDIA/NGX/models/ [2025.11.10-21.45.11:760][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:674us]commonEntry.cpp:1036[ngxLog] updated access control list for NGX cache (NGX cache should now be usable by all authenticated users) [2025.11.10-21.45.11:760][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:696us]commonEntry.cpp:1036[ngxLog] model folder created: C:\ProgramData/NVIDIA/NGX/models/ [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:839us]commonEntry.cpp:1036[ngxLog] [dlss] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:865us]commonEntry.cpp:1036[ngxLog] app_E658702=0.0.0 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:875us]commonEntry.cpp:1036[ngxLog] app_E658701=0.0.0 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:883us]commonEntry.cpp:1036[ngxLog] app_B9FEB50=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:891us]commonEntry.cpp:1036[ngxLog] app_B9FF4BC=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:899us]commonEntry.cpp:1036[ngxLog] app_B9FD524=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:906us]commonEntry.cpp:1036[ngxLog] app_B9DF510=1.3.106 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:913us]commonEntry.cpp:1036[ngxLog] app_B9CB0B8=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:920us]commonEntry.cpp:1036[ngxLog] app_B9E26B0=2.1.28 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:932us]commonEntry.cpp:1036[ngxLog] app_B9D48D0=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:939us]commonEntry.cpp:1036[ngxLog] app_E99B5EC=1.2.109 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:947us]commonEntry.cpp:1036[ngxLog] app_B9DFA64=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:956us]commonEntry.cpp:1036[ngxLog] app_B9FD6C0=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:966us]commonEntry.cpp:1036[ngxLog] app_B9CF688=2.2.15 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:973us]commonEntry.cpp:1036[ngxLog] app_B9D6F08=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:980us]commonEntry.cpp:1036[ngxLog] app_B9BF564=2.1.201 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:987us]commonEntry.cpp:1036[ngxLog] app_B9DB4F4=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:723ms:995us]commonEntry.cpp:1036[ngxLog] app_B9D2F5C=1.2.110 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:003us]commonEntry.cpp:1036[ngxLog] app_B9D7388=1.0.108 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:010us]commonEntry.cpp:1036[ngxLog] app_B9F5618=2.1.29 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:018us]commonEntry.cpp:1036[ngxLog] app_B9DAE68=1.2.109 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:025us]commonEntry.cpp:1036[ngxLog] app_B9D8C54=1.2.109 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:032us]commonEntry.cpp:1036[ngxLog] app_B9D3EF0=2.1.28 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:039us]commonEntry.cpp:1036[ngxLog] app_B9FACDC=2.1.201 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:046us]commonEntry.cpp:1036[ngxLog] app_F7361DC=2.1.28 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:055us]commonEntry.cpp:1036[ngxLog] app_B9C3560=2.1.201 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:062us]commonEntry.cpp:1036[ngxLog] app_B9B0430=2.1.28 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:071us]commonEntry.cpp:1036[ngxLog] app_E658700=310.3.0 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:078us]commonEntry.cpp:1036[ngxLog] [dlisp] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:105us]commonEntry.cpp:1036[ngxLog] app_B9CF688=2.1.15 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:114us]commonEntry.cpp:1036[ngxLog] app_E99B5EC=1.2.102 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:121us]commonEntry.cpp:1036[ngxLog] app_E658703=310.0.0 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:128us]commonEntry.cpp:1036[ngxLog] app_B9D8C54=1.2.106 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:135us]commonEntry.cpp:1036[ngxLog] app_B9D2F5C=1.2.106 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:142us]commonEntry.cpp:1036[ngxLog] app_B9DF510=1.3.101 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:150us]commonEntry.cpp:1036[ngxLog] app_B9DAE68=1.2.106 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:158us]commonEntry.cpp:1036[ngxLog] [sl_reflex_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:167us]commonEntry.cpp:1036[ngxLog] app_E658703=2.8.12 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:175us]commonEntry.cpp:1036[ngxLog] [sl_common_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:189us]commonEntry.cpp:1036[ngxLog] [sl_pcl_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:201us]commonEntry.cpp:1036[ngxLog] [sl_dlss_g_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:213us]commonEntry.cpp:1036[ngxLog] [dlssg] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:225us]commonEntry.cpp:1036[ngxLog] [dlssd] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:237us]commonEntry.cpp:1036[ngxLog] [sl_deepdvc_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:250us]commonEntry.cpp:1036[ngxLog] [sl_dlss_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:264us]commonEntry.cpp:1036[ngxLog] [sl_sdk_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:276us]commonEntry.cpp:1036[ngxLog] [sl_dlss_d_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:288us]commonEntry.cpp:1036[ngxLog] [sl_nis_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:300us]commonEntry.cpp:1036[ngxLog] [sl_nvperf_0] [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:314us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 86aa7b4 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:323us]commonEntry.cpp:1036[ngxLog] project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:331us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 8618954 [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:339us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId b9b05cc [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:346us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 876232c [2025.11.10-21.45.11:761][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:724ms:354us]commonEntry.cpp:1036[ngxLog] Found cms id 86aa7b4 for engine: ue4 engineVersion 5.6 projectID 2B64C07B4617E56557FF8A9473CBB832 [2025.11.10-21.45.11:814][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:777ms:045us]commonEntry.cpp:1036[ngxLog] NvAPI_DRS_FindApplicationByName -166 [2025.11.10-21.45.11:819][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:782ms:342us]commonEntry.cpp:1036[ngxLog] called from module 190_E658703.dll at C:\ProgramData\NVIDIA\NGX\models\sl_common_0\versions\133132\files [2025.11.10-21.45.11:820][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:782ms:450us]commonEntry.cpp:1036[ngxLog] NGXLoadFromPath failed: -1160773628 [2025.11.10-21.45.11:820][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:782ms:530us]commonEntry.cpp:1036[ngxLog] Override shared memory was opened successfully [2025.11.10-21.45.11:820][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:782ms:540us]commonEntry.cpp:1036[ngxLog] Override shared memory was mapped successfully [2025.11.10-21.45.11:906][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:869ms:061us]commonEntry.cpp:1036[ngxLog] Feature dlss failed to load (cmsid 141207476) from cache [2025.11.10-21.45.11:907][ 0]LogStreamlineAPI: [Info]: [05-45-11][streamline][info][tid:4476][0s:870ms:654us]commonEntry.cpp:1036[ngxLog] Feature dlss failed to load (cmsid 241534723) from cache [2025.11.10-21.45.12:044][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:007ms:290us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature dlss snippet: E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/nvngx_dlss.dll version: 310.3.0 [2025.11.10-21.45.12:057][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:020ms:412us]commonEntry.cpp:1036[ngxLog] Feature dlssg failed to load (cmsid 141207476) from cache [2025.11.10-21.45.12:057][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:020ms:432us]commonEntry.cpp:1036[ngxLog] Feature dlssg failed to load (cmsid 241534723) from cache [2025.11.10-21.45.12:204][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:166ms:405us]commonEntry.cpp:1036[ngxLog] Found dlssg driver fallback snippet at C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_8fb57f19613dba6f [2025.11.10-21.45.12:204][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:166ms:431us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature dlssg snippet: E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/nvngx_dlssg.dll version: 310.3.0 [2025.11.10-21.45.12:211][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:174ms:092us]commonEntry.cpp:1036[ngxLog] Feature deepdvc failed to load (cmsid 141207476) from cache [2025.11.10-21.45.12:211][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:174ms:108us]commonEntry.cpp:1036[ngxLog] Feature deepdvc failed to load (cmsid 241534723) from cache [2025.11.10-21.45.12:211][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:174ms:166us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature deepdvc snippet: E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/nvngx_deepdvc.dll version: 310.3.0 [2025.11.10-21.45.12:318][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:280ms:667us]commonEntry.cpp:1036[ngxLog] Feature dlssd failed to load (cmsid 141207476) from cache [2025.11.10-21.45.12:319][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:282ms:371us]commonEntry.cpp:1036[ngxLog] Feature dlssd failed to load (cmsid 241534723) from cache [2025.11.10-21.45.12:455][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:418ms:642us]commonEntry.cpp:1036[ngxLog] app 86AA7B4 feature dlssd snippet: E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/nvngx_dlssd.dll version: 310.3.0 [2025.11.10-21.45.12:578][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:541ms:153us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:223] App logging hooks successfully initialized [2025.11.10-21.45.12:578][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:541ms:179us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:230] Built with APP_NAME = default_nda [2025.11.10-21.45.12:579][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:541ms:704us]commonEntry.cpp:1036[ngxLog] [NGXCubinD3D12::Init:116] Enabling texmode_raw [2025.11.10-21.45.12:579][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:541ms:744us]commonEntry.cpp:1036[ngxLog] [NGXCubinD3D12::Init:212] Driver supports Fatbins + PTX [2025.11.10-21.45.12:579][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:541ms:750us]commonEntry.cpp:1036[ngxLog] [NGXCubinKernelMap::InitCubins:45] Loading NGXCubin kernels [2025.11.10-21.45.12:579][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:541ms:909us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:396] SetGPUArch:: Gpu count = 1, luid: 0x14644 [2025.11.10-21.45.12:580][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:275us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:456] m_gpuArch = 0x190 [2025.11.10-21.45.12:580][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:285us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:467] m_smArch = 0x4 [2025.11.10-21.45.12:580][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:603us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::genericPostInit:147] Fast UAV clear: supported [2025.11.10-21.45.12:580][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:632us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLAA Cubins [2025.11.10-21.45.12:580][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:658us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLSS Debug Cubins [2025.11.10-21.45.12:580][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:682us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS Engine Cubins [2025.11.10-21.45.12:581][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:725us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS NW Cubins [2025.11.10-21.45.12:581][ 0]LogStreamlineAPI: [Info]: [05-45-12][streamline][info][tid:4476][1s:543ms:751us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS NW E5M3_SKIP Cubins [2025.11.10-21.45.13:037][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:000ms:712us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:230] Built with APP_NAME = app_transformer_dlssd [2025.11.10-21.45.13:040][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:003ms:132us]commonEntry.cpp:1036[ngxLog] [DldnCubinKernelMap::InitCubins:129] Setting DLDN Engine Pre / Post Cubins [2025.11.10-21.45.13:040][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:003ms:153us]commonEntry.cpp:1036[ngxLog] [DldnCubinKernelMap::InitCubins:162] Setting DLDN Engine Pre / Post Cubins [2025.11.10-21.45.13:045][ 0]LogStreamlineAPI: Warning: [Warn]: [05-45-13][streamline][warn][tid:4476][2s:007ms:800us]commonEntry.cpp:1410[slOnPluginStartup] Valid application id is required in production builds - allowing for now but please fix this [2025.11.10-21.45.13:045][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:007ms:824us]commonEntry.cpp:1466[slOnPluginStartup] At least one plugin requires DRS, trying to initialize ... [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:524us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.common:slSetData:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:552us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.common:slGetData:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:562us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.common:slAllocateResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:568us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.common:slFreeResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:572us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.common:slEvaluateFeature:0x7ffcf841fde0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:578us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.common:slSetTag:0x7ffcf841ecb0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:582us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.common:slSetTagForFrame:0x7ffcf841ee20 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:587us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.common:slSetConsts:0x7ffcf841fb90 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:592us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkPresent:before - skipped [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:596us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkAfterPresent:after - skipped [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:600us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkCmdBindPipeline:after - skipped [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:604us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkCmdBindDescriptorSets:after - skipped [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:612us]pluginManager.cpp:1149[processPluginHooks] Hook sl.common:slHookVkBeginCommandBuffer:after - skipped [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:616us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookResizeSwapChainPre:before - OK [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:621us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookPresent:before - OK [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:625us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookAfterPresent:after - OK [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:630us]pluginManager.cpp:1173[processPluginHooks] Hook sl.common:slHookPresent1:before - OK [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:641us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.pcl:slSetData:0x7ffd29508a80 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:670us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.pcl:slGetData:0x7ffd29508a90 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:688us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.pcl:slAllocateResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:693us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.pcl:slFreeResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:702us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.pcl:slEvaluateFeature:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:708us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.pcl:slSetTag:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:714us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.pcl:slSetTagForFrame:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:718us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.pcl:slSetConsts:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:722us]pluginManager.cpp:1134[processPluginHooks] Plugin 'sl.pcl' has no registered hooks [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:727us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.reflex:slSetData:0x7ffd15ec8d70 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:731us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.reflex:slGetData:0x7ffd15ec9660 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:736us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.reflex:slAllocateResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:740us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.reflex:slFreeResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:745us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.reflex:slEvaluateFeature:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:751us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.reflex:slSetTag:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:755us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.reflex:slSetTagForFrame:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:759us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.reflex:slSetConsts:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:764us]pluginManager.cpp:1134[processPluginHooks] Plugin 'sl.reflex' has no registered hooks [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:768us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.deepdvc:slSetData:0x7ffd1fe08870 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:772us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.deepdvc:slGetData:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:777us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.deepdvc:slAllocateResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:781us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.deepdvc:slFreeResources:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:785us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.deepdvc:slEvaluateFeature:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:791us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.deepdvc:slSetTag:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:796us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.deepdvc:slSetTagForFrame:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:800us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.deepdvc:slSetConsts:0x0 [2025.11.10-21.45.13:168][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:130ms:804us]pluginManager.cpp:1134[processPluginHooks] Plugin 'sl.deepdvc' has no registered hooks [2025.11.10-21.45.13:169][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:131ms:768us]dlss_gEntry.cpp:1518[slOnPluginStartup] Multi-frame not supported, max generated frames 1 (SL Plugin supports 3, NGX feature supports 1) [2025.11.10-21.45.13:169][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:131ms:791us]commonEntry.cpp:1036[ngxLog] error: failed to load NGXCore: 126 (E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\_nvngx.dll) [2025.11.10-21.45.13:169][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:131ms:798us]commonEntry.cpp:1036[ngxLog] error: failed to load NGXCore: 126 (E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\nvngx.dll) [2025.11.10-21.45.13:169][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:132ms:089us]commonEntry.cpp:1036[ngxLog] error: no matching adapter found [2025.11.10-21.45.13:177][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:140ms:611us]commonEntry.cpp:1036[ngxLog] Loading C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_8fb57f19613dba6f\_nvngx.dll succeeded [2025.11.10-21.45.13:177][ 0]LogStreamlineAPI: Warning: [Warn]: [05-45-13][streamline][warn][tid:4476][2s:140ms:739us]dlss_gEntry.cpp:1557[slOnPluginStartup] Feature 'kFeatureDLSS' is not sharing required data [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:140ms:964us]dlfg.cpp:896[initFlipFunctions] pfnNvAPI_SetFlipConfig API available [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:005us]pluginManager.cpp:1367[mapPluginCallbacks] Callback sl.dlss_g:slSetData:0x7ffd0bbb5570 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:014us]pluginManager.cpp:1368[mapPluginCallbacks] Callback sl.dlss_g:slGetData:0x7ffd0bbb4db0 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:019us]pluginManager.cpp:1369[mapPluginCallbacks] Callback sl.dlss_g:slAllocateResources:0x7ffd0bbb5b40 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:025us]pluginManager.cpp:1370[mapPluginCallbacks] Callback sl.dlss_g:slFreeResources:0x7ffd0bbb5ce0 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:029us]pluginManager.cpp:1371[mapPluginCallbacks] Callback sl.dlss_g:slEvaluateFeature:0x0 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:034us]pluginManager.cpp:1372[mapPluginCallbacks] Callback sl.dlss_g:slSetTag:0x0 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:041us]pluginManager.cpp:1373[mapPluginCallbacks] Callback sl.dlss_g:slSetTagForFrame:0x0 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:045us]pluginManager.cpp:1374[mapPluginCallbacks] Callback sl.dlss_g:slSetConsts:0x0 [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:052us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkPresent:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:057us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkCreateSwapchainKHR:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:063us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkDestroySwapchainKHR:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:068us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkGetSwapchainImagesKHR:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:072us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkAcquireNextImageKHR:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:078us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkDeviceWaitIdle:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:082us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkCreateWin32SurfaceKHR:after - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:086us]pluginManager.cpp:1149[processPluginHooks] Hook sl.dlss_g:slHookVkDestroySurfaceKHR:before - skipped [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:092us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateSwapChainForCoreWindow:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:098us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateSwapChainForHwnd:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Leave [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:102us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateSwapChain:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:108us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookPresent:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: PluginBaseDir ../../../RogueCore/Plugins/Nvidia/StreamlineCore [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: SLBinariesDir ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/ [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Enter [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:112us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookPresent1:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Leave [2025.11.10-21.45.13:178][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Enter [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:116us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookGetDescPost:after - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:121us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResizeSwapChainPre:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:126us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResizeSwapChainPost:after - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:130us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResize1SwapChainPre:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:134us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookResize1SwapChainPost:after - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:139us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookGetBuffer:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:144us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookGetCurrentBackBufferIndex:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:152us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookSetFullscreenStatePre:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:156us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookSetFullscreenStatePost:after - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:161us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookSwapChainDestroyed:before - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:141ms:165us]pluginManager.cpp:1173[processPluginHooks] Hook sl.dlss_g:slHookCreateCommandQueue:after - OK [2025.11.10-21.45.13:178][ 0]LogStreamlineD3D12RHI: Registering FStreamlineD3D12DXGISwapchainProvider as IDXGISwapchainProvider, due to a supported feature needing a swap chain provider: (kFeatureDLSS_G, Result::eOk),(kFeatureLatewarp, Result::eErrorFeatureMissing),(kFeatureImGUI, Result::eErrorFeatureMissing). This can be overriden with -sl{no}swapchainprovider [2025.11.10-21.45.13:178][ 0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Leave [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: Streamline supported by the NVIDIA D3D12 RHI in the StreamlineD3D12RHI module at runtime [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Enter [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: RequestedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)) [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: LoadedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)) [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: SupportedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)) [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Leave [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: PlatformCreateStreamlineRHI Leave [2025.11.10-21.45.13:178][ 0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Leave [2025.11.10-21.45.13:192][ 0]LogD3D12RHI: Found a custom swapchain provider: 'FStreamlineD3D12DXGISwapchainProvider'. [2025.11.10-21.45.13:192][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:155ms:397us]sl.cpp:691[operator ()] Upgrading IDXGIFactory to use SL proxy ... [2025.11.10-21.45.13:230][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:4476][2s:192ms:672us]dlfgSwapchain.cpp:332[linkSwapchainToCmdQueue] Display refresh rate 144.00 [2025.11.10-21.45.13:253][ 0]LogMoviePlayer: Initializing movie player [2025.11.10-21.45.13:254][ 0]LogStreamlineAPI: [Info]: [05-45-13][streamline][info][tid:5172][2s:216ms:909us]dlfgPresent.cpp:888[presentCommon] Present() is called on the thread 5172. [2025.11.10-21.45.13:388][ 0]LogShaderLibrary: Display: Using ../../../RogueCore/Content/ShaderArchive-RogueCore-PCD3D_SM6-PCD3D_SM6.ushaderbytecode for material shader code. Total 17097 unique shaders. [2025.11.10-21.45.13:388][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library RogueCore [2025.11.10-21.45.13:388][ 0]LogShaderLibrary: Display: Logical shader library 'RogueCore' has been created as a monolithic library [2025.11.10-21.45.13:389][ 0]LogRHI: FPipelineCacheFile Header Game Version: 0 [2025.11.10-21.45.13:389][ 0]LogRHI: FPipelineCacheFile Header Engine Data Version: 29 [2025.11.10-21.45.13:389][ 0]LogRHI: FPipelineCacheFile Header TOC Offset: 61201 [2025.11.10-21.45.13:389][ 0]LogRHI: FPipelineCacheFile File Size: 351714 Bytes [2025.11.10-21.45.13:390][ 0]LogRHI: Opened FPipelineCacheFile: ../../../RogueCore/Content/PipelineCaches/Windows/RogueCore_PCD3D_SM6.stable.upipelinecache (GUID: 86D4DE714903CEF9944C3091FA2B523B) with 2548 entries. [2025.11.10-21.45.13:390][ 0]LogRHI: Display: FPipelineCacheFile[RogueCore] opened RogueCore, filename RogueCore, guid 86D4DE714903CEF9944C3091FA2B523B. [2025.11.10-21.45.13:390][ 0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - RogueCore begining compile. [2025.11.10-21.45.13:391][ 0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'RogueCore' and enqueued 2548 tasks for precompile. (cache contains 2548, 2548 eligible, 0 had missing shaders. 0 already compiled). BatchSize 50 and BatchTime 16.000000. [2025.11.10-21.45.13:391][ 0]LogRHI: Base name for record PSOs is C:/Users/Administrator/AppData/Local/RogueCore/Saved/CollectedPSOs/UE5-CL-0-RogueCore_PCD3D_SM6_0C724EA34C71175F6FFCA1B1A4553B00.rec.upipelinecache [2025.11.10-21.45.13:391][ 0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() Begin [2025.11.10-21.45.13:391][ 0]LogRHI: User cache GC is disabled [2025.11.10-21.45.13:391][ 0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() End [2025.11.10-21.45.13:397][ 0]LogRHI: FPipelineCacheFile Header Game Version: 0 [2025.11.10-21.45.13:397][ 0]LogRHI: FPipelineCacheFile Header Engine Data Version: 29 [2025.11.10-21.45.13:397][ 0]LogRHI: FPipelineCacheFile Header TOC Offset: 468344 [2025.11.10-21.45.13:397][ 0]LogRHI: FPipelineCacheFile File Size: 647217 Bytes [2025.11.10-21.45.13:398][ 0]LogRHI: Opened FPipelineCacheFile: C:/Users/Administrator/AppData/Local/RogueCore/Saved/RogueCore_PCD3D_SM6.upipelinecache (GUID: 91A2E9AE486BAC1CBC2B14B4B031AC34) with 1358 entries. [2025.11.10-21.45.13:398][ 0]LogRHI: Display: FPipelineCacheFile User cache [key:RogueCore_usr] opened 'RogueCore'=1, filename RogueCore, guid 91A2E9AE486BAC1CBC2B14B4B031AC34. [2025.11.10-21.45.13:398][ 0]LogShaderLibrary: Display: Tried to open again shader library 'RogueCore', but could not find new components for it (existing components: 1). [2025.11.10-21.45.13:398][ 0]LogInit: Overriding language with game user settings language configuration option (zh-CN). [2025.11.10-21.45.13:398][ 0]LogInit: Overriding language with game user settings locale configuration option (zh-CN). [2025.11.10-21.45.13:399][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/Game/zh-Hans-CN/Game.locres' could not be opened for reading! [2025.11.10-21.45.13:399][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/PatchNotes/zh-Hans-CN/PatchNotes.locres' could not be opened for reading! [2025.11.10-21.45.13:399][ 0]LogAssetRegistry: FAssetRegistry took 0.0004 seconds to start up [2025.11.10-21.45.13:407][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/PatchNotes/zh-CN/PatchNotes.locres' could not be opened for reading! [2025.11.10-21.45.13:407][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/Game/zh-Hans/Game.locres' could not be opened for reading! [2025.11.10-21.45.13:407][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/PatchNotes/zh-Hans/PatchNotes.locres' could not be opened for reading! [2025.11.10-21.45.13:407][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/Game/zh/Game.locres' could not be opened for reading! [2025.11.10-21.45.13:407][ 0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/PatchNotes/zh/PatchNotes.locres' could not be opened for reading! [2025.11.10-21.45.13:491][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.45.13:545][ 0]LogDeviceProfileManager: Active device profile: [00007FF4128EE6C8][0000026ABCA66DC0 66] Windows [2025.11.10-21.45.13:560][ 0]LogSceneTextures: Display: Enforcing FloatRGBA scene color format due to alpha channel requirement. [2025.11.10-21.45.14:035][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' [2025.11.10-21.45.14:950][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.15:045][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2025.11.10-21.45.15:054][ 0]LogPackageLocalizationCache: Processed 77 localized package path(s) for 4 prioritized culture(s) in 0.000434 seconds [2025.11.10-21.45.15:062][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s [2025.11.10-21.45.15:063][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] [2025.11.10-21.45.15:069][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2025.11.10-21.45.15:154][ 0]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: NetActorFactory name: NetActorFactory id: 0 [2025.11.10-21.45.15:154][ 0]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: NetSubObjectFactory name: NetSubObjectFactory id: 1 [2025.11.10-21.45.15:154][ 0]LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 [2025.11.10-21.45.15:213][ 0]DiscordSDK: Discord DLL Loaded successfully [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: Available graphics and compute adapters: [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: No NPU adapter found with attribute DXCORE_ADAPTER_ATTRIBUTE_D3D12_GENERIC_ML (Windows 11 Version 24H2 or newer)! [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: Available graphics and compute adapters: [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 4070 SUPER (Compute, Graphics) [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: No NPU adapter found! [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: MakeRuntimeORTDml: [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: DirectML: yes [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: RHI D3D12: yes [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: D3D12: yes [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: NPU: no [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: Interface availability: [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: GPU: yes [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: RDG: yes [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: NPU: no [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: Available graphics and compute adapters: [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: No NPU adapter found with attribute DXCORE_ADAPTER_ATTRIBUTE_D3D12_GENERIC_ML (Windows 11 Version 24H2 or newer)! [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: Available graphics and compute adapters: [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 4070 SUPER (Compute, Graphics) [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) [2025.11.10-21.45.15:307][ 0]LogNNERuntimeORT: No NPU adapter found! [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'BitDepth' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'HPFCutoffFrequency' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LowRateFrequency' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LPFCutoffFrequency' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pan' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pitch' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'SampleRate' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'TimeOfDay' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Volume' [2025.11.10-21.45.15:309][ 0]LogAudioModulation: Registering Modulation MetaSound Nodes... [2025.11.10-21.45.15:335][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... [2025.11.10-21.45.15:337][ 0]LogMetaSound: MetaSound Engine Initialized [2025.11.10-21.45.15:337][ 0]LogAudioModulation: Audio Modulation Initialized [2025.11.10-21.45.15:343][ 0]LogSockets: SteamSockets: Initializing Network Relay [2025.11.10-21.45.15:351][ 0]LogUObjectArray: 44161 objects as part of root set at end of initial load. [2025.11.10-21.45.15:351][ 0]LogUObjectArray: 53 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set. [2025.11.10-21.45.15:351][ 0]LogUObjectArray: CloseDisregardForGC: 44161/44161 objects in disregard for GC pool [2025.11.10-21.45.15:365][ 0]LogEngine: Initializing Engine... [2025.11.10-21.45.15:593][ 0]LogNetVersion: Set ProjectVersion to 0.4.127286.0. Version Checksum will be recalculated on next use. [2025.11.10-21.45.15:593][ 0]LogInit: Texture streaming: Enabled [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Initializing Audio Device Manager... [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Loading Default Audio Settings Objects... [2025.11.10-21.45.15:595][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Audio Device Manager Initialized [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Sample Rate: 48000 [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Max Channels (voices): 64 [2025.11.10-21.45.15:595][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 [2025.11.10-21.45.15:595][ 0]LogAudio: Display: AudioDevice MaxSources: 64 [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). [2025.11.10-21.45.15:595][ 0]LogAudio: Display: Audio Modulation Plugin: DefaultModulationPlugin [2025.11.10-21.45.15:656][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' [2025.11.10-21.45.15:820][ 0]LogAudioMixer: Display: Using Audio Hardware Device Voicemeeter Input (VB-Audio Voicemeeter VAIO) [2025.11.10-21.45.15:821][ 0]LogAudioMixer: Display: Initializing Sound Submixes... [2025.11.10-21.45.15:821][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmix' [2025.11.10-21.45.15:821][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverb' [2025.11.10-21.45.15:824][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 [2025.11.10-21.45.15:824][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 [2025.11.10-21.45.15:841][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 [2025.11.10-21.45.15:841][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 [2025.11.10-21.45.15:841][ 0]LogInit: FAudioDevice initialized with ID 1. [2025.11.10-21.45.15:841][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 [2025.11.10-21.45.15:849][ 0]LogStreamlineAPI: [Info]: [05-45-15][streamline][info][tid:5172][4s:812ms:193us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.45.17:019][ 0]LogD3D12RHI: Waited for PSO creation for 100.000000ms [2025.11.10-21.45.17:027][ 0]LogD3D12RHI: Waited for PSO creation for 100.000000ms [2025.11.10-21.45.17:052][ 0]LogD3D12RHI: Waited for PSO creation for 100.000000ms [2025.11.10-21.45.19:425][ 0]LogRHI: Warning: FShaderPipelineCache RogueCore completed 2548 tasks in 0.03s (5.99s wall time since intial open). [2025.11.10-21.45.19:512][ 0]FSDLog_Gameflow: UOnlineSessionSubSystem::PostInit onlineSub [2025.11.10-21.45.19:512][ 0]FSDLog_Gameflow: UOnlineSessionSubSystem::PostInit SessionInt.IsValid [2025.11.10-21.45.19:517][ 0]DiscordSDK: Discord Initialization failed with error (4) [2025.11.10-21.45.19:517][ 0]DiscordWrap: FSlateApplication initialized [2025.11.10-21.45.19:517][ 0]DiscordWrap: inputProcessor created [2025.11.10-21.45.19:517][ 0]DiscordWrap: Discord: Server Invite URL https://discordapp.com/api/invites/DRG?with_counts=true [2025.11.10-21.45.19:517][ 0]FSDLog_Gameflow: UFSDGameInstance::Init. [2025.11.10-21.45.19:517][ 0]FSDLog_Gameflow: UFSDGameInstance::Init Register delegate for ticker callback [2025.11.10-21.45.19:518][ 0]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:532][ 0]LogStreaming: Warning: LoadPackage: SkipPackage: /Engine/Transient (0xDBE82931556C7DEA) - The package to load does not exist on disk or in the loader [2025.11.10-21.45.19:532][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object /Engine/Transient.GameEngine_2147482586:BP_GameInstance_C_2147482539._MENU_Crafting_C_2147272020.WidgetTree_2147272019.MasteryBar' [2025.11.10-21.45.19:547][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object /Engine/Transient.GameEngine_2147482583:BP_GameInstance_C_2147482535._MENU_Crafting_C_2147402121.WidgetTree_2147402120.MasteryBar' [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:600][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.19:660][ 0]FSDLog_Gameflow: UFSDSaveGame::LoadFromDisk [2025.11.10-21.45.19:692][ 0]LogInit: OS: Windows 11 (23H2) [10.0.22631.5039] (), CPU: Intel(R) Core(TM) i7-14700K, GPU: NVIDIA GeForce RTX 4070 SUPER [2025.11.10-21.45.19:692][ 0]FSDLog_Gameflow: CmdLine: -disablemodding [2025.11.10-21.45.19:692][ 0]LogOnline: UFSDGameInstance::PostInit. [2025.11.10-21.45.19:692][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit onlineSub [2025.11.10-21.45.19:692][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit SessionInt.IsValid [2025.11.10-21.45.19:692][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit post online sub system [2025.11.10-21.45.19:693][ 0]FSDLog_Gameflow: UFSDGameInstance::PostInit Done [2025.11.10-21.45.19:693][ 0]FSDLog_Gameflow: UFSDGameInstance loading always loaded worlds... [2025.11.10-21.45.19:905][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/Controller/PadSpeakerSubMixParent.PadSpeakerSubMixParent. [2025.11.10-21.45.19:905][ 0]LogAudioMixer: Display: Registering submix EndpointSubmix /Game/Audio/Controller/PadSpeakerEndpoint.PadSpeakerEndpoint. [2025.11.10-21.45.19:905][ 0]LogAudioEndpoints: Display: No endpoint implementation for Pad Speaker Output found for this platform. Endpoint Submixes set to this type will not do anything. [2025.11.10-21.45.19:905][ 0]LogAudioMixer: Display: Registering submix EndpointSubmix /Game/Audio/Controller/PadSpeakerEndpoint.PadSpeakerEndpoint. [2025.11.10-21.45.19:905][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/Controller/VibrationSubMixParent.VibrationSubMixParent. [2025.11.10-21.45.20:078][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.10-21.45.20:079][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_1 [2025.11.10-21.45.20:079][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.45.20:111][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms [2025.11.10-21.45.20:114][ 0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - RogueCore_usr begining compile. [2025.11.10-21.45.20:114][ 0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'RogueCore_usr' and enqueued 1358 tasks for precompile. (cache contains 1358, 1358 eligible, 0 had missing shaders. 0 already compiled). BatchSize 88 and BatchTime 16.000000. [2025.11.10-21.45.20:511][ 0]LogLoad: Game class is 'GameModeBase' [2025.11.10-21.45.20:517][ 0]LogWorld: Bringing World /Game/Maps/UILevels/LVL_CharacterSelection.LVL_CharacterSelection up for play (max tick rate 0) at 2025.11.11-05.45.20 [2025.11.10-21.45.20:517][ 0]LogWorld: Bringing up level for play took: 0.006210 [2025.11.10-21.45.20:519][ 0]LogLoad: Took 0.440194 seconds to LoadMap(/Game/Maps/UILevels/LVL_CharacterSelection) [2025.11.10-21.45.20:519][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk) [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk) [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: osVersion detected: 10.0.22631, required: 10.0.0 [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: driverVersion detected: 581.29.0, required: 512.15.0 [2025.11.10-21.45.20:519][ 0]LogStreamlineRHI: requiredTags (0): {} [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDLSS_G) -> (0, Result::eOk) [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureDLSS_G) versionSL = 2.8.12, versionNGX = 310.3.0 -> (0, Result::eOk) [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureDLSS_G) -> (0, Result::eOk) [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: FeatureRequirements kFeatureDLSS_G: flags FeatureRequirementFlags::eHardwareSchedulingRequired|FeatureRequirementFlags::eVSyncOffRequired|FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: maxNumCPUThreads : 2 [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: maxNumViewports : 1 [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: osVersion detected: 10.0.22631, required: 10.0.19041 [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: driverVersion detected: 581.29.0, required: 512.15.0 [2025.11.10-21.45.20:520][ 0]LogStreamlineRHI: requiredTags (4): {kBufferTypeDepth (0), kBufferTypeMotionVectors (1), kBufferTypeHUDLessColor (2), kBufferTypeUIColorAndAlpha (23)} [2025.11.10-21.45.20:520][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.10-21.45.20:520][ 0]LogStreamlineAPI: Warning: [Warn]: [05-45-20][streamline][warn][tid:4476][9s:483ms:218us]dlss_gEntry.cpp:1048[slGetData] slDLSSGGetState must be synchronized with the present thread, if not already, especially if using DLSS-G inputs-processing completion fence and value! [2025.11.10-21.45.20:520][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/LVL_CharacterSelection [2025.11.10-21.45.20:522][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.10-21.45.20:522][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_2 [2025.11.10-21.45.20:522][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.45.20:539][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.97ms [2025.11.10-21.45.20:669][ 0]LogLoad: Game class is 'GameMode' [2025.11.10-21.45.20:670][ 0]LogPhysics: Warning: FConstraintInstance::GetRefFrame : Contained scale. [2025.11.10-21.45.20:671][ 0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: <NoName> [2025.11.10-21.45.20:671][ 0]LogPhysics: Warning: FConstraintInstance::GetRefFrame : Contained scale. [2025.11.10-21.45.20:672][ 0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun.LVL_Loading_StartRun up for play (max tick rate 0) at 2025.11.11-05.45.20 [2025.11.10-21.45.20:672][ 0]LogWorld: Bringing up level for play took: 0.002503 [2025.11.10-21.45.20:672][ 0]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.45.20:673][ 0]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.45.20:673][ 0]LogLoad: Took 0.151585 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun) [2025.11.10-21.45.20:673][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.10-21.45.20:673][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.10-21.45.20:673][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun [2025.11.10-21.45.20:674][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.10-21.45.20:674][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_3 [2025.11.10-21.45.20:674][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.45.20:704][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms [2025.11.10-21.45.20:782][ 0]LogLoad: Game class is 'GameMode' [2025.11.10-21.45.20:783][ 0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator.LVL_Loading_Elevator up for play (max tick rate 0) at 2025.11.11-05.45.20 [2025.11.10-21.45.20:783][ 0]LogWorld: Bringing up level for play took: 0.001181 [2025.11.10-21.45.20:783][ 0]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.45.20:783][ 0]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.45.20:783][ 0]LogLoad: Took 0.109178 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator) [2025.11.10-21.45.20:783][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.10-21.45.20:783][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.10-21.45.20:783][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator [2025.11.10-21.45.20:785][ 0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.10-21.45.20:785][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_4 [2025.11.10-21.45.20:785][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.45.20:803][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms [2025.11.10-21.45.21:076][ 0]LogLoad: Game class is 'GameModeBase' [2025.11.10-21.45.21:076][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/UILevels/RogueCore/EndScreen/SLVL_EndScreen_01) is flushing async loading [2025.11.10-21.45.21:166][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/UILevels/RogueCore/EndScreen/SLVL_EndScreen_Lights) is flushing async loading [2025.11.10-21.45.21:216][ 0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen.LVL_EndScreen up for play (max tick rate 0) at 2025.11.11-05.45.21 [2025.11.10-21.45.21:216][ 0]LogWorld: Bringing up level for play took: 0.001477 [2025.11.10-21.45.21:220][ 0]LogLoad: Took 0.435000 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen) [2025.11.10-21.45.21:220][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.10-21.45.21:220][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.10-21.45.21:220][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/EndScreen/LVL_EndScreen [2025.11.10-21.45.21:220][ 0]FSDLog_Gameflow: UFSDGameInstance loading always loaded worlds done. [2025.11.10-21.45.21:220][ 0]FSDLog_Gameflow: UFSDGameInstance LoadDefaultAssetsBlocking... [2025.11.10-21.45.22:007][ 0]FSDLog_Loading: LoadAssetsBlocking call was empty and there was nothing to load [2025.11.10-21.45.22:329][ 0]FSDLog_Gameflow: UFSDGameInstance LoadDefaultAssetsBlocking DONE [2025.11.10-21.45.22:329][ 0]FSDLog_Gameflow: UFSDGameInstance wait for PSO compilation... [2025.11.10-21.45.25:279][ 0]FSDLog_Gameflow: UFSDGameInstance PSO compilation took too long, continuing (4119 remaining) [2025.11.10-21.45.25:280][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. [2025.11.10-21.45.25:280][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.10-21.45.25:280][ 0]LogInit: Display: Game Engine Initialized. [2025.11.10-21.45.25:281][ 0]LogNNEDenoiser: Ray Tracing is not enabled, therefore NNEDenoiser is not registered! [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: request failed, libcurl error: 28 (Timeout was reached) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 0 (Host discordapp.com:443 was resolved.) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 1 (IPv6: 2a03:2880:f102:183:face:b00c:0:25de) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 2 (IPv4: 157.240.3.50) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 3 ( Trying [2a03:2880:f102:183:face:b00c:0:25de]:443...) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 4 ( Trying 157.240.3.50:443...) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 5 (Connection timed out after 5001 milliseconds) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0: libcurl info message cache 6 (closing connection #1) [2025.11.10-21.45.25:282][ 0]LogHttp: Warning: 0000026A89D541E0 GET https://discordapp.com/api/invites/DRG?with_counts=true completed with reason 'ConnectionError' after 5.00s [2025.11.10-21.45.25:288][ 0]LogDLSS: FDLSSModule::StartupModule Enter [2025.11.10-21.45.25:289][ 0]LogDLSS: PluginBaseDir ../../../RogueCore/Plugins/Nvidia/DLSS [2025.11.10-21.45.25:289][ 0]LogDLSS: NGXBinariesDir ../../../RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/ [2025.11.10-21.45.25:289][ 0]LogDLSS: GDynamicRHIName NVIDIA D3D12 [2025.11.10-21.45.25:289][ 0]LogDLSS: Plugin settings: NGXAppId = 0 [2025.11.10-21.45.25:289][ 0]LogDLSS: NGX Application ID not specified, using the Project ID by default. [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Enter [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Leave [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: Searching for custom and generic DLSS binaries [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-SR binary nvngx_dlss.dll not found in search path E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR binary nvngx_dlssd.dll not found in search path E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-SR binary nvngx_dlss.dll not found in search path E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR binary nvngx_dlssd.dll not found in search path E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\Binaries\ThirdParty\NVIDIA\NGX\Win64\ [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-SR binary nvngx_dlss.dll found in search path E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Plugins\Nvidia\DLSS\Binaries\ThirdParty\Win64\ [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR binary nvngx_dlssd.dll found in search path E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Plugins\Nvidia\DLSS\Binaries\ThirdParty\Win64\ [2025.11.10-21.45.25:289][ 0]LogDLSSNGXRHI: DLSS model OTA update enabled [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:493us]commonEntry.cpp:1036[ngxLog] using path for models: C:\ProgramData/NVIDIA/NGX/models/ [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:626us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 86aa7b4 [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:651us]commonEntry.cpp:1036[ngxLog] project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50 [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:661us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 8618954 [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:668us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId b9b05cc [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:676us]commonEntry.cpp:1036[ngxLog] listItem.engineVersion .* listItem.genericCMSId 876232c [2025.11.10-21.45.25:302][ 0]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:4476][14s:265ms:683us]commonEntry.cpp:1036[ngxLog] Found cms id 86aa7b4 for engine: ue4 engineVersion 5.6 projectID 2B64C07B4617E56557FF8A9473CBB832 [2025.11.10-21.45.25:303][ 0]LogDLSSNGX: [SDK]: [2025-11-11 05:45:25] [NGXSafeInitializeLog:141] App logging hooks successfully initialized [2025.11.10-21.45.25:303][ 0]LogDLSSNGX: [SDK]: [2025-11-11 05:45:25] [NGXLoadLibrary:287] error: failed to load NGXCore: 126 (E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\_nvngx.dll) [2025.11.10-21.45.25:303][ 0]LogDLSSNGX: [SDK]: [2025-11-11 05:45:25] [NGXLoadLibrary:287] error: failed to load NGXCore: 126 (E:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\nvngx.dll) [2025.11.10-21.45.25:303][ 0]LogDLSSNGX: [SDK]: [2025-11-11 05:45:25] [NGXGetPathUsingQAI:139] Path to driverStore found using QAI: C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_8fb57f19613dba6f [2025.11.10-21.45.25:316][ 0]LogDLSSNGX: [SDK]: [2025-11-11 05:45:25] [NGXLoadCoreLibrary:240] Loading C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_8fb57f19613dba6f\_nvngx.dll succeeded [2025.11.10-21.45.25:316][ 0]LogDLSSNGX: [Core]: [2025-11-11 05:45:25] [NGXSafeInitializeLog:133] App logging hooks successfully initialized [2025.11.10-21.45.25:328][ 0]LogDLSSNGX: [DLSS]: [2025-11-11 05:45:25] [tid:4476][NGXInitLog:223] App logging hooks successfully initialized [2025.11.10-21.45.25:328][ 0]LogDLSSNGX: [DLSS]: [2025-11-11 05:45:25] [tid:4476][NGXInitLog:230] Built with APP_NAME = default_nda [2025.11.10-21.45.25:329][ 0]LogDLSSNGX: [DLSS]: [2025-11-11 05:45:25] [tid:4476][NGXInitLog:223] App logging hooks successfully initialized [2025.11.10-21.45.25:329][ 0]LogDLSSNGX: [DLSS]: [2025-11-11 05:45:25] [tid:4476][NGXInitLog:230] Built with APP_NAME = app_transformer_dlssd [2025.11.10-21.45.25:329][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init_with_ProjectID(ProjectID = 2B64C07B4617E56557FF8A9473CBB832, EngineVersion=5.6, APIVersion = 0x15, Device=0000026AC55E9B10) -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:329][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init (Log C:/Users/Administrator/AppData/Local/RogueCore/Saved/Logs/) -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:329][ 0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_GetCapabilityParameters -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:329][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0 [2025.11.10-21.45.25:329][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 470 [2025.11.10-21.45.25:329][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 0 [2025.11.10-21.45.25:329][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 537 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 2 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS is supported by the currently installed driver. Minimum driver version was reported as: 470.0 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR is supported by the currently installed driver. Minimum driver version was reported as: 537.2 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_EParameter_SuperSampling_Available -> (1 NVSDK_NGX_Result_Success), DlssAvailable = 1 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_Available -> (1 NVSDK_NGX_Result_Success), DlssRRAvailable = 1 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:330][ 0]LogDLSS: QualityMode -2: bSupported = 1, ResolutionFraction = 0.3330. MinResolutionFraction=0.3330, MaxResolutionFraction 0.3330 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:330][ 0]LogDLSS: QualityMode -1: bSupported = 1, ResolutionFraction = 0.5000. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:330][ 0]LogDLSS: QualityMode 0: bSupported = 1, ResolutionFraction = 0.5800. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:330][ 0]LogDLSS: QualityMode 1: bSupported = 1, ResolutionFraction = 0.6670. MinResolutionFraction=0.5000, MaxResolutionFraction 1.0000 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:330][ 0]LogDLSS: QualityMode 2: bSupported = 0, ResolutionFraction = 0.0000. MinResolutionFraction=0.0000, MaxResolutionFraction 0.0000 [2025.11.10-21.45.25:330][ 0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success) [2025.11.10-21.45.25:330][ 0]LogDLSS: QualityMode 3: bSupported = 1, ResolutionFraction = 1.0000. MinResolutionFraction=0.9900, MaxResolutionFraction 1.0000 [2025.11.10-21.45.25:330][ 0]LogDLSS: NumRuntimeQualityModes=5, MinDynamicResolutionFraction=0.5000, MaxDynamicResolutionFraction=1.0000 [2025.11.10-21.45.25:330][ 0]LogDLSS: NVIDIA NGX DLSS supported DLSS-SR=1 DLSS-RR=1 [2025.11.10-21.45.25:330][ 0]LogDLSS: FDLSSDenoiserWrapper(Inactive) wrapping ScreenSpaceDenoiser [2025.11.10-21.45.25:330][ 0]LogDLSS: FDLSSModule::StartupModule Leave [2025.11.10-21.45.25:330][ 0]LogNIS: FNISCoreModule::StartupModule Enter [2025.11.10-21.45.25:330][ 0]LogNIS: FNISCoreModule::StartupModule Leave [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineCoreModule::StartupModule Enter [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineViewExtension::FStreamlineViewExtension Enter GameThread (tid=4476) [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineViewExtension::FStreamlineViewExtension Leave GameThread (tid=4476) [2025.11.10-21.45.25:330][ 0]LogStreamline: RegisterStreamlineReflexHooks Enter [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk) [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk) [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: osVersion detected: 10.0.22631, required: 10.0.0 [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: driverVersion detected: 581.29.0, required: 512.15.0 [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: requiredTags (0): {} [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::lowLatencyAvailable=1 [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::latencyReportAvailable=1 [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineLatencyMarkers::Initialize sl::ReflexState::flashIndicatorDriverControlled=1 [2025.11.10-21.45.25:330][ 0]LogStreamline: RegisterStreamlineReflexHooks Leave [2025.11.10-21.45.25:330][ 0]LogStreamline: RegisterStreamlineDLSSGHooks Enter [2025.11.10-21.45.25:330][ 0]LogStreamline: RegisterStreamlineDLSSGHooks Leave [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureImGUI) -> (31, Result::eErrorFeatureMissing) [2025.11.10-21.45.25:330][ 0]LogStreamline: NVIDIA Streamline supported 1 [2025.11.10-21.45.25:330][ 0]LogStreamline: FStreamlineCoreModule::StartupModule Leave [2025.11.10-21.45.25:330][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDeepDVC) -> (0, Result::eOk) [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureDeepDVC) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureDeepDVC) -> (0, Result::eOk) [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: FeatureRequirements kFeatureDeepDVC: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: osVersion detected: 10.0.22631, required: 10.0.0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: driverVersion detected: 581.29.0, required: 512.15.0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: requiredTags (1): {kBufferTypeScalingOutputColor (4)} [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: SLisFeatureSupported(kFeaturePCL) -> (0, Result::eOk) [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: SLgetFeatureVersion(kFeaturePCL) versionSL = 2.8.0, versionNGX = 0.0.0 -> (0, Result::eOk) [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: SLgetFeatureRequirements(kFeaturePCL) -> (0, Result::eOk) [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: FeatureRequirements kFeaturePCL: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: maxNumCPUThreads : 0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: maxNumViewports : 0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: osVersion detected: 10.0.22631, required: 10.0.0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: driverVersion detected: 581.29.0, required: 512.15.0 [2025.11.10-21.45.25:331][ 0]LogStreamlineRHI: requiredTags (0): {} [2025.11.10-21.45.25:331][ 0]LogInit: Display: Starting Game. [2025.11.10-21.45.25:331][ 0]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/LVL_StartingScreen?Name=Player" [2025.11.10-21.45.25:331][ 0]LogNet: Browse: /Game/Maps/LVL_StartingScreen?Name=Player [2025.11.10-21.45.25:331][ 0]LogLoad: LoadMap: /Game/Maps/LVL_StartingScreen?Name=Player [2025.11.10-21.45.25:331][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_0 [2025.11.10-21.45.25:331][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.45.25:334][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.10-21.45.25:339][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 1.07ms [2025.11.10-21.45.25:418][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_StartingScreen'. [2025.11.10-21.45.25:418][ 0]LogLoad: Game class is 'BP_StartMenu_GameMode_C' [2025.11.10-21.45.25:419][ 0]LogWorld: Bringing World /Game/Maps/LVL_StartingScreen.LVL_StartingScreen up for play (max tick rate 0) at 2025.11.11-05.45.25 [2025.11.10-21.45.25:419][ 0]LogWorld: Bringing up level for play took: 0.000355 [2025.11.10-21.45.25:421][ 0]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.10-21.45.25:421][ 0]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.45.25:421][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.10-21.45.25:421][ 0]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.10-21.45.25:421][ 0]FSDLog_Gameflow: FADING (0.000000): Bp_StartMenu_PlayerController_C_2147481695: FadeScreenFromBlack [2025.11.10-21.45.25:422][ 0]FSDLog_Gameflow: 0.0 Bp_StartMenu_PlayerController_C_2147481695: FadeScreenFromBlack [2025.11.10-21.45.25:422][ 0]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:424][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:449][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:467][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:478][ 0]LogSettings: Getting screensettings to save [2025.11.10-21.45.25:478][ 0]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:489][ 0]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.25:492][ 0]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0' [2025.11.10-21.45.25:493][ 0]Bp_StartMenu_PlayerController: [Bp_StartMenu_PlayerController_C_2147481695] StartingScreen - No Invite (yet) [2025.11.10-21.45.25:494][ 0]LogLoad: Took 0.163115 seconds to LoadMap(/Game/Maps/LVL_StartingScreen) [2025.11.10-21.45.25:494][ 0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/LVL_StartingScreen [2025.11.10-21.45.25:494][ 0]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/LVL_StartingScreen [2025.11.10-21.45.25:494][ 0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/LVL_StartingScreen [2025.11.10-21.45.25:539][ 0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1 [2025.11.10-21.45.25:540][ 0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0 [2025.11.10-21.45.25:540][ 0]LogRHI: Display: ShaderPipelineCache: Batching Resumed. [2025.11.10-21.45.25:572][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() [2025.11.10-21.45.25:572][ 0]LogLoad: (Engine Initialization) Total time: 16.29 seconds [2025.11.10-21.45.25:717][ 0]LogRawInputWindows: Warning: Device was registered succesfully but not connected (Usage:4 UsagePage:1) [2025.11.10-21.45.25:717][ 0]LogRawInputWindows: Warning: Device was registered succesfully but not connected (Usage:5 UsagePage:1) [2025.11.10-21.45.25:725][ 0]LogContentStreaming: Texture pool size now 800 MB [2025.11.10-21.45.25:729][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:729][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Gold, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:729][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Biome_Plague, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerPlagueTerrain was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerPlagueTerrain has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerPlagueTerrain'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:729][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Croppa, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Croppa was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Croppa has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Croppa'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:729][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Dystrum, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Dystrum was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Dystrum has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Dystrum'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:729][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:729][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Iron, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Iron was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Iron has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Iron'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:730][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Generic_Morkite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Morkite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Morkite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Morkite'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:730][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Nitra, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Nitra was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Nitra has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Nitra'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:730][ 0]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0' [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:730][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T00123 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T00123 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T00123'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:730][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T010 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T010 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T010'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:730][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:730][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T030 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T030 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T030'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T1 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T1 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T1'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T2 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T2 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T2'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T3 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T3 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T3'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T4 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T4 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T4'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T5 was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T5 has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Countdown_T5'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LetsHeadForDroppod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LetsHeadForDroppod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LetsHeadForDroppod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Begin_MULE_Retrieved was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Begin_MULE_Retrieved has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Begin_MULE_Retrieved'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_BXE_EliteDropPod_Escape_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_EscapePod_Departed was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_EscapePod_Departed has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_EscapePod_Departed'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/DropPod/BP_EliteDropPod_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/Default_CharacterShouts_RC, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Falconeer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Guardian, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:731][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:731][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Slicer, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Spotter, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Game/SpaceRig/BP_GameState_SpaceRig, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_SpaceRig_Begin_InitiatingLaunchSequence was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_SpaceRig_Begin_InitiatingLaunchSequence has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_SpaceRig_Begin_InitiatingLaunchSequence'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_CarryThis was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_CarryThis has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_CarryThis'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_EscortMission_LaserPointDrilldozerBosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_EscortMission_LaserPointDrilldozerBosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_EscortMission_LaserPointDrilldozerBosco'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserPointer_GenericDefendBosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserPointer_GenericDefendBosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LaserPointer_GenericDefendBosco'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointerer_Bosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointerer_Bosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointerer_Bosco'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/BP_Bosco, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoamForBosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoamForBosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoamForBosco'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_CallMollyWhenNotMission'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Cheating'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Depositing_NoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_InventoryFullNoDonkey'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Molly_CallFor'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Shouts/CharacterShouts/CharacterShouts_RC_Retcon, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_UpgradeMod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/Abilities/BA_CryoGrenade, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Drone/Bosco/Abilities/BA_Rocket, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Bosco_RocketAttack'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Missions/Warnings/Plague/CleaningPod/Soaper/BP_FoamPuddle, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Missions/Warnings/Plague/CleaningPod/Soaper/BP_FoamPuddle_WalkingPlagueheart, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_LaserpointerFoam'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Heartstone_DefensiveCrystal, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_Ommoran_Beamers was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_Ommoran_Beamers has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_Ommoran_Beamers'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/Enemies/Plague/BP_PlagueWormPod, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_Laserpointer_EnePlaguewormEggs was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_Laserpointer_EnePlaguewormEggs has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_Laserpointer_EnePlaguewormEggs'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Plague/PAF_Plague_SteppingOnPlague, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/UI/HUD_SpaceRig/BP_HUD_SpaceRig, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Promotion_Available was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Promotion_Available has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Promotion_Available'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/UI/HUD_SpaceRig/CampaignNotifications/WND_AssignmentMissionComplete, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Generic_Completion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Generic_Completion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Campaign_Generic_Completion'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/UI/ClaimableRewards/UI_ClaimableRewards_View, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Plague/PAF_PlagueSpores_Area, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByArea'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/Plague/PAF_Plague_Infection_Attack, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByAttack was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByAttack has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_ByAttack'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_PoisonSepticPuddle, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_TakingDamage was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_TakingDamage has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_TakingDamage'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_Infection_WalkingPlagueheart_SlimeTrail, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S4_STE_GettingAffectedRockpox_SlimetrailContact was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S4_STE_GettingAffectedRockpox_SlimetrailContact has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S4_STE_GettingAffectedRockpox_SlimetrailContact'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:732][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:732][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_Electicity_ExpeniteTransmutator, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:733][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:733][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:733][ 0]LoadErrors: Warning: While trying to load package /Game/GameElements/PawnAffliction/PAF_Electicity_DataVault, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Facility_ElectrocutedByCaretaker'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:733][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:733][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:733][ 0]LoadErrors: Warning: While trying to load package /Game/Enemies/Plague/WalkingPlagueheartBoss/PAF_PlagueInfection_Corruptor, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_Proximity was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_Proximity has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_STE_GettingAffectedRockpox_Proximity'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:733][ 0]LogHAL: NoLogging: [2025.11.10-21.45.25:733][ 0]LogHAL: NoLogging: 1101 [2025.11.10-21.45.25:733][ 0]LoadErrors: Warning: While trying to load package /Game/Character/Affliction/AFL_InfectedByRockpoxPlague, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_HeldByRockpox was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_S3_HeldByRockpox has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_S3_HeldByRockpox'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.25:733][ 1]LogHAL: NoLogging: [2025.11.10-21.45.25:736][ 1]LogSlate: Took 0.000137 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.10-21.45.25:736][ 1]LogSlate: Took 0.000073 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareThin.ufont' (51K) [2025.11.10-21.45.25:741][ 1]LogSlate: Took 0.003911 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) [2025.11.10-21.45.25:741][ 1]LogSlate: Took 0.000076 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.10-21.45.25:823][ 1]LogStreaming: Display: FlushAsyncLoading(1868): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.45.25:933][ 3]LogStreamlineAPI: [Info]: [05-45-25][streamline][info][tid:5172][14s:896ms:140us]dlss_gEntry.cpp:1221[slSetData] slDLSSGSetOptions() is called on the thread 5172. [2025.11.10-21.45.26:741][ 19]Bp_StartMenu_PlayerController: [Bp_StartMenu_PlayerController_C_2147481695] Key Press:Left Mouse Button [2025.11.10-21.45.27:534][332]LogOnlineIdentity: STEAM: Obtained steam authticket [2025.11.10-21.45.27:634][332]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.45.27:635][332]LogSlate: Took 0.000139 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.10-21.45.28:539][741]LogSlate: Took 0.000271 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K) [2025.11.10-21.45.29:170][ 19]FSDLog_Gameflow: FADING (3.576859): Bp_StartMenu_PlayerController_C_2147481695: FadeScreenToBlack [2025.11.10-21.45.29:170][ 19]FSDLog_Gameflow: 3.6 Bp_StartMenu_PlayerController_C_2147481695: FadeScreenToBlack [2025.11.10-21.45.30:161][461]LogRHI: Warning: FShaderPipelineCache RogueCore_usr completed 1358 tasks in 0.01s (10.00s wall time since intial open). [2025.11.10-21.45.30:161][462]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - Finished, no jobs remaining. [2025.11.10-21.45.30:671][677]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/Spaceship/LVL_Ramrod_MAIN" [2025.11.10-21.45.30:671][677]LogNet: Browse: /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.10-21.45.30:671][677]LogLoad: LoadMap: /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.10-21.45.30:671][677]LogWorld: BeginTearingDown for /Game/Maps/LVL_StartingScreen [2025.11.10-21.45.30:673][677]LogWorld: UWorld::CleanupWorld for LVL_StartingScreen, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.45.30:673][677]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.30:711][677]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.10-21.45.30:717][677]LogUObjectHash: Compacting FUObjectHashTables data took 1.22ms [2025.11.10-21.45.30:719][677]LogStreaming: Display: FlushAsyncLoading(1871): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.45.31:582][677]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Ramrod_MAIN'. [2025.11.10-21.45.31:582][677]LogLoad: Game class is 'BP_SpaceRig_Gamemode_C' [2025.11.10-21.45.31:582][677]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_Mesh_v07) is flushing async loading [2025.11.10-21.45.31:657][677]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_LightingDefault) is flushing async loading [2025.11.10-21.45.31:657][677]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_VFX_Default) is flushing async loading [2025.11.10-21.45.31:688][677]LogHAL: NoLogging: 1101 [2025.11.10-21.45.31:688][677]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_0.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_216.DefaultSceneRoot' which is static to it. Aborting. [2025.11.10-21.45.31:688][677]LogHAL: NoLogging: [2025.11.10-21.45.31:688][677]LogHAL: NoLogging: 1101 [2025.11.10-21.45.31:688][677]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_1.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_222.DefaultSceneRoot' which is static to it. Aborting. [2025.11.10-21.45.31:688][677]LogHAL: NoLogging: [2025.11.10-21.45.31:688][677]LogHAL: NoLogging: 1101 [2025.11.10-21.45.31:688][677]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_2.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_220.DefaultSceneRoot' which is static to it. Aborting. [2025.11.10-21.45.31:688][677]LogHAL: NoLogging: [2025.11.10-21.45.31:689][677]LogHAL: NoLogging: 1101 [2025.11.10-21.45.31:689][677]PIE: Warning: AttachTo: '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_RamrodSpaceRig_Cabin01_C_3.BP_Terminal_Manual' is not static , cannot attach '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_Terminal_Manual_GEN_VARIABLE_BP_Terminal_Manual_C_CAT_218.DefaultSceneRoot' which is static to it. Aborting. [2025.11.10-21.45.31:689][677]LogHAL: NoLogging: [2025.11.10-21.45.31:695][677]LogWorld: Bringing World /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN up for play (max tick rate 0) at 2025.11.11-05.45.31 [2025.11.10-21.45.31:697][677]LogWorld: Bringing up level for play took: 0.038016 [2025.11.10-21.45.31:698][677]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating [2025.11.10-21.45.31:698][677]FSDLog_Startup: AFSDGameMode::PostLogin - Adding player: BP_PlayerController_SpaceRig_C_2147480318 total count: 1 NumPlayers: 1 [2025.11.10-21.45.31:698][677]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.45.31:698][677]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.45.31:698][677]LogGameMode: Display: Match State Changed from WaitingToStart to InProgress [2025.11.10-21.45.31:702][677]LogTemp: Warning: ULocalPlayer::CalcSceneViewInitOptions One Frame Black Hack [2025.11.10-21.45.31:757][677]LogStreamlineAPI: Warning: [Warn]: [05-45-31][streamline][warn][tid:5172][20s:720ms:058us]dlfgPresent.cpp:455[sanitizeResourceExtent] Invalid backbuffer resource extent, IF optionally specified by the client! Either extent not provided or one of the extent dimensions (0 x 0) is incorrectly zero. Resetting extent to full backbuffer resource size (2560 x 1440) [2025.11.10-21.45.31:802][677]FSDLog_Gameflow: FADING (0.000000): LVL_Ramrod_MAIN_C_1: BlackoutScreen [2025.11.10-21.45.31:802][677]FSDLog_Gameflow: 0.0 LVL_Ramrod_MAIN_C_1: BlackoutScreen [2025.11.10-21.45.31:805][677]FSDLog_Gameflow: FADING (0.000000): BP_SpacerigSpectator_C_2147480312: BlackoutScreen [2025.11.10-21.45.31:805][677]FSDLog_Gameflow: 0.0 BP_SpacerigSpectator_C_2147480312: BlackoutScreen [2025.11.10-21.45.31:805][677]BP_SpacerigSpectator: [BP_SpacerigSpectator_C_2147480312] Setting spectator cam fade [2025.11.10-21.45.31:915][677]LogVoiceEncode: Display: EncoderVersion: libopus unknown [2025.11.10-21.45.31:916][677]FSDLog_Gameflow: FADING (0.000000): BP_PlayerController_SpaceRig_C_2147480318: BlackoutScreen [2025.11.10-21.45.31:916][677]FSDLog_Gameflow: 0.0 BP_PlayerController_SpaceRig_C_2147480318: BlackoutScreen [2025.11.10-21.45.31:916][677]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480318] WindowManager Binds Complete [2025.11.10-21.45.31:916][677]DiscordWrap: Discord: SetupFaction -1 isConnected 0 [2025.11.10-21.45.31:916][677]DiscordWrap: Discord: SetupFaction Will set when connected [2025.11.10-21.45.31:916][677]LogGameState: Match State Changed from WaitingToStart to InProgress [2025.11.10-21.45.31:916][677]LogLoad: Took 1.244773 seconds to LoadMap(/Game/Maps/Spaceship/LVL_Ramrod_MAIN) [2025.11.10-21.45.31:916][677]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.10-21.45.31:916][677]BP_GameInstance: [BP_GameInstance_C_2147482535] /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.10-21.45.31:916][677]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.10-21.45.31:917][677]LogOnlineVoice: OSS: Registering all local talkers [2025.11.10-21.45.31:918][677]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0xFFFFFFFF [2025.11.10-21.45.31:918][677]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.10-21.45.31:929][677]LogOnlineVoice: OSS: RegisterLocalTalker(0) returned 0x00000000 [2025.11.10-21.45.31:929][677]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.10-21.45.31:929][677]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.10-21.45.32:114][677]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.32:174][677]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.32:300][677]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.45.32:300][677]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480318] Last PlayedRetconID [2025.11.10-21.45.32:300][677]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480317 newValue: BP_RetconCharacter_C [2025.11.10-21.45.32:300][677]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480317 got a new SelectedCharacter BP_RetconCharacter_C [2025.11.10-21.45.32:327][677]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.10-21.45.32:327][677]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.10-21.45.32:356][677]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.45.32:356][677]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.10-21.45.32:356][677]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.45.32:370][677]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.10-21.45.32:376][677]LogSlate: Took 0.000129 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Narrow.ufont' (66K) [2025.11.10-21.45.32:376][677]LogSlate: Took 0.000188 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Normal.ufont' (65K) [2025.11.10-21.45.32:377][677]LogSlate: Took 0.000119 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.10-21.45.32:402][677]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.10-21.45.32:402][677]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.10-21.45.32:403][677]ICF_ReachLastLevel_MutatedFacility: Verbose: [ICF_ReachLastLevel_MutatedFacility_C_2147477608] On Start Last Stage Tracking [2025.11.10-21.45.32:403][677]FSDLog_Gameflow: UPlayerHealthComponent rejoinState load damage for PP_G 0: 0.000000 [2025.11.10-21.45.32:420][677]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.45.32:477][677]LogHAL: NoLogging: 1101 [2025.11.10-21.45.32:477][677]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_CharacterRetirement, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_AfterDwarfPromotes'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: 1101 [2025.11.10-21.45.32:478][678]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_CharacterRetirement, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_PromotingDwarf'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: 1101 [2025.11.10-21.45.32:478][678]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: 1101 [2025.11.10-21.45.32:478][678]LoadErrors: Warning: While trying to load package /Game/UI/CharacterSelectionMK2/Retirement/WND_RetirementRewards, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_1stPromotion'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.32:478][678]LogHAL: NoLogging: [2025.11.10-21.45.32:478][678]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.32:483][678]FSDLog_Startup: FSDGameMode: All Controllers are ready [2025.11.10-21.45.32:499][678]LogStreaming: Display: FlushAsyncLoading(2075): 1 QueuedPackages, 46 AsyncPackages [2025.11.10-21.45.32:516][678]FSDLog_Gameflow: FADING (0.402411): HUD_SpaceRig_C_2147477401: FadeScreenFromBlack [2025.11.10-21.45.32:516][678]FSDLog_Gameflow: 0.4 HUD_SpaceRig_C_2147477401: FadeScreenFromBlack [2025.11.10-21.45.32:523][678]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.45.32:769][683]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES : OnlineServiceAndPing of type String [2025.11.10-21.45.32:770][683]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.10-21.45.32:770][683]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.10-21.45.32:770][683]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(1) [2025.11.10-21.45.32:770][683]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(2) [2025.11.10-21.45.32:770][683]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(3) [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: dumping NamedSession: [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: SessionName: GameSession [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: HostingPlayerNum: 0 [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: SessionState: Pending [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: RegisteredPlayers: [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: 0 registered players [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: dumping Session: [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: OwningPlayerName: PP_G [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: OwningPlayerId: PP_G [0x110000113421239] [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: NumOpenPrivateConnections: 0 [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: NumOpenPublicConnections: 3 [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: SessionInfo: HostIP: INVALID SteamP2P: 76561198283362873:7777 Type: Lobby session SessionId: Lobby[0x18...86A0] [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: dumping SessionSettings: [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: NumPublicConnections: 4 [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: NumPrivateConnections: 0 [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bIsLanMatch: false [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bIsDedicated: false [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bUsesStats: false [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bShouldAdvertise: true [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bAllowJoinInProgress: true [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bAllowInvites: true [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bUsesPresence: true [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bUseLobbiesIfAvailable: true [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bAllowJoinViaPresence: true [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: bAllowJoinViaPresenceFriendsOnly: false [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: BuildUniqueId: 0x00000000 [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: Settings: [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_SERVERNAME=欢迎!挖矿很好,致敬来自霍克斯VI。 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_SERVERNAME_SAN=欢迎!挖矿很好,致敬来自霍克斯VI。 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: HostUserID=76561198283362873 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_PWREQUIRED=0 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_PRIVATE=1 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_FULL=0 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_NUMPLAYERS=1 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_CLASSES= : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_CLASSLOCK=1 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_MISSIONSTRUCTURE=DeepDive_Normal : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_MISSION_SEED=-1 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_GLOBALMISSION_SEED=-1 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_GAMESTATE=0 : OnlineServiceAndPing [2025.11.10-21.45.32:770][683]LogOnlineSession: Verbose: OSS: DRG_REGION=CN : OnlineServiceAndPing [2025.11.10-21.45.32:771][683]LogOnlineSession: Verbose: OSS: SteamPingLoc=hkg=33+3,hkg4=213+21/33+3,tyo=54+5,sgp=230+23/66+3,seo=113+11/84+5,maa2=349+34/95+3,bom2=359+35/116+3,dxb=213+21/145+3,syd=157+15/157+3,iad=222+22/215+5,fra=236+23,gru=336+33/335+15 : OnlineServiceAndPing [2025.11.10-21.45.32:771][683]LogOnlineSession: Verbose: OSS: DRG_VERSION=127286 : OnlineServiceAndPing [2025.11.10-21.45.32:771][683]LogNet: ReplicationDriverClass is null! Not using ReplicationDriver. [2025.11.10-21.45.32:771][683]LogNetCore: DDoS detection status: detection enabled: 0 analytics enabled: 0 [2025.11.10-21.45.32:771][683]LogNet: InitBase GameNetDriver (NetDriverDefinition GameNetDriver) using replication model Generic [2025.11.10-21.45.32:771][683]PacketHandlerLog: Loaded PacketHandler component: Engine.EngineHandlerComponentFactory (StatelessConnectHandlerComponent) [2025.11.10-21.45.32:772][683]LogSockets: SteamSockets: Now tracking socket 65536 for addr 76561198283362873:7777, has parent? 0 [2025.11.10-21.45.32:772][683]LogNet: Name:GameNetDriver Def:GameNetDriver SteamSocketsNetDriver_2147477051 started listening on 7777 [2025.11.10-21.45.32:777][683]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.10-21.45.32:777][683]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.10-21.45.32:777][683]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES : OnlineServiceAndPing of type String [2025.11.10-21.45.32:778][684]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES : OnlineServiceAndPing of type String [2025.11.10-21.45.32:779][684]ServerListClientLog: Session Id is finally set [2025.11.10-21.45.32:784][684]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.10-21.45.33:072][715]LogOnlineVoice: OSS: Registering all local talkers [2025.11.10-21.45.33:072][715]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.10-21.45.33:072][715]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.10-21.45.33:074][715]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.10-21.45.33:074][715]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.10-21.45.33:082][716]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.10-21.45.34:081][934]LogHAL: NoLogging: 1101 [2025.11.10-21.45.34:081][934]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/SupplyPod/BP_SupplyPod_Spawn, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Latejoin'. Perhaps it has been deleted or was not synced? [2025.11.10-21.45.34:081][935]LogHAL: NoLogging: [2025.11.10-21.45.51:838][688]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.45.51:838][688]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.45.51:838][688]LogStreaming: Display: FlushAsyncLoading(2091): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.45.51:861][688]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.45.51:861][688]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.10-21.45.51:862][688]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.45.51:864][688]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:864][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:874][688]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.51:874][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:874][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:874][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:874][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:875][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:875][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:875][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:875][688]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.51:889][688]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0 [2025.11.10-21.45.51:889][688]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 0 [2025.11.10-21.45.51:889][688]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.45.55:456][911]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0' [2025.11.10-21.45.55:456][911]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.45.55:456][911]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.45.55:457][911]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.45.55:460][911]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.45.55:462][911]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:462][911]LogStreaming: Display: FlushAsyncLoading(2111): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.45.55:472][911]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:473][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:489][911]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.45.55:490][911]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.55:490][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:490][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:491][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:491][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:491][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:491][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:491][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:491][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:501][911]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.45.55:551][911]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.45.55:551][911]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.45.55:551][911]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.45.57:152][129]LogSettings: Getting screensettings to save [2025.11.10-21.45.57:152][129]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.57:166][129]LogSettings: Getting screensettings to save [2025.11.10-21.45.57:166][129]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.57:180][129]LogSettings: Getting screensettings to save [2025.11.10-21.45.57:180][129]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.57:193][129]LogSettings: Getting screensettings to save [2025.11.10-21.45.57:193][129]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.57:207][129]LogSettings: Getting screensettings to save [2025.11.10-21.45.57:207][129]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.57:220][129]LogSettings: Getting screensettings to save [2025.11.10-21.45.57:220][129]LogSettings: Saving window fullscreen to save file [2025.11.10-21.45.57:267][130]LogSlate: Warning: FontCache flush requested. Reason: Large atlases out of space; 2/1 Textures; frames since last flush: 6130 [2025.11.10-21.45.57:267][130]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.45.57:270][130]LogSlate: Slate font cache was flushed [2025.11.10-21.45.57:272][131]LogSlate: Took 0.000096 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.10-21.45.57:272][131]LogSlate: Took 0.000052 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.10-21.45.57:272][131]LogSlate: Took 0.000047 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.10-21.45.57:275][131]LogSlate: Took 0.002263 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) [2025.11.10-21.45.57:279][131]LogSlate: Took 0.000079 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.10-21.45.57:279][131]LogSlate: Took 0.000062 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareThin.ufont' (51K) [2025.11.10-21.46.07:924][746]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.07:924][746]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.07:924][746]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.46.09:887][ 40]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.09:887][ 40]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.09:887][ 40]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.46.12:027][365]LogStreamlineAPI: Warning: [Warn]: [05-46-12][streamline][warn][tid:5172][60s:991ms:462us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.46.12:475][428]LogStreamlineAPI: [Info]: [05-46-12][streamline][info][tid:5172][61s:438ms:848us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.46.18:908][319]LogStreamlineAPI: Warning: [Warn]: [05-46-18][streamline][warn][tid:5172][67s:872ms:109us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.46.19:212][359]LogStreamlineAPI: [Info]: [05-46-19][streamline][info][tid:5172][68s:175ms:873us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.46.49:627][723]LogConfig: Applying CVar settings from Section [ReflectionQuality@1] File [Scalability] [2025.11.10-21.46.49:627][723]LogConfig: Set CVar [[r.SSR.Quality:2]] [2025.11.10-21.46.49:627][723]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:1]] [2025.11.10-21.46.49:627][723]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:0]] [2025.11.10-21.46.49:632][723]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.46.49:642][723]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.46.49:642][723]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.46.49:646][723]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.46.49:646][723]LogSlate: Took 0.000179 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Narrow.ufont' (66K) [2025.11.10-21.46.49:646][723]LogSlate: Took 0.000041 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Normal.ufont' (65K) [2025.11.10-21.46.52:746][312]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.46.52:746][312]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.46.52:746][312]LogStreaming: Display: FlushAsyncLoading(2123): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.46.52:760][312]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.46.52:760][312]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 0 [2025.11.10-21.46.52:760][312]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.46.52:762][312]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:762][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:773][312]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.52:789][312]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0 [2025.11.10-21.46.52:789][312]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 0 [2025.11.10-21.46.52:789][312]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.46.55:735][425]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.55:735][425]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.55:735][425]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.46.55:738][425]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.46.55:740][425]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:740][425]LogStreaming: Display: FlushAsyncLoading(2140): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.46.55:751][425]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:751][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:765][425]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.46.55:766][425]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:766][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.55:776][425]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.46.59:857][937]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.59:857][937]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.46.59:857][937]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.00:461][ 5]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.00:461][ 5]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.00:461][ 5]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.01:816][187]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.47.01:947][187]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.47.02:474][192]LogStreamlineAPI: Warning: [Warn]: [05-47-02][streamline][warn][tid:5172][111s:437ms:952us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.47.02:789][223]LogStreamlineAPI: [Info]: [05-47-02][streamline][info][tid:5172][111s:753ms:529us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.47.04:539][500]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.04:539][500]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.04:539][500]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.05:156][588]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.05:156][588]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.05:156][589]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.05:572][655]LogHttp: Warning: 0000026BC49A7C60: request failed, libcurl error: 28 (Timeout was reached) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 0 (Connection 7 seems to be dead) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 1 (shutting down connection #7) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 2 (Connection 8 seems to be dead) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 3 (shutting down connection #8) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 4 (Connection 3 seems to be dead) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 5 (shutting down connection #3) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 6 (TLSv1.3 (IN), TLS alert, close notify (256):) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 7 (TLSv1.3 (OUT), TLS alert, close notify (256):) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 8 (Hostname in DNS cache was stale, zapped) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 9 (Host api.stathat.com:443 was resolved.) [2025.11.10-21.47.05:572][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 10 (IPv6: (none)) [2025.11.10-21.47.05:573][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 11 (IPv4: 13.216.185.76) [2025.11.10-21.47.05:573][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 12 ( Trying 13.216.185.76:443...) [2025.11.10-21.47.05:573][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 13 (Connection timed out after 5000 milliseconds) [2025.11.10-21.47.05:573][656]LogHttp: Warning: 0000026BC49A7C60: libcurl info message cache 14 (closing connection #9) [2025.11.10-21.47.05:573][656]LogHttp: Warning: 0000026BC49A7C60 POST https://api.stathat.com/ez completed with reason 'ConnectionError' after 5.00s [2025.11.10-21.47.05:573][656]LogTemp: UStatHat::OnProcessRequestComplete() failed [2025.11.10-21.47.05:728][676]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.05:728][676]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.05:728][676]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.07:215][917]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:215][917]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:215][917]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.07:396][943]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:397][943]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:397][943]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.07:588][955]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:588][955]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:588][956]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.07:792][985]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:792][985]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.07:792][986]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.08:014][ 18]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.08:014][ 18]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.08:014][ 18]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.08:480][ 88]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.08:481][ 88]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.08:481][ 88]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.08:656][113]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.08:656][114]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.08:656][114]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.10:224][367]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.10:224][367]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.10:224][368]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.11:252][534]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.47.11:376][534]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.47.11:481][539]LogStreamlineAPI: Warning: [Warn]: [05-47-11][streamline][warn][tid:5172][120s:445ms:814us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.47.11:791][570]LogStreamlineAPI: [Info]: [05-47-11][streamline][info][tid:5172][120s:754ms:981us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.47.16:575][189]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.47.16:584][189]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.47.16:584][189]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.47.16:587][189]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.47.19:490][695]LogStreamlineAPI: Warning: [Warn]: [05-47-19][streamline][warn][tid:5172][128s:454ms:261us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.47.19:801][745]LogStreamlineAPI: [Info]: [05-47-19][streamline][info][tid:5172][128s:765ms:719us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.47.43:348][336]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.47.43:348][336]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.47.43:349][336]LogStreaming: Display: FlushAsyncLoading(2152): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.47.43:367][336]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.47.43:367][336]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 0 [2025.11.10-21.47.43:367][336]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.47.43:368][336]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:368][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:380][336]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.43:395][336]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0 [2025.11.10-21.47.43:395][336]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 0 [2025.11.10-21.47.43:395][336]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.47.52:152][ 19]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.52:152][ 19]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.47.52:152][ 19]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.47.52:155][ 19]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:157][ 19]LogStreaming: Display: FlushAsyncLoading(2170): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.47.52:167][ 19]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.47.52:167][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:168][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:182][ 19]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:183][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.47.52:193][ 19]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.48.05:233][400]LogStreamlineAPI: [Info]: [05-48-05][streamline][warn][tid:5172][174s:198ms:099us]defines.h:371[set] Repeated slDLSSGSetOptions() call for the frame 24018. A redundant call or a race condition with Present(). [2025.11.10-21.48.09:491][413]LogHttp: Warning: 0000026B79352BF0: request failed, libcurl error: 28 (Timeout was reached) [2025.11.10-21.48.09:491][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 0 (Too old connection (157 seconds idle), disconnect it) [2025.11.10-21.48.09:491][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 1 (Connection 4 seems to be dead) [2025.11.10-21.48.09:491][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 2 (shutting down connection #4) [2025.11.10-21.48.09:491][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 3 (TLSv1.3 (OUT), TLS alert, close notify (256):) [2025.11.10-21.48.09:491][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 4 (Too old connection (155 seconds idle), disconnect it) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 5 (Connection 5 seems to be dead) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 6 (shutting down connection #5) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 7 (TLSv1.3 (OUT), TLS alert, close notify (256):) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 8 (Too old connection (155 seconds idle), disconnect it) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 9 (Connection 6 seems to be dead) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 10 (shutting down connection #6) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 11 (TLSv1.3 (OUT), TLS alert, close notify (256):) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 12 (Hostname in DNS cache was stale, zapped) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 13 (Host api.stathat.com:443 was resolved.) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 14 (IPv6: (none)) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 15 (IPv4: 13.216.185.76) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 16 ( Trying 13.216.185.76:443...) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 17 (SSL reusing session) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 18 (ALPN: curl offers http/1.1) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 19 (TLSv1.3 (OUT), TLS handshake, Client hello (1):) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 20 (Connection timed out after 5002 milliseconds) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0: libcurl info message cache 21 (closing connection #10) [2025.11.10-21.48.09:492][414]LogHttp: Warning: 0000026B79352BF0 POST https://api.stathat.com/ez completed with reason 'ConnectionError' after 5.00s [2025.11.10-21.48.09:492][414]LogTemp: UStatHat::OnProcessRequestComplete() failed [2025.11.10-21.48.10:589][419]LogStreamlineAPI: Warning: [Warn]: [05-48-10][streamline][warn][tid:5172][179s:554ms:368us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.48.11:010][451]LogStreamlineAPI: [Info]: [05-48-11][streamline][info][tid:5172][179s:974ms:936us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.48.34:249][285]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.48.34:258][285]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.48.34:258][285]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.48.34:261][285]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.48.37:311][813]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.48.37:311][813]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.48.37:312][813]LogStreaming: Display: FlushAsyncLoading(2182): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.37:374][813]BP_PlanetShowroomItem: [BP_PlanetShowroomItem_C_2147472011] Last Depth : None New Depth : Depth4 [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470677' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470675' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470673' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470671' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470669' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470667' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470665' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470663' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470661' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:383][813]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.FSDWorldSettings.AudioComponent_2147470659' for section '/Game/UI/Menus/Menu_RunSelectionMap/WBP_IntelObjective_Icon.WBP_IntelObjective_Icon_C:ClickToClaimAnimation_INST.ClickToClaimAnimation.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.48.37:384][813]LogSlate: Took 0.000265 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K) [2025.11.10-21.48.37:386][813]LogSlate: Warning: FontCache flush requested. Reason: Large atlases out of space; 2/1 Textures; frames since last flush: 20683 [2025.11.10-21.48.37:386][813]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.48.37:399][813]LogSlate: Slate font cache was flushed [2025.11.10-21.48.37:400][814]LogStreaming: Display: FlushAsyncLoading(2185): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.37:403][814]LogSlate: Took 0.000081 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.10-21.48.37:403][814]LogSlate: Took 0.000043 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareThin.ufont' (51K) [2025.11.10-21.48.37:406][814]LogSlate: Took 0.002350 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) [2025.11.10-21.48.37:406][814]LogSlate: Took 0.000075 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.10-21.48.37:406][814]LogSlate: Took 0.000048 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.10-21.48.37:406][814]LogSlate: Took 0.000050 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.10-21.48.37:656][851]LogStreaming: Display: FlushAsyncLoading(2187): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.38:492][981]ServerListClientLog: LobbyHandler::ListLobby - GET https://roguecore.ghostship.dk:26001/v1/servers/list/all?build=127286 [2025.11.10-21.48.38:493][981]_MENU_ServerList: [_MENU_ServerList_C_2147480085] SetUn Restricted [2025.11.10-21.48.38:496][981]LogSlate: Took 0.000167 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K) [2025.11.10-21.48.39:185][ 85]LogHttp: Warning: 0000026BC34F57D0: request failed, libcurl error: 28 (Timeout was reached) [2025.11.10-21.48.39:185][ 85]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 0 (Hostname api.stathat.com was found in DNS cache) [2025.11.10-21.48.39:185][ 86]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 1 ( Trying 13.216.185.76:443...) [2025.11.10-21.48.39:185][ 86]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 2 (SSL reusing session) [2025.11.10-21.48.39:185][ 86]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 3 (ALPN: curl offers http/1.1) [2025.11.10-21.48.39:186][ 86]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 4 (TLSv1.3 (OUT), TLS handshake, Client hello (1):) [2025.11.10-21.48.39:186][ 86]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 5 (Connection timed out after 5001 milliseconds) [2025.11.10-21.48.39:186][ 86]LogHttp: Warning: 0000026BC34F57D0: libcurl info message cache 6 (closing connection #11) [2025.11.10-21.48.39:186][ 86]LogHttp: Warning: 0000026BC34F57D0 POST https://api.stathat.com/ez completed with reason 'ConnectionError' after 5.00s [2025.11.10-21.48.39:186][ 86]LogTemp: UStatHat::OnProcessRequestComplete() failed [2025.11.10-21.48.39:489][131]_MENU_ServerList: [_MENU_ServerList_C_2147480085] Friendlist cache refresh in progress... [2025.11.10-21.48.39:522][132]_MENU_ServerList: [_MENU_ServerList_C_2147480085] Update friendlist succeded [2025.11.10-21.48.42:166][525]_MENU_ServerList: [_MENU_ServerList_C_2147480085] SetUn Restricted [2025.11.10-21.48.42:967][649]LogStreaming: Display: FlushAsyncLoading(2189): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.43:123][672]LogStreaming: Display: FlushAsyncLoading(2191): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.53:160][221]LogStreaming: Display: FlushAsyncLoading(2193): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.53:309][243]LogStreaming: Display: FlushAsyncLoading(2195): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.53:605][289]LogStreaming: Display: FlushAsyncLoading(2197): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.48.55:376][559]LogStreamlineAPI: Warning: [Warn]: [05-48-55][streamline][warn][tid:5172][224s:341ms:828us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.48.55:743][610]LogStreamlineAPI: [Info]: [05-48-55][streamline][info][tid:5172][224s:708ms:854us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.49.01:040][404]LogStreamlineAPI: Warning: [Warn]: [05-49-01][streamline][warn][tid:5172][230s:005ms:490us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.49.01:252][436]LogStreamlineAPI: [Info]: [05-49-01][streamline][info][tid:5172][230s:217ms:173us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.49.02:426][613]LogWindowsTextInputMethodSystem: Activated input method: 中文(简体,中国) - (Keyboard). [2025.11.10-21.49.02:427][613]LogWindowsTextInputMethodSystem: Activated input method: 中文(简体,中国) - 微软拼音 (TSF IME). [2025.11.10-21.49.10:306][818]FSDLog_RunManager: Seed: BXE:200292|R:0|D:4|S:0|B:2|K:7|M:11 [2025.11.10-21.49.10:306][818]LogStreaming: Display: FlushAsyncLoading(2199): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.10:307][818]LogOnline: Warning: OSS: FSDCreateSessionCallbackProxy::Activate - Failed, already in session! [2025.11.10-21.49.10:308][818]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.49.10:308][818]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.49.19:604][466]FSDLog_Gameflow: FADING (220.360571): HUD_SpaceRig_C_2147477401: FadeScreenToBlack [2025.11.10-21.49.19:604][466]FSDLog_Gameflow: 220.400009 HUD_SpaceRig_C_2147477401: FadeScreenToBlack [2025.11.10-21.49.23:604][148]FSDLog_Gameflow: Loading Mission: /Game/Maps/LVL_Procedural [2025.11.10-21.49.23:605][148]LogSettings: Getting screensettings to save [2025.11.10-21.49.23:605][148]LogSettings: Saving window to save file [2025.11.10-21.49.23:619][148]ICF_ReachLastLevel_MutatedFacility: Verbose: [ICF_ReachLastLevel_MutatedFacility_C_2147477608] On Stop Last Stage Tracking [2025.11.10-21.49.23:620][148]LogGameMode: Display: Match State Changed from InProgress to LeavingMap [2025.11.10-21.49.23:620][148]LogGameState: Match State Changed from InProgress to LeavingMap [2025.11.10-21.49.23:620][148]LogGameMode: ProcessServerTravel: /Game/Maps/LVL_Procedural?Game=/Game/Game/GM_BXE.GM_BXE_C [2025.11.10-21.49.23:623][148]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.10-21.49.23:623][148]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.10-21.49.23:623][148]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.10-21.49.23:624][148]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.10-21.49.23:624][148]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.49.23:624][148]LogWorld: SeamlessTravel to: /Game/Maps/LVL_Procedural [2025.11.10-21.49.23:627][149]LogWorld: BeginTearingDown for /Game/Maps/Spaceship/LVL_Ramrod_MAIN [2025.11.10-21.49.23:630][149]LogWorld: UWorld::CleanupWorld for LVL_Ramrod_MAIN, bSessionEnded=false, bCleanupResources=true [2025.11.10-21.49.23:632][149]LogStreamlineAPI: [Info]: [05-49-23][streamline][info][tid:5172][252s:597ms:426us]resourceTaggingForFrame.cpp:282[getTag] SL resource tags for frame 34148 not set yet! [2025.11.10-21.49.23:636][149]LogNet: NotifyActorRenamed StartupActor: DESTROYED_BP_TruckerBalls_C_CHILDACTOR_2147466946 PreviousName: BP_TruckerBalls_GEN_VARIABLE_BP_TruckerBalls_C_CAT_34 [2025.11.10-21.49.23:637][149]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:637][149]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_Mesh_v07, bSessionEnded=false, bCleanupResources=true [2025.11.10-21.49.23:637][149]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:638][149]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_LightingDefault, bSessionEnded=false, bCleanupResources=true [2025.11.10-21.49.23:638][149]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:638][149]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_VFX_Default, bSessionEnded=false, bCleanupResources=true [2025.11.10-21.49.23:638][149]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:638][149]LogWorld: UWorld::CleanupWorld for LVL_Skybox_Ramrod, bSessionEnded=false, bCleanupResources=true [2025.11.10-21.49.23:638][149]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:666][149]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. [2025.11.10-21.49.23:677][149]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.10-21.49.23:701][149]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.49.23:712][149]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.49.23:712][149]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 0 [2025.11.10-21.49.23:716][149]LogUObjectHash: Compacting FUObjectHashTables data took 1.76ms [2025.11.10-21.49.23:720][149]LogStats: SeamlessTravel FlushLevelStreaming - 0.000 s [2025.11.10-21.49.23:720][149]LogWorld: Bringing World /Temp/Untitled_5.Untitled up for play (max tick rate 0) at 2025.11.11-05.49.23 [2025.11.10-21.49.23:720][149]LogWorld: Bringing up level for play took: 0.000156 [2025.11.10-21.49.23:720][149]LogWorld: Sending NotifyLoadedWorld for LP: LocalPlayer_2147481772 PC: BP_PlayerController_SpaceRig_C_2147480318 [2025.11.10-21.49.23:720][149]LogWorld: StartLoadingDestination to: /Game/Maps/LVL_Procedural [2025.11.10-21.49.23:722][150]LogStreamlineAPI: [Info]: [05-49-23][streamline][info][tid:5172][252s:688ms:131us]resourceTaggingForFrame.cpp:282[getTag] SL resource tags for frame 34149 not set yet! [2025.11.10-21.49.23:725][151]LogStreamlineAPI: [Info]: [05-49-23][streamline][info][tid:5172][252s:690ms:704us]resourceTaggingForFrame.cpp:282[getTag] SL resource tags for frame 34150 not set yet! [2025.11.10-21.49.23:725][151]LogStreamlineAPI: Warning: [Warn]: [05-49-23][streamline][warn][tid:4476][252s:690ms:981us]reflexEntry.cpp:98[insertCameraData] Out of order camera data detected! last: 34147, pushing: 34151 [2025.11.10-21.49.23:725][152]LogWorld: BeginTearingDown for /Temp/Untitled_5 [2025.11.10-21.49.23:725][152]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2025.11.10-21.49.23:725][152]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:755][152]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Procedural'. [2025.11.10-21.49.23:758][152]LogAudio: Display: Audio Device unregistered from world 'None'. [2025.11.10-21.49.23:761][152]LogUObjectHash: Compacting FUObjectHashTables data took 1.10ms [2025.11.10-21.49.23:764][152]LogLoad: Game class is 'GM_BXE_C' [2025.11.10-21.49.23:764][152]LogStats: SeamlessTravel FlushLevelStreaming - 0.000 s [2025.11.10-21.49.23:764][152]LogWorld: Bringing World /Game/Maps/LVL_Procedural.LVL_Procedural up for play (max tick rate 0) at 2025.11.11-05.49.23 [2025.11.10-21.49.23:765][152]LogWorld: Bringing up level for play took: 0.000672 [2025.11.10-21.49.23:765][152]LogWorld: Sending NotifyLoadedWorld for LP: LocalPlayer_2147481772 PC: BP_PlayerController_SpaceRig_C_2147480318 [2025.11.10-21.49.23:765][152]LogWorld: ----SeamlessTravel finished in 0.14 seconds ------ [2025.11.10-21.49.23:765][152]FSDLog_Startup: AFSDGameMode::HandleSeamlessTravelPlayer - Removing player: BP_PlayerController_SpaceRig_C_2147480318 total count 0 [2025.11.10-21.49.23:765][152]FSDLog_Startup: AFSDPlayerState::SeamlessTravelTo setting selectedCharacter to BP_RetconCharacter_C [2025.11.10-21.49.23:765][152]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_C_2147466650 newValue: BP_RetconCharacter_C [2025.11.10-21.49.23:765][152]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_C_2147466650 got a new SelectedCharacter BP_RetconCharacter_C [2025.11.10-21.49.23:765][152]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0 [2025.11.10-21.49.23:765][152]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2025.11.10-21.49.23:766][152]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors [2025.11.10-21.49.23:766][152]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating [2025.11.10-21.49.23:766][152]FSDLog_Startup: AFSDGameMode::InitSeamlessTravelPlayer - Adding player: BP_NetworkPlayerController_BXE_C_2147466651 total count: 1 [2025.11.10-21.49.23:766][152]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.49.23:766][152]LogStreaming: Display: FlushAsyncLoading(2206): 2 QueuedPackages, 15 AsyncPackages [2025.11.10-21.49.23:821][152]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.23:841][152]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] Start Wait : Valid Controllers [2025.11.10-21.49.23:841][152]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] End Wait :Valid Controllers [2025.11.10-21.49.23:841][152]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] Start Wait : WorldReady [2025.11.10-21.49.23:841][152]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] End Wait :WorldReady [2025.11.10-21.49.23:841][152]FSDLog_Procedural: AProceduralSetup::SetSeed 532d3e70: Server: True PLSSeed: -1835017209 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147466614) [2025.11.10-21.49.23:841][152]LogTemp: Warning: FloodFiller Seed: -1835017209 [2025.11.10-21.49.23:841][152]FSDLog_Procedural: Warning: NoisyPathfinder Seed: -1835017209 [2025.11.10-21.49.23:841][152]FSDLog_Procedural: PathFiller Seed: -1835017209 [2025.11.10-21.49.23:841][152]LogTemp: Warning: FeatureFiller Seed: -1835017209 [2025.11.10-21.49.23:895][152]LogStaticMesh: [SM_RiftParticleMesh] Mesh is marked for CPU read. [2025.11.10-21.49.24:158][152]FSDLog_Gameflow: FADING (224.483837): BP_NetworkPlayerController_BXE_C_2147466651: BlackoutScreen [2025.11.10-21.49.24:158][152]FSDLog_Gameflow: 224.5 BP_NetworkPlayerController_BXE_C_2147466651: BlackoutScreen [2025.11.10-21.49.24:158][152]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_C_2147466650 newValue: BP_RetconCharacter_C [2025.11.10-21.49.24:158][152]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_C_2147466650 got a new SelectedCharacter BP_RetconCharacter_C [2025.11.10-21.49.24:158][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - OnCharacterSelected [2025.11.10-21.49.24:158][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - HasSelectedCharacter : false LateJoinFinished : false [2025.11.10-21.49.24:158][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - Not Ready to Spawn [2025.11.10-21.49.24:158][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - HasSelectedCharacter : true LateJoinFinished : false [2025.11.10-21.49.24:158][152]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147466651] Start Wait : Host_WaitForValidPLS [2025.11.10-21.49.24:158][152]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147466651] End Wait :Host_WaitForValidPLS [2025.11.10-21.49.24:158][152]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147466651] Start Wait : Server_ClientReady [2025.11.10-21.49.24:158][152]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147466651] Start Wait : NetworkPlayerController - Local Ready [2025.11.10-21.49.24:158][152]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147466651] End Wait :NetworkPlayerController - Local Ready [2025.11.10-21.49.24:167][152]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.24:170][152]BP_NetworkPlayerController: [BP_NetworkPlayerController_BXE_C_2147466651] Rejoin Detected - Starting Rejoin Flow [2025.11.10-21.49.24:170][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - OnCharacterSelected [2025.11.10-21.49.24:170][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - HasSelectedCharacter : true LateJoinFinished : false [2025.11.10-21.49.24:170][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - Not Ready to Spawn [2025.11.10-21.49.24:170][152]BP_PlayerState: [BP_PlayerState_C_2147466650] PlayerState - HasSelectedCharacter : true LateJoinFinished : false [2025.11.10-21.49.24:170][152]FSDLog_Gameflow: FADING (224.483837): Screen_LoadLevel_C_2147466593: FadeScreenFromBlack [2025.11.10-21.49.24:170][152]FSDLog_Gameflow: 224.5 Screen_LoadLevel_C_2147466593: FadeScreenFromBlack [2025.11.10-21.49.24:170][152]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.10-21.49.24:170][152]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 1 [2025.11.10-21.49.24:170][152]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds [2025.11.10-21.49.24:171][152]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Loader World (LS 1) [2025.11.10-21.49.24:171][152]LVL_Loading_StartRun: [LVL_Loading_StartRun_C_0] LoaderSequence normal START: /Game/Maps/UILevels/RogueCore/Loading_Droppod/SQ_Load_StartRun_District_A.SQ_Load_StartRun_District_A [2025.11.10-21.49.24:174][152]LogMovieScene: Starting new camera cut: 'CineCameraActor_2' [2025.11.10-21.49.24:177][152]LVL_Loading_Elevator: [LVL_Loading_Elevator_C_1] LoaderSequence START: /Game/Maps/UILevels/RogueCore/Loading_Droppod/SQ_Load_StartRun_District_A.SQ_Load_StartRun_District_A [2025.11.10-21.49.24:180][152]LogGameState: Match State Changed from EnteringMap to WaitingToStart [2025.11.10-21.49.24:180][152]LogOnlineVoice: OSS: Registering all local talkers [2025.11.10-21.49.24:180][152]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.10-21.49.24:180][152]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.10-21.49.24:181][152]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.10-21.49.24:181][152]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][152]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Umanite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Umanite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Umanite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Umanite'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][152]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Bismor, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Bismor was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Bismor has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Bismor'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][152]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Dirt_SwarmerTunnels, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_SwarmerTunnels was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_SwarmerTunnels has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_SwarmerTunnels'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][152]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_EggSurroundings, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][152]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_ExpeniteContainingRock, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Eggs'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: [2025.11.10-21.49.24:185][152]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][152]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Gold_Melted, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Gold'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:185][153]LogHAL: NoLogging: [2025.11.10-21.49.24:185][153]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:185][153]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Hollomite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Holomite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Holomite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Holomite'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:186][153]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Magnite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Magnite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Magnite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Magnite'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:186][153]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_OilShale, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_OilShale was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_OilShale has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Escort_OilShale'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:186][153]LoadErrors: Warning: While trying to load package /Game/Landscape/Materials/TM_Phazyonite, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointPhazyonite was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointPhazyonite has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointPhazyonite'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:186][153]LogHAL: NoLogging: [2025.11.10-21.49.24:186][153]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.24:191][153]FSDLog_Spawning: Selecting pool(Stationary Pool):) [2025.11.10-21.49.24:191][153]FSDLog_Spawning: ED_FulgorVomiter [2025.11.10-21.49.24:191][153]FSDLog_Spawning: ED_CaveLeech [2025.11.10-21.49.24:191][153]FSDLog_Spawning: ED_Shatterclaw_Slammer [2025.11.10-21.49.24:191][153]FSDLog_Spawning: ED_Krizzok_Boomtick_Spawner [2025.11.10-21.49.24:191][153]FSDLog_Spawning: Selecting pool(Rogue Core Enemy Pool):) [2025.11.10-21.49.24:191][153]FSDLog_Spawning: ED_CoreSpawn_Creeper [2025.11.10-21.49.24:191][153]FSDLog_Spawning: ED_CoreSpawn_Vanguard [2025.11.10-21.49.24:191][153]FSDLog_Procedural: AProceduralSetup::InitializePLS - Biome BIOME_FungusBogs, MissionLength 1.000000, DNA DNA_BXE_Linear_Long5_Complex_C [2025.11.10-21.49.24:191][153]PLS_Base: [PLS_RC_Random_C_2147466614] PLS Initialized [2025.11.10-21.49.24:191][153]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_BXE_Start_D at location X=0.000 Y=0.000 Z=0.000 [2025.11.10-21.49.24:191][153]PLS_RC_Random: [PLS_RC_Random_C_2147466614] LINEAR PLS [2025.11.10-21.49.24:191][153]BPL_ProceduralLevelSetup: [PLS_RC_Random_C_2147466614] Selected Room From DNA: RMA_MU2_Medium_F [2025.11.10-21.49.24:191][153]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_MU2_Medium_F at location X=14962.779 Y=0.000 Z=-746.278 [2025.11.10-21.49.24:191][153]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_RookieRandom_MediumB_BXE at location X=26704.218 Y=0.000 Z=-1920.422 [2025.11.10-21.49.24:192][153]FSDLog_Procedural: AProceduralSetup::SetSeed 532d3e70: Server: True PLSSeed: -1835017209 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147466614) [2025.11.10-21.49.24:192][153]FSDLog_Startup: FSDGameMode: All Controllers are ready [2025.11.10-21.49.24:193][153]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147466651] End Wait :Server_ClientReady [2025.11.10-21.49.24:193][153]BP_ProceduralController: [PLS_RC_Random_C_2147466614] SendRoomData (Server) to PP_G, Seed -1835017209, RoomsInitialState Length = 3, PathObstacles Length = 3 [2025.11.10-21.49.24:193][153]BP_ProceduralController: [ProceduralController] SendRoomData (Client) to PP_G, Seed -1835017209, RoomsInitialState Length = 3, PathObstacles Length = 3 [2025.11.10-21.49.24:193][153]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] Start Wait : FromData - IsInitialized [2025.11.10-21.49.24:193][153]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] End Wait :FromData - IsInitialized [2025.11.10-21.49.24:193][153]FSDLog_Procedural: AProceduralSetup::SetSeed 532d3e70: Server: True PLSSeed: -1835017209 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147466614) [2025.11.10-21.49.24:193][153]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] Start Wait : GenerateLandscape - Objectives [2025.11.10-21.49.24:193][153]FSDLog_Startup: Warning: HasObjectivesReplicated - objective = Obj_BXE_C_2147466613 [2025.11.10-21.49.24:193][153]FSDLog_Startup: Warning: HasObjectivesReplicated - objective = OBJ_BXE_ScaleGarage_C_2147466612 [2025.11.10-21.49.24:193][153]FSDLog_Startup: Warning: HasObjectivesReplicated - HasReplicated = 1 [2025.11.10-21.49.24:193][153]FSDLog_Startup: Warning: HasObjectivesReplicated - Manual run through objective components on gamestate = Obj_BXE_C_2147466613 [2025.11.10-21.49.24:193][153]FSDLog_Startup: Warning: HasObjectivesReplicated - Manual run through objective components on gamestate = OBJ_BXE_ScaleGarage_C_2147466612 [2025.11.10-21.49.24:193][153]BP_Actor_Macros: [PLS_RC_Random_C_2147466614] End Wait :GenerateLandscape - Objectives [2025.11.10-21.49.24:193][153]PLS_Base: [PLS_RC_Random_C_2147466614] CavesAdv -> Generate Landscape From Data [2025.11.10-21.49.24:193][153]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147466651] PlayerController - Server_ClientReady [2025.11.10-21.49.24:201][153]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.49.24:220][153]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.10-21.49.24:221][153]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:221][153]LoadErrors: Warning: While trying to load package /Game/LevelElements/RoomObjects/PassiveFoliage/HarmlessSporesMushroom/BP_Mushroom_01, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Control_MushroomInterception was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Control_MushroomInterception has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Control_MushroomInterception'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:221][154]LogHAL: NoLogging: [2025.11.10-21.49.24:328][174]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:328][174]LoadErrors: Warning: While trying to load package /Game/GameElements/Objectives/LockedRoom/BP_BXE_LockedRoom_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Treasurehunt_LostEquipment was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Treasurehunt_LostEquipment has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_Treasurehunt_LostEquipment'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:328][175]LogHAL: NoLogging: [2025.11.10-21.49.24:400][192]FSDLog_Procedural: ADeepCSGWorld::SelectDebrisSettings: Selecting Debris DBA_FungusBogs_C [2025.11.10-21.49.24:401][192]FSDLog_Procedural: ADebrisDataActor::InitializeChildren - Seed: -1835017209 [2025.11.10-21.49.24:423][195]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.021971 [2025.11.10-21.49.24:525][221]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.101784 [2025.11.10-21.49.24:559][229]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.034063 [2025.11.10-21.49.24:563][230]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.24:673][254]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (271036/875160), Verts (0/1939314), Faces (0/397697) [2025.11.10-21.49.24:674][254]FSDLog_Terrain: OnBaseLayerCommitDone 1 [2025.11.10-21.49.24:675][254]FSDLog_Procedural: NoisyPathfinder::Run - Nodes Searched: 384 RunTime: 0.000218 [2025.11.10-21.49.24:675][254]FSDLog_Procedural: NoisyPathfinder::Run - Nodes Searched: 379 RunTime: 0.000148 [2025.11.10-21.49.24:701][260]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:701][260]LoadErrors: Warning: While trying to load package /Game/GameElements/Objectives/Old/Salvage/EVENT_DropPodDefense_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_25_UplinkProgress_50p was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_25_UplinkProgress_50p has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_25_UplinkProgress_50p'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:701][261]LogHAL: NoLogging: [2025.11.10-21.49.24:701][261]LogHAL: NoLogging: 1101 [2025.11.10-21.49.24:701][261]LoadErrors: Warning: While trying to load package /Game/GameElements/Objectives/Old/Salvage/EVENT_DropPodDefense_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_26_UplinkProgress_75p was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_26_UplinkProgress_75p has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Salvage_26_UplinkProgress_75p'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.24:701][261]LogHAL: NoLogging: [2025.11.10-21.49.24:784][281]LogOnlineVoice: OSS: Registering all local talkers [2025.11.10-21.49.24:784][281]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000 [2025.11.10-21.49.24:784][281]LogOnlineVoice: OSS: Starting networked voice for user: 0 [2025.11.10-21.49.24:785][281]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000 [2025.11.10-21.49.24:785][281]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2025.11.10-21.49.24:792][282]LogVoiceEngine: OSS: Internal voice capture complete. [2025.11.10-21.49.24:827][288]PLS_Base: [PLS_RC_Random_C_2147466614] AddRoomToInitialState, ID = 3, Carve Pass = 1 [2025.11.10-21.49.24:827][288]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_FacilityEntrance_1 at location X=7600.000 Y=0.000 Z=-1200.000 [2025.11.10-21.49.24:841][290]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.003529 [2025.11.10-21.49.24:850][292]FSDLog_Procedural: FSDPathFiller::Run - PathSize 7 Runtime 0.005129 [2025.11.10-21.49.24:856][294]FSDLog_Procedural: FSDPathFiller::Run - PathSize 6 Runtime 0.006399 [2025.11.10-21.49.24:866][296]FSDLog_Procedural: FSDPathFiller::Run - PathSize 7 Runtime 0.008573 [2025.11.10-21.49.24:868][297]FSDLog_Procedural: FSDPathFiller::Run - PathSize 4 Runtime 0.002749 [2025.11.10-21.49.24:869][297]FSDLog_Procedural: FSDPathFiller::Run - PathSize 2 Runtime 0.000949 [2025.11.10-21.49.24:874][299]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.24:941][311]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (264266/990729), Verts (404021/3171159), Faces (82773/665429) [2025.11.10-21.49.24:944][311]FSDLog_Terrain: OnBaseLayerCommitDone 2 [2025.11.10-21.49.24:944][311]LogStreaming: Display: FlushAsyncLoading(2654): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.25:029][311]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/RamrodMediumlConvReverb_Submix.RamrodMediumlConvReverb_Submix. [2025.11.10-21.49.25:029][311]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/ReverbSubmix.ReverbSubmix. [2025.11.10-21.49.25:029][311]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/RamrodLargeConvReverb_Submix.RamrodLargeConvReverb_Submix. [2025.11.10-21.49.25:029][311]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/DimensionEchoTEST.DimensionEchoTEST. [2025.11.10-21.49.25:030][312]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/ReverbSubmix.ReverbSubmix. [2025.11.10-21.49.25:030][312]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/SoundControl/SubMixes/RamrodSmallConvReverb_Submix.RamrodSmallConvReverb_Submix. [2025.11.10-21.49.25:038][313]BP_Scale: Verbose: [ChildActor_Scale_GEN_VARIABLE_BP_ActorMassReaderBox_C_CAT_2147466358] 0.0 / 880.0 [2025.11.10-21.49.25:038][313]PLS_Base: [PLS_RC_Random_C_2147466614] AddRoomToInitialState, ID = 4, Carve Pass = 2 [2025.11.10-21.49.25:039][313]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_CarverScalegarage_ at location X=28732.730 Y=-290.191 Z=-3075.190 [2025.11.10-21.49.25:041][315]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.25:060][320]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (16983/743542), Verts (41225/2847754), Faces (8624/600647) [2025.11.10-21.49.25:061][320]FSDLog_Terrain: OnBaseLayerCommitDone 3 [2025.11.10-21.49.25:061][320]LogStreaming: Display: FlushAsyncLoading(2655): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.25:229][320]PLS_Base: [PLS_RC_Random_C_2147466614] AddRoomToInitialState, ID = 5, Carve Pass = 2 [2025.11.10-21.49.25:229][320]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_BXE_ObjectiveCarver_Large at location X=23803.523 Y=2331.687 Z=-2111.565 [2025.11.10-21.49.25:229][320]GM_BXE: [GM_BXE_C_2147466663] GM_BXE: Large Pass Completed [2025.11.10-21.49.25:234][320]FSDLog_Procedural: Warning: AProceduralSetup::AddLevelGenerationCarver: Carver ( Convex: SM_Carver_DropPodDrill002) is spawned too late to carve in pass (PrePlacement) [2025.11.10-21.49.25:238][320]LogStaticMesh: [SM_elevatorCable] Mesh is marked for CPU read. [2025.11.10-21.49.25:241][320]LogHAL: NoLogging: 1101 [2025.11.10-21.49.25:241][320]LoadErrors: Warning: While trying to load package /Game/GameElements/Elevator/BP_Elevator_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpointer_Droppod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.25:241][320]LogHAL: NoLogging: [2025.11.10-21.49.25:283][324]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.25:806][445]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (2295875/4151100), Verts (1024808/5007325), Faces (217428/1082876) [2025.11.10-21.49.25:812][445]FSDLog_Terrain: OnBaseLayerCommitDone 4 [2025.11.10-21.49.25:812][445]LogStreamableManager: Display: RequestAsyncLoad() called with both valid and null assets, null assets removed from /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_SuspendedPlatformCave_C.BP_Construction_Cave_SuspendedPlatformCave_C_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Wall08_B.BP_Construction_Cave_Wall08_B_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_WallPlatforms_A.BP_Construction_Cave_WallPlatforms_A_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_SuspendedPlatform_B.BP_Construction_Cave_SuspendedPlatform_B_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Bridge.BP_Construction_Cave_Bridge_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Scafolding_D.BP_Construction_Cave_Scafolding_D_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_PickaxeRack.BP_Construction_Cave_PickaxeRack_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Wall06.BP_Construction_Cave_Wall06_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_ToolRack.BP_Construction_Cave_ToolRack_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Tower.BP_Construction_Cave_Tower_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Wall07B.BP_Construction_Cave_Wall07B_C, /Game/Art/Environments/Constructions/Construction_Cave/Construction_Cave_TurretPlatform/BP_TurretPlatform_SentryGun.BP_TurretPlatform_SentryGun_C, /Game/Art/Environments/Constructions/Construction_Cave/BP_Construction_Cave_Scafolding_A.BP_Construction_Cave_Scafolding_A_C! [2025.11.10-21.49.25:812][445]LogStreamableManager: Display: RequestAsyncLoad() called with both valid and null assets, null assets removed from /Game/GameElements/RewardGivers/Shop/BP_Cave_Workbench.BP_Cave_Workbench_C, /Game/GameElements/BioBooster/BP_BioBooster_Frame.BP_BioBooster_Frame_C, /Game/GameElements/RewardGivers/Supplies/BP_BXE_AmmoCrate.BP_BXE_AmmoCrate_C, /Game/Art/Environments/Constructions/Construction_Cave/Construction_Cave_TurretPlatform/BP_TurretPlatform_SentryGun.BP_TurretPlatform_SentryGun_C! [2025.11.10-21.49.25:899][467]LogHAL: NoLogging: 1101 [2025.11.10-21.49.25:899][467]LoadErrors: Warning: While trying to load package /Game/GameElements/RewardGivers/Supplies/BP_BXE_SupplyCrate_Base, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_BrokenSuplyPod was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_BrokenSuplyPod has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Laserpoint_BrokenSuplyPod'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.25:899][468]LogHAL: NoLogging: [2025.11.10-21.49.25:948][480]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Wall08_B_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_WallPlatforms_A_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Scafolding_D_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Wall06_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Wall06_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Tower_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Wall07B_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structure (BP_Construction_Cave_Scafolding_A_C) Failed to spawn! [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Room Count: 3 [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Rooms to populate: 2 [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structures spawned: 6 [2025.11.10-21.49.26:176][535]FSDLog_Procedural: Warning: Structures expected: 14 [2025.11.10-21.49.26:200][536]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.004555 [2025.11.10-21.49.26:210][540]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.010077 [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: 1101 [2025.11.10-21.49.26:240][545]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/HackingTool/UI/Defuse/HackingTool_DefuseBomb, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_StartHacking was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_StartHacking has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_StartHacking'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: 1101 [2025.11.10-21.49.26:240][545]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/HackingTool/UI/Defuse/HackingTool_DefuseBomb, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireCut was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireCut has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireCut'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: 1101 [2025.11.10-21.49.26:240][545]LoadErrors: Warning: While trying to load package /Game/WeaponsNTools/HackingTool/UI/Defuse/HackingTool_DefuseBomb, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireFail was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireFail has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_WireFail'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: [2025.11.10-21.49.26:240][545]LogHAL: NoLogging: 1101 [2025.11.10-21.49.26:240][545]LoadErrors: Warning: While trying to load package /Game/GameElements/GameEvents/RivalBombEvent/BP_RivalBombNode, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointRivalEventAntennaNode was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointRivalEventAntennaNode has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_LaserpointRivalEventAntennaNode'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.26:240][546]LogHAL: NoLogging: [2025.11.10-21.49.26:240][546]LogHAL: NoLogging: 1101 [2025.11.10-21.49.26:240][546]LoadErrors: Warning: While trying to load package /Game/GameElements/GameEvents/RivalBombEvent/BP_RivalBombNode, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_Activated was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_Activated has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_RivalSignal_Node_Activated'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.26:240][546]LogHAL: NoLogging: [2025.11.10-21.49.26:240][546]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.26:303][561]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (272697/2190448), Verts (765108/5065753), Faces (166562/1102577) [2025.11.10-21.49.26:307][561]FSDLog_Terrain: OnBaseLayerCommitDone 5 [2025.11.10-21.49.26:307][561]LogStreaming: Display: FlushAsyncLoading(2679): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.26:378][561]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.26:389][564]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/1917751), Verts (0/4300645), Faces (0/936015) [2025.11.10-21.49.26:389][564]FSDLog_Terrain: OnBaseLayerCommitDone 6 [2025.11.10-21.49.26:392][565]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.26:402][567]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/1917751), Verts (0/4300645), Faces (0/936015) [2025.11.10-21.49.26:402][567]FSDLog_Terrain: OnBaseLayerCommitDone 7 [2025.11.10-21.49.26:406][568]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.26:461][581]FSDLog_Terrain: DebrisCarver DebrisCarved_2147466496 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 1 times [2025.11.10-21.49.26:478][584]FSDLog_Terrain: DebrisCarver DebrisCarved_2147466496 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 3 times [2025.11.10-21.49.26:561][588]FSDLog_Terrain: DebrisCarver DebrisCarved_2147466496 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 2 times [2025.11.10-21.49.26:980][684]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (3792864/5756346), Verts (3947709/9634010), Faces (861621/2131412) [2025.11.10-21.49.26:989][684]FSDLog_Terrain: OnBaseLayerCommitDone 8 [2025.11.10-21.49.26:991][684]FSDLog_Procedural: FSDPathFiller::Run - PathSize 3 Runtime 0.001025 [2025.11.10-21.49.26:992][685]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.27:012][691]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (40235/2004849), Verts (127899/5826644), Faces (28189/1300887) [2025.11.10-21.49.27:016][691]FSDLog_Terrain: OnBaseLayerCommitDone 9 [2025.11.10-21.49.27:016][691]FSDLog_Procedural: UVeinResourceData::CreateInPLS RES_VEIN_Expenite BaseAmount: 250.000000, DensityModifier: 1.000000, Total Amount: 250.000000, UnitsPerLength 8.000000, Total Length 3125.000000 [2025.11.10-21.49.27:016][691]LogStreaming: Display: FlushAsyncLoading(2685): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.27:019][691]FSDLog_Procedural: UCarvedResourceData::CreateInPLS RES_CARVED_RedSugar BaseAmount: 36.000000, DensityModifier: 1.000000 Total Carvers: 8 [2025.11.10-21.49.27:019][691]FSDLog_Procedural: UCollectableResourceData::CreateInPLS RES_COLLECT_Camera BaseAmount: 1.557706, DensityModifier: 1.000000 Total Amount: 2 [2025.11.10-21.49.27:038][692]FSDLog_Procedural: Created Carved resource RES_CARVED_RedSugar Desired: 8 Spawned: 8 Overflow: 0.000000 [2025.11.10-21.49.27:060][699]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.27:198][732]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (494929/2497612), Verts (1251662/7210281), Faces (279095/1609422) [2025.11.10-21.49.27:204][732]FSDLog_Terrain: OnBaseLayerCommitDone 10 [2025.11.10-21.49.27:204][732]LogStreaming: Display: FlushAsyncLoading(2687): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.27:377][770]FSDLog_Spawning: No Mobile Encounter in room: RMA_MU2_Medium_F [2025.11.10-21.49.27:377][770]FSDLog_Spawning: USpawningBlueprintLibrary::CreateEnemyGroup - Creating group of 157.000000 difficulty (314.000000 modified by multiplier 0.500000), excessFromLastWave: 0.000000, Diversity: 3 constant pressure: 0 [2025.11.10-21.49.27:377][770]LogStreaming: Display: FlushAsyncLoading(2688): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.27:471][770]FSDLog_Procedural: EncounterManager::AddEncounter - Runtime 0.094954 [2025.11.10-21.49.27:471][770]FSDLog_Spawning: Adding Stationary Encounter to room: RMA_MU2_Medium_F with difficulty: 157.000000, room size modifier: 1.000000 [2025.11.10-21.49.27:471][770]FSDLog_Spawning: No Mobile Encounter in room: RMA_RookieRandom_MediumB_BXE [2025.11.10-21.49.27:471][770]FSDLog_Spawning: USpawningBlueprintLibrary::CreateEnemyGroup - Creating group of 176.000000 difficulty (352.000000 modified by multiplier 0.500000), excessFromLastWave: 0.000000, Diversity: 2 constant pressure: 0 [2025.11.10-21.49.27:476][770]FSDLog_Procedural: EncounterManager::AddEncounter - Runtime 0.004428 [2025.11.10-21.49.27:476][770]FSDLog_Spawning: Adding Stationary Encounter to room: RMA_RookieRandom_MediumB_BXE with difficulty: 176.000000, room size modifier: 1.000000 [2025.11.10-21.49.27:476][770]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.27:478][770]LogHAL: NoLogging: 1101 [2025.11.10-21.49.27:478][770]LoadErrors: Warning: While trying to load package /Game/Enemies/CoreSpawn/Crawler/BP_Crawler_Puddle, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_LaserPoint was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_LaserPoint has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_SepticSpreaderPuddle_LaserPoint'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.27:478][771]LogHAL: NoLogging: [2025.11.10-21.49.28:136][912]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (2962359/5652483), Verts (2632443/10862854), Faces (588816/2407890) [2025.11.10-21.49.28:147][912]FSDLog_Terrain: OnBaseLayerCommitDone 11 [2025.11.10-21.49.28:148][912]FSDLog_Procedural: Count Veins: RES_VEIN_Expenite , Target 250.000000, Actual 273.466187 [2025.11.10-21.49.28:149][912]FSDLog_Procedural: Count Veins: 红糖 , Target 36.000000, Actual 29.624849 [2025.11.10-21.49.28:169][913]FSDLog_Procedural: Created Carved resource RES_CARVED_RedSugar Desired: 8 Spawned: 2 Overflow: 0.000000 [2025.11.10-21.49.28:169][914]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.28:258][924]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (97010/2796260), Verts (111639/8409778), Faces (24614/1858728) [2025.11.10-21.49.28:263][924]FSDLog_Terrain: OnBaseLayerCommitDone 12 [2025.11.10-21.49.28:263][924]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1 [2025.11.10-21.49.28:290][927]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/2699250), Verts (0/8298139), Faces (0/1834114) [2025.11.10-21.49.28:290][927]FSDLog_Terrain: OnBaseLayerCommitDone 13 [2025.11.10-21.49.28:949][ 11]FSDLog_Terrain: Spawned 7462 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_RubbleFloor--123(0-3).DebrisMesh_2147466515 [2025.11.10-21.49.28:950][ 11]FSDLog_Terrain: Spawned 7350 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_RubbleFloor--123(0-3).DebrisMesh_2147466515 [2025.11.10-21.49.28:950][ 11]FSDLog_Terrain: Spawned 1473 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_RubbleFloor--123(0-3).DebrisMesh_2147466515 [2025.11.10-21.49.28:950][ 11]FSDLog_Terrain: Spawned 1503 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_RubbleFloor--123(0-3).DebrisMesh_2147466515 [2025.11.10-21.49.28:955][ 12]FSDLog_Terrain: Spawned 5276 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_GrassSmall--2K(0-50).DebrisMesh_2147466514 [2025.11.10-21.49.28:981][ 17]FSDLog_Terrain: Spawned 1450 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_Vines--2K(0-50)_b5C(0-30).DebrisMesh_2147466509 [2025.11.10-21.49.28:981][ 17]FSDLog_Terrain: Spawned 1459 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147466516.D_Vines--2K(0-50)_b5C(0-30).DebrisMesh_2147466509 [2025.11.10-21.49.29:006][ 22]FSDLog_Terrain: Spawned 2086 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_DeepCore_Elements_C_2147466502.D_Rubble_Spiky 1.DebrisMesh_2147466501 [2025.11.10-21.49.29:006][ 22]FSDLog_Terrain: Spawned 1979 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_DeepCore_Elements_C_2147466502.D_Rubble_Spiky 1.DebrisMesh_2147466501 [2025.11.10-21.49.29:062][ 32]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (2055438/4967275), Verts (3665540/13039418), Faces (809033/2884324) [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 450 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 450 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 128 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 220 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 120 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 1110 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 480 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 1968 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 112 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 108 [2025.11.10-21.49.29:081][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 140 [2025.11.10-21.49.29:082][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 198 [2025.11.10-21.49.29:082][ 32]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 112 [2025.11.10-21.49.29:122][ 39]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147466651] Asynch Generation Done [2025.11.10-21.49.29:290][ 72]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.FSDWorldSettings.AudioComponent_2147466062' for section '/Game/UI/Menus/Menu_LoadingScreen/UI_LoadingScreen_FirstStage.UI_LoadingScreen_FirstStage_C:AnimText_INST.AnimText.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>' [2025.11.10-21.49.31:993][603]FSDLog_Terrain: OnFinalLayerCommitDone [2025.11.10-21.49.32:028][603]FSDLog_Procedural: Count Veins Final: RES_VEIN_Expenite , Target 250.000000, Actual 230.095230 [2025.11.10-21.49.32:028][603]FSDLog_Audio: Music: Play Sound AmbienceFungusBog_Ambix_Cue in Category: MSC_Ambient [2025.11.10-21.49.32:033][604]FSDLog_Audio: Music: Play Sound ST_RC_7_Looping_MSS in Category: MSC_Music [2025.11.10-21.49.33:091][803]LogGameMode: Display: Match State Changed from WaitingToStart to InProgress [2025.11.10-21.49.33:093][803]LogStreaming: Display: FlushAsyncLoading(2691): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.33:103][803]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.10-21.49.33:103][803]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.10-21.49.33:103][803]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.49.33:103][803]LogSlate: Slate User Destroyed. User Index 8, Is Virtual User: 1 [2025.11.10-21.49.33:103][803]LogSlate: Slate User Unregistered. User Index 8 [2025.11.10-21.49.33:110][803]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered [2025.11.10-21.49.33:110][803]FSDLog_Gameflow: FADING (233.789746): Screen_LoadLevel_C_2147466593: BlackoutScreen [2025.11.10-21.49.33:110][803]FSDLog_Gameflow: 233.800003 Screen_LoadLevel_C_2147466593: BlackoutScreen [2025.11.10-21.49.33:111][803]LogGameState: Match State Changed from WaitingToStart to InProgress [2025.11.10-21.49.33:112][803]FSDLog_Spawning: UEnemyWaveManager::TickComponent - Setting Time to next spawn 340.399994 [2025.11.10-21.49.33:112][803]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1 [2025.11.10-21.49.33:112][803]LogSlate: Slate User Registered. User Index 8, Is Virtual User: 1 [2025.11.10-21.49.33:112][803]ICF_ReachLastLevel_MutatedFacility: Verbose: [ICF_ReachLastLevel_MutatedFacility_C_2147464531] On Start Last Stage Tracking [2025.11.10-21.49.33:112][803]FSDLog_Gameflow: UPlayerHealthComponent rejoinState load damage for PP_G 0: 0.000000 [2025.11.10-21.49.33:113][803]LogMovieScene: Starting new camera cut: 'CineCameraActor_2' [2025.11.10-21.49.33:114][803]LogHAL: NoLogging: 1101 [2025.11.10-21.49.33:114][803]LoadErrors: Warning: While trying to load package /Game/Character/Tutorials/Tutorial_Hint_BoscoFirstSoloMission, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_Bosco was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_Bosco has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_Bosco'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.33:114][804]LogHAL: NoLogging: [2025.11.10-21.49.33:130][808]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.49.33:130][808]LogStreaming: Display: FlushAsyncLoading(2712): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.33:141][809]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.10-21.49.33:142][809]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.10-21.49.33:340][844]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.10-21.49.33:340][844]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds [2025.11.10-21.49.33:340][844]LVL_Loading_StartRun: [LVL_Loading_StartRun_C_0] LoaderSequence STOP [2025.11.10-21.49.33:346][844]LVL_Loading_Elevator: [LVL_Loading_Elevator_C_1] LoaderSequence STOP [2025.11.10-21.49.33:346][844]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Normal World [2025.11.10-21.49.33:346][844]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0 [2025.11.10-21.49.33:347][844]FSDLog_Gameflow: FADING (234.038304): Screen_LoadLevel_C_2147466593: FadeScreenFromBlack [2025.11.10-21.49.33:347][844]FSDLog_Gameflow: 234.0 Screen_LoadLevel_C_2147466593: FadeScreenFromBlack [2025.11.10-21.49.34:353][104]LogHAL: NoLogging: 1101 [2025.11.10-21.49.34:353][104]LoadErrors: Warning: While trying to load package /Game/UI/MissionControl/MissionControl_MainDialogue, a dependent package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig was not available. Additional explanatory information follows: FPackageName: Skipped package /Game/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig has a valid, mounted, mount point but does not exist either on disk or in iostore. The uncooked file would be expected on disk at 'E:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Content/Audio/Characters/Voices/Disabled_shouts/Shout_Mission_Tutorial_FirsttimeOnSpacerig'. Perhaps it has been deleted or was not synced? [2025.11.10-21.49.34:353][105]LogHAL: NoLogging: [2025.11.10-21.49.34:398][117]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.34:414][121]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.49.34:564][156]LogStreaming: Display: FlushAsyncLoading(2723): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.49.34:573][156]HUD_Main_BXE: [HUD_Main_C_2147464372] HUD_Main: Constructing [2025.11.10-21.49.34:573][156]BP_HUD: [BP_HUD_C_2147464443] HUD Spawned: HUD_Main_C_2147464372 [2025.11.10-21.49.34:654][169]HUD_Flares: [BS_Flares_330] Flare Count: 4 [2025.11.10-21.49.43:618][267]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 324 [2025.11.10-21.49.43:618][267]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 324 [2025.11.10-21.49.43:618][267]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 252 [2025.11.10-21.49.43:618][267]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 360 [2025.11.10-21.49.45:627][688]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load [2025.11.10-21.49.45:627][688]LogStreaming: Display: FlushAsyncLoading(2745): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.50.53:638][701]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147466206] Defenders : 1 [2025.11.10-21.50.54:937][920]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147466206] Defenders : 0 [2025.11.10-21.50.54:937][920]BP_Barrier: [BP_Barrier_C_2147466225] Open [2025.11.10-21.51.01:686][214]BP_Barrier: [BP_Barrier_C_2147466225] Close [2025.11.10-21.51.01:686][214]BP_Barrier: [BP_Barrier_C_2147466225] Players Through The Portal : 1 [2025.11.10-21.51.12:230][779]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.51.12:230][779]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.51.12:230][779]LogStreaming: Display: FlushAsyncLoading(2750): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.51.12:277][779]LogSlate: New Slate User Created. Platform User Id 9, User Index 9, Is Virtual User: 1 [2025.11.10-21.51.12:277][779]LogSlate: Slate User Registered. User Index 9, Is Virtual User: 1 [2025.11.10-21.51.12:277][779]LogSlate: Slate User Unregistered. User Index 9 [2025.11.10-21.51.12:277][779]LogSlate: Slate User Destroyed. User Index 9, Is Virtual User: 1 [2025.11.10-21.51.12:277][779]LogSlate: Slate User Unregistered. User Index 9 [2025.11.10-21.51.12:278][779]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.51.15:097][894]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0' [2025.11.10-21.51.15:098][894]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.15:098][894]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.15:099][894]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.15:102][894]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.51.15:103][894]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.15:103][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:104][894]LogStreaming: Display: FlushAsyncLoading(2763): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.51.15:114][894]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:115][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:129][894]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.51.15:130][894]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:130][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:141][894]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.15:141][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:141][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:141][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:141][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:142][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:142][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:142][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:142][894]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.15:189][894]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.15:189][894]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.15:189][894]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.17:418][230]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.17:418][230]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.17:418][230]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.17:842][298]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.17:842][298]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.17:842][298]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.18:663][433]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.18:663][433]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.18:663][433]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.19:670][599]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.19:670][599]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.19:670][599]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.20:436][728]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.20:764][729]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.22:561][ 18]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.22:600][ 18]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.51.22:610][ 18]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.23:058][113]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.24:204][113]LogD3D12RHI: Swapchain Resized: Before: Viewport=0x0000026ABB842E00, Num=3, Size=(2560,1440), PF=18, DXGIFormat=0x18, Fullscreen=0, AllowTearing=1 After: Viewport=0x0000026ABB842E00, Num=3, Size=(2560,1440), PF=18, DXGIFormat=0x18, Fullscreen=1, AllowTearing=1 [2025.11.10-21.51.24:348][114]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.24:399][118]LogStreamlineAPI: Warning: [Warn]: [05-51-24][streamline][warn][tid:5172][373s:366ms:434us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.51.24:549][150]LogStreamlineAPI: [Info]: [05-51-24][streamline][info][tid:5172][373s:515ms:958us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.51.25:438][338]LogSettings: Getting screensettings to save [2025.11.10-21.51.25:438][338]LogSettings: Saving fullscreen to save file [2025.11.10-21.51.25:441][338]LogStreaming: Display: FlushAsyncLoading(2781): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.51.25:453][338]LogSettings: Getting screensettings to save [2025.11.10-21.51.25:453][338]LogSettings: Saving fullscreen to save file [2025.11.10-21.51.25:466][338]LogSettings: Getting screensettings to save [2025.11.10-21.51.25:466][338]LogSettings: Saving fullscreen to save file [2025.11.10-21.51.25:480][338]LogSettings: Getting screensettings to save [2025.11.10-21.51.25:480][338]LogSettings: Saving fullscreen to save file [2025.11.10-21.51.25:493][338]LogSettings: Getting screensettings to save [2025.11.10-21.51.25:493][338]LogSettings: Saving fullscreen to save file [2025.11.10-21.51.25:506][338]LogSettings: Getting screensettings to save [2025.11.10-21.51.25:506][338]LogSettings: Saving fullscreen to save file [2025.11.10-21.51.28:497][990]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.51.28:497][990]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.51.28:501][990]LogSlate: New Slate User Created. Platform User Id 9, User Index 9, Is Virtual User: 1 [2025.11.10-21.51.28:501][990]LogSlate: Slate User Registered. User Index 9, Is Virtual User: 1 [2025.11.10-21.51.28:502][990]LogSlate: Slate User Unregistered. User Index 9 [2025.11.10-21.51.28:502][990]LogSlate: Slate User Destroyed. User Index 9, Is Virtual User: 1 [2025.11.10-21.51.28:502][990]LogSlate: Slate User Unregistered. User Index 9 [2025.11.10-21.51.28:503][990]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} [2025.11.10-21.51.31:458][123]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.31:458][123]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.31:459][123]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.31:462][123]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.51.31:463][123]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:463][123]LogStreaming: Display: FlushAsyncLoading(2784): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.51.31:474][123]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:474][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:488][123]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk [2025.11.10-21.51.31:489][123]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:489][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Skipping saved property OnBXESaveChanged of FSDSaveGame since it is no longer serializable for asset: FMemoryReader. (Maybe resave asset?) [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.31:500][123]LogClass: Warning: Type mismatch in Characters of RunHistoryEntry - Previous (ArrayProperty) Current(StructProperty) in package: FMemoryReader [2025.11.10-21.51.36:319][894]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.36:319][894]LogSettings: Warning: DLSSGSupport: Supported [2025.11.10-21.51.36:319][895]Options_Console_QualitySetting: [Options_Console_QualitySetting] SetSeelect 0 [2025.11.10-21.51.38:935][329]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.38:979][329]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2025.11.10-21.51.39:074][330]LogRenderer: Forcing update for all mesh draw commands: SkyLight change [2025.11.10-21.51.47:175][301]HUD_NegotiationProgress: [HUD_NegotiationProgress_C_2147466412] Defenders : 1 [2025.11.10-21.51.48:467][456]LogStreaming: Display: FlushAsyncLoading(2797): 1 QueuedPackages, 0 AsyncPackages [2025.11.10-21.51.48:486][456]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize [2025.11.10-21.51.48:486][456]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2025.11.10-21.51.48:487][456]FSDLog_Gameflow: FADING (347.544036): [2025.11.10-21.51.48:546][456]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.10-21.51.48:546][456]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.10-21.51.48:546][456]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.10-21.51.48:546][456]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.10-21.51.48:546][456]LogUMG: Warning: The requested size for SRetainerWidget is 0. W:0 H:0 [2025.11.10-21.51.49:156][530]LogSlate: Warning: FontCache flush requested. Reason: Large atlases out of space; 2/1 Textures; frames since last flush: 35717 [2025.11.10-21.51.49:156][530]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2025.11.10-21.51.49:157][530]LogSlate: Slate font cache was flushed [2025.11.10-21.51.49:164][531]LogSlate: Took 0.000174 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K) [2025.11.10-21.51.49:164][531]LogSlate: Took 0.000069 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K) [2025.11.10-21.51.49:164][531]LogSlate: Took 0.000054 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K) [2025.11.10-21.51.49:165][531]LogSlate: Took 0.000051 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K) [2025.11.10-21.51.49:276][544]LogSlate: Took 0.002363 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) [2025.11.10-21.51.52:367][911]LogStreamlineAPI: [Info]: [05-51-52][streamline][warn][tid:5172][401s:334ms:378us]defines.h:371[set] Repeated slDLSSGSetOptions() call for the frame 63512. A redundant call or a race condition with Present(). [2025.11.10-21.51.53:410][911]LogD3D12RHI: Swapchain Resized: Before: Viewport=0x0000026ABB842E00, Num=3, Size=(2560,1440), PF=18, DXGIFormat=0x18, Fullscreen=1, AllowTearing=1 After: Viewport=0x0000026ABB842E00, Num=3, Size=(2560,1440), PF=18, DXGIFormat=0x18, Fullscreen=0, AllowTearing=1 [2025.11.10-21.51.53:490][916]LogStreamlineAPI: Warning: [Warn]: [05-51-53][streamline][warn][tid:5172][402s:458ms:240us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.51.53:751][946]LogStreamlineAPI: [Info]: [05-51-53][streamline][info][tid:5172][402s:718ms:971us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.51.58:784][550]LogStreamlineAPI: Warning: [Warn]: [05-51-58][streamline][warn][tid:5172][407s:752ms:105us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.51.59:068][584]LogStreamlineAPI: [Info]: [05-51-59][streamline][info][tid:5172][408s:035ms:345us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state [2025.11.10-21.52.05:770][260]LogD3D12RHI: Swapchain Resized: Before: Viewport=0x0000026ABB842E00, Num=3, Size=(2560,1440), PF=18, DXGIFormat=0x18, Fullscreen=0, AllowTearing=1 After: Viewport=0x0000026ABB842E00, Num=3, Size=(2560,1440), PF=18, DXGIFormat=0x18, Fullscreen=1, AllowTearing=1 [2025.11.10-21.52.05:801][264]LogStreamlineAPI: Warning: [Warn]: [05-52-05][streamline][warn][tid:5172][414s:769ms:006us]dlfg.cpp:963[setFlipConfig] FC feedback: 1 [2025.11.10-21.52.06:069][297]LogStreamlineAPI: [Info]: [05-52-06][streamline][info][tid:5172][415s:037ms:335us]dlfg.cpp:954[setFlipConfig] Achieved 'good' FC feedback state
Comments
No comments yet.
Loading comments...
Loading comments...
0 comments loaded
You need to join this project to comment on issues.
Join Project