Log File
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
Log file open, 02/21/26 12:28:42 LogWindows: Custom abort handler registered for crash reporting. LogIoDispatcher: Display: Reading toc: ../../../DriveBeyondHorizons/Content/Paks/global.utoc LogIoDispatcher: Display: Toc signature hash: D535825642D9CDCFEAE4823104ED22039C2400AF LogIoDispatcher: Display: Mounting container '../../../DriveBeyondHorizons/Content/Paks/global.utoc' in location slot 0 LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../DriveBeyondHorizons/Content/Paks/global.utoc LogPakFile: Display: Found Pak file ../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.pak attempting to mount. LogPakFile: Display: Mounting pak file ../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.pak. LogIoDispatcher: Display: Reading toc: ../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.utoc LogIoDispatcher: Display: Toc signature hash: DFFDA6E40D26EFC3E352AD0A1995456C5920B2B2 LogIoDispatcher: Display: Mounting container '../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.utoc' in location slot 0 LogPakFile: Display: Mounted IoStore container "../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.utoc" LogPakFile: Display: Mounted Pak file '../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.pak', mount point: '../../../' LogAssetRegistry: Premade AssetRegistry loaded from '../../../DriveBeyondHorizons/AssetRegistry.bin' LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: '' LogInit: Session CrashGUID >==================================================== Session CrashGUID > UECC-Windows-B0C7688742279F45C3F046A0A94757AA Session CrashGUID >==================================================== LogPluginManager: Mounting Engine plugin Paper2D LogPluginManager: Mounting Engine plugin AISupport LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor LogPluginManager: Mounting Engine plugin AnimationData LogPluginManager: Mounting Engine plugin ControlRigSpline LogPluginManager: Mounting Engine plugin ControlRig LogPluginManager: Mounting Engine plugin IKRig LogPluginManager: Mounting Engine plugin Bridge LogPluginManager: Mounting Engine plugin CameraShakePreviewer LogPluginManager: Mounting Engine plugin GameplayCameras LogPluginManager: Mounting Engine plugin OpenColorIO LogPluginManager: Mounting Engine plugin OodleNetwork LogPluginManager: Mounting Engine plugin AnimationSharing LogPluginManager: Mounting Engine plugin ConcertMain LogPluginManager: Mounting Engine plugin ConcertSyncClient LogPluginManager: Mounting Engine plugin ConcertSyncCore LogPluginManager: Mounting Engine plugin ConcertSharedSlate LogPluginManager: Mounting Engine plugin PluginUtils LogPluginManager: Mounting Engine plugin UObjectPlugin LogPluginManager: Mounting Engine plugin AssetManagerEditor LogPluginManager: Mounting Engine plugin BlueprintHeaderView LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes LogPluginManager: Mounting Engine plugin ConsoleVariables LogPluginManager: Mounting Engine plugin EditorScriptingUtilities LogPluginManager: Mounting Engine plugin FacialAnimation LogPluginManager: Mounting Engine plugin GeometryMode LogPluginManager: Mounting Engine plugin LightMixer LogPluginManager: Mounting Engine plugin ObjectMixer LogPluginManager: Mounting Engine plugin SequencerAnimTools LogPluginManager: Mounting Engine plugin SpeedTreeImporter LogPluginManager: Mounting Engine plugin EnhancedInput LogPluginManager: Found config from plugin[EnhancedInput] Input LogPluginManager: Mounting Engine plugin DatasmithContent LogPluginManager: Mounting Engine plugin GLTFExporter LogPluginManager: Mounting Engine plugin VariantManagerContent LogPluginManager: Mounting Engine plugin ActorPalette LogPluginManager: Mounting Engine plugin AutomationUtils LogPluginManager: Mounting Engine plugin BackChannel LogPluginManager: Mounting Engine plugin ChaosCaching LogPluginManager: Mounting Engine plugin ChaosClothEditor LogPluginManager: Mounting Engine plugin ChaosCloth LogPluginManager: Mounting Engine plugin ChaosEditor LogPluginManager: Mounting Engine plugin ChaosNiagara LogPluginManager: Mounting Engine plugin ChaosSolverPlugin LogPluginManager: Mounting Engine plugin ChaosUserDataPT LogPluginManager: Mounting Engine plugin ChaosVehiclesPlugin LogPluginManager: Mounting Engine plugin CharacterAI LogPluginManager: Mounting Engine plugin Dataflow LogPluginManager: Mounting Engine plugin Fracture LogPluginManager: Mounting Engine plugin FullBodyIK LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin LogPluginManager: Mounting Engine plugin GeometryScripting LogPluginManager: Mounting Engine plugin ImpostorBaker LogPluginManager: Mounting Engine plugin OpenImageDenoise LogPluginManager: Mounting Engine plugin PCG LogPluginManager: Mounting Engine plugin PlatformCrypto LogPluginManager: Mounting Engine plugin ProxyLODPlugin LogPluginManager: Mounting Engine plugin PythonScriptPlugin LogPluginManager: Mounting Engine plugin StructUtils LogPluginManager: Mounting Engine plugin UVEditor LogPluginManager: Mounting Engine plugin Niagara LogPluginManager: Mounting Engine plugin AlembicImporter LogPluginManager: Mounting Engine plugin InterchangeEditor LogPluginManager: Mounting Engine plugin JsonBlueprintUtilities LogPluginManager: Mounting Engine plugin AvfMedia LogPluginManager: Mounting Engine plugin ImgMedia LogPluginManager: Mounting Engine plugin MediaCompositing LogPluginManager: Mounting Engine plugin MediaPlate LogPluginManager: Mounting Engine plugin WmfMedia LogPluginManager: Mounting Engine plugin MeshPainting LogPluginManager: Mounting Engine plugin TcpMessaging LogPluginManager: Mounting Engine plugin UdpMessaging 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 OnlineBase LogPluginManager: Mounting Engine plugin OnlineServices LogPluginManager: Mounting Engine plugin OnlineSubsystemNull LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils LogPluginManager: Mounting Engine plugin OnlineSubsystem LogPluginManager: Mounting Engine plugin LauncherChunkInstaller LogPluginManager: Mounting Engine plugin ActorLayerUtilities LogPluginManager: Mounting Engine plugin AndroidFileServer LogPluginManager: Mounting Engine plugin AndroidPermission LogPluginManager: Mounting Engine plugin AppleImageUtils LogPluginManager: Mounting Engine plugin ArchVisCharacter LogPluginManager: Mounting Engine plugin AssetTags LogPluginManager: Mounting Engine plugin AudioCapture LogPluginManager: Mounting Engine plugin AudioSynesthesia LogPluginManager: Mounting Engine plugin AudioWidgets LogPluginManager: Mounting Engine plugin CableComponent LogPluginManager: Mounting Engine plugin ChunkDownloader LogPluginManager: Mounting Engine plugin CustomMeshComponent LogPluginManager: Mounting Engine plugin SQLiteCore LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector LogPluginManager: Mounting Engine plugin GeometryCache LogPluginManager: Mounting Engine plugin GeometryProcessing LogPluginManager: Mounting Engine plugin GooglePAD LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary LogPluginManager: Mounting Engine plugin MeshModelingToolset LogPluginManager: Mounting Engine plugin Metasound LogPluginManager: Mounting Engine plugin MobilePatchingUtils LogPluginManager: Mounting Engine plugin ProceduralMeshComponent LogPluginManager: Mounting Engine plugin PropertyAccessEditor LogPluginManager: Mounting Engine plugin ResonanceAudio LogPluginManager: Mounting Engine plugin SignificanceManager LogPluginManager: Mounting Engine plugin SoundFields LogPluginManager: Mounting Engine plugin SunPosition LogPluginManager: Mounting Engine plugin Synthesis LogPluginManager: Mounting Engine plugin WaveTable LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector LogPluginManager: Mounting Engine plugin WindowsMoviePlayer LogPluginManager: Mounting Engine plugin InterchangeTests LogPluginManager: Mounting Engine plugin TraceUtilities LogPluginManager: Mounting Engine plugin Takes LogPluginManager: Mounting Project plugin ALSV4_CPP LogPluginManager: Mounting Project plugin AdvancedSessions LogPluginManager: Mounting Project plugin CarPlugin LogPluginManager: Mounting Project plugin ShadeupExamplePlugin LogPluginManager: Mounting Project plugin DynamicMeshPainting LogPluginManager: Mounting Project plugin LowEntryExtStdLib LogPluginManager: Mounting Project plugin MasterCharacter LogPluginManager: Mounting Project plugin MasterWeapon LogPluginManager: Mounting Project plugin MazePlugin LogPluginManager: Mounting Project plugin MenuPlugin LogPluginManager: Mounting Project plugin PakLoader LogPluginManager: Mounting Project plugin RoadGenerator LogPluginManager: Mounting Project plugin RuntimeAudioImporter LogPluginManager: Mounting Project plugin RealtimeMeshComponent LogPluginManager: Mounting Project plugin RuntimeTextToSpeech LogPluginManager: Mounting Project plugin SantorLand LogPluginManager: Mounting Project plugin SteamCorePro LogPluginManager: Mounting Project plugin SteamInventoryPlugin LogPluginManager: Mounting Project plugin SyncTime LogPluginManager: Mounting Project plugin TerrainGenerator LogPluginManager: Mounting Project plugin UniversalVoiceChatPro LogPluginManager: Mounting Project plugin VaRest LogPluginManager: Mounting Project plugin VehicleSystemPlugin LogPluginManager: Mounting Project plugin VictoryBPLibrary LogPluginManager: Mounting Project plugin WwiseNiagara LogPluginManager: Mounting Project plugin Wwise LogPluginManager: Mounting Project plugin glTFRuntime LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosVehiclesPlugin/Content/' mounted to '/ChaosVehiclesPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryScripting/Content/' mounted to '/GeometryScripting/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ImpostorBaker/Content/' mounted to '/ImpostorBaker/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PCG/Content/' mounted to '/PCG/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/UVEditor/Content/' mounted to '/UVEditor/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/JsonBlueprintUtilities/Content/' mounted to '/JsonBlueprintUtilities/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/MeshModelingToolset/Content/' mounted to '/MeshModelingToolset/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/SunPosition/Content/' mounted to '/SunPosition/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/' LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/ALS-Community-4.24/Content/' mounted to '/ALSV4_CPP/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/CarPlugin/Content/' mounted to '/CarPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/ComputeShader_Plugin/Content/' mounted to '/ShadeupExamplePlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/DynamicMeshPainting/Content/' mounted to '/DynamicMeshPainting/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/LowEntryExtStdLib/Content/' mounted to '/LowEntryExtStdLib/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MasterCharacter/Content/' mounted to '/MasterCharacter/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MasterWeapon/Content/' mounted to '/MasterWeapon/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MazePlugin/Content/' mounted to '/MazePlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MenuPlugin/Content/' mounted to '/MenuPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RoadGenerator/Content/' mounted to '/RoadGenerator/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RuntimeAudioImporter_5.2/Content/' mounted to '/RuntimeAudioImporter/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RuntimeMeshComponent/Content/' mounted to '/RealtimeMeshComponent/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RuntimeT56ac2a6e98ceV4/Content/' mounted to '/RuntimeTextToSpeech/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SantorLand/Content/' mounted to '/SantorLand/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SteamCorePro/Content/' mounted to '/SteamCorePro/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SteamInventoryPlugin/Content/' mounted to '/SteamInventoryPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SyncTime/Content/' mounted to '/SyncTime/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/TerrainGenerator/Content/' mounted to '/TerrainGenerator/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UniversalVoiceChatPro/Content/' mounted to '/UniversalVoiceChatPro/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VehicleSystemPlugin/Content/' mounted to '/VehicleSystemPlugin/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VictoryBPLibrary/Content/' mounted to '/VictoryBPLibrary/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/WwiseNiagara/Content/' mounted to '/WwiseNiagara/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Wwise/Content/' mounted to '/Wwise/' LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/glTFRuntime-master/Content/' mounted to '/glTFRuntime/' LogInit: Using libcurl 7.83.1 LogInit: - built for Windows LogInit: - supports SSL with OpenSSL/1.1.1n LogInit: - supports HTTP deflate (compression) using libz 1.2.12 LogInit: - other features: LogInit: CURL_VERSION_SSL LogInit: CURL_VERSION_LIBZ LogInit: CURL_VERSION_IPV6 LogInit: CURL_VERSION_ASYNCHDNS LogInit: CURL_VERSION_LARGEFILE LogInit: CurlRequestOptions (configurable via config and command line): LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy LogInit: - bDontReuseConnections = false - Libcurl will reuse connections LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host LogInit: - LocalHostAddr = Default LogInit: - BufferSize = 65536 LogTemp: net.MinHandshakeVersion: 2 LogTemp: net.CurrentHandshakeVersion: 2 LogOnline: OSS: Created online subsystem instance for: SteamCore LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [SteamCore] LogInit: ExecutableName: DriveBeyondHorizons-Win64-Shipping.exe LogInit: Build: UE5-CL-0 LogInit: Engine Version: 5.2.1-0+UE5 LogInit: Compatible Engine Version: 5.2.0-0+UE5 LogInit: Net CL: 0 LogInit: OS: Windows 11 (25H2) [10.0.26200.7840] (), CPU: AMD Ryzen 5 3600 6-Core Processor , GPU: NVIDIA GeForce RTX 3070 LogInit: Compiled (64-bit): Oct 17 2025 15:24:37 LogInit: Architecture: x64 LogInit: Compiled with Visual C++: 19.34.31948.00 LogInit: Build Configuration: Shipping LogInit: Branch Name: UE5 LogInit: Command Line: LogInit: Base Directory: C:[REDACTED:Mac User Path]/Desktop/Jeux/Fichiers/Drive Beyond Horizons/Drive Beyond Horizons/DriveBeyondHorizons/Binaries/Win64/ LogInit: Allocator: binned2 LogInit: Installed Engine Build: 1 LogCoreRedirects: AddRedirect(C:[REDACTED:Mac User Path]/AppData/Local/DriveBeyondHorizons/Saved/Config/Windows/VaRest.ini) has substring redirect /VaRestPlugin/, these are very slow and should be resolved as soon as possible! LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 10485760 bytes for permanent pool. LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: true, Async Loading Thread: true, Async Post Load: true LogStreaming: Display: AsyncLoading2 - Initialized LogInit: Object subsystem initialized LogConfig: Set CVar [[r.setres:1280x720]] [2026.02.21-11.28.44:030][ 0]LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] [2026.02.21-11.28.44:030][ 0]LogConfig: Set CVar [[r.Occlusion.SingleRHIThreadStall:1]] [2026.02.21-11.28.44:030][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] [2026.02.21-11.28.44:042][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] [2026.02.21-11.28.44:042][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] [2026.02.21-11.28.44:042][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.VirtualTextures:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.VelocityOutputPass:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Substrate:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Substrate.OpaqueMaterialRoughRefraction:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.ClearCoatNormal:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.ClearSceneMethod:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.VT.EnableAutoImport:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:2]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.CustomDepth:3]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.RayTracing:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.PathTracing:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Lumen.HardwareRayTracing:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:0.000000]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:2]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Tonemapper.Sharpen:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.EyeAdaptation.BlackHistogramBucketInfluence:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.EyeAdaptation.ExponentialTransitionDistance:5]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRayIntensity:8]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.MaxRayIntensity:6]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRayIntensity:8]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.EyeAdaptation.MethodOverride:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.GridResolution:24]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[r.DistanceFields.DefaultVoxelDensity:0.400000]] [2026.02.21-11.28.44:044][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] [2026.02.21-11.28.44:044][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:1.000000]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:0.5]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:1.000000]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:1.0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:0.5]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:1.0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.AsyncLoadingTimeLimit:0.500000]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[wp.Runtime.BlockOnSlowStreamingRatio:-1.0 ;TBD]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[wp.Runtime.BlockOnSlowStreaming:0.0 ;TBD]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.ContinuouslyIncrementalGCWhileLevelsPendingPurge:0.0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.ForceGCAfterLevelStreamedOut:0.0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.LevelStreamingAddPrimitiveGranularity:10]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[s.AsyncLoadingUseFullTimeLimit:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:10485760]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:3]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:15.000000]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:4]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.BlueprintClusteringEnabled:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.VerifyGCObjectNames:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]] [2026.02.21-11.28.44:044][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] [2026.02.21-11.28.44:044][ 0]LogConfig: Set CVar [[p.EnableMultiplayerWorldOriginRebasing:0]] [2026.02.21-11.28.44:068][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] [2026.02.21-11.28.44:068][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] [2026.02.21-11.28.44:068][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:0.95]] [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:110]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TSR.History.GrandReprojection:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.ShadowQuality:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2560]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.04]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.25]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.75]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:0.95]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] [2026.02.21-11.28.44:069][ 0]LogConsoleManager: Warning: Setting the console variable 'r.Shadow.Virtual.Enable' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByProjectSetting'. Value remains '0' [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.AOQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:275]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:32]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:10]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:0.75]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:85]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:350]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.LensFlareQuality:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.BloomQuality:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:60.000]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Tonemapper.GrainQuantization:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:0 ; cheap slight out of focus]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:24]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1.35]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:2048]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] [2026.02.21-11.28.44:069][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SceneColorFormat:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.DetailMode:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:1]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:0.75]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:2]] [2026.02.21-11.28.44:069][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:72.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:96.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:14]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:56]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:1]] [2026.02.21-11.28.44:070][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[foliage.DensityScale:0.9]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[grass.DensityScale:0.85]] [2026.02.21-11.28.44:070][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] [2026.02.21-11.28.44:070][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] [2026.02.21-11.28.44:077][ 0]LogRHI: Using Default RHI: D3D11 [2026.02.21-11.28.44:078][ 0]LogRHI: Using Highest Feature Level of D3D11: SM5 [2026.02.21-11.28.44:078][ 0]LogRHI: Loading RHI module D3D11RHI [2026.02.21-11.28.44:183][ 0]LogD3D11RHI: Loaded GFSDK_Aftermath_Lib.x64.dll [2026.02.21-11.28.44:183][ 0]LogRHI: Checking if RHI D3D11 with Feature Level SM5 is supported by your system. [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: D3D11 min allowed feature level: 11_0 [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: D3D11 max allowed feature level: 11_1 [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: D3D11 adapters: [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: Testing D3D11 Adapter 0: [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: Description : NVIDIA GeForce RTX 3070 [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: VendorId : 10de [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: DeviceId : 2488 [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: SubSysId : 39081462 [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: Revision : 00a1 [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: DedicatedVideoMemory : 8407482368 bytes [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: DedicatedSystemMemory : 0 bytes [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: SharedSystemMemory : 8551163904 bytes [2026.02.21-11.28.44:212][ 0]LogD3D11RHI: AdapterLuid : 0 34365 [2026.02.21-11.28.44:272][ 0]LogOnlineSubsystemSteamCore: Warning: [FOnlineAsyncTaskManagerSteamCore::OnUserStatsReceived] Obtained steam user stats, but for wrong game! Ignoring. [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: 0. 'NVIDIA GeForce RTX 3070' (Feature Level 11_1) [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: 8018/0/8155 MB DedicatedVideo/DedicatedSystem/SharedSystem, Outputs:1, VendorId:0x10de [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: Testing D3D11 Adapter 1: [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: Description : Microsoft Basic Render Driver [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: VendorId : 1414 [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: DeviceId : 008c [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: SubSysId : 0000 [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: Revision : 0000 [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: DedicatedVideoMemory : 0 bytes [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: DedicatedSystemMemory : 0 bytes [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: SharedSystemMemory : 8551163904 bytes [2026.02.21-11.28.44:469][ 0]LogD3D11RHI: AdapterLuid : 0 42055 [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: 1. 'Microsoft Basic Render Driver' (Feature Level 11_1) [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: 0/0/8155 MB DedicatedVideo/DedicatedSystem/SharedSystem, Outputs:0, VendorId:0x1414 [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: Chosen D3D11 Adapter: [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: Description : NVIDIA GeForce RTX 3070 [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: VendorId : 10de [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: DeviceId : 2488 [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: SubSysId : 39081462 [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: Revision : 00a1 [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: DedicatedVideoMemory : 8407482368 bytes [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: DedicatedSystemMemory : 0 bytes [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: SharedSystemMemory : 8551163904 bytes [2026.02.21-11.28.44:473][ 0]LogD3D11RHI: AdapterLuid : 0 34365 [2026.02.21-11.28.44:473][ 0]LogRHI: RHI D3D11 with Feature Level SM5 is supported and will be used. [2026.02.21-11.28.44:473][ 0]LogInit: Selected Device Profile: [Windows] [2026.02.21-11.28.44:473][ 0]LogHAL: Display: Platform has ~ 16 GB [17102327808 / 17179869184 / 16], which maps to Larger [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) [2026.02.21-11.28.44:474][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:0.70]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@Cine] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.FXAA.Quality:5]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:130]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShadowQuality:2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:1536]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:1024]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:0.70]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:0.8]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.5]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.VolumetricFog:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:0.75]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:512]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:0.0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:1.0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:4]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:4]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:2]] [2026.02.21-11.28.44:474][ 0]LogConsoleManager: Warning: Setting the console variable 'r.Shadow.Virtual.Enable' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByProjectSetting'. Value remains '0' [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.AOQuality:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SSR.Quality:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:1.0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:50]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:300]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.LensFlareQuality:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.BloomQuality:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:35.355]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Upscale.Quality:2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Tonemapper.GrainQuantization:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.LightShaftQuality:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:0.7]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:2]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:0 ; lower gathering accumulator quality]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:2 ; Max3x3 postfilering method]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:3 ; low number of samples when gathering]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:0 ; no foreground scattering]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:0 ; no foreground scattering]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:0 ; faster temporal accumulation]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.006 ; required because low gathering and no scattering and not looking great at 1080p]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.006 ; required because low gathering and no scattering and not looking great at 1080p]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:12]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:4]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:32]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.RefractionQuality:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.DetailMode:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:2 ; Medium quality]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SSS.Scale:0.5]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SSS.Quality:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SSGI.Quality:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:0.25]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:32.0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:24]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:24]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[foliage.DensityScale:0.35]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[grass.DensityScale:0.35]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@1] File [Scalability] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.MaxTempMemoryAllowed:100]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.DefragDynamicBounds:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.VT.MaxUploadsPerFrame:64]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[p.Chaos.Solver.Deterministic:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.PrecompileBatchTime:16]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.D3D12.GPUTimeout:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderDevelopmentMode:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.CreateShadersOnLoad:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shaders.Optimize:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Shaders.FastMath:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.Enabled:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.StartupMode:3]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.Streaming.FramesForFullUpdate:60]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.GameFileMaskEnabled:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.BatchSize:50]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.BackgroundBatchTime:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.ShaderPipelineCache.SaveUserCache:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.OneFrameThreadLag:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.FinishCurrentFrame:0]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.GTSyncType:1]] [2026.02.21-11.28.44:474][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] [2026.02.21-11.28.44:476][ 0]LogInit: Computer: PC-DE-LA-PLOMPT [2026.02.21-11.28.44:476][ 0]LogInit: User: lucil [2026.02.21-11.28.44:476][ 0]LogInit: CPU Page size=4096, Cores=6 [2026.02.21-11.28.44:476][ 0]LogInit: High frequency timer resolution =10.000000 MHz [2026.02.21-11.28.44:476][ 0]LogMemory: Memory total: Physical=15.9GB (16GB approx) [2026.02.21-11.28.44:476][ 0]LogMemory: Platform Memory Stats for Windows [2026.02.21-11.28.44:476][ 0]LogMemory: Process Physical Memory: 192.80 MB used, 209.26 MB peak [2026.02.21-11.28.44:476][ 0]LogMemory: Process Virtual Memory: 177.96 MB used, 178.48 MB peak [2026.02.21-11.28.44:476][ 0]LogMemory: Physical Memory: 8207.82 MB used, 8102.23 MB free, 16310.05 MB total [2026.02.21-11.28.44:476][ 0]LogMemory: Virtual Memory: 11151.18 MB used, 14886.87 MB free, 26038.05 MB total [2026.02.21-11.28.44:483][ 0]LogWindows: WindowsPlatformFeatures enabled [2026.02.21-11.28.44:489][ 0]LogInit: Physics initialised using underlying interface: Chaos [2026.02.21-11.28.44:497][ 0]LogInit: Overriding language with game user settings language configuration option (en). [2026.02.21-11.28.44:497][ 0]LogInit: Overriding language with game user settings locale configuration option (en). [2026.02.21-11.28.44:539][ 0]LogWindowsTextInputMethodSystem: Available input methods: [2026.02.21-11.28.44:539][ 0]LogWindowsTextInputMethodSystem: - Français (France) - (Keyboard). [2026.02.21-11.28.44:539][ 0]LogWindowsTextInputMethodSystem: - Anglais (Royaume-Uni) - (Keyboard). [2026.02.21-11.28.44:539][ 0]LogWindowsTextInputMethodSystem: Activated input method: Français (France) - (Keyboard). [2026.02.21-11.28.44:601][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 [2026.02.21-11.28.44:601][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 [2026.02.21-11.28.44:612][ 0]LogRHI: Using Default RHI: D3D11 [2026.02.21-11.28.44:612][ 0]LogRHI: Using Highest Feature Level of D3D11: SM5 [2026.02.21-11.28.44:612][ 0]LogRHI: Loading RHI module D3D11RHI [2026.02.21-11.28.44:612][ 0]LogRHI: Checking if RHI D3D11 with Feature Level SM5 is supported by your system. [2026.02.21-11.28.44:612][ 0]LogRHI: RHI D3D11 with Feature Level SM5 is supported and will be used. [2026.02.21-11.28.44:613][ 0]LogWindows: Attached monitors: [2026.02.21-11.28.44:613][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1032), device: '\\.\DISPLAY1' [PRIMARY] [2026.02.21-11.28.44:613][ 0]LogWindows: Found 1 attached monitors. [2026.02.21-11.28.44:613][ 0]LogWindows: Gathering driver information using Windows Setup API [2026.02.21-11.28.44:614][ 0]LogRHI: RHI Adapter Info: [2026.02.21-11.28.44:614][ 0]LogRHI: Name: NVIDIA GeForce RTX 3070 [2026.02.21-11.28.44:615][ 0]LogRHI: Driver Version: 591.44 (internal:32.0.15.9144, unified:591.44) [2026.02.21-11.28.44:615][ 0]LogRHI: Driver Date: 12-2-2025 [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: Creating new Direct3DDevice [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: GPU DeviceId: 0x2488 (for the marketing name, search the web for "GPU Device Id") [2026.02.21-11.28.44:616][ 0]LogRHI: Texture pool is 5612 MB (70% of 8018 MB) [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: Creating D3DDevice using adapter: [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: Description : NVIDIA GeForce RTX 3070 [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: VendorId : 10de [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: DeviceId : 2488 [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: SubSysId : 39081462 [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: Revision : 00a1 [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: DedicatedVideoMemory : 8407482368 bytes [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: DedicatedSystemMemory : 0 bytes [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: SharedSystemMemory : 8551163904 bytes [2026.02.21-11.28.44:616][ 0]LogD3D11RHI: AdapterLuid : 0 34365 [2026.02.21-11.28.44:800][ 0]LogD3D11RHI: RHI has support for 64 bit atomics [2026.02.21-11.28.44:800][ 0]LogD3D11RHI: Async texture creation enabled [2026.02.21-11.28.44:800][ 0]LogD3D11RHI: D3D11_MAP_WRITE_NO_OVERWRITE for dynamic buffer SRVs is supported [2026.02.21-11.28.44:800][ 0]LogD3D11RHI: Array index from any shader is supported [2026.02.21-11.28.44:854][ 0]LogD3D11RHI: GPU Timing Frequency: 1000.000000 (Debug: 2 2) [2026.02.21-11.28.44:863][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0). [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 3324 unique shaders. [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Global' has been created, components 1 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Paper2D' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'DatasmithContent' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'GLTFExporter' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ControlRigSpline' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosVehiclesPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'BlueprintHeaderView' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'FullBodyIK' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Dataflow' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ConsoleVariables' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryCollectionPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'AnimationSharing' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryScripting' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosNiagara' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'UVEditor' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ControlRig' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ObjectMixer' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Bridge' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ImpostorBaker' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryMode' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosSolverPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ConcertSyncClient' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Niagara' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SpeedTreeImporter' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MediaPlate' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'AudioWidgets' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MeshModelingToolset' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Metasound' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ResonanceAudio' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MovieRenderPipeline' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SunPosition' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Synthesis' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosCaching' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'OpenColorIO' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryProcessing' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ALSV4_CPP' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ShadeupExamplePlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'LightMixer' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'PCG' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosClothEditor' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'LowEntryExtStdLib' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'CarPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'PythonScriptPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'WaveTable' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MenuPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'RuntimeAudioImporter' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'RuntimeTextToSpeech' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SteamCorePro' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'RoadGenerator' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'DynamicMeshPainting' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'RealtimeMeshComponent' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SyncTime' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MasterWeapon' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'TerrainGenerator' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MasterCharacter' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MazePlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'VictoryBPLibrary' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'WwiseNiagara' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'IKRig' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Wwise' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SequencerScripting' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'glTFRuntime' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SteamInventoryPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'AudioSynesthesia' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'JsonBlueprintUtilities' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'SantorLand' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'MediaCompositing' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'UniversalVoiceChatPro' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'TraceUtilities' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'Takes' component count 0, new components: 0 [2026.02.21-11.28.44:868][ 0]LogShaderLibrary: Display: Logical shader library 'VehicleSystemPlugin' component count 0, new components: 0 [2026.02.21-11.28.44:869][ 0]LogTemp: Display: Clearing the OS Cache [2026.02.21-11.28.44:905][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled [2026.02.21-11.28.44:905][ 0]LogInit: XR: MultiViewport is Disabled [2026.02.21-11.28.44:905][ 0]LogInit: XR: Mobile Multiview is Disabled [2026.02.21-11.28.44:912][ 0]LogSlate: Using FreeType 2.10.0 [2026.02.21-11.28.44:915][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 [2026.02.21-11.28.45:012][ 0]LogMoviePlayer: Initializing movie player [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'Paper2D' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ControlRigSpline' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ControlRig' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'IKRig' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'Bridge' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'OpenColorIO' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'AnimationSharing' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ConcertSyncClient' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'BlueprintHeaderView' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ConsoleVariables' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryMode' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'LightMixer' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ObjectMixer' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'SpeedTreeImporter' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'DatasmithContent' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'GLTFExporter' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosCaching' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosClothEditor' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosNiagara' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosSolverPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'ChaosVehiclesPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosVehiclesPlugin/Content/' mounted to '/ChaosVehiclesPlugin/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'Dataflow' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/' [2026.02.21-11.28.45:026][ 0]LogShaderLibrary: Display: Logical shader library 'FullBodyIK' component count 0, new components: 0 [2026.02.21-11.28.45:026][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryCollectionPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryScripting' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryScripting/Content/' mounted to '/GeometryScripting/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'ImpostorBaker' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ImpostorBaker/Content/' mounted to '/ImpostorBaker/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'PCG' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PCG/Content/' mounted to '/PCG/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'PythonScriptPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'UVEditor' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/UVEditor/Content/' mounted to '/UVEditor/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'Niagara' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'JsonBlueprintUtilities' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/JsonBlueprintUtilities/Content/' mounted to '/JsonBlueprintUtilities/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'MediaCompositing' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'MediaPlate' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'MovieRenderPipeline' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'SequencerScripting' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'AudioSynesthesia' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'AudioWidgets' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'GeometryProcessing' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'MeshModelingToolset' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/MeshModelingToolset/Content/' mounted to '/MeshModelingToolset/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'Metasound' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'ResonanceAudio' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'SunPosition' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/SunPosition/Content/' mounted to '/SunPosition/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'Synthesis' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'WaveTable' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/' [2026.02.21-11.28.45:027][ 0]LogShaderLibrary: Display: Logical shader library 'TraceUtilities' component count 0, new components: 0 [2026.02.21-11.28.45:027][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'Takes' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'ALSV4_CPP' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/ALS-Community-4.24/Content/' mounted to '/ALSV4_CPP/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'CarPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/CarPlugin/Content/' mounted to '/CarPlugin/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'ShadeupExamplePlugin' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/ComputeShader_Plugin/Content/' mounted to '/ShadeupExamplePlugin/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'DynamicMeshPainting' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/DynamicMeshPainting/Content/' mounted to '/DynamicMeshPainting/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'LowEntryExtStdLib' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/LowEntryExtStdLib/Content/' mounted to '/LowEntryExtStdLib/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'MasterCharacter' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MasterCharacter/Content/' mounted to '/MasterCharacter/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'MasterWeapon' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MasterWeapon/Content/' mounted to '/MasterWeapon/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'MazePlugin' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MazePlugin/Content/' mounted to '/MazePlugin/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'MenuPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MenuPlugin/Content/' mounted to '/MenuPlugin/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'RoadGenerator' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RoadGenerator/Content/' mounted to '/RoadGenerator/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'RuntimeAudioImporter' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RuntimeAudioImporter_5.2/Content/' mounted to '/RuntimeAudioImporter/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'RealtimeMeshComponent' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RuntimeMeshComponent/Content/' mounted to '/RealtimeMeshComponent/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'RuntimeTextToSpeech' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/RuntimeT56ac2a6e98ceV4/Content/' mounted to '/RuntimeTextToSpeech/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'SantorLand' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SantorLand/Content/' mounted to '/SantorLand/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'SteamCorePro' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SteamCorePro/Content/' mounted to '/SteamCorePro/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'SteamInventoryPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SteamInventoryPlugin/Content/' mounted to '/SteamInventoryPlugin/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'SyncTime' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/SyncTime/Content/' mounted to '/SyncTime/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'TerrainGenerator' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/TerrainGenerator/Content/' mounted to '/TerrainGenerator/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'UniversalVoiceChatPro' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UniversalVoiceChatPro/Content/' mounted to '/UniversalVoiceChatPro/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'VehicleSystemPlugin' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VehicleSystemPlugin/Content/' mounted to '/VehicleSystemPlugin/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'VictoryBPLibrary' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VictoryBPLibrary/Content/' mounted to '/VictoryBPLibrary/' [2026.02.21-11.28.45:028][ 0]LogShaderLibrary: Display: Logical shader library 'WwiseNiagara' component count 0, new components: 0 [2026.02.21-11.28.45:028][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/WwiseNiagara/Content/' mounted to '/WwiseNiagara/' [2026.02.21-11.28.45:029][ 0]LogShaderLibrary: Display: Logical shader library 'Wwise' component count 0, new components: 0 [2026.02.21-11.28.45:029][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Wwise/Content/' mounted to '/Wwise/' [2026.02.21-11.28.45:029][ 0]LogShaderLibrary: Display: Logical shader library 'glTFRuntime' component count 0, new components: 0 [2026.02.21-11.28.45:029][ 0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/glTFRuntime-master/Content/' mounted to '/glTFRuntime/' [2026.02.21-11.28.45:032][ 0]LogShaderLibrary: Display: Using IoDispatcher for shader code library DriveBeyondHorizons. Total 8180 unique shaders. [2026.02.21-11.28.45:032][ 0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library DriveBeyondHorizons [2026.02.21-11.28.45:032][ 0]LogShaderLibrary: Display: Logical shader library 'DriveBeyondHorizons' has been created, components 1 [2026.02.21-11.28.45:032][ 0]LogShaderLibrary: Display: Logical shader library 'DriveBeyondHorizons' component count 1, new components: 0 [2026.02.21-11.28.45:032][ 0]LogInit: Overriding language with game user settings language configuration option (en). [2026.02.21-11.28.45:032][ 0]LogInit: Overriding language with game user settings locale configuration option (en). [2026.02.21-11.28.45:037][ 0]LogAssetRegistry: FAssetRegistry took 0.0029 seconds to start up [2026.02.21-11.28.45:475][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages [2026.02.21-11.28.45:479][ 0]LogDeviceProfileManager: Available device profiles: [2026.02.21-11.28.45:479][ 0]LogDeviceProfileManager: [0000025BB8E9BFC0][0000025BB11AB6E0 52] Windows, [2026.02.21-11.28.45:479][ 0]LogDeviceProfileManager: Active device profile: [0000025BB8E9BFC0][0000025BB11AB6E0 52] Windows [2026.02.21-11.28.45:660][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2026.02.21-11.28.45:660][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2026.02.21-11.28.45:666][ 0]LogTemp: Warning: UMicrophoneSpeakComponent::UMicrophoneSpeakComponent [2026.02.21-11.28.45:667][ 0]LogTemp: Warning: UMicrophoneSpeakComponent::UMicrophoneSpeakComponent [2026.02.21-11.28.45:668][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2026.02.21-11.28.45:668][ 0]LogRuntimeAudioImporter: Successfully set VAD mode for Default__RuntimeDefaultVADProvider to ERuntimeVADMode::VeryAggressive [2026.02.21-11.28.45:668][ 0]LogRuntimeAudioImporter: Successfully initialized Default VAD provider [2026.02.21-11.28.45:668][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. [2026.02.21-11.28.45:674][ 0]LogTemp: NiagaraShader requires data interface 'Class /Script/Niagara.NiagaraDataInterfaceTexture' and is serialized before Niagara module startup, attempting to load Niagara module. [2026.02.21-11.28.45:867][ 0]LogPackageLocalizationCache: Processed 72 localized package path(s) for 1 prioritized culture(s) in 0.001443 seconds [2026.02.21-11.28.45:973][ 0]LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 [2026.02.21-11.28.45:977][ 0]LogWwise: WwiseModule: Loading AkAudio [2026.02.21-11.28.45:977][ 0]LogLoad: Loading WwiseSoundEngine module: WwiseSoundEngine [2026.02.21-11.28.45:977][ 0]LogWwiseSoundEngine: Display: Loading Wwise SoundEngine 2023.1.8 (Integration 2023.1) [2026.02.21-11.28.45:978][ 0]LogAkAudio: FAkAudioModule::UpdateWwiseResourceLoaderSettings : Updating Resource Loader settings. [2026.02.21-11.28.45:978][ 0]LogLoad: Loading WwiseResourceLoader module: WwiseResourceLoader [2026.02.21-11.28.45:978][ 0]LogWwiseResourceLoader: Display: Initializing default Resource Loader. [2026.02.21-11.28.45:978][ 0]LogAkAudio: Wwise(R) SDK Version 2023.1.8 Build 8601 [Release(StaticCRT)]. (C) 2006-2024. Audiokinetic Inc. All rights reserved. [2026.02.21-11.28.45:978][ 0]LogLoad: Loading WwiseFileHandler module: WwiseFileHandler [2026.02.21-11.28.45:984][ 0]LogLoad: Loading WwiseProcessing module: WwiseProcessing [2026.02.21-11.28.45:984][ 0]LogWwiseProcessing: Display: Initializing default Processing. [2026.02.21-11.28.45:988][ 0]LogAkAudio: Wwise plug-in DLL path: C:[REDACTED:Mac User Path]/Desktop/Jeux/Fichiers/Drive Beyond Horizons/Drive Beyond Horizons/DriveBeyondHorizons/Plugins/Wwise/ThirdParty/x64_vc170/Release/bin/ [2026.02.21-11.28.46:009][ 0]LogAkAudio: Wwise SoundEngine successfully initialized. [2026.02.21-11.28.46:011][ 0]LogAkAudio: Initialization complete. [2026.02.21-11.28.46:011][ 0]LogAkAudio: Audiokinetic Audio Device initialized. [2026.02.21-11.28.46:011][ 0]LogLoad: Loading WwiseConcurrency module: WwiseConcurrency [2026.02.21-11.28.46:011][ 0]LogWwiseConcurrency: Display: Initializing default Concurrency. [2026.02.21-11.28.46:012][ 0]LogPakFile: New pak file ../../../DriveBeyondHorizons/Content/Paks/DriveBeyondHorizons-Windows.pak added to pak precacher. [2026.02.21-11.28.46:421][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... [2026.02.21-11.28.46:422][ 0]LogMetasoundEngine: MetaSound Engine Initialized [2026.02.21-11.28.46:422][ 0]LogPakLoader: FPakLoaderModule::StartupModule() [2026.02.21-11.28.46:422][ 0]LogTemp: -------------------------------------------------------------------------------- [2026.02.21-11.28.46:422][ 0]LogTemp: Using SteamCorePro Version: 1.0.6.0 [2026.02.21-11.28.46:422][ 0]LogTemp: -------------------------------------------------------------------------------- [2026.02.21-11.28.46:422][ 0]LogSockets: bUseSteamNetworking is TRUE. Overriding default socket subsystem with SteamCoreSockets [2026.02.21-11.28.46:423][ 0]LogSockets: SteamCoreSockets: Initializing Network Relay [2026.02.21-11.28.46:426][ 0]LogWwiseNiagara: Display: Initializing default Niagara. [2026.02.21-11.28.46:436][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance [2026.02.21-11.28.46:441][ 0]LogRuntimeTTS: Loading ONNX Runtime dynamic/shared library from '../../../DriveBeyondHorizons/Plugins/RuntimeT56ac2a6e98ceV4/Source/ThirdParty/PiperLibrary/lib/onnxruntime/Win64/x64/onnxruntime.dll' [2026.02.21-11.28.46:484][ 0]LogUObjectArray: 27820 objects as part of root set at end of initial load. [2026.02.21-11.28.46:484][ 0]LogUObjectArray: 14 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set. [2026.02.21-11.28.46:484][ 0]LogUObjectAllocator: 5955792 out of 10485760 bytes used by permanent object pool. [2026.02.21-11.28.46:484][ 0]LogUObjectArray: CloseDisregardForGC: 27820/27820 objects in disregard for GC pool [2026.02.21-11.28.46:485][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 26905 public script object entries (699.99 KB) [2026.02.21-11.28.46:486][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false [2026.02.21-11.28.46:490][ 0]LogEngine: Initializing Engine... [2026.02.21-11.28.46:498][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.001 s [2026.02.21-11.28.46:510][ 0]LogInit: Initializing FReadOnlyCVARCache [2026.02.21-11.28.46:510][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. [2026.02.21-11.28.46:510][ 0]LogInit: Texture streaming: Enabled [2026.02.21-11.28.46:520][ 0]LogAudio: Display: Initializing Audio Device Manager... [2026.02.21-11.28.46:522][ 0]LogAudio: Display: Loading Default Audio Settings Objects... [2026.02.21-11.28.46:524][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). [2026.02.21-11.28.46:525][ 0]LogAudio: Display: AudioInfo: 'BINKA' Registered [2026.02.21-11.28.46:525][ 0]LogAudio: Display: AudioInfo: 'PCM' Registered [2026.02.21-11.28.46:525][ 0]LogAudio: Display: AudioInfo: 'ADPCM' Registered [2026.02.21-11.28.46:525][ 0]LogAudio: Display: AudioInfo: 'OGG' Registered [2026.02.21-11.28.46:525][ 0]LogAudio: Display: AudioInfo: 'OPUS' Registered [2026.02.21-11.28.46:525][ 0]LogAudio: Display: Audio Device Manager Initialized [2026.02.21-11.28.46:526][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Sample Rate: 48000 [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Max Channels (voices): 0 [2026.02.21-11.28.46:527][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 [2026.02.21-11.28.46:527][ 0]LogAudio: Display: AudioDevice MaxSources: 48 [2026.02.21-11.28.46:531][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). [2026.02.21-11.28.46:532][ 0]LogAudio: Display: Audio Reverb Plugin: Resonance Audio [2026.02.21-11.28.46:532][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). [2026.02.21-11.28.46:654][ 0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. [2026.02.21-11.28.46:655][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' [2026.02.21-11.28.46:684][ 0]LogAudioMixer: Display: Using Audio Hardware Device Haut-parleurs (High Definition Audio Device) [2026.02.21-11.28.46:689][ 0]LogAudioMixer: Display: Initializing Sound Submixes... [2026.02.21-11.28.46:690][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' [2026.02.21-11.28.46:691][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' [2026.02.21-11.28.46:700][ 0]LogStreaming: Warning: LoadPackage: SkipPackage: /ResonanceAudio/ResonanceSubmixDefault (0x30C8723EB0E7B477) - The package to load does not exist on disk or in the loader [2026.02.21-11.28.46:700][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object /ResonanceAudio/ResonanceSubmixDefault.ResonanceSubmixDefault' [2026.02.21-11.28.46:701][ 0]LogResonanceAudio: Error: Failed to load Resonance Reverb Submix from object path '/ResonanceAudio/ResonanceSubmixDefault.ResonanceSubmixDefault' in ResonanceSettings. Creating 'Resonance Reverb Submix' as stub. [2026.02.21-11.28.46:701][ 0]LogResonanceAudio: Error: Failed to find Resonance UResonanceAudioReverbPluginPreset on default reverb submix. Creating stub '/ResonanceAudio/ResonanceSubmixDefault.ResonanceSubmixDefault'. [2026.02.21-11.28.46:702][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 [2026.02.21-11.28.46:702][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 [2026.02.21-11.28.46:702][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 [2026.02.21-11.28.46:702][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 [2026.02.21-11.28.46:703][ 0]LogInit: FAudioDevice initialized with ID 1. [2026.02.21-11.28.46:704][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 [2026.02.21-11.28.47:460][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Sound/Class/DBH_Submix.DBH_Submix. [2026.02.21-11.28.47:703][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Sound/Class/MasterSubmix.MasterSubmix. [2026.02.21-11.28.47:898][ 0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Sound/POI/Backrooms/SSM_Backrooms.SSM_Backrooms. [2026.02.21-11.28.48:232][ 0]LogMaterial: Error: Loading a material resource None with an invalid ShaderMap! [2026.02.21-11.28.48:232][ 0]LogMaterial: Error: Loading a material resource None with an invalid ShaderMap! [2026.02.21-11.28.48:236][ 0]LogMaterial: Error: Tried to access an uncooked shader map ID in a cooked application [2026.02.21-11.28.48:236][ 0]LogMaterial: Warning: Invalid shader map ID caching shaders for 'M_DnBlastFx', will use default material. [2026.02.21-11.28.48:236][ 0]LogMaterial: Can't compile M_DnBlastFx with cooked content, will use default material instead [2026.02.21-11.28.48:237][ 0]LogMaterial: Warning: [AssetLog] [REDACTED:Windows User Path]\Desktop\Jeux\Fichiers\Drive Beyond Horizons\Drive Beyond Horizons\DriveBeyondHorizons\Content\Environments\Meshes\DrumAndBlast\M_DnBlastFx: Failed to compile Material for platform PCD3D_SM5, Default Material will be used in game. [2026.02.21-11.28.49:545][ 0]LogTemp: Warning: UMicrophoneSpeakComponent::UMicrophoneSpeakComponent [2026.02.21-11.28.50:196][ 0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created! [2026.02.21-11.28.50:201][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000 [2026.02.21-11.28.50:268][ 0]LogBlueprintUserMessages: [BP_GameInstance_C_2147482542] InitAchievement From Loading [2026.02.21-11.28.50:302][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. [2026.02.21-11.28.50:302][ 0]LogStreaming: Warning: Failed to read file 'C:[REDACTED:Mac User Path]/AppData/Local/DriveBeyondHorizons/Saved/SaveGames/MetaDataV2.sav' error. [2026.02.21-11.28.50:303][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2026.02.21-11.28.50:309][ 0]LogInit: Display: Game Engine Initialized. [2026.02.21-11.28.50:313][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Runtime/SunPosition/Resources/SunPosition.png' error. [2026.02.21-11.28.50:313][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Runtime/SunPosition/Resources/SunPosition.png [2026.02.21-11.28.50:313][ 0]LogInit: Display: Starting Game. [2026.02.21-11.28.50:313][ 0]LogNet: Browse: /Game/Maps/L_SplashScreenTest?Name=Player [2026.02.21-11.28.50:316][ 0]LogLoad: LoadMap: /Game/Maps/L_SplashScreenTest?Name=Player [2026.02.21-11.28.50:316][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_0 [2026.02.21-11.28.50:319][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true [2026.02.21-11.28.50:463][ 0]LogStreaming: Display: 0.072 ms for processing 1471 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 1 (11234->11233) packages and 1348 (29038->27690) public exports. [2026.02.21-11.28.50:464][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. [2026.02.21-11.28.50:476][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 1.37ms [2026.02.21-11.28.50:485][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'L_SplashScreenTest'. [2026.02.21-11.28.50:485][ 0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created! [2026.02.21-11.28.50:485][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000 [2026.02.21-11.28.50:487][ 0]LogAIModule: Creating AISystem for world L_SplashScreenTest [2026.02.21-11.28.50:488][ 0]LogLoad: Game class is 'BP_GameModeMenu_C' [2026.02.21-11.28.50:492][ 0]LogWorld: Bringing World /Game/Maps/L_SplashScreenTest.L_SplashScreenTest up for play (max tick rate 120) at 2026.02.21-12.28.50 [2026.02.21-11.28.50:492][ 0]LogWorld: Bringing up level for play took: 0.003641 [2026.02.21-11.28.50:524][ 0]LogVoiceEncode: Display: EncoderVersion: libopus unknown [2026.02.21-11.28.50:528][ 0]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0xFFFFFFFF [2026.02.21-11.28.50:528][ 0]LogOnlineVoice: OSS: Stopping networked voice for user: 0 [2026.02.21-11.28.50:534][ 0]LogOnlineSubsystemSteamCore: Warning: [FOnlineSessionSteamCore::DestroySession] Can't destroy a null online session (GameSession) [2026.02.21-11.28.50:587][ 0]LogBlueprintUserMessages: [WBP_Version] Drive Beyond Horizons : Build 18447039 [2026.02.21-11.28.50:587][ 0]LogStreaming: Warning: Failed to read file 'C:[REDACTED:Mac User Path]/AppData/Local/DriveBeyondHorizons/Saved/SaveGames/Crash.sav' error. [2026.02.21-11.28.50:588][ 0]LogStreaming: Warning: Failed to read file 'C:[REDACTED:Mac User Path]/AppData/Local/DriveBeyondHorizons/Saved/SaveGames/Crash.sav' error. [2026.02.21-11.28.50:602][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:603][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:604][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:605][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:606][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:607][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:608][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:609][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:610][ 0]LogUObjectGlobals: Warning: Failed to find object 'Object None.None' [2026.02.21-11.28.50:611][ 0]r.ScreenPercentage = "100" [2026.02.21-11.28.50:611][ 0]LogBlueprintUserMessages: [BP_MenuComponent] r.screenpercentage 100 [2026.02.21-11.28.50:611][ 0]LogBlueprintUserMessages: [BP_MenuComponent] en [2026.02.21-11.28.50:641][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@0] File [Scalability] [2026.02.21-11.28.50:641][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:0.5]] [2026.02.21-11.28.50:685][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@0] File [Scalability] [2026.02.21-11.28.50:685][ 0]LogConfig: Set CVar [[foliage.DensityScale:0]] [2026.02.21-11.28.50:685][ 0]LogConfig: Set CVar [[grass.DensityScale:0]] [2026.02.21-11.28.50:702][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@2] File [Scalability] [2026.02.21-11.28.50:702][ 0]LogConfig: Set CVar [[r.FXAA.Quality:3]] [2026.02.21-11.28.50:702][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:1]] [2026.02.21-11.28.50:702][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:100]] [2026.02.21-11.28.50:702][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:2]] [2026.02.21-11.28.50:702][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:1]] [2026.02.21-11.28.50:732][ 0]r.BloomQuality = "0" [2026.02.21-11.28.50:747][ 0]r.ContactShadows = "0" [2026.02.21-11.28.50:762][ 0]r.DistanceFieldAO = "0" [2026.02.21-11.28.50:777][ 0]r.MaterialQualityLevel = "1" [2026.02.21-11.28.50:780][ 0]LogMaterial: Error: Tried to access an uncooked shader map ID in a cooked application [2026.02.21-11.28.50:780][ 0]LogMaterial: Warning: Invalid shader map ID caching shaders for 'M_DnBlastFx', will use default material. [2026.02.21-11.28.50:780][ 0]LogMaterial: Can't compile M_DnBlastFx with cooked content, will use default material instead [2026.02.21-11.28.50:780][ 0]LogMaterial: Warning: [AssetLog] [REDACTED:Windows User Path]\Desktop\Jeux\Fichiers\Drive Beyond Horizons\Drive Beyond Horizons\DriveBeyondHorizons\Content\Environments\Meshes\DrumAndBlast\M_DnBlastFx: Failed to compile Material for platform PCD3D_SM5, Default Material will be used in game. [2026.02.21-11.28.50:791][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@0] File [Scalability] [2026.02.21-11.28.50:792][ 0]LogConsoleManager: Warning: Setting the console variable 'r.DistanceFieldAO' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByConsole'. Value remains '0' [2026.02.21-11.28.50:792][ 0]LogConfig: Set CVar [[r.AOQuality:0]] [2026.02.21-11.28.50:808][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@0] File [Scalability] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:0]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:2]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:1024]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:0.5]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:0.7]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.VolumetricFog:0]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:0.60]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.CapsuleShadows:0]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:0]] [2026.02.21-11.28.50:808][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:0]] [2026.02.21-11.28.50:808][ 0]LogConsoleManager: Warning: Setting the console variable 'r.Shadow.Virtual.Enable' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByProjectSetting'. Value remains '0' [2026.02.21-11.28.50:844][ 0]LogLoad: Took 0.528383 seconds to LoadMap(/Game/Maps/L_SplashScreenTest) [2026.02.21-11.29.01:657][ 0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1 [2026.02.21-11.29.01:657][ 0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0 [2026.02.21-11.29.01:657][ 0]LogRHI: Display: ShaderPipelineCache: Batching Resumed. [2026.02.21-11.29.01:664][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() [2026.02.21-11.29.01:664][ 0]LogLoad: (Engine Initialization) Total time: 21.00 seconds [2026.02.21-11.29.01:679][ 0]LogContentStreaming: Texture pool size now 0 MB [2026.02.21-11.29.01:687][ 1]LogOnline: Warning: OSS: Async task 'FOnlineAsyncTaskSteamCoreProUserRequestEncryptedAppTicket' failed in 11.388429 seconds [2026.02.21-11.29.01:687][ 1]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock [2026.02.21-11.29.01:687][ 1]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture [2026.02.21-11.29.01:812][ 1]LogSlate: Took 0.001952 seconds to synchronously load lazily loaded font '../../../DriveBeyondHorizons/Content/UI/MainMenuV2/Fonts/Figtree/static/Figtree-ExtraBold.ufont' (40K) [2026.02.21-11.29.01:813][ 1]LogSlate: Took 0.000205 seconds to synchronously load lazily loaded font '../../../DriveBeyondHorizons/Content/UI/MainMenuV2/Fonts/Figtree/static/Figtree-Regular.ufont' (40K) [2026.02.21-11.29.01:816][ 1]LogSlate: Took 0.002577 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K) [2026.02.21-11.29.01:817][ 1]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen. [2026.02.21-11.29.01:863][ 1]LogResonanceAudio: Error: Resonance Audio requires both Reverb and Spatialization plugins. Please enable them in the Project Settings. [2026.02.21-11.29.01:865][ 1]LogStreaming: Display: FlushAsyncLoading(84): 1 QueuedPackages, 0 AsyncPackages [2026.02.21-11.29.16:669][727]LogStreaming: Display: 0.002 ms for processing 23 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.29.31:673][527]LogStreaming: Display: 0.001 ms for processing 1 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.31.18:211][310]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture [2026.02.21-11.31.18:211][310]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently [2026.02.21-11.31.18:247][310]LogSlate: Took 0.001853 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoLight.ufont' (167K) [2026.02.21-11.31.18:248][310]LogSlate: Took 0.001040 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoItalic.ufont' (157K) [2026.02.21-11.31.25:509][180]LogSlate: Took 0.001054 seconds to synchronously load lazily loaded font '../../../DriveBeyondHorizons/Content/UI/MainMenuV2/Fonts/Figtree/static/Figtree-Medium.ufont' (40K) [2026.02.21-11.31.25:529][180]LogSlate: Took 0.000144 seconds to synchronously load lazily loaded font '../../../DriveBeyondHorizons/Content/UI/MainMenuV2/Fonts/Figtree/static/Figtree-Light.ufont' (40K) [2026.02.21-11.31.25:542][180]r.ScreenPercentage = "100" [2026.02.21-11.31.25:543][180]LogBlueprintUserMessages: [BP_MenuComponent] r.screenpercentage 100 [2026.02.21-11.31.25:543][180]LogBlueprintUserMessages: [BP_MenuComponent] en [2026.02.21-11.31.25:666][180]r.BloomQuality = "0" [2026.02.21-11.31.25:683][180]r.ContactShadows = "0" [2026.02.21-11.31.25:697][180]r.DistanceFieldAO = "0" [2026.02.21-11.31.25:712][180]r.MaterialQualityLevel = "1" [2026.02.21-11.31.25:761][180]LogScript: Warning: Script Msg: Attempted to access index 4 from array 'Buttons' of length 3 in '/MenuPlugin/Widgets/Commons/WBP_HorizontalWidget.WBP_HorizontalWidget_C'! [2026.02.21-11.31.25:765][180]r.ScreenPercentage = "100" [2026.02.21-11.31.25:765][180]LogBlueprintUserMessages: [BP_MenuComponent] r.screenpercentage 100 [2026.02.21-11.31.25:765][180]LogBlueprintUserMessages: [BP_MenuComponent] en [2026.02.21-11.31.25:887][180]r.BloomQuality = "0" [2026.02.21-11.31.25:904][180]r.ContactShadows = "0" [2026.02.21-11.31.25:918][180]r.DistanceFieldAO = "0" [2026.02.21-11.31.25:933][180]r.MaterialQualityLevel = "1" [2026.02.21-11.31.25:995][180]LogScript: Warning: Script Msg: Attempted to access index 4 from array 'Buttons' of length 2 in '/MenuPlugin/Widgets/Commons/WBP_HorizontalWidget.WBP_HorizontalWidget_C'! [2026.02.21-11.31.25:996][180]LogBlueprintUserMessages: [WBP_Version] Drive Beyond Horizons : Build 18447039 [2026.02.21-11.31.25:996][180]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock [2026.02.21-11.31.25:996][180]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture [2026.02.21-11.31.26:054][180]r.ScreenPercentage = "100" [2026.02.21-11.31.26:054][180]LogBlueprintUserMessages: [BP_MenuComponent] r.screenpercentage 100 [2026.02.21-11.31.26:054][180]LogBlueprintUserMessages: [BP_MenuComponent] en [2026.02.21-11.31.26:169][180]r.BloomQuality = "0" [2026.02.21-11.31.26:185][180]r.ContactShadows = "0" [2026.02.21-11.31.26:200][180]r.DistanceFieldAO = "0" [2026.02.21-11.31.26:216][180]r.MaterialQualityLevel = "1" [2026.02.21-11.31.26:262][180]LogScript: Warning: Script Msg: Attempted to access index 4 from array 'Buttons' of length 3 in '/MenuPlugin/Widgets/Commons/WBP_HorizontalWidget.WBP_HorizontalWidget_C'! [2026.02.21-11.31.26:266][180]r.ScreenPercentage = "100" [2026.02.21-11.31.26:266][180]LogBlueprintUserMessages: [BP_MenuComponent] r.screenpercentage 100 [2026.02.21-11.31.26:266][180]LogBlueprintUserMessages: [BP_MenuComponent] en [2026.02.21-11.31.26:382][180]r.BloomQuality = "0" [2026.02.21-11.31.26:398][180]r.ContactShadows = "0" [2026.02.21-11.31.26:413][180]r.DistanceFieldAO = "0" [2026.02.21-11.31.26:429][180]r.MaterialQualityLevel = "1" [2026.02.21-11.31.26:487][180]LogScript: Warning: Script Msg: Attempted to access index 4 from array 'Buttons' of length 2 in '/MenuPlugin/Widgets/Commons/WBP_HorizontalWidget.WBP_HorizontalWidget_C'! [2026.02.21-11.31.26:488][180]LogBlueprintUserMessages: [WBP_Version] Drive Beyond Horizons : Build 18447039 [2026.02.21-11.31.26:894][204]LogScript: Script Msg: Found a session (kyo-manjji137's Server). Ping is 23 [2026.02.21-11.31.26:894][204]LogScript: Script Msg: Found a session (Эмир Киркоров's Server). Ping is 57 [2026.02.21-11.31.26:894][204]LogScript: Script Msg: Found a session (chastiser's Server). Ping is 61 [2026.02.21-11.31.26:894][204]LogScript: Script Msg: Found a session (arbuzik125's Server). Ping is 42 [2026.02.21-11.31.26:894][204]LogScript: Script Msg: Found a session (Nigger). Ping is 51 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (shyeyes's Server). Ping is 78 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (Лучший в мире's Server). Ping is 71 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (yuma's Server). Ping is 79 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (old's Server). Ping is 68 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (МУЖЧИНА's Server). Ping is 55 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (BadEye's Server). Ping is 86 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (touris's Server). Ping is 89 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (cos3none's Server). Ping is 104 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (Obito's Server). Ping is 112 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (fgfgfgfgfg). Ping is 183 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (Kireito's Server). Ping is 70 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (OguzunBüllü). Ping is 61 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (MUZAFFER MERT AYDIN). Ping is 65 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (aglarpoyraz31's Server). Ping is 65 [2026.02.21-11.31.26:895][204]LogScript: Script Msg: Found a session (merttrkz1's Server). Ping is 69 [2026.02.21-11.31.26:896][204]LogScript: Script Msg: Found a session (boobs). Ping is 81 [2026.02.21-11.31.31:016][697]LogSlate: Took 0.000436 seconds to synchronously load lazily loaded font '../../../DriveBeyondHorizons/Content/UI/MainMenuV2/Fonts/Figtree/static/Figtree-Bold.ufont' (40K) [2026.02.21-11.31.31:017][697]LogSlate: Took 0.000659 seconds to synchronously load lazily loaded font '../../../DriveBeyondHorizons/Content/UI/MainMenuV2/Fonts/Figtree/static/Figtree-SemiBold.ufont' (40K) [2026.02.21-11.31.31:692][777]LogStreaming: Display: 0.068 ms for processing 12265 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.31.59:005][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479978] KEY WARNING MAIN: false WARNING ALT: false MoveForward_Main [2026.02.21-11.31.59:005][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479978] KEY WARNING MAIN: false WARNING ALT: false MoveForward_Main [2026.02.21-11.31.59:006][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479978] KEY WARNING MAIN: false WARNING ALT: false MoveForward_Main [2026.02.21-11.31.59:006][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479978] KEY WARNING MAIN: false WARNING ALT: false MoveForward_Main [2026.02.21-11.31.59:006][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479969] KEY WARNING MAIN: false WARNING ALT: false Jump_Main [2026.02.21-11.31.59:006][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479969] KEY WARNING MAIN: false WARNING ALT: false Jump_Main [2026.02.21-11.31.59:007][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479969] KEY WARNING MAIN: false WARNING ALT: false Jump_Main [2026.02.21-11.31.59:007][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479969] KEY WARNING MAIN: false WARNING ALT: false Jump_Main [2026.02.21-11.31.59:007][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479960] KEY WARNING MAIN: false WARNING ALT: false Sprint_Main [2026.02.21-11.31.59:007][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479960] KEY WARNING MAIN: false WARNING ALT: false Sprint_Main [2026.02.21-11.31.59:007][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479960] KEY WARNING MAIN: false WARNING ALT: false Sprint_Main [2026.02.21-11.31.59:007][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479960] KEY WARNING MAIN: false WARNING ALT: false Sprint_Main [2026.02.21-11.31.59:008][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479951] KEY WARNING MAIN: false WARNING ALT: false MoveBackward_Main [2026.02.21-11.31.59:008][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479951] KEY WARNING MAIN: false WARNING ALT: false MoveBackward_Main [2026.02.21-11.31.59:008][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479951] KEY WARNING MAIN: false WARNING ALT: false MoveBackward_Main [2026.02.21-11.31.59:008][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479951] KEY WARNING MAIN: false WARNING ALT: false MoveBackward_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479942] KEY WARNING MAIN: false WARNING ALT: false MoveLeft_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479942] KEY WARNING MAIN: false WARNING ALT: false MoveLeft_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479942] KEY WARNING MAIN: false WARNING ALT: false MoveLeft_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479942] KEY WARNING MAIN: false WARNING ALT: false MoveLeft_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479933] KEY WARNING MAIN: false WARNING ALT: false MoveRight_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479933] KEY WARNING MAIN: false WARNING ALT: false MoveRight_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479933] KEY WARNING MAIN: false WARNING ALT: false MoveRight_Main [2026.02.21-11.31.59:009][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479933] KEY WARNING MAIN: false WARNING ALT: false MoveRight_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479924] KEY WARNING MAIN: false WARNING ALT: false Crouch_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479924] KEY WARNING MAIN: false WARNING ALT: false Crouch_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479924] KEY WARNING MAIN: false WARNING ALT: false Crouch_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479924] KEY WARNING MAIN: false WARNING ALT: false Crouch_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479915] KEY WARNING MAIN: false WARNING ALT: false Urinate_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479915] KEY WARNING MAIN: false WARNING ALT: false Urinate_Main [2026.02.21-11.31.59:010][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479915] KEY WARNING MAIN: false WARNING ALT: false Urinate_Main [2026.02.21-11.31.59:011][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479915] KEY WARNING MAIN: false WARNING ALT: false Urinate_Main [2026.02.21-11.31.59:011][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479906] KEY WARNING MAIN: false WARNING ALT: false Reload_Main [2026.02.21-11.31.59:011][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479906] KEY WARNING MAIN: false WARNING ALT: false Reload_Main [2026.02.21-11.31.59:011][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479906] KEY WARNING MAIN: false WARNING ALT: false Reload_Main [2026.02.21-11.31.59:011][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479906] KEY WARNING MAIN: false WARNING ALT: false Reload_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479897] KEY WARNING MAIN: false WARNING ALT: false FistMode_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479897] KEY WARNING MAIN: false WARNING ALT: false FistMode_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479897] KEY WARNING MAIN: false WARNING ALT: false FistMode_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479897] KEY WARNING MAIN: false WARNING ALT: false FistMode_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479888] KEY WARNING MAIN: false WARNING ALT: false InspectPlayer_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479888] KEY WARNING MAIN: false WARNING ALT: false InspectPlayer_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479888] KEY WARNING MAIN: false WARNING ALT: false InspectPlayer_Main [2026.02.21-11.31.59:012][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479888] KEY WARNING MAIN: false WARNING ALT: false InspectPlayer_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479879] KEY WARNING MAIN: false WARNING ALT: false Slot1_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479879] KEY WARNING MAIN: false WARNING ALT: false Slot1_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479879] KEY WARNING MAIN: false WARNING ALT: false Slot1_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479879] KEY WARNING MAIN: false WARNING ALT: false Slot1_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479870] KEY WARNING MAIN: false WARNING ALT: false Slot2_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479870] KEY WARNING MAIN: false WARNING ALT: false Slot2_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479870] KEY WARNING MAIN: false WARNING ALT: false Slot2_Main [2026.02.21-11.31.59:013][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479870] KEY WARNING MAIN: false WARNING ALT: false Slot2_Main [2026.02.21-11.31.59:014][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479861] KEY WARNING MAIN: false WARNING ALT: false Slot3_Main [2026.02.21-11.31.59:014][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479861] KEY WARNING MAIN: false WARNING ALT: false Slot3_Main [2026.02.21-11.31.59:014][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479861] KEY WARNING MAIN: false WARNING ALT: false Slot3_Main [2026.02.21-11.31.59:014][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479861] KEY WARNING MAIN: false WARNING ALT: false Slot3_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479852] KEY WARNING MAIN: false WARNING ALT: false Slot4_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479852] KEY WARNING MAIN: false WARNING ALT: false Slot4_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479852] KEY WARNING MAIN: false WARNING ALT: false Slot4_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479852] KEY WARNING MAIN: false WARNING ALT: false Slot4_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479843] KEY WARNING MAIN: false WARNING ALT: false Slot5_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479843] KEY WARNING MAIN: false WARNING ALT: false Slot5_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479843] KEY WARNING MAIN: false WARNING ALT: false Slot5_Main [2026.02.21-11.31.59:015][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479843] KEY WARNING MAIN: false WARNING ALT: false Slot5_Main [2026.02.21-11.31.59:016][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479834] KEY WARNING MAIN: false WARNING ALT: false Slot6_Main [2026.02.21-11.31.59:016][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479834] KEY WARNING MAIN: false WARNING ALT: false Slot6_Main [2026.02.21-11.31.59:016][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479834] KEY WARNING MAIN: false WARNING ALT: false Slot6_Main [2026.02.21-11.31.59:016][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479834] KEY WARNING MAIN: false WARNING ALT: false Slot6_Main [2026.02.21-11.31.59:018][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479825] KEY WARNING MAIN: false WARNING ALT: false Accelerate_Main [2026.02.21-11.31.59:018][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479825] KEY WARNING MAIN: false WARNING ALT: false Accelerate_Main [2026.02.21-11.31.59:018][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479825] KEY WARNING MAIN: false WARNING ALT: false Accelerate_Main [2026.02.21-11.31.59:018][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479825] KEY WARNING MAIN: false WARNING ALT: false Accelerate_Main [2026.02.21-11.31.59:018][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479816] KEY WARNING MAIN: false WARNING ALT: false Brake_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479816] KEY WARNING MAIN: false WARNING ALT: false Brake_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479816] KEY WARNING MAIN: false WARNING ALT: false Brake_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479816] KEY WARNING MAIN: false WARNING ALT: false Brake_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479807] KEY WARNING MAIN: false WARNING ALT: false TurnLeft_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479807] KEY WARNING MAIN: false WARNING ALT: false TurnLeft_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479807] KEY WARNING MAIN: false WARNING ALT: false TurnLeft_Main [2026.02.21-11.31.59:019][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479807] KEY WARNING MAIN: false WARNING ALT: false TurnLeft_Main [2026.02.21-11.31.59:020][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479798] KEY WARNING MAIN: false WARNING ALT: false TurnRight_Main [2026.02.21-11.31.59:020][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479798] KEY WARNING MAIN: false WARNING ALT: false TurnRight_Main [2026.02.21-11.31.59:020][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479798] KEY WARNING MAIN: false WARNING ALT: false TurnRight_Main [2026.02.21-11.31.59:020][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479798] KEY WARNING MAIN: false WARNING ALT: false TurnRight_Main [2026.02.21-11.31.59:020][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479789] KEY WARNING MAIN: false WARNING ALT: false Ignition_Main [2026.02.21-11.31.59:020][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479789] KEY WARNING MAIN: false WARNING ALT: false Ignition_Main [2026.02.21-11.31.59:021][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479789] KEY WARNING MAIN: false WARNING ALT: false Ignition_Main [2026.02.21-11.31.59:021][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479789] KEY WARNING MAIN: false WARNING ALT: false Ignition_Main [2026.02.21-11.31.59:021][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479780] KEY WARNING MAIN: false WARNING ALT: false Handbrake_Main [2026.02.21-11.31.59:021][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479780] KEY WARNING MAIN: false WARNING ALT: false Handbrake_Main [2026.02.21-11.31.59:021][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479780] KEY WARNING MAIN: false WARNING ALT: false Handbrake_Main [2026.02.21-11.31.59:021][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479780] KEY WARNING MAIN: false WARNING ALT: false Handbrake_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479771] KEY WARNING MAIN: false WARNING ALT: false Headlights_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479771] KEY WARNING MAIN: false WARNING ALT: false Headlights_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479771] KEY WARNING MAIN: false WARNING ALT: false Headlights_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479771] KEY WARNING MAIN: false WARNING ALT: false Headlights_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479762] KEY WARNING MAIN: false WARNING ALT: false HeadlightCall_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479762] KEY WARNING MAIN: false WARNING ALT: false HeadlightCall_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479762] KEY WARNING MAIN: false WARNING ALT: false HeadlightCall_Main [2026.02.21-11.31.59:022][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479762] KEY WARNING MAIN: false WARNING ALT: false HeadlightCall_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479753] KEY WARNING MAIN: false WARNING ALT: false IndicatorLeft_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479753] KEY WARNING MAIN: false WARNING ALT: false IndicatorLeft_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479753] KEY WARNING MAIN: false WARNING ALT: false IndicatorLeft_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479753] KEY WARNING MAIN: false WARNING ALT: false IndicatorLeft_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479744] KEY WARNING MAIN: false WARNING ALT: false IndicatorRight_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479744] KEY WARNING MAIN: false WARNING ALT: false IndicatorRight_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479744] KEY WARNING MAIN: false WARNING ALT: false IndicatorRight_Main [2026.02.21-11.31.59:023][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479744] KEY WARNING MAIN: false WARNING ALT: false IndicatorRight_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479735] KEY WARNING MAIN: false WARNING ALT: false IndicatorWarnings_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479735] KEY WARNING MAIN: false WARNING ALT: false IndicatorWarnings_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479735] KEY WARNING MAIN: false WARNING ALT: false IndicatorWarnings_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479735] KEY WARNING MAIN: false WARNING ALT: false IndicatorWarnings_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479726] KEY WARNING MAIN: false WARNING ALT: false Klaxon_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479726] KEY WARNING MAIN: false WARNING ALT: false Klaxon_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479726] KEY WARNING MAIN: false WARNING ALT: false Klaxon_Main [2026.02.21-11.31.59:024][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479726] KEY WARNING MAIN: false WARNING ALT: false Klaxon_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479717] KEY WARNING MAIN: false WARNING ALT: false Trailer_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479717] KEY WARNING MAIN: false WARNING ALT: false Trailer_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479717] KEY WARNING MAIN: false WARNING ALT: false Trailer_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479717] KEY WARNING MAIN: false WARNING ALT: false Trailer_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479708] KEY WARNING MAIN: false WARNING ALT: false GearUp_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479708] KEY WARNING MAIN: false WARNING ALT: false GearUp_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479708] KEY WARNING MAIN: false WARNING ALT: false GearUp_Main [2026.02.21-11.31.59:025][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479708] KEY WARNING MAIN: false WARNING ALT: false GearUp_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479699] KEY WARNING MAIN: false WARNING ALT: false GearDown_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479699] KEY WARNING MAIN: false WARNING ALT: false GearDown_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479699] KEY WARNING MAIN: false WARNING ALT: false GearDown_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479699] KEY WARNING MAIN: false WARNING ALT: false GearDown_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479690] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479690] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479690] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:026][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479690] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479681] KEY WARNING MAIN: false WARNING ALT: false InteractPrimary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479681] KEY WARNING MAIN: false WARNING ALT: false InteractPrimary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479681] KEY WARNING MAIN: false WARNING ALT: false InteractPrimary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479681] KEY WARNING MAIN: false WARNING ALT: false InteractPrimary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479672] KEY WARNING MAIN: false WARNING ALT: false InteractSecondary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479672] KEY WARNING MAIN: false WARNING ALT: false InteractSecondary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479672] KEY WARNING MAIN: false WARNING ALT: false InteractSecondary_Main [2026.02.21-11.31.59:027][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479672] KEY WARNING MAIN: false WARNING ALT: false InteractSecondary_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479663] KEY WARNING MAIN: false WARNING ALT: false InteractThirdUp_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479663] KEY WARNING MAIN: false WARNING ALT: false InteractThirdUp_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479663] KEY WARNING MAIN: false WARNING ALT: false InteractThirdUp_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479663] KEY WARNING MAIN: false WARNING ALT: false InteractThirdUp_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479654] KEY WARNING MAIN: false WARNING ALT: false InteractThirdDown_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479654] KEY WARNING MAIN: false WARNING ALT: false InteractThirdDown_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479654] KEY WARNING MAIN: false WARNING ALT: false InteractThirdDown_Main [2026.02.21-11.31.59:028][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479654] KEY WARNING MAIN: false WARNING ALT: false InteractThirdDown_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479645] KEY WARNING MAIN: false WARNING ALT: false Zoom_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479645] KEY WARNING MAIN: false WARNING ALT: false Zoom_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479645] KEY WARNING MAIN: false WARNING ALT: false Zoom_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479645] KEY WARNING MAIN: false WARNING ALT: false Zoom_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479636] KEY WARNING MAIN: false WARNING ALT: false RecoverCar_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479636] KEY WARNING MAIN: false WARNING ALT: false RecoverCar_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479636] KEY WARNING MAIN: false WARNING ALT: false RecoverCar_Main [2026.02.21-11.31.59:029][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479636] KEY WARNING MAIN: false WARNING ALT: false RecoverCar_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479627] KEY WARNING MAIN: false WARNING ALT: false AltRotation_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479627] KEY WARNING MAIN: false WARNING ALT: false AltRotation_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479627] KEY WARNING MAIN: false WARNING ALT: false AltRotation_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479627] KEY WARNING MAIN: false WARNING ALT: false AltRotation_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479618] KEY WARNING MAIN: false WARNING ALT: false ItemAway_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479618] KEY WARNING MAIN: false WARNING ALT: false ItemAway_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479618] KEY WARNING MAIN: false WARNING ALT: false ItemAway_Main [2026.02.21-11.31.59:030][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479618] KEY WARNING MAIN: false WARNING ALT: false ItemAway_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479609] KEY WARNING MAIN: false WARNING ALT: false ItemCloser_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479609] KEY WARNING MAIN: false WARNING ALT: false ItemCloser_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479609] KEY WARNING MAIN: false WARNING ALT: false ItemCloser_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479609] KEY WARNING MAIN: false WARNING ALT: false ItemCloser_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479600] KEY WARNING MAIN: false WARNING ALT: false RotateItem_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479600] KEY WARNING MAIN: false WARNING ALT: false RotateItem_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479600] KEY WARNING MAIN: false WARNING ALT: false RotateItem_Main [2026.02.21-11.31.59:031][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479600] KEY WARNING MAIN: false WARNING ALT: false RotateItem_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479591] KEY WARNING MAIN: false WARNING ALT: false PushToTalk_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479591] KEY WARNING MAIN: false WARNING ALT: false PushToTalk_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479591] KEY WARNING MAIN: false WARNING ALT: false PushToTalk_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479591] KEY WARNING MAIN: false WARNING ALT: false PushToTalk_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479582] KEY WARNING MAIN: false WARNING ALT: false CameraSwitch_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479582] KEY WARNING MAIN: false WARNING ALT: false CameraSwitch_Main [2026.02.21-11.31.59:032][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479582] KEY WARNING MAIN: false WARNING ALT: false CameraSwitch_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479582] KEY WARNING MAIN: false WARNING ALT: false CameraSwitch_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479573] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479573] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479573] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479573] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479564] KEY WARNING MAIN: false WARNING ALT: false HideUI_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479564] KEY WARNING MAIN: false WARNING ALT: false HideUI_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479564] KEY WARNING MAIN: false WARNING ALT: false HideUI_Main [2026.02.21-11.31.59:033][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479564] KEY WARNING MAIN: false WARNING ALT: false HideUI_Main [2026.02.21-11.31.59:035][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479555] KEY WARNING MAIN: false WARNING ALT: false Controller_INV [2026.02.21-11.31.59:035][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479555] KEY WARNING MAIN: false WARNING ALT: false Controller_INV [2026.02.21-11.31.59:035][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479555] KEY WARNING MAIN: false WARNING ALT: false Controller_INV [2026.02.21-11.31.59:035][ 49]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479555] KEY WARNING MAIN: false WARNING ALT: false Controller_INV [2026.02.21-11.31.59:038][ 49]LogSlate: Took 0.001960 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBoldItalic.ufont' (162K) [2026.02.21-11.32.01:706][368]LogStreaming: Display: 0.009 ms for processing 432 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.32.50:627][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479978] KEY WARNING MAIN: false WARNING ALT: false MoveForward_Main [2026.02.21-11.32.50:627][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479969] KEY WARNING MAIN: false WARNING ALT: false Jump_Main [2026.02.21-11.32.50:628][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479960] KEY WARNING MAIN: false WARNING ALT: false Sprint_Main [2026.02.21-11.32.50:628][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479951] KEY WARNING MAIN: false WARNING ALT: false MoveBackward_Main [2026.02.21-11.32.50:628][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479942] KEY WARNING MAIN: false WARNING ALT: false MoveLeft_Main [2026.02.21-11.32.50:629][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479933] KEY WARNING MAIN: false WARNING ALT: false MoveRight_Main [2026.02.21-11.32.50:629][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479924] KEY WARNING MAIN: false WARNING ALT: false Crouch_Main [2026.02.21-11.32.50:629][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479915] KEY WARNING MAIN: false WARNING ALT: false Urinate_Main [2026.02.21-11.32.50:630][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479906] KEY WARNING MAIN: false WARNING ALT: false Reload_Main [2026.02.21-11.32.50:630][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479897] KEY WARNING MAIN: false WARNING ALT: false FistMode_Main [2026.02.21-11.32.50:630][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479888] KEY WARNING MAIN: false WARNING ALT: false InspectPlayer_Main [2026.02.21-11.32.50:631][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479879] KEY WARNING MAIN: false WARNING ALT: false Slot1_Main [2026.02.21-11.32.50:631][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479870] KEY WARNING MAIN: false WARNING ALT: false Slot2_Main [2026.02.21-11.32.50:632][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479861] KEY WARNING MAIN: false WARNING ALT: false Slot3_Main [2026.02.21-11.32.50:632][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479852] KEY WARNING MAIN: false WARNING ALT: false Slot4_Main [2026.02.21-11.32.50:632][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479843] KEY WARNING MAIN: false WARNING ALT: false Slot5_Main [2026.02.21-11.32.50:633][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479834] KEY WARNING MAIN: false WARNING ALT: false Slot6_Main [2026.02.21-11.32.50:633][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479825] KEY WARNING MAIN: false WARNING ALT: false Accelerate_Main [2026.02.21-11.32.50:633][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479816] KEY WARNING MAIN: false WARNING ALT: false Brake_Main [2026.02.21-11.32.50:634][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479807] KEY WARNING MAIN: false WARNING ALT: false TurnLeft_Main [2026.02.21-11.32.50:634][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479798] KEY WARNING MAIN: false WARNING ALT: false TurnRight_Main [2026.02.21-11.32.50:634][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479789] KEY WARNING MAIN: false WARNING ALT: false Ignition_Main [2026.02.21-11.32.50:635][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479780] KEY WARNING MAIN: false WARNING ALT: false Handbrake_Main [2026.02.21-11.32.50:635][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479771] KEY WARNING MAIN: false WARNING ALT: false Headlights_Main [2026.02.21-11.32.50:635][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479762] KEY WARNING MAIN: false WARNING ALT: false HeadlightCall_Main [2026.02.21-11.32.50:636][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479753] KEY WARNING MAIN: false WARNING ALT: false IndicatorLeft_Main [2026.02.21-11.32.50:636][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479744] KEY WARNING MAIN: false WARNING ALT: false IndicatorRight_Main [2026.02.21-11.32.50:637][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479735] KEY WARNING MAIN: false WARNING ALT: false IndicatorWarnings_Main [2026.02.21-11.32.50:637][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479726] KEY WARNING MAIN: false WARNING ALT: false Klaxon_Main [2026.02.21-11.32.50:637][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479717] KEY WARNING MAIN: false WARNING ALT: false Trailer_Main [2026.02.21-11.32.50:638][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479708] KEY WARNING MAIN: false WARNING ALT: false GearUp_Main [2026.02.21-11.32.50:638][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479699] KEY WARNING MAIN: false WARNING ALT: false GearDown_Main [2026.02.21-11.32.50:639][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479690] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.32.50:639][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479681] KEY WARNING MAIN: false WARNING ALT: false InteractPrimary_Main [2026.02.21-11.32.50:639][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479672] KEY WARNING MAIN: false WARNING ALT: false InteractSecondary_Main [2026.02.21-11.32.50:640][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479663] KEY WARNING MAIN: false WARNING ALT: false InteractThirdUp_Main [2026.02.21-11.32.50:640][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479654] KEY WARNING MAIN: false WARNING ALT: false InteractThirdDown_Main [2026.02.21-11.32.50:640][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479645] KEY WARNING MAIN: false WARNING ALT: false Zoom_Main [2026.02.21-11.32.50:641][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479636] KEY WARNING MAIN: false WARNING ALT: false RecoverCar_Main [2026.02.21-11.32.50:641][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479627] KEY WARNING MAIN: false WARNING ALT: false AltRotation_Main [2026.02.21-11.32.50:641][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479618] KEY WARNING MAIN: false WARNING ALT: false ItemAway_Main [2026.02.21-11.32.50:642][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479609] KEY WARNING MAIN: false WARNING ALT: false ItemCloser_Main [2026.02.21-11.32.50:642][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479600] KEY WARNING MAIN: false WARNING ALT: false RotateItem_Main [2026.02.21-11.32.50:643][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479591] KEY WARNING MAIN: false WARNING ALT: false PushToTalk_Main [2026.02.21-11.32.50:643][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479582] KEY WARNING MAIN: false WARNING ALT: false CameraSwitch_Main [2026.02.21-11.32.50:643][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479573] KEY WARNING MAIN: false WARNING ALT: false ExitCar_Main [2026.02.21-11.32.50:644][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479564] KEY WARNING MAIN: false WARNING ALT: false HideUI_Main [2026.02.21-11.32.50:644][228]LogBlueprintUserMessages: [WBP_InputSettingsV2_C_2147479555] KEY WARNING MAIN: false WARNING ALT: false Controller_INV [2026.02.21-11.33.01:719][555]LogStreaming: Display: 0.001 ms for processing 9 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.34.07:891][451]LogConfig: Applying CVar settings from Section [ShadingQuality@Cine] File [Scalability] [2026.02.21-11.34.07:891][451]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:1]] [2026.02.21-11.34.07:891][451]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:6]] [2026.02.21-11.34.07:891][451]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:8]] [2026.02.21-11.34.07:891][451]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] [2026.02.21-11.34.07:897][451]LogConfig: Applying CVar settings from Section [EffectsQuality@Cine] File [Scalability] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.RefractionQuality:2]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SceneColorFormat:4]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.DetailMode:2]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] [2026.02.21-11.34.07:897][451]LogConsoleManager: Warning: Setting the console variable 'r.MaterialQualityLevel' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByConsole'. Value remains '1' [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SSS.Scale:1]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SSS.SampleSet:2]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SSS.Quality:1]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SSGI.Quality:4]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.ParticleLightQuality:2]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:6.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:96.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:8.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:96.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:20.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:16.0]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[fx.Niagara.QualityLevel:4]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.VolumetricFog:1]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:12]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:72]] [2026.02.21-11.34.07:897][451]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:2]] [2026.02.21-11.34.07:916][451]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@Cine] File [Scalability] [2026.02.21-11.34.07:916][451]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] [2026.02.21-11.34.07:916][451]LogConfig: Set CVar [[r.ViewDistanceScale:1.25]] [2026.02.21-11.34.07:959][451]LogConfig: Applying CVar settings from Section [FoliageQuality@Cine] File [Scalability] [2026.02.21-11.34.07:959][451]LogConfig: Set CVar [[foliage.DensityScale:1.0]] [2026.02.21-11.34.07:959][451]LogConfig: Set CVar [[grass.DensityScale:1.0]] [2026.02.21-11.34.07:975][451]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@Cine] File [Scalability] [2026.02.21-11.34.07:975][451]LogConfig: Set CVar [[r.FXAA.Quality:5]] [2026.02.21-11.34.07:975][451]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] [2026.02.21-11.34.07:975][451]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:130]] [2026.02.21-11.34.07:975][451]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] [2026.02.21-11.34.07:975][451]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] [2026.02.21-11.34.07:991][451]LogConfig: Applying CVar settings from Section [ReflectionQuality@Cine] File [Scalability] [2026.02.21-11.34.07:991][451]LogConfig: Set CVar [[r.SSR.Quality:4]] [2026.02.21-11.34.07:992][451]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] [2026.02.21-11.34.07:992][451]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] [2026.02.21-11.34.07:992][451]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:1]] [2026.02.21-11.34.08:007][451]r.BloomQuality = "4" [2026.02.21-11.34.08:021][451]r.ContactShadows = "4" [2026.02.21-11.34.08:039][451]r.DistanceFieldAO = "4" [2026.02.21-11.34.08:054][451]r.MaterialQualityLevel = "4" [2026.02.21-11.34.08:056][451]LogMaterial: Error: Tried to access an uncooked shader map ID in a cooked application [2026.02.21-11.34.08:056][451]LogMaterial: Warning: Invalid shader map ID caching shaders for 'M_DnBlastFx', will use default material. [2026.02.21-11.34.08:056][451]LogMaterial: Can't compile M_DnBlastFx with cooked content, will use default material instead [2026.02.21-11.34.08:056][451]LogMaterial: Warning: [AssetLog] [REDACTED:Windows User Path]\Desktop\Jeux\Fichiers\Drive Beyond Horizons\Drive Beyond Horizons\DriveBeyondHorizons\Content\Environments\Meshes\DrumAndBlast\M_DnBlastFx: Failed to compile Material for platform PCD3D_SM5, Default Material will be used in game. [2026.02.21-11.34.08:070][451]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@Cine] File [Scalability] [2026.02.21-11.34.08:070][451]LogConsoleManager: Warning: Setting the console variable 'r.DistanceFieldAO' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByConsole'. Value remains '4' [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.AOQuality:3]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:350]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:12]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:.4]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:4]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:12]] [2026.02.21-11.34.08:070][451]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:300]] [2026.02.21-11.34.08:084][451]LogConfig: Applying CVar settings from Section [ShadowQuality@Cine] File [Scalability] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.LightFunctionQuality:1]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.ShadowQuality:4]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:4]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.MaxResolution:4096]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:3072]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:4]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:16]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.CapsuleShadows:1]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:8192]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:16]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:8]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:16]] [2026.02.21-11.34.08:085][451]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:8]] [2026.02.21-11.34.08:085][451]LogConsoleManager: Warning: Setting the console variable 'r.Shadow.Virtual.Enable' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByProjectSetting'. Value remains '0' [2026.02.21-11.34.18:897][737]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] [2026.02.21-11.34.18:897][737]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] [2026.02.21-11.34.18:897][737]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] [2026.02.21-11.34.18:897][737]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] [2026.02.21-11.34.18:900][737]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SceneColorFormat:3]] [2026.02.21-11.34.18:900][737]LogConsoleManager: Warning: Setting the console variable 'r.MaterialQualityLevel' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByConsole'. Value remains '4' [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SSGI.Quality:3]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.EmitterSpawnRateScale:0.75]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:2]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:72.0]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:14]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:56]] [2026.02.21-11.34.18:900][737]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:1]] [2026.02.21-11.34.18:918][737]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] [2026.02.21-11.34.18:918][737]LogConfig: Set CVar [[r.ViewDistanceScale:0.95]] [2026.02.21-11.34.18:962][737]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] [2026.02.21-11.34.18:962][737]LogConfig: Set CVar [[foliage.DensityScale:0.9]] [2026.02.21-11.34.18:962][737]LogConfig: Set CVar [[grass.DensityScale:0.85]] [2026.02.21-11.34.18:978][737]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] [2026.02.21-11.34.18:978][737]LogConfig: Set CVar [[r.FXAA.Quality:4]] [2026.02.21-11.34.18:978][737]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:110]] [2026.02.21-11.34.18:978][737]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:2]] [2026.02.21-11.34.18:994][737]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] [2026.02.21-11.34.18:994][737]LogConfig: Set CVar [[r.SSR.Quality:3]] [2026.02.21-11.34.18:994][737]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] [2026.02.21-11.34.19:008][737]r.BloomQuality = "3" [2026.02.21-11.34.19:027][737]r.ContactShadows = "3" [2026.02.21-11.34.19:044][737]r.DistanceFieldAO = "3" [2026.02.21-11.34.19:058][737]r.MaterialQualityLevel = "3" [2026.02.21-11.34.19:074][737]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] [2026.02.21-11.34.19:074][737]LogConsoleManager: Warning: Setting the console variable 'r.DistanceFieldAO' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByConsole'. Value remains '3' [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.AOQuality:2]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:275]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:32]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:10]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:0.75]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:0]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:2]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] [2026.02.21-11.34.19:074][737]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] [2026.02.21-11.34.19:088][737]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.ShadowQuality:3]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:3]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.MaxResolution:2560]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.25]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.75]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:0.95]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] [2026.02.21-11.34.19:088][737]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] [2026.02.21-11.34.19:088][737]LogConsoleManager: Warning: Setting the console variable 'r.Shadow.Virtual.Enable' with 'SetByScalability' was ignored as it is lower priority than the previous 'SetByProjectSetting'. Value remains '0' [2026.02.21-11.34.46:760][ 47]LogStreaming: Display: 0.002 ms for processing 123 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.35.01:768][844]LogStreaming: Display: 0.004 ms for processing 246 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (11237->11237) packages and 0 (27705->27705) public exports. [2026.02.21-11.48.28:567][509]Closing by request [2026.02.21-11.48.28:567][509]LogWindows: FPlatformMisc::RequestExit(0) [2026.02.21-11.48.28:567][509]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0) [2026.02.21-11.48.28:567][509]LogCore: Engine exit requested (reason: Win RequestExit) [2026.02.21-11.48.28:568][510]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) [2026.02.21-11.48.28:568][510]LogInit: Display: PreExit Game. [2026.02.21-11.48.28:569][510]LogWorld: BeginTearingDown for /Game/Maps/L_SplashScreenTest [2026.02.21-11.48.28:581][510]LogWorld: UWorld::CleanupWorld for L_SplashScreenTest, bSessionEnded=true, bCleanupResources=true [2026.02.21-11.48.28:582][510]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated [2026.02.21-11.48.28:856][510]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... [2026.02.21-11.48.28:856][510]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... [2026.02.21-11.48.28:856][510]LogAudio: Display: Audio Device unregistered from world 'L_SplashScreenTest'. [2026.02.21-11.48.28:856][510]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1 [2026.02.21-11.48.28:880][510]LogResonanceAudio: Display: Resonance Audio Listener is shutdown [2026.02.21-11.48.28:880][510]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 [2026.02.21-11.48.28:882][510]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 [2026.02.21-11.48.28:890][510]LogAudio: Display: Audio Device Manager Shutdown [2026.02.21-11.48.28:890][510]LogSlate: Request Window 'DriveBeyondHorizons ' being destroyed [2026.02.21-11.48.28:890][510]LogSlate: Window 'DriveBeyondHorizons ' being destroyed [2026.02.21-11.48.28:891][510]LogWindowsTextInputMethodSystem: Activated input method: Français (France) - (Keyboard). [2026.02.21-11.48.28:906][510]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 [2026.02.21-11.48.28:906][510]LogExit: Preparing to exit. [2026.02.21-11.48.28:906][510]LogMoviePlayer: Shutting down movie player [2026.02.21-11.48.29:014][510]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden [2026.02.21-11.48.29:021][510]LogRuntimeAudioImporter: Warning: Imported sound wave ('Default__ImportedSoundWave') data will be cleared because it is being unloaded.If it's not intended, make sure to keep a hard reference to the sound wave (e.g. by adding it to a UPROPERTY, variable in Blueprint, etc.) [2026.02.21-11.48.29:021][510]LogRuntimeAudioImporter: Warning: Imported sound wave ('Default__StreamingSoundWave') data will be cleared because it is being unloaded.If it's not intended, make sure to keep a hard reference to the sound wave (e.g. by adding it to a UPROPERTY, variable in Blueprint, etc.) [2026.02.21-11.48.29:021][510]LogRuntimeAudioImporter: Warning: Imported sound wave ('Default__CapturableSoundWave') data will be cleared because it is being unloaded.If it's not intended, make sure to keep a hard reference to the sound wave (e.g. by adding it to a UPROPERTY, variable in Blueprint, etc.) [2026.02.21-11.48.29:021][510]LogRuntimeAudioImporter: Warning: Imported sound wave ('Default__SynthBasedSoundWave') data will be cleared because it is being unloaded.If it's not intended, make sure to keep a hard reference to the sound wave (e.g. by adding it to a UPROPERTY, variable in Blueprint, etc.) [2026.02.21-11.48.29:022][510]LogRuntimeTTS: Cancelling text-to-speech synthesis [2026.02.21-11.48.29:022][510]LogRuntimeTTS: Cleared voice session cache [2026.02.21-11.48.29:022][510]LogRuntimeTTS: RuntimeTextToSpeech object destroyed [2026.02.21-11.48.29:124][510]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled [2026.02.21-11.48.29:163][510]LogExit: Game engine shut down [2026.02.21-11.48.29:318][510]LogExit: Object subsystem successfully closed. [2026.02.21-11.48.29:341][510]LogModuleManager: Shutting down and abandoning module Voice (420) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AIModule (418) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module NavigationSystem (417) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module SunPosition (414) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (412) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (410) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (408) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (406) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module FractureEngine (404) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module CharacterAI (402) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module SessionServices (400) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (398) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module MovieScene (396) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (394) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (392) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (390) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AudioMixer (389) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AudioMixerCore (388) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (384) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module TypedElementFramework (382) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module glTFRuntime (380) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module UniversalVoiceChatPro (378) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module TerrainGenerator (376) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module SyncTime (374) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module SteamInventoryPlugin (372) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module SantorLand (370) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module RuntimeTextToSpeech (368) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module RoadGenerator (366) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module MenuPlugin (364) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module MazePlugin (362) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module DynamicMeshPainting (360) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module ShadeupExamplePlugin (358) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module CarPlugin (356) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module ALSV4_CPP (354) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module TakeMovieScene (352) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module TraceUtilities (350) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module ResonanceAudio (348) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (346) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module ModelingOperators (344) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module ModelingComponents (342) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module GeometryFramework (341) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module MeshModelingTools (338) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module GooglePAD (336) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module DynamicMesh (334) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (332) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (330) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module GeometryCache (328) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AudioWidgets (326) [2026.02.21-11.48.29:343][510]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (325) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AudioCapture (322) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AudioCaptureRtAudio (321) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AssetTags (318) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (316) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AppleImageUtils (314) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AndroidPermission (312) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (310) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module TemplateSequence (304) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module SequencerScripting (302) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (300) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (298) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (296) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (294) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MediaPlate (292) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MediaCompositing (290) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ImgMedia (288) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module JsonBlueprintUtilities (286) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module PCG (284) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (282) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (280) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (278) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module DataflowNodes (276) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (274) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (272) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ChaosNiagara (270) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module BackChannel (268) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AutomationUtils (266) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (264) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module UObjectPlugin (262) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (260) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ControlRigSpline (258) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module DriveBeyondHorizons (256) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module WwiseNiagara (254) [2026.02.21-11.48.29:346][510]LogWwiseNiagara: Display: Shutting down default Niagara. [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module VaRest (252) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module SteamCoreSockets (250) [2026.02.21-11.48.29:346][510]LogSockets: SteamCoreSockets: Cleaning up [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module SteamCorePro (248) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module RuntimeAudioImporter (246) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module PakLoader (244) [2026.02.21-11.48.29:346][510]LogPakLoader: FPakLoaderModule::ShutdownModule() [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module LowEntryExtendedStandardLibrary (242) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AdvancedSessions (240) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module Synthesis (238) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module SoundFields (236) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module SignificanceManager (234) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (232) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (230) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MetasoundEngine (228) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module WaveTable (227) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (225) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (222) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (220) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (218) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (216) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (214) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module SQLiteCore (212) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (210) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module CableComponent (208) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (206) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (205) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (202) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module ActorSequence (200) [2026.02.21-11.48.29:346][510]LogModuleManager: Shutting down and abandoning module UdpMessaging (198) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module TcpMessaging (196) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (194) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (192) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module NiagaraCore (190) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module StructUtils (188) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module GeometryScriptingCore (186) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module PBIK (184) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module FullBodyIK (182) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module ChaosVehicles (180) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module ChaosCaching (178) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module EnhancedInput (176) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module FacialAnimation (174) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module AnimationSharing (172) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module GameplayCameras (170) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module IKRig (168) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module ControlRig (166) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module Constraints (165) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module LevelSequence (163) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module Paper2D (160) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module Wwise (158) [2026.02.21-11.48.29:347][510]LogModuleManager: Shutting down and abandoning module AkAudio (157) [2026.02.21-11.48.29:357][510]LogAkAudio: Audiokinetic Audio Device terminated. [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module WwiseConcurrency (156) [2026.02.21-11.48.29:358][510]LogWwiseConcurrency: Display: Shutting down default Concurrency. [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module WwiseProcessing (154) [2026.02.21-11.48.29:358][510]LogWwiseProcessing: Display: Shutting down default Processing. [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module WwiseFileHandler (152) [2026.02.21-11.48.29:358][510]LogWwiseFileHandler: Closing FileHandler with remaining 1 FileStates. Leaking. [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module WwiseResourceLoader (150) [2026.02.21-11.48.29:358][510]LogWwiseResourceLoader: Display: Shutting down default Resource Loader. [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module WwiseSoundEngine (148) [2026.02.21-11.48.29:358][510]LogWwiseSoundEngine: Unloading Wwise Sound Engine [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module VictoryBPLibrary (144) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module VehicleSystemPlugin (142) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (140) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module AndroidFileServer (138) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (136) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module PacketHandler (134) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (132) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module MediaAssets (130) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module Overlay (128) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module UMG (126) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module Slate (124) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module SlateCore (122) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module MRMesh (120) [2026.02.21-11.48.29:358][510]LogModuleManager: Shutting down and abandoning module Messaging (118) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (116) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module Networking (114) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module Core (110) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module Niagara (108) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module SignalProcessing (107) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (104) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module ImageWrapper (100) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module InputCore (98) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (96) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (95) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module Chaos (92) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module GeometryCore (91) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (88) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (87) [2026.02.21-11.48.29:359][510]LogModuleManager: Shutting down and abandoning module AVEncoder (86) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module D3D11RHI (82) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module RealtimeMeshComponent (80) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module ComputeShader (78) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (76) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (74) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module ChunkDownloader (72) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (70) [2026.02.21-11.48.29:360][510]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (68) [2026.02.21-11.48.29:383][510]LogModuleManager: Shutting down and abandoning module SteamCoreShared (66) [2026.02.21-11.48.29:383][510]LogModuleManager: Shutting down and abandoning module HTTP (63) [2026.02.21-11.48.29:388][510]LogModuleManager: Shutting down and abandoning module SSL (62) [2026.02.21-11.48.29:388][510]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (58) [2026.02.21-11.48.29:388][510]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (56) [2026.02.21-11.48.29:388][510]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (54) [2026.02.21-11.48.29:388][510]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (52) [2026.02.21-11.48.29:388][510]LogModuleManager: Shutting down and abandoning module WmfMedia (50) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module Media (49) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (46) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (44) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module NiagaraShader (42) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module ChaosCloth (40) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module VariantManagerContent (38) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module GLTFExporter (36) [2026.02.21-11.48.29:442][510]LogModuleManager: Shutting down and abandoning module DatasmithContent (34) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module OpenColorIO (32) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module AISupportModule (30) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (28) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (26) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (24) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module RenderCore (22) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module Landscape (20) [2026.02.21-11.48.29:443][510]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (18) [2026.02.21-11.48.29:444][510]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (16) [2026.02.21-11.48.29:444][510]LogModuleManager: Shutting down and abandoning module Renderer (14) [2026.02.21-11.48.29:446][510]LogModuleManager: Shutting down and abandoning module Engine (12) [2026.02.21-11.48.29:447][510]LogModuleManager: Shutting down and abandoning module CoreUObject (10) [2026.02.21-11.48.29:447][510]LogModuleManager: Shutting down and abandoning module SandboxFile (8) [2026.02.21-11.48.29:447][510]LogModuleManager: Shutting down and abandoning module PlatformCrypto (6) [2026.02.21-11.48.29:447][510]LogModuleManager: Shutting down and abandoning module PakFile (4) [2026.02.21-11.48.29:448][510]LogModuleManager: Shutting down and abandoning module RSA (3) [2026.02.21-11.48.29:448][510]LogD3D11RHI: Shutdown [2026.02.21-11.48.29:448][510]LogD3D11RHI: CleanupD3DDevice [2026.02.21-11.48.29:472][510]LogExit: Exiting. [2026.02.21-11.48.29:491][510]Log file closed, 02/21/26 12:48:29
Comments
No comments yet.
Loading comments...
Loading comments...
0 comments loaded
You need to join this project to comment on issues.
Join Project