log_file - Log File
Filename: log_file
Size: 260 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
Log file open, 11/02/25 19:53:24
LogConsoleManager: Warning: Console object named 'bp.BlamePrintString' already exists but is being registered again, but we weren't expected it to be! (FConsoleManager::AddConsoleObject)
LogWindows: Custom abort handler registered for crash reporting.
LogPakFile: Initializing PakPlatformFile
LogPakFile: Display: Found Pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak attempting to mount.
LogPakFile: Display: Mounting pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak.
LogPakFile: Display: Mounted Pak file '../../../RogueCore/Content/Paks/RogueCore-Windows.pak', mount point: '../../../'
LogAssetRegistry: Premade AssetRegistry loaded from '../../../RogueCore/AssetRegistry.bin'
LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0
LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +10:00, Platform Override: ''
LogInit: Session CrashGUID >====================================================
         Session CrashGUID >   UECC-Windows-E56073CF43D4432A4422E2989E537A80
         Session CrashGUID >====================================================
LogConfig: No local boot hotfix file found at: [C:/Users/chris/AppData/Local/RogueCore/Saved/PersistentDownloadDir/HotfixForNextBoot.txt]
LogAudio: Display: Pre-Initializing Audio Device Manager...
LogAudio: Display: AudioInfo: 'OPUS' Registered
LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
LogAudio: Display: AudioInfo: 'OGG' Registered
LogAudio: Display: AudioInfo: 'ADPCM' Registered
LogAudio: Display: AudioInfo: 'PCM' Registered
LogAudio: Display: AudioInfo: 'BINKA' Registered
LogAudio: Display: AudioInfo: 'RADA' Registered
LogAudio: Display: Audio Device Manager Pre-Initialized
LogPluginManager: Mounting Project plugin DiscordSDK_Win64
LogPluginManager: Mounting Project plugin FSR3
LogPluginManager: Mounting Project plugin BugReporter
LogPluginManager: Mounting Project plugin DiscordSDK
LogPluginManager: Mounting Project plugin AnimationPreviewTool
LogPluginManager: Mounting Project plugin EditorBase
LogPluginManager: Mounting Project plugin UpgradeEditor
LogPluginManager: Mounting Project plugin VertexColorBaker
LogPluginManager: Mounting Project plugin FSDRawInput
LogPluginManager: Mounting Project plugin FSDTests
LogPluginManager: Mounting Project plugin GameLauncher
LogPluginManager: Mounting Project plugin DLSSMoviePipelineSupport
LogPluginManager: Mounting Project plugin DLSS
LogPluginManager: Mounting Project plugin NIS
LogPluginManager: Mounting Project plugin StreamlineCore
LogPluginManager: Mounting Project plugin StreamlineDLSSG
LogPluginManager: Mounting Project plugin StreamlineDeepDVC
LogPluginManager: Mounting Project plugin StreamlineReflex
LogPluginManager: Mounting Project plugin Streamline
LogPluginManager: Mounting Project plugin PS5_Mock
LogPluginManager: Mounting Engine plugin AISupport
LogPluginManager: Mounting Engine plugin ACLPlugin
LogPluginManager: Mounting Engine plugin AnimationData
LogPluginManager: Mounting Engine plugin ControlRigModules
LogPluginManager: Mounting Engine plugin ControlRigSpline
LogPluginManager: Mounting Engine plugin ControlRig
LogPluginManager: Mounting Engine plugin DeformerGraph
LogPluginManager: Mounting Engine plugin GameplayInsights
LogPluginManager: Mounting Engine plugin IKRig
LogPluginManager: Mounting Engine plugin LiveLink
LogPluginManager: Mounting Engine plugin RigLogic
LogPluginManager: Mounting Engine plugin AudioInsights
LogPluginManager: Mounting Engine plugin Bridge
LogPluginManager: Mounting Engine plugin CameraShakePreviewer
LogPluginManager: Mounting Engine plugin EngineCameras
LogPluginManager: Mounting Engine plugin GameplayCameras
LogPluginManager: Mounting Engine plugin ChaosClothAsset
LogPluginManager: Mounting Engine plugin ChaosCloth
LogPluginManager: Mounting Engine plugin ChaosVD
LogPluginManager: Mounting Engine plugin OpenColorIO
LogPluginManager: Mounting Engine plugin OodleNetwork
LogPluginManager: Mounting Engine plugin AnimationSharing
LogPluginManager: Mounting Engine plugin ConcertMain
LogPluginManager: Mounting Engine plugin ConcertSyncClient
LogPluginManager: Mounting Engine plugin ConcertSyncCore
LogPluginManager: Mounting Engine plugin ConcertSharedSlate
LogPluginManager: Mounting Engine plugin PluginUtils
LogPluginManager: Mounting Engine plugin TraceSourceFilters
LogPluginManager: Mounting Engine plugin UObjectPlugin
LogPluginManager: Mounting Engine plugin AssetManagerEditor
LogPluginManager: Mounting Engine plugin BlueprintHeaderView
LogPluginManager: Mounting Engine plugin ColorGrading
LogPluginManager: Mounting Engine plugin ConsoleVariables
LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource
LogPluginManager: Mounting Engine plugin DataValidation
LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
LogPluginManager: Mounting Engine plugin FacialAnimation
LogPluginManager: Mounting Engine plugin GameplayTagsEditor
LogPluginManager: Mounting Engine plugin GeometryMode
LogPluginManager: Mounting Engine plugin LightMixer
LogPluginManager: Mounting Engine plugin ObjectMixer
LogPluginManager: Mounting Engine plugin ProxyLODPlugin
LogPluginManager: Mounting Engine plugin SequencerAnimTools
LogPluginManager: Mounting Engine plugin UMGWidgetPreview
LogPluginManager: Mounting Engine plugin UVEditor
LogPluginManager: Mounting Engine plugin EnhancedInput
LogPluginManager: Mounting Engine plugin DatasmithContent
LogPluginManager: Mounting Engine plugin GLTFExporter
LogPluginManager: Mounting Engine plugin VariantManagerContent
LogPluginManager: Mounting Engine plugin VariantManager
LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools
LogPluginManager: Mounting Engine plugin AutomationUtils
LogPluginManager: Mounting Engine plugin BackChannel
LogPluginManager: Mounting Engine plugin ChaosCaching
LogPluginManager: Mounting Engine plugin ChaosNiagara
LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
LogPluginManager: Mounting Engine plugin ChaosUserDataPT
LogPluginManager: Mounting Engine plugin CharacterAI
LogPluginManager: Mounting Engine plugin HoldoutComposite
LogPluginManager: Mounting Engine plugin Dataflow
LogPluginManager: Mounting Engine plugin EditorDataStorage
LogPluginManager: Mounting Engine plugin FullBodyIK
LogPluginManager: Mounting Engine plugin LocalizableMessage
LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp
LogPluginManager: Mounting Engine plugin MetaHumanSDK
LogPluginManager: Mounting Engine plugin NFORDenoise
LogPluginManager: Mounting Engine plugin PlanarCut
LogPluginManager: Mounting Engine plugin PlatformCrypto
LogPluginManager: Mounting Engine plugin PythonScriptPlugin
LogPluginManager: Mounting Engine plugin StudioTelemetry
LogPluginManager: Mounting Engine plugin ToolPresets
LogPluginManager: Mounting Engine plugin NiagaraSimCaching
LogPluginManager: Mounting Engine plugin Niagara
LogPluginManager: Mounting Engine plugin Fab
LogPluginManager: Mounting Engine plugin AlembicImporter
LogPluginManager: Mounting Engine plugin InterchangeAssets
LogPluginManager: Mounting Engine plugin InterchangeEditor
LogPluginManager: Mounting Engine plugin Interchange
LogPluginManager: Mounting Engine plugin AvfMedia
LogPluginManager: Mounting Engine plugin ImgMedia
LogPluginManager: Mounting Engine plugin MediaCompositing
LogPluginManager: Mounting Engine plugin MediaPlate
LogPluginManager: Mounting Engine plugin MfMedia
LogPluginManager: Mounting Engine plugin WebMMedia
LogPluginManager: Mounting Engine plugin WmfMedia
LogPluginManager: Mounting Engine plugin MeshPainting
LogPluginManager: Mounting Engine plugin TcpMessaging
LogPluginManager: Mounting Engine plugin UdpMessaging
LogPluginManager: Mounting Engine plugin ActorSequence
LogPluginManager: Mounting Engine plugin LevelSequenceEditor
LogPluginManager: Mounting Engine plugin MovieRenderPipeline
LogPluginManager: Mounting Engine plugin SequencerScripting
LogPluginManager: Mounting Engine plugin TemplateSequence
LogPluginManager: Mounting Engine plugin NNEDenoiser
LogPluginManager: Mounting Engine plugin NNERuntimeORT
LogPluginManager: Mounting Engine plugin EOSShared
LogPluginManager: Mounting Engine plugin OnlineBase
LogPluginManager: Mounting Engine plugin OnlineServices
LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
LogPluginManager: Mounting Engine plugin OnlineSubsystemSteam
LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
LogPluginManager: Mounting Engine plugin OnlineSubsystem
LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
LogPluginManager: Mounting Engine plugin ActorLayerUtilities
LogPluginManager: Mounting Engine plugin AnalyticsBlueprintLibrary
LogPluginManager: Mounting Engine plugin AndroidFileServer
LogPluginManager: Mounting Engine plugin AssetTags
LogPluginManager: Mounting Engine plugin AudioCapture
LogPluginManager: Mounting Engine plugin AudioModulation
LogPluginManager: Mounting Engine plugin AudioSynesthesia
LogPluginManager: Mounting Engine plugin AudioWidgets
LogPluginManager: Mounting Engine plugin CableComponent
LogPluginManager: Mounting Engine plugin ChunkDownloader
LogPluginManager: Mounting Engine plugin ComputeFramework
LogPluginManager: Mounting Engine plugin SQLiteCore
LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
LogPluginManager: Mounting Engine plugin GeometryCache
LogPluginManager: Mounting Engine plugin GeometryProcessing
LogPluginManager: Mounting Engine plugin HairStrands
LogPluginManager: Mounting Engine plugin MeshModelingToolset
LogPluginManager: Mounting Engine plugin Metasound
LogPluginManager: Mounting Engine plugin MsQuic
LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
LogPluginManager: Mounting Engine plugin PropertyAccessEditor
LogPluginManager: Mounting Engine plugin ResonanceAudio
LogPluginManager: Mounting Engine plugin RigVM
LogPluginManager: Mounting Engine plugin SignificanceManager
LogPluginManager: Mounting Engine plugin SoundFields
LogPluginManager: Mounting Engine plugin Spatialization
LogPluginManager: Mounting Engine plugin StateTree
LogPluginManager: Mounting Engine plugin SteamShared
LogPluginManager: Mounting Engine plugin SteamSockets
LogPluginManager: Mounting Engine plugin Synthesis
LogPluginManager: Mounting Engine plugin USDCore
LogPluginManager: Mounting Engine plugin WaveTable
LogPluginManager: Mounting Engine plugin WebMMoviePlayer
LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
LogPluginManager: Mounting Engine plugin XInputDevice
LogPluginManager: Mounting Engine plugin SlateInsights
LogPluginManager: Mounting Engine plugin InterchangeTests
LogPluginManager: Mounting Engine plugin TraceUtilities
LogPluginManager: Mounting Engine plugin Takes
LogPluginManager: Mounting Engine plugin WorldMetrics
LogHAL: Log category FSDLog_ShippingDebugging verbosity has been raised to VeryVerbose.
LogHAL: Log category FSDLog_EngineShippingDebugging verbosity has been raised to VeryVerbose.
LogFSR3: FSR3 Temporal Upscaling Module Started
LogFFXFI: FFX Frame Interpolation Module Started
LogConfig: Applying CVar settings from Section [/Script/FFXFSR3Settings.FFXFSR3Settings] File [Engine]
LogDLSSBlueprint: Loaded DLSS-SR plugin version 4.0.2-NGX310.2.1.0
LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Enter
LogRHI: Using Default RHI: D3D12
LogRHI: Using Highest Feature Level of D3D12: SM6
LogRHI: Loading RHI module D3D12RHI
LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 2060 (VendorId: 10de, DeviceId: 1e89, SubSysId: 87951043, Revision: 00a1
LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
LogD3D12RHI:   Adapter has 5945MB of dedicated video memory, 0MB of dedicated system memory, and 16341MB of shared system memory, 1 output[s]
LogD3D12RHI:   Driver Version: 576.88 (internal:32.0.15.7688, unified:576.88)
LogD3D12RHI:      Driver Date: 6-24-2025
LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16341MB of shared system memory, 0 output[s]
LogD3D12RHI: DirectX Agility SDK runtime found.
LogD3D12RHI: Chosen D3D12 Adapter Id = 0
LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
LogDLSSNGXVulkanRHIPreInit: GetSelectedDynamicRHIModuleName = D3D12RHI
LogDLSSNGXVulkanRHIPreInit: VulkanRHI is not the active DynamicRHI; skipping of pregistering the required NGX DLSS Vulkan device and instance extensions via the VulkanRHIBridge
LogDLSSNGXVulkanRHIPreInit: FNGXVulkanRHIPreInitModule::StartupModule Leave
LogStreamlineShaders: Loaded Streamline plugin version 4.0.2-SL2.7.30
LogNFORDenoise: NFORDenoise function starting up
LogEOSSDK: Initializing EOSSDK Version:1.16.4-36651368
LogInit: Using libcurl 8.4.0
LogInit:  - built for Windows
LogInit:  - supports SSL with OpenSSL/1.1.1t
LogInit:  - supports HTTP deflate (compression) using libz 1.3
LogInit:  - other features:
LogInit:      CURL_VERSION_SSL
LogInit:      CURL_VERSION_LIBZ
LogInit:      CURL_VERSION_IPV6
LogInit:      CURL_VERSION_ASYNCHDNS
LogInit:      CURL_VERSION_LARGEFILE
LogInit:      CURL_VERSION_HTTP2
LogInit:  CurlRequestOptions (configurable via config and command line):
LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
LogInit:  - LocalHostAddr = Default
LogInit:  - BufferSize = 65536
LogInit: CreateHttpThread using FCurlMultiPollEventLoopHttpThread
LogInit: Creating http thread with maximum 2147483647 concurrent requests
LogSteamShared: Display: Loading Steam SDK 1.57
LogSteamShared: Steam SDK Loaded!
LogOnline: STEAM: Steam User is subscribed 1
LogOnline: STEAM: [AppId: 2860770] Client API initialized 1
LogOnline: OSS: Created online subsystem instance for: STEAM
LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [STEAM]
LogInit: ExecutableName: RogueCore-Win64-Shipping.exe
LogInit: Build: UE5-CL-0
LogInit: Platform=Windows
LogInit: MachineId=db4eb4a142eacbd93434f883537523f2
LogInit: DeviceId=
LogInit: Engine Version: 5.5.3-0+UE5
LogInit: Compatible Engine Version: 5.5.0-0+UE5
LogInit: Net CL: 0
LogInit: OS: Windows 10 (22H2) [10.0.19045.6456] (), CPU: AMD Ryzen 7 2700X Eight-Core Processor         , GPU: NVIDIA GeForce RTX 2060
LogInit: Compiled (64-bit): Jun 27 2025 16:50:24
LogInit: Architecture: x64
LogInit: Compiled with Visual C++: 19.38.33145.00
LogInit: Build Configuration: Shipping
LogInit: Branch Name: UE5
LogInit: Command Line: -disablemodding
LogInit: Base Directory: C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/Win64/
LogInit: Allocator: Binned2
LogInit: Installed Engine Build: 1
LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
LogConfig: Branch 'Lightmass' had been unloaded. Reloading on-demand took 4.12ms
LogConfig: Branch 'DiscordSDK_Win64' had been unloaded. Reloading on-demand took 0.73ms
LogConfig: Branch 'FSR3' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'BugReporter' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'DiscordSDK' had been unloaded. Reloading on-demand took 0.55ms
LogConfig: Branch 'AnimationPreviewTool' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'EditorBase' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'UpgradeEditor' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'VertexColorBaker' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'FSDRawInput' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'FSDTests' had been unloaded. Reloading on-demand took 0.55ms
LogConfig: Branch 'GameLauncher' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'DLSSMoviePipelineSupport' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'DLSS' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'NIS' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'Streamline' had been unloaded. Reloading on-demand took 0.65ms
LogConfig: Branch 'PS5_Mock' had been unloaded. Reloading on-demand took 0.62ms
LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'GameplayInsights' had been unloaded. Reloading on-demand took 0.68ms
LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'AudioInsights' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'ChaosClothAsset' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ConcertSharedSlate' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.62ms
LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.63ms
LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.63ms
LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.65ms
LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.63ms
LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.65ms
LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.62ms
LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'MfMedia' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.64ms
LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.63ms
LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.62ms
LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'OnlineSubsystemSteam' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'AnalyticsBlueprintLibrary' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.64ms
LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.68ms
LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.63ms
LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'Spatialization' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'SteamShared' had been unloaded. Reloading on-demand took 0.61ms
LogConfig: Branch 'SteamSockets' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.58ms
LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.60ms
LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.59ms
LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'SlateInsights' had been unloaded. Reloading on-demand took 0.56ms
LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.57ms
LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.56ms
LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC.
LogStreaming: Display: Async Loading initialized: Event Driven Loader: true, Async Loading Thread: true, Async Post Load: true
LogInit: Object subsystem initialized
LogConfig: Set CVar [[net.ResetAckStatePostSeamlessTravel:1]]
LogConfig: Set CVar [[net.AllowPIESeamlessTravel:1]]
LogConfig: Set CVar [[r.setres:1280x720]]
LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]]
LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0	; Temporary workaround for Nanite geometry corruption (FORT-805141)]]
LogConfig: Set CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]]
LogConfig: Set CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]]
LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]]
LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]]
LogConfig: Set CVar [[r.VRS.EnableSoftware:1]]
LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.ShaderPipelineCache.Enabled:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.ShaderPipelineCache.PrintNewPSODescriptors:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.MobileHDR:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.AllowStaticLighting:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.SeparateTranslucency:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.CustomDepth:3]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
[2025.11.02-08.53.25:974][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.EarlyZPass:2]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.DBuffer:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.HZBOcclusion:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.HDR.UI.Level:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.AllowHDR:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.HDR.UI.CompositeMode:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.NGX.DLSS.Enable:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.FidelityFX.FSR3.Enabled:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.FidelityFX.FSR3.CreateReactiveMask:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.FidelityFX.FI.Enabled:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.ReflectionMethod:2]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.LightFunctionAtlas.Size:8]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.Nanite.ProjectEnabled:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.Nanite:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.RayTracing:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.Lumen.HardwareRayTracing:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.RayTracing.Shadows:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.RayTracing.Skylight:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
[2025.11.02-08.53.25:975][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
[2025.11.02-08.53.25:975][  0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]]
[2025.11.02-08.53.25:975][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
[2025.11.02-08.53.26:003][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.3]]
[2025.11.02-08.53.26:003][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.TSR.Resurrection:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.AOQuality:2]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
[2025.11.02-08.53.26:003][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
[2025.11.02-08.53.26:003][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2025.11.02-08.53.26:004][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.DetailMode:3]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]]
[2025.11.02-08.53.26:004][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
[2025.11.02-08.53.26:004][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
[2025.11.02-08.53.26:004][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
[2025.11.02-08.53.26:004][  0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability]
[2025.11.02-08.53.26:005][  0]LogRHI: Using Default RHI: D3D12
[2025.11.02-08.53.26:005][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
[2025.11.02-08.53.26:005][  0]LogRHI: Loading RHI module D3D12RHI
[2025.11.02-08.53.26:005][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
[2025.11.02-08.53.26:005][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
[2025.11.02-08.53.26:005][  0]LogInit: Selected Device Profile: [Windows]
[2025.11.02-08.53.26:005][  0]LogHAL: Display: Platform has ~ 32 GB [34271621120 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2025.11.02-08.53.26:006][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
[2025.11.02-08.53.26:006][  0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]]
[2025.11.02-08.53.26:006][  0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]]
[2025.11.02-08.53.26:006][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@2] File [Scalability]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
[2025.11.02-08.53.26:006][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@2] File [Scalability]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:4]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:1024]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.04]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:0.85]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:0.8]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:0.5]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:16]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:64]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:2048]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-0.5]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-0.5]]
[2025.11.02-08.53.26:006][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@2] File [Scalability]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.MotionBlurQuality:3]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.6]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.5]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.FastBlurThreshold:3]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Upscale.Quality:2]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.Filter.SizeScale:0.8]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:0        ; lower gathering accumulator quality]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:2          ; Max3x3 postfilering method]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:1    ; no background occlusion]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:0      ; no bokeh simulation when scattering]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.04        ; only a maximum of 4% of scattered bokeh]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:0                ; no slight out of focus]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:0                ; faster temporal accumulation]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.012   ; required because of AccumulatorQuality=0]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.012   ; required because of AccumulatorQuality=0]]
[2025.11.02-08.53.26:006][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@2] File [Scalability]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[foliage.DensityScale:0.8]]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[grass.DensityScale:0.8]]
[2025.11.02-08.53.26:006][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
[2025.11.02-08.53.26:006][  0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]]
[2025.11.02-08.53.26:006][  0]LogInit: Computer: THESOUPBOWL
[2025.11.02-08.53.26:006][  0]LogInit: User: chris
[2025.11.02-08.53.26:006][  0]LogInit: CPU Page size=4096, Cores=8
[2025.11.02-08.53.26:006][  0]LogInit: High frequency timer resolution =10.000000 MHz
[2025.11.02-08.53.26:156][  0]LogOnline: Warning: STEAM: Failed to obtain steam user stats, user: Toxin_deathgas [0x1100001418D58ED] has no stats entries
[2025.11.02-08.53.26:808][  0]LogMemory: Memory total: Physical=31.9GB (32GB approx) Virtual=33.9GB
[2025.11.02-08.53.26:808][  0]LogMemory: Platform Memory Stats for Windows
[2025.11.02-08.53.26:808][  0]LogMemory: Process Physical Memory: 202.83 MB used, 202.98 MB peak
[2025.11.02-08.53.26:808][  0]LogMemory: Process Virtual Memory: 197.66 MB used, 197.66 MB peak
[2025.11.02-08.53.26:808][  0]LogMemory: Physical Memory: 10983.89 MB used,  21700.08 MB free, 32683.96 MB total
[2025.11.02-08.53.26:808][  0]LogMemory: Virtual Memory: 16235.77 MB used,  18496.19 MB free, 34731.96 MB total
[2025.11.02-08.53.26:813][  0]LogWindows: WindowsPlatformFeatures enabled
[2025.11.02-08.53.26:816][  0]LogInit: Physics initialised using underlying interface: Chaos
[2025.11.02-08.53.26:817][  0]LogInit: Overriding language with engine language configuration option (en).
[2025.11.02-08.53.26:817][  0]LogInit: Overriding language with engine locale configuration option (en).
[2025.11.02-08.53.26:821][  0]LogInit: Setting process to per monitor DPI aware
[2025.11.02-08.53.26:837][  0]LogWindowsTextInputMethodSystem: Available input methods:
[2025.11.02-08.53.26:837][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
[2025.11.02-08.53.26:837][  0]LogWindowsTextInputMethodSystem:   - English (Australia) - (Keyboard).
[2025.11.02-08.53.26:837][  0]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard).
[2025.11.02-08.53.26:892][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
[2025.11.02-08.53.26:892][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
[2025.11.02-08.53.26:972][  0]LogRHI: Using Default RHI: D3D12
[2025.11.02-08.53.26:972][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
[2025.11.02-08.53.26:972][  0]LogRHI: Loading RHI module D3D12RHI
[2025.11.02-08.53.26:972][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
[2025.11.02-08.53.26:972][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
[2025.11.02-08.53.26:972][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
[2025.11.02-08.53.26:973][  0]LogWindows: Attached monitors:
[2025.11.02-08.53.26:973][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
[2025.11.02-08.53.26:973][  0]LogWindows: Found 1 attached monitors.
[2025.11.02-08.53.26:973][  0]LogWindows: Gathering driver information using Windows Setup API
[2025.11.02-08.53.26:973][  0]LogRHI: RHI Adapter Info:
[2025.11.02-08.53.26:973][  0]LogRHI:             Name: NVIDIA GeForce RTX 2060
[2025.11.02-08.53.26:973][  0]LogRHI:   Driver Version: 576.88 (internal:32.0.15.7688, unified:576.88)
[2025.11.02-08.53.26:973][  0]LogRHI:      Driver Date: 6-24-2025
[2025.11.02-08.53.26:974][  0]LogD3D12RHI:     GPU DeviceId: 0x1e89 (for the marketing name, search the web for "GPU Device Id")
[2025.11.02-08.53.26:974][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
[2025.11.02-08.53.27:273][  0]LogNvidiaAftermath: Aftermath initialized
[2025.11.02-08.53.27:369][  0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: 
[2025.11.02-08.53.27:369][  0]LogNvidiaAftermath:  - Feature: EnableResourceTracking
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device1 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device2 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device3 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device4 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device5 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device6 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device7 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device8 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device9 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device10 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device11 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: ID3D12Device12 is supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: Bindless resources are supported
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: Raster order views are supported
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
[2025.11.02-08.53.27:369][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
[2025.11.02-08.53.27:370][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
[2025.11.02-08.53.27:533][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000254956496C0)
[2025.11.02-08.53.27:533][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000025495649940)
[2025.11.02-08.53.27:534][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000025495649BC0)
[2025.11.02-08.53.27:534][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
[2025.11.02-08.53.27:534][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
[2025.11.02-08.53.27:540][  0]LogRHI: Texture pool is 3261 MB (70% of 4659 MB)
[2025.11.02-08.53.27:540][  0]LogD3D12RHI: Async texture creation enabled
[2025.11.02-08.53.27:540][  0]LogD3D12RHI: RHI has support for 64 bit atomics
[2025.11.02-08.53.27:555][  0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading
[2025.11.02-08.53.27:561][  0]LogInit: Initializing FReadOnlyCVARCache
[2025.11.02-08.53.27:574][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
[2025.11.02-08.53.27:576][  0]LogShaderLibrary: Display: Using ../../../RogueCore/Content/ShaderArchive-Global-PCD3D_SM6-PCD3D_SM6.ushaderbytecode for material shader code. Total 6154 unique shaders.
[2025.11.02-08.53.27:576][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
[2025.11.02-08.53.27:576][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
[2025.11.02-08.53.27:577][  0]LogTemp: Display: Clearing the OS Cache
[2025.11.02-08.53.27:581][  0]LogPakFile: New pak file ../../../RogueCore/Content/Paks/RogueCore-Windows.pak added to pak precacher.
[2025.11.02-08.53.27:626][  0]LogPakFile: Precache HighWater 16MB

[2025.11.02-08.53.27:690][  0]LogInit: XR: Instanced Stereo Rendering is Disabled
[2025.11.02-08.53.27:690][  0]LogInit: XR: MultiViewport is Disabled
[2025.11.02-08.53.27:690][  0]LogInit: XR: Mobile Multiview is Disabled
[2025.11.02-08.53.27:700][  0]LogSlate: Using FreeType 2.10.0
[2025.11.02-08.53.27:703][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
[2025.11.02-08.53.27:831][  0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Enter
[2025.11.02-08.53.27:831][  0]LogStreamlineRHI: Using Streamline production binaries from ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/. Can be overridden via -slbinaries={production,development,debug} command line switches for non-shipping builds
[2025.11.02-08.53.27:831][  0]LogStreamlineRHI: loading core Streamline functions from Streamline interposer at ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/sl.interposer.dll
[2025.11.02-08.53.27:867][  0]LogStreamlineRHI: File '..\..\..\RogueCore\Plugins\Nvidia\StreamlineCore\Binaries\ThirdParty\Win64\sl.interposer.dll' is signed by NVIDIA and the signature was verified.
[2025.11.02-08.53.27:916][  0]LogStreamlineRHI: SLInterPoserLibrary = 00007FF8F4620000
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slInit = 00007FF8F4626A70
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slShutdown = 00007FF8F4626E30
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slIsFeatureSupported = 00007FF8F46287A0
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slIsFeatureLoaded = 00007FF8F46270E0
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slSetFeatureLoaded = 00007FF8F4627130
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slEvaluateFeature = 00007FF8F4627900
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slAllocateResources = 00007FF8F4627680
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slFreeResources = 00007FF8F46277D0
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slSetTag = 00007FF8F4627230
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slGetFeatureRequirements = 00007FF8F46297E0
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slGetFeatureVersion = 00007FF8F4629260
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slUpgradeInterface = 00007FF8F4627E50
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slSetConstants = 00007FF8F4627620
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slGetNativeInterface = 00007FF8F4627BD0
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slGetFeatureFunction = 00007FF8F462AEC0
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slGetNewFrameToken = 00007FF8F462B060
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: slSetD3DDevice = 00007FF8F4627A10
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: PlatformCreateStreamlineRHI Enter
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: GDynamicRHIName NVIDIA D3D12
[2025.11.02-08.53.27:917][  0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Enter
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: DLSS plugin enabled, adding DLSS plugin binary search paths to Streamline init paths
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/ThirdParty/NVIDIA/NGX/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Binaries/ThirdParty/NVIDIA/NGX/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/Binaries/ThirdParty/NVIDIA/NGX/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/Binaries/ThirdParty/NVIDIA/NGX/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA Streamline interposer plugin sl.interposer.dll not found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64
[2025.11.02-08.53.27:917][  0]LogStreamlineRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll found in search path C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: Loading Streamline Reflex since the corresponding cvar r.Streamline.Load.Reflex is set to true
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: Skipping loading Streamline Latewarp since the corresponding UE StreamlineLatewarp plugin is not enabled
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: Loading Streamline DLSS-FG since the corresponding cvar r.Streamline.Load.DLSSG is set to true
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: Loading Streamline DeepDVC since the corresponding cvar r.Streamline.Load.DeepDVC is set to true
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: Initializing Streamline
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: sl::Preferences::logLevel    = 1. Can be overridden via -slloglevel={0,1,2} command line switches
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: sl::Preferences::showConsole = 0. Can be overridden via -sllogconsole={0,1} command line switches
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: sl::Preferences::featuresToLoad = {kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5)}. Feature loading can be overridden on the command line and console variables:
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: command line -sl{no}reflex, -sl{no}dlssg, -sl{no}deepdvc -sl{no}debugoverlay (non-shipping)
[2025.11.02-08.53.27:918][  0]LogStreamlineRHI: console/config r.Streamline.Load.Reflex, r.Streamline.Load.DLSSG, r.Streamline.Load.DeepDVC
[2025.11.02-08.53.27:919][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:002ms:894us]pluginManager.cpp:489[setHostSDKVersion] Streamline v2.7.30.afa89bde - built on Mon Mar 31 10:49:36 2025 - host SDK v2.7.30
[2025.11.02-08.53.27:927][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:011ms:239us]ota.cpp:382[checkForOTA] Requesting optional updates!
[2025.11.02-08.53.27:929][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:012ms:964us]pluginManager.cpp:618[findPlugins] Looking for plugins in C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64 ...
[2025.11.02-08.53.27:929][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:013ms:233us]pluginManager.cpp:1087[loadPlugins] Searching for OTA'd plugins...
[2025.11.02-08.53.27:930][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:013ms:985us]pluginManager.cpp:1093[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_reflex_0/versions/133132/files/160_E658703.dll
[2025.11.02-08.53.27:930][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:014ms:628us]pluginManager.cpp:1093[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_dlss_g_0/versions/133132/files/160_E658703.dll
[2025.11.02-08.53.27:931][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:015ms:248us]pluginManager.cpp:1093[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_deepdvc_0/versions/133132/files/160_E658703.dll
[2025.11.02-08.53.27:932][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:015ms:907us]pluginManager.cpp:1093[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_common_0/versions/133132/files/160_E658703.dll
[2025.11.02-08.53.27:933][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:016ms:733us]pluginManager.cpp:1093[loadPlugins] Found plugin: C:\ProgramData/NVIDIA/NGX/models/sl_pcl_0/versions/133132/files/160_E658703.dll
[2025.11.02-08.53.27:950][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:033ms:692us]commonInterface.cpp:150[getSystemCaps] Enumerating up to 8 adapters but only one of them can be used to create a device - no mGPU support in this SDK
[2025.11.02-08.53.27:960][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:044ms:220us]commonInterface.cpp:272[getSystemCaps] >-----------------------------------------
[2025.11.02-08.53.27:960][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:044ms:278us]commonInterface.cpp:275[getSystemCaps] NVIDIA driver 576.88
[2025.11.02-08.53.27:962][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:046ms:554us]commonInterface.cpp:300[getSystemCaps] Adapter 0 architecture 0x160 implementation 0x4 revision 0xa1 - bit 0x1 - LUID 0.86561
[2025.11.02-08.53.27:962][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:046ms:605us]commonInterface.cpp:306[getSystemCaps] -----------------------------------------<
[2025.11.02-08.53.27:966][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:050ms:534us]commonEntry.cpp:1734[getOSVersionAndUpdateTimerResolution] Changed high resolution timer resolution to 4988 [100 ns units].
[2025.11.02-08.53.27:966][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:050ms:592us]commonEntry.cpp:1809[updateEmbeddedJSON] Detected Windows OS version 10.0.19045
[2025.11.02-08.53.27:967][  0]LogStreamlineAPI: [Info]: [19-53-27][streamline][info][tid:22072][0s:050ms:911us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.common' - version 2.8.12.ea8968a8 - id 4294967295 - priority 0 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.28:044][  0]LogStreamlineAPI: [Info]: [19-53-28][streamline][info][tid:22072][0s:128ms:341us]pluginManager.cpp:830[mapPlugins] Detected two plugins with the same id 160_E658703 - sl.common
[2025.11.02-08.53.28:044][  0]LogStreamlineAPI: Warning: [Warn]: [19-53-28][streamline][warn][tid:22072][0s:128ms:380us]pluginManager.cpp:892[mapPlugins] Ignoring plugin 'sl.common' since it has duplicated unique id
[2025.11.02-08.53.28:138][  0]LogStreamlineAPI: [Info]: [19-53-28][streamline][info][tid:22072][0s:222ms:603us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.deepdvc' - version 2.7.30.afa89bde - id 5 - priority 100 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.30:105][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:189ms:588us]commonEntry.cpp:836[getNGXFeatureRequirements] NGX_*_GetFeatureRequirements feature: 11 FeatureSupported == AdapterUnsupported
[2025.11.02-08.53.30:105][  0]LogStreamlineAPI: Warning: [Warn]: [19-53-30][streamline][warn][tid:22072][2s:189ms:659us]dlss_gEntry.cpp:144[updateEmbeddedJSON] Failed to obtain DLSS-G min spec requirements from NGX, using SL defaults
[2025.11.02-08.53.30:106][  0]LogStreamlineAPI: Warning: [Warn]: [19-53-30][streamline][warn][tid:22072][2s:189ms:719us]dlss_gEntry.cpp:327[updateEmbeddedJSON] Disabling DLSS-G since it is not supported on current hardware
[2025.11.02-08.53.30:106][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:190ms:150us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.7.30.afa89bde - id 1000 - priority 1000 - adapter mask 0x0 - interposer 'no'
[2025.11.02-08.53.30:174][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:258ms:538us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.pcl' - version 2.7.30.afa89bde - id 4 - priority 2 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.30:236][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:320ms:473us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.reflex' - version 2.7.30.afa89bde - id 3 - priority 100 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.30:249][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:333ms:024us]pluginManager.cpp:830[mapPlugins] Detected two plugins with the same id sl.reflex - 160_E658703
[2025.11.02-08.53.30:249][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:333ms:077us]pluginManager.cpp:874[mapPlugins] Plugin sl.reflex is newer (2.8.12) will choose that
[2025.11.02-08.53.30:249][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:333ms:108us]pluginManager.cpp:981[mapPlugins] A duplicate was found, but a newer plugin version was available
[2025.11.02-08.53.30:249][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:333ms:130us]pluginManager.cpp:987[mapPlugins] Removing plugin with name: sl.reflex superseded by plugin sl.reflex
[2025.11.02-08.53.30:249][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:333ms:217us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.reflex' - version 2.8.12.ea8968a8 - id 3 - priority 100 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.30:294][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:378ms:257us]pluginManager.cpp:830[mapPlugins] Detected two plugins with the same id sl.dlss_g - 160_E658703
[2025.11.02-08.53.30:294][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:378ms:306us]pluginManager.cpp:874[mapPlugins] Plugin sl.dlss_g is newer (2.8.12) will choose that
[2025.11.02-08.53.30:294][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:378ms:344us]pluginManager.cpp:987[mapPlugins] Removing plugin with name: sl.dlss_g superseded by plugin sl.dlss_g
[2025.11.02-08.53.30:294][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:378ms:534us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.dlss_g' - version 2.8.12.ea8968a8 - id 1000 - priority 1000 - adapter mask 0x0 - interposer 'no'
[2025.11.02-08.53.30:307][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:390ms:990us]pluginManager.cpp:830[mapPlugins] Detected two plugins with the same id sl.deepdvc - 160_E658703
[2025.11.02-08.53.30:307][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:391ms:044us]pluginManager.cpp:874[mapPlugins] Plugin sl.deepdvc is newer (2.8.12) will choose that
[2025.11.02-08.53.30:307][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:391ms:090us]pluginManager.cpp:987[mapPlugins] Removing plugin with name: sl.deepdvc superseded by plugin sl.deepdvc
[2025.11.02-08.53.30:307][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:391ms:140us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.deepdvc' - version 2.8.12.ea8968a8 - id 5 - priority 100 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:167us]pluginManager.cpp:830[mapPlugins] Detected two plugins with the same id sl.pcl - 160_E658703
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:245us]pluginManager.cpp:874[mapPlugins] Plugin sl.pcl is newer (2.8.12) will choose that
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:305us]pluginManager.cpp:987[mapPlugins] Removing plugin with name: sl.pcl superseded by plugin sl.pcl
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:327us]pluginManager.cpp:1002[mapPlugins] Loaded plugin 'sl.pcl' - version 2.8.12.ea8968a8 - id 4 - priority 2 - adapter mask 0x1 - interposer 'no'
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: Warning: [Warn]: [19-53-30][streamline][warn][tid:22072][2s:403ms:357us]pluginManager.cpp:1141[loadPlugins] Ignoring plugin 'sl.dlss_g' since it is not supported on this platform
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:494us]pluginManager.cpp:1241[loadPlugins] Plugin execution order based on priority:
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:515us]pluginManager.cpp:1244[loadPlugins] P0 - sl.common
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:535us]pluginManager.cpp:1244[loadPlugins] P2 - sl.pcl
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:555us]pluginManager.cpp:1244[loadPlugins] P100 - sl.reflex
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:581us]pluginManager.cpp:1244[loadPlugins] P100 - sl.deepdvc
[2025.11.02-08.53.30:319][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:403ms:600us]pluginManager.cpp:1436[initializePlugins] Initializing plugins - api 0.0.1 - application ID 100721531
[2025.11.02-08.53.30:321][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:404ms:812us]commonEntry.cpp:1280[slOnPluginStartup] At least one plugin requires NGX, trying to initialize ...
[2025.11.02-08.53.30:321][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:405ms:152us]commonEntry.cpp:1036[ngxLog]  App logging hooks successfully initialized
[2025.11.02-08.53.30:350][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:434ms:496us]commonEntry.cpp:1036[ngxLog]  Path to driverStore found using QAI: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_08efa4f6500ab001
[2025.11.02-08.53.30:350][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:434ms:555us]commonEntry.cpp:1036[ngxLog]  using path for models: C:\ProgramData/NVIDIA/NGX/models/
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:492ms:791us]commonEntry.cpp:1036[ngxLog]  updated access control list for NGX cache (NGX cache should now be usable by all authenticated users)
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:492ms:856us]commonEntry.cpp:1036[ngxLog]  model folder created: C:\ProgramData/NVIDIA/NGX/models/
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:048us]commonEntry.cpp:1036[ngxLog]  [dlss]
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:070us]commonEntry.cpp:1036[ngxLog]  app_E658702=0.0.0
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:103us]commonEntry.cpp:1036[ngxLog]  app_E658701=0.0.0
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:125us]commonEntry.cpp:1036[ngxLog]  app_B9FEB50=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:148us]commonEntry.cpp:1036[ngxLog]  app_B9FF4BC=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:171us]commonEntry.cpp:1036[ngxLog]  app_B9FD524=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:192us]commonEntry.cpp:1036[ngxLog]  app_B9DF510=1.3.106
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:212us]commonEntry.cpp:1036[ngxLog]  app_B9CB0B8=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:245us]commonEntry.cpp:1036[ngxLog]  app_B9E26B0=2.1.28
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:265us]commonEntry.cpp:1036[ngxLog]  app_B9D48D0=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:285us]commonEntry.cpp:1036[ngxLog]  app_E99B5EC=1.2.109
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:310us]commonEntry.cpp:1036[ngxLog]  app_B9DFA64=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:337us]commonEntry.cpp:1036[ngxLog]  app_B9FD6C0=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:358us]commonEntry.cpp:1036[ngxLog]  app_B9CF688=2.2.15
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:378us]commonEntry.cpp:1036[ngxLog]  app_B9D6F08=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:400us]commonEntry.cpp:1036[ngxLog]  app_B9BF564=2.1.201
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:425us]commonEntry.cpp:1036[ngxLog]  app_B9DB4F4=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:447us]commonEntry.cpp:1036[ngxLog]  app_B9D2F5C=1.2.110
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:468us]commonEntry.cpp:1036[ngxLog]  app_B9D7388=1.0.108
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:488us]commonEntry.cpp:1036[ngxLog]  app_B9F5618=2.1.29
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:517us]commonEntry.cpp:1036[ngxLog]  app_B9DAE68=1.2.109
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:542us]commonEntry.cpp:1036[ngxLog]  app_B9D8C54=1.2.109
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:563us]commonEntry.cpp:1036[ngxLog]  app_B9D3EF0=2.1.28
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:583us]commonEntry.cpp:1036[ngxLog]  app_B9FACDC=2.1.201
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:603us]commonEntry.cpp:1036[ngxLog]  app_F7361DC=2.1.28
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:622us]commonEntry.cpp:1036[ngxLog]  app_B9C3560=2.1.201
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:642us]commonEntry.cpp:1036[ngxLog]  app_B9B0430=2.1.28
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:662us]commonEntry.cpp:1036[ngxLog]  app_E658703=0.0.0
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:682us]commonEntry.cpp:1036[ngxLog]  app_86AA7B4=2.3.1
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:702us]commonEntry.cpp:1036[ngxLog]  app_B9393FC=2.2.6
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:722us]commonEntry.cpp:1036[ngxLog]  app_8618954=3.1.11
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:746us]commonEntry.cpp:1036[ngxLog]  app_86E18D4=3.7.0
[2025.11.02-08.53.30:409][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:766us]commonEntry.cpp:1036[ngxLog]  app_E658700=310.3.0
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:787us]commonEntry.cpp:1036[ngxLog]  [dlisp]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:810us]commonEntry.cpp:1036[ngxLog]  app_B9CF688=2.1.15
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:830us]commonEntry.cpp:1036[ngxLog]  app_E99B5EC=1.2.102
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:853us]commonEntry.cpp:1036[ngxLog]  app_E658703=310.0.0
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:875us]commonEntry.cpp:1036[ngxLog]  app_B9D8C54=1.2.106
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:896us]commonEntry.cpp:1036[ngxLog]  app_B9D2F5C=1.2.106
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:916us]commonEntry.cpp:1036[ngxLog]  app_B9DF510=1.3.101
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:936us]commonEntry.cpp:1036[ngxLog]  app_B9DAE68=1.2.106
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:957us]commonEntry.cpp:1036[ngxLog]  [sl_reflex_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:976us]commonEntry.cpp:1036[ngxLog]  app_E658703=2.8.12
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:493ms:999us]commonEntry.cpp:1036[ngxLog]  [sl_common_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:033us]commonEntry.cpp:1036[ngxLog]  [sl_dlss_g_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:064us]commonEntry.cpp:1036[ngxLog]  [dlssg]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:101us]commonEntry.cpp:1036[ngxLog]  app_86AA7B4=3.5.10
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:158us]commonEntry.cpp:1036[ngxLog]  [sl_pcl_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:188us]commonEntry.cpp:1036[ngxLog]  [deepdvc]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:242us]commonEntry.cpp:1036[ngxLog]  app_86AA7B4=1.0.1
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:258us]commonEntry.cpp:1036[ngxLog]  [sl_sdk_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:291us]commonEntry.cpp:1036[ngxLog]  [sl_deepdvc_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:327us]commonEntry.cpp:1036[ngxLog]  [dlssd]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:358us]commonEntry.cpp:1036[ngxLog]  app_86AA7B4=0.0.0
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:418us]commonEntry.cpp:1036[ngxLog]  [dlss_override]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:454us]commonEntry.cpp:1036[ngxLog]  [sl_dlss_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:489us]commonEntry.cpp:1036[ngxLog]  [sl_dlss_d_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:526us]commonEntry.cpp:1036[ngxLog]  [sl_nis_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:558us]commonEntry.cpp:1036[ngxLog]  [sl_nvperf_0]
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:593us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId 86aa7b4
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:612us]commonEntry.cpp:1036[ngxLog]   project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:634us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId 8618954
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:653us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId b9b05cc
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:671us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId 876232c
[2025.11.02-08.53.30:410][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:494ms:690us]commonEntry.cpp:1036[ngxLog]  Found cms id 86aa7b4 for engine: ue4 engineVersion 5.5 projectID 2B64C07B4617E56557FF8A9473CBB832
[2025.11.02-08.53.30:632][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:716ms:133us]commonEntry.cpp:1036[ngxLog]  NvAPI_DRS_FindApplicationByName -166
[2025.11.02-08.53.30:667][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:750ms:891us]commonEntry.cpp:1036[ngxLog]  called from module 160_E658703.dll at C:\ProgramData\NVIDIA\NGX\models\sl_common_0\versions\133132\files
[2025.11.02-08.53.30:667][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:751ms:504us]commonEntry.cpp:1036[ngxLog]  Override shared memory was opened successfully
[2025.11.02-08.53.30:667][  0]LogStreamlineAPI: [Info]: [19-53-30][streamline][info][tid:22072][2s:751ms:526us]commonEntry.cpp:1036[ngxLog]  Override shared memory was mapped successfully
[2025.11.02-08.53.31:307][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][3s:391ms:013us]commonEntry.cpp:1036[ngxLog]  Feature dlss failed to load (cmsid 141207476) from cache
[2025.11.02-08.53.31:321][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][3s:405ms:525us]commonEntry.cpp:1036[ngxLog]  Feature dlss failed to load (cmsid 241534723) from cache
[2025.11.02-08.53.31:888][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][3s:972ms:024us]commonEntry.cpp:1036[ngxLog]  Found dlss driver fallback snippet at C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_08efa4f6500ab001
[2025.11.02-08.53.31:888][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][3s:972ms:076us]commonEntry.cpp:1036[ngxLog]  app 86AA7B4 feature dlss snippet: C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/nvngx_dlss.dll version: 310.2.1
[2025.11.02-08.53.31:916][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][4s:000ms:787us]commonEntry.cpp:1036[ngxLog]  error: snippet is using newer GPU arch 190 > 160
[2025.11.02-08.53.31:916][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][4s:000ms:895us]commonEntry.cpp:1036[ngxLog]  Feature dlssg failed to load (cmsid 141207476) from cache
[2025.11.02-08.53.31:916][  0]LogStreamlineAPI: [Info]: [19-53-31][streamline][info][tid:22072][4s:000ms:985us]commonEntry.cpp:1036[ngxLog]  Feature dlssg failed to load (cmsid 241534723) from cache
[2025.11.02-08.53.32:277][  0]LogStreamlineAPI: [Info]: [19-53-32][streamline][info][tid:22072][4s:360ms:579us]commonEntry.cpp:1036[ngxLog]  Found dlssg driver fallback snippet at C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_08efa4f6500ab001
[2025.11.02-08.53.32:277][  0]LogStreamlineAPI: [Info]: [19-53-32][streamline][info][tid:22072][4s:360ms:625us]commonEntry.cpp:1036[ngxLog]  app 86AA7B4 feature dlssg snippet: C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/nvngx_dlssg.dll version: 310.2.1
[2025.11.02-08.53.32:292][  0]LogStreamlineAPI: [Info]: [19-53-32][streamline][info][tid:22072][4s:375ms:914us]commonEntry.cpp:1036[ngxLog]  Feature deepdvc failed to load (cmsid 141207476) from cache
[2025.11.02-08.53.32:292][  0]LogStreamlineAPI: [Info]: [19-53-32][streamline][info][tid:22072][4s:375ms:992us]commonEntry.cpp:1036[ngxLog]  Feature deepdvc failed to load (cmsid 241534723) from cache
[2025.11.02-08.53.32:292][  0]LogStreamlineAPI: [Info]: [19-53-32][streamline][info][tid:22072][4s:376ms:138us]commonEntry.cpp:1036[ngxLog]  app 86AA7B4 feature deepdvc snippet: C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/nvngx_deepdvc.dll version: 310.2.0
[2025.11.02-08.53.33:227][  0]LogStreamlineAPI: [Info]: [19-53-33][streamline][info][tid:22072][5s:311ms:540us]commonEntry.cpp:1036[ngxLog]  Feature dlssd failed to load (cmsid 141207476) from cache
[2025.11.02-08.53.33:243][  0]LogStreamlineAPI: [Info]: [19-53-33][streamline][info][tid:22072][5s:327ms:480us]commonEntry.cpp:1036[ngxLog]  Feature dlssd failed to load (cmsid 241534723) from cache
[2025.11.02-08.53.33:843][  0]LogStreamlineAPI: [Info]: [19-53-33][streamline][info][tid:22072][5s:927ms:693us]commonEntry.cpp:1036[ngxLog]  app 86AA7B4 feature dlssd snippet: C:/Program Files (x86)/Steam/steamapps/common/Deep Rock Galactic Rogue Core Playtest/RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/nvngx_dlssd.dll version: 310.2.1
[2025.11.02-08.53.34:161][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:245ms:090us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:219] App logging hooks successfully initialized
[2025.11.02-08.53.34:161][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:245ms:140us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:226] Built with APP_NAME = default_nda
[2025.11.02-08.53.34:162][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:246ms:497us]commonEntry.cpp:1036[ngxLog] [NGXCubinD3D12::Init:116] Enabling texmode_raw
[2025.11.02-08.53.34:162][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:246ms:605us]commonEntry.cpp:1036[ngxLog] [NGXCubinD3D12::Init:212] Driver supports Fatbins + PTX
[2025.11.02-08.53.34:162][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:246ms:623us]commonEntry.cpp:1036[ngxLog] [NGXCubinKernelMap::InitCubins:45] Loading NGXCubin kernels
[2025.11.02-08.53.34:163][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:247ms:067us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:394] SetGPUArch:: Gpu count = 1, luid: 0x15221
[2025.11.02-08.53.34:165][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:249ms:846us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:449] m_gpuArch = 0x160
[2025.11.02-08.53.34:165][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:249ms:873us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::SetGPUArch:460] m_smArch  = 0x1
[2025.11.02-08.53.34:167][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:251ms:279us]commonEntry.cpp:1036[ngxLog] [NGXCubinGeneric::genericPostInit:145] Fast UAV clear: supported
[2025.11.02-08.53.34:167][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:251ms:315us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLAA Cubins
[2025.11.02-08.53.34:167][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:251ms:330us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLSS Debug Cubins
[2025.11.02-08.53.34:167][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:251ms:345us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS Engine Cubins
[2025.11.02-08.53.34:167][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:251ms:824us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS NW Cubins
[2025.11.02-08.53.34:167][  0]LogStreamlineAPI: [Info]: [19-53-34][streamline][info][tid:22072][6s:251ms:909us]commonEntry.cpp:1036[ngxLog] [DLSSCubinKernelMap::InitCubins:311] Setting DLTSS NW E5M3_SKIP Cubins
[2025.11.02-08.53.35:036][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:120ms:319us]commonEntry.cpp:1036[ngxLog] [NGXInitLog:226] Built with APP_NAME = app_transformer_dlssd
[2025.11.02-08.53.35:044][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:127ms:597us]commonEntry.cpp:1036[ngxLog] [DldnCubinKernelMap::InitCubins:129] Setting DLDN Engine Pre / Post Cubins
[2025.11.02-08.53.35:044][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:127ms:674us]commonEntry.cpp:1036[ngxLog] [DldnCubinKernelMap::InitCubins:162] Setting DLDN Engine Pre / Post Cubins
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: Warning: [Warn]: [19-53-35][streamline][warn][tid:22072][7s:144ms:430us]commonEntry.cpp:1410[slOnPluginStartup] Valid application id is required in production builds - allowing for now but please fix this
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:487us]pluginManager.cpp:1544[mapPluginCallbacks] Callback sl.common:slSetData:0x0
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:507us]pluginManager.cpp:1545[mapPluginCallbacks] Callback sl.common:slGetData:0x0
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:525us]pluginManager.cpp:1546[mapPluginCallbacks] Callback sl.common:slAllocateResources:0x0
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:538us]pluginManager.cpp:1547[mapPluginCallbacks] Callback sl.common:slFreeResources:0x0
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:550us]pluginManager.cpp:1548[mapPluginCallbacks] Callback sl.common:slEvaluateFeature:0x7ff8e159fde0
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:564us]pluginManager.cpp:1549[mapPluginCallbacks] Callback sl.common:slSetTag:0x7ff8e159ecb0
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:577us]pluginManager.cpp:1550[mapPluginCallbacks] Callback sl.common:slSetTagForFrame:0x7ff8e159ee20
[2025.11.02-08.53.35:060][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:590us]pluginManager.cpp:1551[mapPluginCallbacks] Callback sl.common:slSetConsts:0x7ff8e159fb90
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:603us]pluginManager.cpp:1320[processPluginHooks] Hook sl.common:slHookVkPresent:before - skipped
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:619us]pluginManager.cpp:1320[processPluginHooks] Hook sl.common:slHookVkAfterPresent:after - skipped
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:632us]pluginManager.cpp:1320[processPluginHooks] Hook sl.common:slHookVkCmdBindPipeline:after - skipped
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:644us]pluginManager.cpp:1320[processPluginHooks] Hook sl.common:slHookVkCmdBindDescriptorSets:after - skipped
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:656us]pluginManager.cpp:1320[processPluginHooks] Hook sl.common:slHookVkBeginCommandBuffer:after - skipped
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:669us]pluginManager.cpp:1344[processPluginHooks] Hook sl.common:slHookResizeSwapChainPre:before - OK
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:681us]pluginManager.cpp:1344[processPluginHooks] Hook sl.common:slHookPresent:before - OK
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:693us]pluginManager.cpp:1344[processPluginHooks] Hook sl.common:slHookAfterPresent:after - OK
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:706us]pluginManager.cpp:1344[processPluginHooks] Hook sl.common:slHookPresent1:before - OK
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:811us]pluginManager.cpp:1544[mapPluginCallbacks] Callback sl.pcl:slSetData:0x7ff90ea08a80
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:836us]pluginManager.cpp:1545[mapPluginCallbacks] Callback sl.pcl:slGetData:0x7ff90ea08a90
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:850us]pluginManager.cpp:1546[mapPluginCallbacks] Callback sl.pcl:slAllocateResources:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:864us]pluginManager.cpp:1547[mapPluginCallbacks] Callback sl.pcl:slFreeResources:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:876us]pluginManager.cpp:1548[mapPluginCallbacks] Callback sl.pcl:slEvaluateFeature:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:890us]pluginManager.cpp:1549[mapPluginCallbacks] Callback sl.pcl:slSetTag:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:904us]pluginManager.cpp:1550[mapPluginCallbacks] Callback sl.pcl:slSetTagForFrame:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:923us]pluginManager.cpp:1551[mapPluginCallbacks] Callback sl.pcl:slSetConsts:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:936us]pluginManager.cpp:1305[processPluginHooks] Plugin 'sl.pcl' has no registered hooks
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:950us]pluginManager.cpp:1544[mapPluginCallbacks] Callback sl.reflex:slSetData:0x7ff904ec8d70
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:967us]pluginManager.cpp:1545[mapPluginCallbacks] Callback sl.reflex:slGetData:0x7ff904ec9660
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:981us]pluginManager.cpp:1546[mapPluginCallbacks] Callback sl.reflex:slAllocateResources:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:144ms:994us]pluginManager.cpp:1547[mapPluginCallbacks] Callback sl.reflex:slFreeResources:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:010us]pluginManager.cpp:1548[mapPluginCallbacks] Callback sl.reflex:slEvaluateFeature:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:029us]pluginManager.cpp:1549[mapPluginCallbacks] Callback sl.reflex:slSetTag:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:041us]pluginManager.cpp:1550[mapPluginCallbacks] Callback sl.reflex:slSetTagForFrame:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:053us]pluginManager.cpp:1551[mapPluginCallbacks] Callback sl.reflex:slSetConsts:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineD3D12RHI: FStreamlineD3D12RHIModule::StartupModule Leave
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:065us]pluginManager.cpp:1305[processPluginHooks] Plugin 'sl.reflex' has no registered hooks
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: PluginBaseDir ../../../RogueCore/Plugins/Nvidia/StreamlineCore
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: SLBinariesDir ../../../RogueCore/Plugins/Nvidia/StreamlineCore/Binaries/ThirdParty/Win64/
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Enter
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: FStreamlineRHI::FStreamlineRHI Leave
[2025.11.02-08.53.35:061][  0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Enter
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:078us]pluginManager.cpp:1544[mapPluginCallbacks] Callback sl.deepdvc:slSetData:0x7ff90de08870
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:090us]pluginManager.cpp:1545[mapPluginCallbacks] Callback sl.deepdvc:slGetData:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:102us]pluginManager.cpp:1546[mapPluginCallbacks] Callback sl.deepdvc:slAllocateResources:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineD3D12RHI: Skip registering IDXGISwapchainProvider, due to no supported feature needing a swap chain provider: (kFeatureDLSS_G, Result::eErrorFeatureMissing),(kFeatureLatewarp, Result::eErrorFeatureMissing),(kFeatureImGUI, Result::eErrorFeatureMissing). This can be overriden with -sl{no}swapchainprovider
[2025.11.02-08.53.35:061][  0]LogStreamlineD3D12RHI: FStreamlineD3D12RHI::FStreamlineD3D12RHI Leave
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:116us]pluginManager.cpp:1547[mapPluginCallbacks] Callback sl.deepdvc:slFreeResources:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: Streamline supported by the NVIDIA D3D12 RHI in the StreamlineD3D12RHI module at runtime
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Enter
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: RequestedFeatures = kFeatureReflex (3), kFeatureDLSS_G (1000), kFeatureDeepDVC (5))
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:132us]pluginManager.cpp:1548[mapPluginCallbacks] Callback sl.deepdvc:slEvaluateFeature:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:144us]pluginManager.cpp:1549[mapPluginCallbacks] Callback sl.deepdvc:slSetTag:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:157us]pluginManager.cpp:1550[mapPluginCallbacks] Callback sl.deepdvc:slSetTagForFrame:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:169us]pluginManager.cpp:1551[mapPluginCallbacks] Callback sl.deepdvc:slSetConsts:0x0
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: [Info]: [19-53-35][streamline][info][tid:22072][7s:145ms:181us]pluginManager.cpp:1305[processPluginHooks] Plugin 'sl.deepdvc' has no registered hooks
[2025.11.02-08.53.35:061][  0]LogStreamlineAPI: Error: [Error]: [19-53-35][streamline][error][tid:22072][7s:145ms:216us]sl.cpp:190[slValidateFeatureContext] 'kFeatureDLSS_G' is missing.
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: LoadedFeatures = kFeatureReflex (3), kFeatureDeepDVC (5))
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: SupportedFeatures = kFeatureReflex (3), kFeatureDeepDVC (5))
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: FStreamlineRHI::PostPlatformRHICreateInit Leave
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: PlatformCreateStreamlineRHI Leave
[2025.11.02-08.53.35:061][  0]LogStreamlineRHI: FStreamlineRHIModule::StartupModule Leave
[2025.11.02-08.53.35:092][  0]LogD3D12RHI: Found a custom swapchain provider: 'FSR3SwapchainProvider'.
[2025.11.02-08.53.35:264][  0]LogMoviePlayer: Initializing movie player
[2025.11.02-08.53.35:335][  0]LogShaderLibrary: Display: Using ../../../RogueCore/Content/ShaderArchive-RogueCore-PCD3D_SM6-PCD3D_SM6.ushaderbytecode for material shader code. Total 16293 unique shaders.
[2025.11.02-08.53.35:335][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library RogueCore
[2025.11.02-08.53.35:335][  0]LogShaderLibrary: Display: Logical shader library 'RogueCore' has been created as a monolithic library
[2025.11.02-08.53.35:335][  0]LogRHI: FPipelineCacheFile Header Game Version: 0
[2025.11.02-08.53.35:335][  0]LogRHI: FPipelineCacheFile Header Engine Data Version: 28
[2025.11.02-08.53.35:335][  0]LogRHI: FPipelineCacheFile Header TOC Offset: 59137
[2025.11.02-08.53.35:335][  0]LogRHI: FPipelineCacheFile File Size: 339846 Bytes
[2025.11.02-08.53.35:338][  0]LogRHI: Opened FPipelineCacheFile: ../../../RogueCore/Content/PipelineCaches/Windows/RogueCore_PCD3D_SM6.stable.upipelinecache (GUID: AAB7202D4F57A7B18A73A186241944B8) with 2462 entries.
[2025.11.02-08.53.35:338][  0]LogRHI: Display: FPipelineCacheFile[RogueCore] opened RogueCore, filename RogueCore, guid AAB7202D4F57A7B18A73A186241944B8. 
[2025.11.02-08.53.35:338][  0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - RogueCore begining compile.
[2025.11.02-08.53.35:340][  0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'RogueCore' and enqueued 2462 tasks for precompile. (cache contains 2462, 2462 eligible, 0 had missing shaders. 0 already compiled). BatchSize 50 and BatchTime 16.000000.
[2025.11.02-08.53.35:340][  0]LogRHI: Base name for record PSOs is C:/Users/chris/AppData/Local/RogueCore/Saved/CollectedPSOs/UE5-CL-0-RogueCore_PCD3D_SM6_926052394EFB15B1294B3E918C40F658.rec.upipelinecache
[2025.11.02-08.53.35:340][  0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() Begin
[2025.11.02-08.53.35:340][  0]LogRHI: User cache GC is disabled
[2025.11.02-08.53.35:340][  0]LogRHI: FPipelineCacheFile: GarbageCollectUserCache() End
[2025.11.02-08.53.35:341][  0]LogRHI: FPipelineCacheFile Header Game Version: 0
[2025.11.02-08.53.35:341][  0]LogRHI: FPipelineCacheFile Header Engine Data Version: 28
[2025.11.02-08.53.35:341][  0]LogRHI: FPipelineCacheFile Header TOC Offset: 311272
[2025.11.02-08.53.35:341][  0]LogRHI: FPipelineCacheFile File Size: 432737 Bytes
[2025.11.02-08.53.35:342][  0]LogRHI: Opened FPipelineCacheFile: C:/Users/chris/AppData/Local/RogueCore/Saved/RogueCore_PCD3D_SM6.upipelinecache (GUID: 409D92F0418592C322CA4ABDE697C655) with 926 entries.
[2025.11.02-08.53.35:342][  0]LogRHI: Display: FPipelineCacheFile User cache [key:RogueCore_usr] opened 'RogueCore'=1, filename RogueCore, guid 409D92F0418592C322CA4ABDE697C655. 
[2025.11.02-08.53.35:342][  0]LogShaderLibrary: Display: Tried to open again shader library 'RogueCore', but could not find new components for it (existing components: 1).
[2025.11.02-08.53.35:344][  0]LogInit: Overriding language with engine language configuration option (en).
[2025.11.02-08.53.35:344][  0]LogInit: Overriding language with engine locale configuration option (en).
[2025.11.02-08.53.35:346][  0]LogAssetRegistry: FAssetRegistry took 0.0002 seconds to start up
[2025.11.02-08.53.35:367][  0]LogTextLocalizationResource: LocRes '../../../RogueCore/Content/Localization/PatchNotes/en/PatchNotes.locres' could not be opened for reading!
[2025.11.02-08.53.35:738][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.53.35:739][  0]LogPackageLocalizationCache: Processed 73 localized package path(s) for 1 prioritized culture(s) in 0.000284 seconds
[2025.11.02-08.53.35:855][  0]LogDeviceProfileManager: Active device profile: [00007FF4B2DFCD98][00000254CF424060 66] Windows
[2025.11.02-08.53.36:381][  0]LogConfig: Branch 'EditorPerProjectUserSettings' had been unloaded. Reloading on-demand took 6.92ms
[2025.11.02-08.53.38:825][  0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 7.88ms
[2025.11.02-08.53.38:846][  0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 7.97ms
[2025.11.02-08.53.38:859][  0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default'
[2025.11.02-08.53.45:705][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.53.47:837][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
[2025.11.02-08.53.47:837][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
[2025.11.02-08.53.47:878][  0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine]
[2025.11.02-08.53.47:878][  0]LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
[2025.11.02-08.53.48:401][  0]DiscordSDK: Discord DLL Loaded successfully
[2025.11.02-08.53.49:473][  0]LogNNERuntimeORT: Available graphics and compute adapters:
[2025.11.02-08.53.49:473][  0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 2060 (Compute, Graphics)
[2025.11.02-08.53.49:473][  0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics)
[2025.11.02-08.53.49:473][  0]LogNNERuntimeORT: No NPU adapter found!
[2025.11.02-08.53.49:474][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'BitDepth'
[2025.11.02-08.53.49:474][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'HPFCutoffFrequency'
[2025.11.02-08.53.49:475][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LowRateFrequency'
[2025.11.02-08.53.49:475][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'LPFCutoffFrequency'
[2025.11.02-08.53.49:475][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pan'
[2025.11.02-08.53.49:476][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Pitch'
[2025.11.02-08.53.49:476][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'SampleRate'
[2025.11.02-08.53.49:477][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'TimeOfDay'
[2025.11.02-08.53.49:477][  0]LogAudioModulation: Display: Initialized Audio Modulation Parameter 'Volume'
[2025.11.02-08.53.49:477][  0]LogAudioModulation: Registering Modulation MetaSound Nodes...
[2025.11.02-08.53.49:522][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
[2025.11.02-08.53.49:523][  0]LogMetaSound: MetaSound Engine Initialized
[2025.11.02-08.53.49:523][  0]LogAudioModulation: Audio Modulation Initialized
[2025.11.02-08.53.49:528][  0]LogSockets: SteamSockets: Initializing Network Relay
[2025.11.02-08.53.49:552][  0]LogUObjectArray: 43143 objects as part of root set at end of initial load.
[2025.11.02-08.53.49:552][  0]LogUObjectArray: 53 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
[2025.11.02-08.53.49:552][  0]LogUObjectArray: CloseDisregardForGC: 43143/43143 objects in disregard for GC pool
[2025.11.02-08.53.49:555][  0]LogEngine: Initializing Engine...
[2025.11.02-08.53.49:558][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.001 s
[2025.11.02-08.53.50:358][  0]LogAssetManager: Display: Ignoring PrimaryAssetType BXEUnlockBase - Conflicts with BXEUnlockUpgradedItem - Asset: Unlock_Item_Attributed_BioTransmutator
[2025.11.02-08.53.50:358][  0]LogNetVersion: Set ProjectVersion to 0.4.120487.0. Version Checksum will be recalculated on next use.
[2025.11.02-08.53.50:358][  0]LogInit: Texture streaming: Enabled
[2025.11.02-08.53.50:359][  0]LogAudio: Display: Initializing Audio Device Manager...
[2025.11.02-08.53.50:359][  0]LogAudio: Display: Loading Default Audio Settings Objects...
[2025.11.02-08.53.50:360][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
[2025.11.02-08.53.50:360][  0]LogAudio: Display: Audio Device Manager Initialized
[2025.11.02-08.53.50:360][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: 	Max Channels (voices):				  64
[2025.11.02-08.53.50:360][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
[2025.11.02-08.53.50:360][  0]LogAudio: Display: AudioDevice MaxSources: 64
[2025.11.02-08.53.50:360][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
[2025.11.02-08.53.50:360][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
[2025.11.02-08.53.50:360][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
[2025.11.02-08.53.50:360][  0]LogAudio: Display: Audio Modulation Plugin: DefaultModulationPlugin
[2025.11.02-08.53.50:459][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
[2025.11.02-08.53.50:547][  0]LogAudioMixer: Display: Using Audio Hardware Device Speakers (HyperX Quadcast)
[2025.11.02-08.53.50:550][  0]LogAudioMixer: Display: Initializing Sound Submixes...
[2025.11.02-08.53.51:427][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
[2025.11.02-08.53.51:427][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
[2025.11.02-08.53.51:432][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
[2025.11.02-08.53.51:432][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
[2025.11.02-08.53.51:432][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
[2025.11.02-08.53.51:432][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
[2025.11.02-08.53.51:432][  0]LogInit: FAudioDevice initialized with ID 1.
[2025.11.02-08.53.51:433][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
[2025.11.02-08.53.51:683][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.53.51:696][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.53.51:768][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.53.51:878][  0]LogD3D12RHI: Waited for PSO creation for 200.000000ms
[2025.11.02-08.53.55:759][  0]LogPakFile: Precache HighWater 32MB

[2025.11.02-08.53.56:508][  0]LogAudioMixer: Display: Registering submix EndpointSubmix /Game/Audio/Controller/PadSpeakerEndpoint.PadSpeakerEndpoint.
[2025.11.02-08.53.56:508][  0]LogAudioEndpoints: Display: No endpoint implementation for Pad Speaker Output found for this platform. Endpoint Submixes set to this type will not do anything.
[2025.11.02-08.53.56:508][  0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/Controller/PadSpeakerSubMixParent.PadSpeakerSubMixParent.
[2025.11.02-08.53.56:726][  0]FSDLog_Gameflow: UOnlineSessionSubSystem::PostInit onlineSub
[2025.11.02-08.53.56:726][  0]FSDLog_Gameflow: UOnlineSessionSubSystem::PostInit SessionInt.IsValid
[2025.11.02-08.53.57:220][  0]DiscordSDK: Discord Initialization Success!
[2025.11.02-08.53.57:280][  0]DiscordWrap: FSlateApplication initialized
[2025.11.02-08.53.57:280][  0]DiscordWrap: inputProcessor created
[2025.11.02-08.53.57:280][  0]DiscordWrap: Discord: Server Invite URL https://discordapp.com/api/invites/DRG?with_counts=true
[2025.11.02-08.53.57:280][  0]FSDLog_Gameflow: UFSDGameInstance::Init.
[2025.11.02-08.53.57:280][  0]FSDLog_Gameflow: UFSDGameInstance::Init Register delegate for ticker callback
[2025.11.02-08.53.57:283][  0]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk
[2025.11.02-08.53.59:378][  0]LogPakFile: Precache HighWater 48MB

[2025.11.02-08.53.59:414][  0]LogPakFile: Precache HighWater 64MB

[2025.11.02-08.53.59:443][  0]LogPakFile: Precache HighWater 80MB

[2025.11.02-08.53.59:561][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 171791,6512,5920,7104,6179)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.00:076][  0]LogAudioMixer: Display: Registering submix SoundSubmix /Game/Audio/Controller/VibrationSubMixParent.VibrationSubMixParent.
[2025.11.02-08.54.02:863][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.02:864][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.02:874][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.02:954][  0]LogD3D12RHI: Waited for PSO creation for 200.000000ms
[2025.11.02-08.54.03:029][  0]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.03:129][  0]LogD3D12RHI: Waited for PSO creation for 200.000000ms
[2025.11.02-08.54.07:053][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147087659.BXEStateComponent'
[2025.11.02-08.54.07:056][  0]LogStreaming: Error: Couldn't find file for package /Engine/Transient requested by async loading code. NameToLoad: C:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\Engine\Content\Transient
[2025.11.02-08.54.07:056][  0]LogStreaming: Error: This will hitch streaming because it ends up searching the disk instead of finding the file in the pak file.
[2025.11.02-08.54.07:056][  0]LogStreaming: Error: Found 0 dependent packages...
[2025.11.02-08.54.07:130][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147335249.BXEStateComponent'
[2025.11.02-08.54.07:179][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147402504.BXEStateComponent'
[2025.11.02-08.54.07:225][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_C_2147388371.BXEStateComponent'
[2025.11.02-08.54.07:281][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147365519.BXEStateComponent'
[2025.11.02-08.54.07:283][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Engine/Transient.GameEngine_2147482586:BP_GameInstance_C_2147482539._MENU_Crafting_C_2147363150.WidgetTree_2147363149.MasteryBar'
[2025.11.02-08.54.07:340][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147087659.BXEStateComponent'
[2025.11.02-08.54.07:406][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147335249.BXEStateComponent'
[2025.11.02-08.54.07:445][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147402504.BXEStateComponent'
[2025.11.02-08.54.07:448][  0]FSDLog_Gameflow: UFSDSaveGame::LoadFromDisk
[2025.11.02-08.54.07:501][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_C_2147388371.BXEStateComponent'
[2025.11.02-08.54.07:543][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147365519.BXEStateComponent'
[2025.11.02-08.54.10:118][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 3700,7918,7400,9324,5735)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.13:094][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 7622,6031,6142,7067,6919)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.13:110][  0]LogInit: OS: Windows 10 (22H2) [10.0.19045.6456] (), CPU: AMD Ryzen 7 2700X Eight-Core Processor         , GPU: NVIDIA GeForce RTX 2060
[2025.11.02-08.54.13:110][  0]FSDLog_Gameflow: CmdLine: -disablemodding
[2025.11.02-08.54.13:110][  0]LogOnline: UFSDGameInstance::PostInit.
[2025.11.02-08.54.13:110][  0]FSDLog_Gameflow: UFSDGameInstance::PostInit onlineSub
[2025.11.02-08.54.13:111][  0]FSDLog_Gameflow: UFSDGameInstance::PostInit SessionInt.IsValid
[2025.11.02-08.54.13:111][  0]FSDLog_Gameflow: UFSDGameInstance::PostInit post online sub system
[2025.11.02-08.54.13:111][  0]FSDLog_Gameflow: UFSDGameInstance::PostInit Done
[2025.11.02-08.54.13:111][  0]FSDLog_Gameflow: UFSDGameInstance loading always loaded worlds...
[2025.11.02-08.54.13:121][  0]LogLoad: LoadMap: /Game/Maps/UILevels/LVL_CharacterSelection
[2025.11.02-08.54.13:121][  0]LogWorld: BeginTearingDown for /Temp/Untitled_1
[2025.11.02-08.54.13:121][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
[2025.11.02-08.54.15:599][  0]LogUObjectHash: Compacting FUObjectHashTables data took  21.82ms
[2025.11.02-08.54.19:874][  0]LogLoad: Game class is 'GameModeBase'
[2025.11.02-08.54.19:893][  0]LogWorld: Bringing World /Game/Maps/UILevels/LVL_CharacterSelection.LVL_CharacterSelection up for play (max tick rate 0) at 2025.11.02-19.54.19
[2025.11.02-08.54.19:893][  0]LogWorld: Bringing up level for play took: 0.018921
[2025.11.02-08.54.19:896][  0]LogLoad: Took 6.774764 seconds to LoadMap(/Game/Maps/UILevels/LVL_CharacterSelection)
[2025.11.02-08.54.19:896][  0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/LVL_CharacterSelection
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk)
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex)  versionSL = 2.7.30, versionNGX = 0.0.0 -> (0, Result::eOk)
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk)
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: maxNumCPUThreads : 0
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: maxNumViewports  : 0
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: osVersion     detected: 10.0.19045, required: 10.0.0
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: driverVersion detected: 576.88.0, required: 512.15.0
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: requiredTags (0): {}
[2025.11.02-08.54.19:897][  0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDLSS_G) -> (31, Result::eErrorFeatureMissing)
[2025.11.02-08.54.19:897][  0]BP_GameInstance: [BP_GameInstance_C_2147482539] /Game/Maps/UILevels/LVL_CharacterSelection
[2025.11.02-08.54.19:897][  0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/LVL_CharacterSelection
[2025.11.02-08.54.19:901][  0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun
[2025.11.02-08.54.19:901][  0]LogWorld: BeginTearingDown for /Temp/Untitled_2
[2025.11.02-08.54.19:901][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
[2025.11.02-08.54.19:984][  0]LogUObjectHash: Compacting FUObjectHashTables data took   3.02ms
[2025.11.02-08.54.24:962][  0]LogLoad: Game class is 'GameMode'
[2025.11.02-08.54.24:996][  0]LogPhysics: Warning: FConstraintInstance::GetRefFrame : Contained scale.
[2025.11.02-08.54.24:997][  0]LogPhysics: Warning: Initialising Body : Scale3D is (nearly) zero: <NoName>
[2025.11.02-08.54.24:997][  0]LogPhysics: Warning: FConstraintInstance::GetRefFrame : Contained scale.
[2025.11.02-08.54.25:000][  0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun.LVL_Loading_StartRun up for play (max tick rate 0) at 2025.11.02-19.54.25
[2025.11.02-08.54.25:002][  0]LogWorld: Bringing up level for play took: 0.039502
[2025.11.02-08.54.25:002][  0]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.54.25:003][  0]LogGameState: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.54.25:003][  0]LogLoad: Took 5.101848 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun)
[2025.11.02-08.54.25:003][  0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun
[2025.11.02-08.54.25:003][  0]BP_GameInstance: [BP_GameInstance_C_2147482539] /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun
[2025.11.02-08.54.25:003][  0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/Loading_Droppod/LVL_Loading_StartRun
[2025.11.02-08.54.25:008][  0]LogLoad: LoadMap: /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator
[2025.11.02-08.54.25:008][  0]LogWorld: BeginTearingDown for /Temp/Untitled_3
[2025.11.02-08.54.25:008][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
[2025.11.02-08.54.25:301][  0]LogUObjectHash: Compacting FUObjectHashTables data took   3.48ms
[2025.11.02-08.54.30:041][  0]LogLoad: Game class is 'GameMode'
[2025.11.02-08.54.30:047][  0]LogWorld: Bringing World /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator.LVL_Loading_Elevator up for play (max tick rate 0) at 2025.11.02-19.54.30
[2025.11.02-08.54.30:048][  0]LogWorld: Bringing up level for play took: 0.007121
[2025.11.02-08.54.30:048][  0]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.54.30:049][  0]LogGameState: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.54.30:049][  0]LogLoad: Took 5.040980 seconds to LoadMap(/Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator)
[2025.11.02-08.54.30:049][  0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator
[2025.11.02-08.54.30:049][  0]BP_GameInstance: [BP_GameInstance_C_2147482539] /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator
[2025.11.02-08.54.30:049][  0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/UILevels/RogueCore/LoadingScreen_Elevator/LVL_Loading_Elevator
[2025.11.02-08.54.30:049][  0]FSDLog_Gameflow: UFSDGameInstance loading always loaded worlds done.
[2025.11.02-08.54.30:049][  0]FSDLog_Gameflow: UFSDGameInstance LoadDefaultAssetsBlocking...
[2025.11.02-08.54.30:186][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 9398,97717,10101,7363,7511)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.35:800][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 3737,6919,8806,9213,7215)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.38:208][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 8362,9139,5994,8621,7030)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.39:427][  0]LogRHI: Warning: FShaderPipelineCache RogueCore completed 2462 tasks in 0.06s (62.93s wall time since intial open).
[2025.11.02-08.54.39:584][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 9324,8251,6438,10064,8177)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.39:790][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 7696,8695,8658,7659,6919)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.39:873][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 8140,10397,7770,6031,4958)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.40:165][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 6808,4218,5550,6401,6438)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.40:626][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 7252,9139,12321,9435,6475)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.40:666][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 8436,6475,5143,5069,6623)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.41:017][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 7363,6771,8288,5883,8103)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.42:155][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 5550,7289,4995,7659,7326)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.42:502][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 6179,5587,6660,6845,7696)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.42:877][  0]FSDLog_Gameflow: UFSDGameInstance LoadDefaultAssetsBlocking DONE
[2025.11.02-08.54.42:877][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
[2025.11.02-08.54.42:879][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2025.11.02-08.54.42:879][  0]LogInit: Display: Game Engine Initialized.
[2025.11.02-08.54.42:882][  0]LogNNEDenoiser: Ray Tracing is not enabled, therefore NNEDenoiser is not registered!
[2025.11.02-08.54.42:893][  0]LogDLSS: FDLSSModule::StartupModule Enter
[2025.11.02-08.54.42:893][  0]LogDLSS: PluginBaseDir ../../../RogueCore/Plugins/Nvidia/DLSS
[2025.11.02-08.54.42:893][  0]LogDLSS: NGXBinariesDir ../../../RogueCore/Plugins/Nvidia/DLSS/Binaries/ThirdParty/Win64/
[2025.11.02-08.54.42:893][  0]LogDLSS: GDynamicRHIName NVIDIA D3D12
[2025.11.02-08.54.42:893][  0]LogDLSS: Plugin settings: NGXAppId = 0
[2025.11.02-08.54.42:893][  0]LogDLSS: NGX Application ID not specified, using the Project ID by default.
[2025.11.02-08.54.42:893][  0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Enter
[2025.11.02-08.54.42:893][  0]LogDLSSNGXRHI: FNGXRHIModule::StartupModule Leave
[2025.11.02-08.54.42:893][  0]LogDLSSNGXRHI: Searching for custom and generic DLSS binaries
[2025.11.02-08.54.42:893][  0]LogDLSSNGXRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path C:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\ThirdParty\NVIDIA\NGX\Win64\
[2025.11.02-08.54.42:893][  0]LogDLSSNGXRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll not found in search path C:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\Binaries\ThirdParty\NVIDIA\NGX\Win64\
[2025.11.02-08.54.42:894][  0]LogDLSSNGXRHI: NVIDIA NGX DLSS binary nvngx_dlss.dll found in search path C:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Plugins\Nvidia\DLSS\Binaries\ThirdParty\Win64\
[2025.11.02-08.54.42:894][  0]LogDLSSNGXRHI: DLSS model OTA update enabled
[2025.11.02-08.54.42:929][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:011ms:934us]commonEntry.cpp:1036[ngxLog]  using path for models: C:\ProgramData/NVIDIA/NGX/models/
[2025.11.02-08.54.42:929][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:012ms:387us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId 86aa7b4
[2025.11.02-08.54.42:929][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:012ms:445us]commonEntry.cpp:1036[ngxLog]   project id 3F9D696D4363312194B0ECB2671E899F cms id B9FBD50
[2025.11.02-08.54.42:929][  0]LogDLSSNGX: [SDK]: [2025-11-02 19:54:42] [NGXSafeInitializeLog:141] App logging hooks successfully initialized
[2025.11.02-08.54.42:929][  0]LogDLSSNGX: [SDK]: [2025-11-02 19:54:42] [NGXLoadLibrary:287] error: failed to load NGXCore: 126 (C:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\_nvngx.dll)
[2025.11.02-08.54.42:930][  0]LogDLSSNGX: [SDK]: [2025-11-02 19:54:42] [NGXLoadLibrary:287] error: failed to load NGXCore: 126 (C:\Program Files (x86)\Steam\steamapps\common\Deep Rock Galactic Rogue Core Playtest\RogueCore\Binaries\Win64\nvngx.dll)
[2025.11.02-08.54.42:930][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:013ms:288us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId 8618954
[2025.11.02-08.54.42:930][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:013ms:335us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId b9b05cc
[2025.11.02-08.54.42:930][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:013ms:363us]commonEntry.cpp:1036[ngxLog]  listItem.engineVersion .* listItem.genericCMSId 876232c
[2025.11.02-08.54.42:930][  0]LogStreamlineAPI: [Info]: [19-54-42][streamline][info][tid:22072][75s:013ms:395us]commonEntry.cpp:1036[ngxLog]  Found cms id 86aa7b4 for engine: ue4 engineVersion 5.5 projectID 2B64C07B4617E56557FF8A9473CBB832
[2025.11.02-08.54.42:931][  0]LogDLSSNGX: [SDK]: [2025-11-02 19:54:42] [NGXGetPathUsingQAI:139] Path to driverStore found using QAI: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_08efa4f6500ab001
[2025.11.02-08.54.42:956][  0]LogDLSSNGX: [SDK]: [2025-11-02 19:54:42] [NGXLoadCoreLibrary:240] Loading C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_08efa4f6500ab001\_nvngx.dll succeeded
[2025.11.02-08.54.42:957][  0]LogDLSSNGX: [Core]: [2025-11-02 19:54:42] [NGXSafeInitializeLog:133] App logging hooks successfully initialized
[2025.11.02-08.54.42:999][  0]LogDLSSNGX: [DLSS]: [2025-11-02 19:54:42] [tid:22072][NGXInitLog:219] App logging hooks successfully initialized
[2025.11.02-08.54.42:999][  0]LogDLSSNGX: [DLSS]: [2025-11-02 19:54:42] [tid:22072][NGXInitLog:226] Built with APP_NAME = default_nda
[2025.11.02-08.54.43:016][  0]LogDLSSNGX: [DLSS]: [2025-11-02 19:54:43] [tid:22072][NGXInitLog:219] App logging hooks successfully initialized
[2025.11.02-08.54.43:016][  0]LogDLSSNGX: [DLSS]: [2025-11-02 19:54:43] [tid:22072][NGXInitLog:226] Built with APP_NAME = app_transformer_dlssd
[2025.11.02-08.54.43:028][  0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init_with_ProjectID(ProjectID = 2B64C07B4617E56557FF8A9473CBB832, EngineVersion=5.5, APIVersion = 0x15, Device=000002549ECDA030) -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_Init (Log C:/Users/chris/AppData/Local/RogueCore/Saved/Logs/) -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSSNGXD3D12RHI: NVSDK_NGX_D3D12_GetCapabilityParameters -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 470
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSampling_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 0
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_NeedsUpdatedDriver -> (1 NVSDK_NGX_Result_Success), bNeedsUpdatedDriver = 0
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMajor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMajor = 537
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_MinDriverVersionMinor -> (1 NVSDK_NGX_Result_Success), MinDriverVersionMinor = 2
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NVIDIA NGX DLSS is supported by the currently installed driver. Minimum driver version was reported as: 470.0
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NVIDIA NGX DLSS-RR is supported by the currently installed driver. Minimum driver version was reported as: 537.2
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_EParameter_SuperSampling_Available -> (1 NVSDK_NGX_Result_Success), DlssAvailable = 1
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: Get NVSDK_NGX_Parameter_SuperSamplingDenoising_Available -> (1 NVSDK_NGX_Result_Success), DlssRRAvailable = 1
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSS: QualityMode -2: bSupported = 1, ResolutionFraction = 0.3330. MinResolutionFraction=0.3330,  MaxResolutionFraction 0.3330
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSS: QualityMode -1: bSupported = 1, ResolutionFraction = 0.5000. MinResolutionFraction=0.5000,  MaxResolutionFraction 1.0000
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSS: QualityMode 0: bSupported = 1, ResolutionFraction = 0.5800. MinResolutionFraction=0.5000,  MaxResolutionFraction 1.0000
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSS: QualityMode 1: bSupported = 1, ResolutionFraction = 0.6670. MinResolutionFraction=0.5000,  MaxResolutionFraction 1.0000
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSS: QualityMode 2: bSupported = 0, ResolutionFraction = 0.0000. MinResolutionFraction=0.0000,  MaxResolutionFraction 0.0000
[2025.11.02-08.54.43:028][  0]LogDLSSNGXRHI: NGX_DLSS_GET_OPTIMAL_SETTINGS -> (1 NVSDK_NGX_Result_Success)
[2025.11.02-08.54.43:028][  0]LogDLSS: QualityMode 3: bSupported = 1, ResolutionFraction = 1.0000. MinResolutionFraction=0.9900,  MaxResolutionFraction 1.0000
[2025.11.02-08.54.43:028][  0]LogDLSS: NumRuntimeQualityModes=5, MinDynamicResolutionFraction=0.5000,  MaxDynamicResolutionFraction=1.0000
[2025.11.02-08.54.43:028][  0]LogDLSS: NVIDIA NGX DLSS supported SR=1 RR=1
[2025.11.02-08.54.43:028][  0]LogDLSS: FDLSSDenoiserWrapper(Inactive) wrapping ScreenSpaceDenoiser
[2025.11.02-08.54.43:028][  0]LogDLSS: FDLSSModule::StartupModule Leave
[2025.11.02-08.54.43:028][  0]LogNIS: FNISCoreModule::StartupModule Enter
[2025.11.02-08.54.43:028][  0]LogNIS: FNISCoreModule::StartupModule Leave
[2025.11.02-08.54.43:028][  0]LogStreamline: FStreamlineCoreModule::StartupModule Enter
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: SLisFeatureSupported(kFeatureDeepDVC) -> (0, Result::eOk)
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureDeepDVC)  versionSL = 2.7.30, versionNGX = 0.0.0 -> (0, Result::eOk)
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureDeepDVC) -> (0, Result::eOk)
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: FeatureRequirements kFeatureDeepDVC: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: maxNumCPUThreads : 0
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: maxNumViewports  : 0
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: osVersion     detected: 10.0.19045, required: 10.0.0
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: driverVersion detected: 576.88.0, required: 512.15.0
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: requiredTags (1): {kBufferTypeScalingOutputColor (4)}
[2025.11.02-08.54.43:029][  0]LogStreamline: FStreamlineViewExtension::FStreamlineViewExtension Enter GameThread (tid=22072)
[2025.11.02-08.54.43:029][  0]LogStreamline: FStreamlineViewExtension::FStreamlineViewExtension Leave GameThread (tid=22072)
[2025.11.02-08.54.43:029][  0]LogStreamline: RegisterStreamlineReflexHooks Enter
[2025.11.02-08.54.43:029][  0]LogStreamlineRHI: SLisFeatureSupported(kFeatureReflex) -> (0, Result::eOk)
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: SLgetFeatureVersion(kFeatureReflex)  versionSL = 2.7.30, versionNGX = 0.0.0 -> (0, Result::eOk)
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: SLgetFeatureRequirements(kFeatureReflex) -> (0, Result::eOk)
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: FeatureRequirements kFeatureReflex: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: maxNumCPUThreads : 0
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: maxNumViewports  : 0
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: osVersion     detected: 10.0.19045, required: 10.0.0
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: driverVersion detected: 576.88.0, required: 512.15.0
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: requiredTags (0): {}
[2025.11.02-08.54.43:030][  0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::lowLatencyAvailable=1
[2025.11.02-08.54.43:030][  0]LogStreamline: FStreamlineMaxTickRateHandler::Initialize sl::ReflexState::latencyReportAvailable=1
[2025.11.02-08.54.43:030][  0]LogStreamline: FStreamlineLatencyMarkers::Initialize sl::ReflexState::flashIndicatorDriverControlled=1
[2025.11.02-08.54.43:030][  0]LogStreamline: RegisterStreamlineReflexHooks Leave
[2025.11.02-08.54.43:030][  0]LogStreamlineRHI: SLisFeatureSupported(kFeatureImGUI) -> (31, Result::eErrorFeatureMissing)
[2025.11.02-08.54.43:030][  0]LogStreamline: NVIDIA Streamline supported 1
[2025.11.02-08.54.43:030][  0]LogStreamline: FStreamlineCoreModule::StartupModule Leave
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: SLisFeatureSupported(kFeaturePCL) -> (0, Result::eOk)
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: SLgetFeatureVersion(kFeaturePCL)  versionSL = 2.7.30, versionNGX = 0.0.0 -> (0, Result::eOk)
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: SLgetFeatureRequirements(kFeaturePCL) -> (0, Result::eOk)
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: FeatureRequirements kFeaturePCL: flags FeatureRequirementFlags::eVulkanSupported|FeatureRequirementFlags::eD3D12Supported|FeatureRequirementFlags::eD3D11Supported
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: maxNumCPUThreads : 0
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: maxNumViewports  : 0
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: osVersion     detected: 10.0.19045, required: 10.0.0
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: driverVersion detected: 576.88.0, required: 512.15.0
[2025.11.02-08.54.43:031][  0]LogStreamlineRHI: requiredTags (0): {}
[2025.11.02-08.54.43:033][  0]LogInit: Display: Starting Game.
[2025.11.02-08.54.43:033][  0]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/LVL_StartingScreen?Name=Player"
[2025.11.02-08.54.43:033][  0]LogNet: Browse: /Game/Maps/LVL_StartingScreen?Name=Player
[2025.11.02-08.54.43:033][  0]LogLoad: LoadMap: /Game/Maps/LVL_StartingScreen?Name=Player
[2025.11.02-08.54.43:033][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
[2025.11.02-08.54.43:033][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
[2025.11.02-08.54.43:039][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
[2025.11.02-08.54.43:053][  0]LogUObjectHash: Compacting FUObjectHashTables data took   4.53ms
[2025.11.02-08.54.43:230][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_StartingScreen'.
[2025.11.02-08.54.43:232][  0]LogLoad: Game class is 'BP_StartMenu_GameMode_C'
[2025.11.02-08.54.43:233][  0]LogWorld: Bringing World /Game/Maps/LVL_StartingScreen.LVL_StartingScreen up for play (max tick rate 0) at 2025.11.02-19.54.43
[2025.11.02-08.54.43:233][  0]LogWorld: Bringing up level for play took: 0.001126
[2025.11.02-08.54.43:238][  0]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0
[2025.11.02-08.54.43:238][  0]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0
[2025.11.02-08.54.43:238][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2025.11.02-08.54.43:238][  0]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors
[2025.11.02-08.54.43:240][  0]FSDLog_Gameflow: FADING (0.000000): Bp_StartMenu_PlayerController_C_2147481990: FadeScreenFromBlack
[2025.11.02-08.54.43:240][  0]FSDLog_Gameflow: 0.0 Bp_StartMenu_PlayerController_C_2147481990: FadeScreenFromBlack
[2025.11.02-08.54.43:240][  0]FSDLog_Gameflow: UFSDSaveGame::GetAllSavesFromDisk
[2025.11.02-08.54.43:277][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 6031,4070,5809,6882,3404)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.43:312][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 9805,7141,7363,9398,3700)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.43:532][  0]LogPakFile: Precache HighWater 96MB

[2025.11.02-08.54.43:697][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 293114,6105,7215,10693,7363)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.43:809][  0]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 5439,6512,6771,8214,5365)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.44:907][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147087659.BXEStateComponent'
[2025.11.02-08.54.44:946][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147335249.BXEStateComponent'
[2025.11.02-08.54.44:986][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147402504.BXEStateComponent'
[2025.11.02-08.54.45:029][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_C_2147388371.BXEStateComponent'
[2025.11.02-08.54.45:061][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147365519.BXEStateComponent'
[2025.11.02-08.54.45:104][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147087659.BXEStateComponent'
[2025.11.02-08.54.45:137][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147335249.BXEStateComponent'
[2025.11.02-08.54.45:184][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147402504.BXEStateComponent'
[2025.11.02-08.54.45:194][  0]LogTemp: Getting screensettings to save
[2025.11.02-08.54.45:194][  0]LogTemp: Saving window fullscreen to save file
[2025.11.02-08.54.45:232][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147335249.BXEStateComponent'
[2025.11.02-08.54.45:275][  0]LogUObjectGlobals: Warning: Failed to find object 'Object /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN:PersistentLevel.BP_PlayerState_SpaceRig_C_2147335249.BXEStateComponent'
[2025.11.02-08.54.45:277][  0]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0'
[2025.11.02-08.54.45:278][  0]LogBlueprintUserMessages: [Bp_StartMenu_PlayerController_C_2147481990] StartingScreen - No Invite (yet)
[2025.11.02-08.54.45:281][  0]LogLoad: Took 2.247446 seconds to LoadMap(/Game/Maps/LVL_StartingScreen)
[2025.11.02-08.54.45:281][  0]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/LVL_StartingScreen
[2025.11.02-08.54.45:281][  0]BP_GameInstance: [BP_GameInstance_C_2147482539] /Game/Maps/LVL_StartingScreen
[2025.11.02-08.54.45:281][  0]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/LVL_StartingScreen
[2025.11.02-08.54.45:313][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
[2025.11.02-08.54.45:313][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
[2025.11.02-08.54.45:313][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
[2025.11.02-08.54.45:321][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
[2025.11.02-08.54.45:321][  0]LogLoad: (Engine Initialization) Total time: 81.72 seconds
[2025.11.02-08.54.45:349][  0]LogWindowsTextInputMethodSystem: Activated input method: English (Australia) - (Keyboard).
[2025.11.02-08.54.45:349][  0]LogWindowsTextInputMethodSystem: Activated input method: English (Australia) - (Keyboard).
[2025.11.02-08.54.45:354][  0]LogRawInputWindows: Warning: Device was registered succesfully but not connected (Usage:4 UsagePage:1)
[2025.11.02-08.54.45:354][  0]LogRawInputWindows: Warning: Device was registered succesfully but not connected (Usage:5 UsagePage:1)
[2025.11.02-08.54.45:360][  0]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - RogueCore_usr begining compile.
[2025.11.02-08.54.45:361][  0]LogRHI: Display: FShaderPipelineCache starting pipeline cache 'RogueCore_usr' and enqueued 923 tasks for precompile. (cache contains 926, 926 eligible, 3 had missing shaders. 0 already compiled). BatchSize 87 and BatchTime 16.000000.
[2025.11.02-08.54.45:391][  0]LogContentStreaming: Texture pool size now 1000 MB
[2025.11.02-08.54.45:418][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.45:418][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.45:419][  0]LogConsoleManager: Warning: Setting the console variable 'r.NGX.DLSS.Enable' with 'SetByCommandline' was ignored as it is lower priority than the previous 'SetByCode'. Value remains '0'
[2025.11.02-08.54.45:423][  1]LogSlate: Took 0.000445 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K)
[2025.11.02-08.54.45:424][  1]LogSlate: Took 0.000321 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K)
[2025.11.02-08.54.45:640][  1]LogStreaming: Display: FlushAsyncLoading(1776): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.54.45:845][  1]LogTemp: UFXTelemetry::StartHandshake sending {"gid":"RogueCore","bid":"0.4.120487.0","pid":"Steam","uid":"b9af601914e58fc5fdb73d6c3dbb78dbf1f5ee36db486cd537234d54929427f2"}
[2025.11.02-08.54.46:100][  7]DiscordWrap: Discord User toxin_deathgas Connected with id 685351856045948978
[2025.11.02-08.54.46:881][150]LogBlueprintUserMessages: [Bp_StartMenu_PlayerController_C_2147481990] Key Press:Space Bar
[2025.11.02-08.54.47:706][313]LogOnlineIdentity: STEAM: Obtained steam authticket
[2025.11.02-08.54.47:807][313]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture
[2025.11.02-08.54.47:810][313]LogSlate: Took 0.000463 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K)
[2025.11.02-08.54.49:845][691]LogSlate: Took 0.003508 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
[2025.11.02-08.54.50:123][743]FSDLog_Gameflow: FADING (4.775088): Bp_StartMenu_PlayerController_C_2147481990: FadeScreenToBlack
[2025.11.02-08.54.50:123][743]FSDLog_Gameflow: 4.8 Bp_StartMenu_PlayerController_C_2147481990: FadeScreenToBlack
[2025.11.02-08.54.51:625][ 32]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/Spaceship/LVL_Ramrod_MAIN"
[2025.11.02-08.54.51:625][ 32]LogNet: Browse: /Game/Maps/Spaceship/LVL_Ramrod_MAIN
[2025.11.02-08.54.51:625][ 32]LogLoad: LoadMap: /Game/Maps/Spaceship/LVL_Ramrod_MAIN
[2025.11.02-08.54.51:625][ 32]LogWorld: BeginTearingDown for /Game/Maps/LVL_StartingScreen
[2025.11.02-08.54.51:629][ 32]LogWorld: UWorld::CleanupWorld for LVL_StartingScreen, bSessionEnded=true, bCleanupResources=true
[2025.11.02-08.54.51:629][ 32]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.51:718][ 32]LogAudio: Display: Audio Device unregistered from world 'None'.
[2025.11.02-08.54.51:796][ 32]LogUObjectHash: Compacting FUObjectHashTables data took   5.56ms
[2025.11.02-08.54.51:807][ 32]LogStreaming: Display: FlushAsyncLoading(1779): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.54.53:373][ 32]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 9509,6179,12580,6623,8066)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.53:544][ 32]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Ramrod_MAIN'.
[2025.11.02-08.54.53:546][ 32]LogLoad: Game class is 'BP_SpaceRig_Gamemode_C'
[2025.11.02-08.54.53:547][ 32]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_Mesh_v07) is flushing async loading
[2025.11.02-08.54.53:720][ 32]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_VFX_Default) is flushing async loading
[2025.11.02-08.54.53:727][ 32]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Spaceship/SLVL_Ramrod_LightingDefault) is flushing async loading
[2025.11.02-08.54.53:884][ 32]LogWorld: Bringing World /Game/Maps/Spaceship/LVL_Ramrod_MAIN.LVL_Ramrod_MAIN up for play (max tick rate 0) at 2025.11.02-19.54.53
[2025.11.02-08.54.53:891][ 32]LogWorld: Bringing up level for play took: 0.162369
[2025.11.02-08.54.53:892][ 32]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
[2025.11.02-08.54.53:893][ 32]FSDLog_Startup: AFSDGameMode::PostLogin - Adding player: BP_PlayerController_SpaceRig_C_2147480830 total count: 1 NumPlayers: 1
[2025.11.02-08.54.53:893][ 32]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.54.53:893][ 32]LogGameState: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.54.53:893][ 32]LogGameMode: Display: Match State Changed from WaitingToStart to InProgress
[2025.11.02-08.54.54:266][ 32]FSDLog_Gameflow: FADING (0.000000): LVL_Ramrod_MAIN_C_1: BlackoutScreen
[2025.11.02-08.54.54:267][ 32]FSDLog_Gameflow: 0.0 LVL_Ramrod_MAIN_C_1: BlackoutScreen
[2025.11.02-08.54.54:271][ 32]FSDLog_Gameflow: FADING (0.000000): BP_SpacerigSpectator_C_2147480824: BlackoutScreen
[2025.11.02-08.54.54:271][ 32]FSDLog_Gameflow: 0.0 BP_SpacerigSpectator_C_2147480824: BlackoutScreen
[2025.11.02-08.54.54:617][ 32]LogVoiceEncode: Display: EncoderVersion: libopus unknown
[2025.11.02-08.54.54:617][ 32]FSDLog_Gameflow: FADING (0.000000): BP_PlayerController_SpaceRig_C_2147480830: BlackoutScreen
[2025.11.02-08.54.54:617][ 32]FSDLog_Gameflow: 0.0 BP_PlayerController_SpaceRig_C_2147480830: BlackoutScreen
[2025.11.02-08.54.54:617][ 32]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480830] WindowManager Binds Complete
[2025.11.02-08.54.54:617][ 32]DiscordWrap: Discord: SetupFaction  -1 isConnected 1
[2025.11.02-08.54.54:617][ 32]DiscordWrap: RequestFactionAdjustment: Check token
[2025.11.02-08.54.54:617][ 32]DiscordWrap: RequestFactionAdjustment: Generate object
[2025.11.02-08.54.54:617][ 32]DiscordWrap: Discord: Server FactionAdjustment URL https://services.ghostship.dk:8443/userFaction
[2025.11.02-08.54.54:617][ 32]DiscordWrap: Discord: FactionAdjustment JSon {
	"userId": "685351856045948978",
	"factionId": -1,
	"steamTicket": "14000000C7294C313192D96AED588D4101001001D0970669180000000100000002000000F25D303F0EBFB529D527060203000000B20000003200000004000000ED588D4101001001E2A62B0091E8CA0E0100007F00000000D3970669534722690100D3910F00000000009B37117643181555F48FE6A47D2C8AB271D05825310B2CA55B7160041846910C5758A1625A7D4FBCFA41417184C4F697911236C4192F28C5BA184C4BA584387F823446C2C844EE40717AE5FB3CEFAAA6817727E0C0EA922DAC11E2F10751E1ED06C5A91B7417516AAC509DB53CEF10CE21B945EA451F6A693F5D8F40C8D1F71A"
}
[2025.11.02-08.54.54:618][ 32]LogGameState: Match State Changed from WaitingToStart to InProgress
[2025.11.02-08.54.54:618][ 32]LogLoad: Took 2.993598 seconds to LoadMap(/Game/Maps/Spaceship/LVL_Ramrod_MAIN)
[2025.11.02-08.54.54:620][ 32]FSDLog_Gameflow: LoadComplete (0.000000): /Game/Maps/Spaceship/LVL_Ramrod_MAIN
[2025.11.02-08.54.54:620][ 32]BP_GameInstance: [BP_GameInstance_C_2147482539] /Game/Maps/Spaceship/LVL_Ramrod_MAIN
[2025.11.02-08.54.54:620][ 32]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/Spaceship/LVL_Ramrod_MAIN
[2025.11.02-08.54.54:623][ 32]LogOnlineVoice: OSS: Registering all local talkers
[2025.11.02-08.54.54:623][ 32]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0xFFFFFFFF
[2025.11.02-08.54.54:623][ 32]LogOnlineVoice: OSS: Starting networked voice for user: 0
[2025.11.02-08.54.54:808][ 32]LogOnlineVoice: OSS: RegisterLocalTalker(0) returned 0x00000000
[2025.11.02-08.54.54:808][ 32]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000
[2025.11.02-08.54.54:808][ 32]LogOnlineVoice: OSS: Stopping networked voice for user: 0
[2025.11.02-08.54.54:947][ 32]LogPSOHitching: Encountered 50 PSO creation hitches so far (45 graphics, 5 compute). 1 of them were precached.
[2025.11.02-08.54.55:091][ 32]LogSlate: Took 0.000473 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K)
[2025.11.02-08.54.55:133][ 32]OodleDataCompression: Display: Oodle: OODLE USAGE WARNING : Destination buffer appears to be in uncached or write-combined memory! This is extremely slow. See "How do I decompress to graphics memory quickly?" in the Oodle FAQ. (Probe times 6179,5291,3885,6697,6808)
(Usage warnings can be disabled via Oodle_SetUsageWarnings.)

[2025.11.02-08.54.55:624][ 32]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.55:626][ 32]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.56:118][ 32]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently
[2025.11.02-08.54.56:118][ 32]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480830] Last PlayedSlicerID
[2025.11.02-08.54.56:118][ 32]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_SlicerCharacter_C
[2025.11.02-08.54.56:118][ 32]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_SlicerCharacter_C
[2025.11.02-08.54.56:168][ 32]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
[2025.11.02-08.54.56:169][ 32]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
[2025.11.02-08.54.56:269][ 32]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.54.56:269][ 32]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
[2025.11.02-08.54.56:269][ 32]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.54.56:280][ 32]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147477835' with 'SK_SLICER'
[2025.11.02-08.54.56:309][ 32]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered
[2025.11.02-08.54.56:350][ 32]LogSlate: Took 0.000963 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Normal.ufont' (65K)
[2025.11.02-08.54.56:352][ 32]LogSlate: Took 0.000396 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/FNT_Retro_IBM_0_Narrow.ufont' (66K)
[2025.11.02-08.54.56:416][ 32]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
[2025.11.02-08.54.56:416][ 32]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
[2025.11.02-08.54.56:416][ 32]FSDLog_Gameflow: UPlayerHealthComponent rejoinState load damage for Toxin_deathgas 0: 0.000000
[2025.11.02-08.54.56:426][ 32]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load
[2025.11.02-08.54.56:556][ 32]LogRenderer: Forcing update for all mesh draw commands: SkyLight change
[2025.11.02-08.54.56:609][ 33]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.56:613][ 33]FSDLog_Startup: FSDGameMode: All Controllers are ready
[2025.11.02-08.54.56:652][ 33]FSDLog_Gameflow: FADING (0.404891): HUD_SpaceRig_C_2147477476: FadeScreenFromBlack
[2025.11.02-08.54.56:652][ 33]FSDLog_Gameflow: 0.4 HUD_SpaceRig_C_2147477476: FadeScreenFromBlack
[2025.11.02-08.54.56:834][ 33]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.56:837][ 33]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.56:839][ 33]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.56:939][ 33]LogD3D12RHI: Waited for PSO creation for 200.000000ms
[2025.11.02-08.54.56:978][ 33]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.57:016][ 33]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.54.57:083][ 33]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES  : OnlineServiceAndPing of type String
[2025.11.02-08.54.57:087][ 33]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000
[2025.11.02-08.54.57:087][ 33]LogOnlineVoice: OSS: Starting networked voice for user: 0
[2025.11.02-08.54.57:087][ 33]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(1)
[2025.11.02-08.54.57:087][ 33]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(2)
[2025.11.02-08.54.57:087][ 33]LogOnlineVoice: OSS: Invalid user specified in RegisterLocalTalker(3)
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: dumping NamedSession: 
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	SessionName: GameSession
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	HostingPlayerNum: 0
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	SessionState: Pending
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	RegisteredPlayers: 
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	    0 registered players
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: dumping Session: 
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	OwningPlayerName: Toxin_deathgas
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	OwningPlayerId: Toxin_deathgas [0x1100001418D58ED]
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	NumOpenPrivateConnections: 0
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	NumOpenPublicConnections: 3
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	SessionInfo: HostIP: INVALID SteamP2P: 76561199060048109:7777 Type: Lobby session SessionId: Lobby[0x18...0CB8]
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: dumping SessionSettings: 
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	NumPublicConnections: 4
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	NumPrivateConnections: 0
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bIsLanMatch: false
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bIsDedicated: false
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bUsesStats: false
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bShouldAdvertise: true
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bAllowJoinInProgress: true
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bAllowInvites: true
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bUsesPresence: true
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bAllowJoinViaPresence: true
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	bAllowJoinViaPresenceFriendsOnly: false
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	BuildUniqueId: 0x00000000
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 	Settings:
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 		DRG_SERVERNAME=Toxin_deathgas : OnlineServiceAndPing
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 		DRG_SERVERNAME_SAN=Toxin_deathgas : OnlineServiceAndPing
[2025.11.02-08.54.57:087][ 33]LogOnlineSession: Verbose: OSS: 		HostUserID=76561199060048109 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_PWREQUIRED=0 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_PRIVATE=1 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_FULL=0 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_NUMPLAYERS=1 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_CLASSES= : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_CLASSLOCK=1 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_MISSIONSTRUCTURE=SingleMission : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_MISSION_SEED=-1 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_GLOBALMISSION_SEED=-1 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_GAMESTATE=0 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_REGION=AU : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		SteamPingLoc=syd=11+1,sgp=241+24/104+1,hkg4=256+25/135+1,maa2=270+27/135+1,hkg=135+13/137+1,bom2=304+30/154+1,lax=177+17,tyo=340+34/183+1,sea=192+19,iad=243+24/241+17,fra=331+33/323+17,gru=356+35/355+17 : OnlineServiceAndPing
[2025.11.02-08.54.57:088][ 33]LogOnlineSession: Verbose: OSS: 		DRG_VERSION=120487 : OnlineServiceAndPing
[2025.11.02-08.54.57:090][ 33]LogNet: ReplicationDriverClass is null! Not using ReplicationDriver.
[2025.11.02-08.54.57:090][ 33]LogNetCore: DDoS detection status: detection enabled: 0 analytics enabled: 0
[2025.11.02-08.54.57:090][ 33]LogNet: InitBase GameNetDriver (NetDriverDefinition GameNetDriver) using replication model Generic
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumConnections
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric Connections
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric GatherPrioritizeTimeMS
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric InPacketsClientAvg
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric InPacketsClientMax
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumberOfActiveActors
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumberOfFullyDormantActors
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumClientUpdateLevelVisibility
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumOpenChannels
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumReplicateActorCallsPerConAvg
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumSkippedObjectEmptyUpdates
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric NumTickingChannels
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutKBytes
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutNetGUIDKBytesSec
[2025.11.02-08.54.57:090][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutPacketsClientAvg
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutPacketsClientMax
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric ReplicateActorTimeMS
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric SatConnections
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric ServerReplicateActorTimeMS
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric SharedSerializationPropertyHit
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric SharedSerializationPropertyMiss
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric SharedSerializationRPCHit
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric SharedSerializationRPCMiss
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutgoingReliableMessageQueueMaxSize
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric IncomingReliableMessageQueueMaxSize
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric InPacketsPerFrame
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutPacketsPerFrame
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric InLostPacketsFoundPerFrame
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutLostPacketsFoundPerFrame
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric Ping
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric InRate
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutRate
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric AverageJitterInMS
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric InPacketsLost
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsCSV_Replication for metric OutPacketsLost
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric NumConnections
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric AvgPing
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InBunches
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InPackets
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InPacketsClientPerSecondAvg
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InPacketsClientPerSecondMax
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InPacketsClientPerSecondMin
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InPacketsLost
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InRate
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InRateClientAvg
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InRateClientMax
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric InRateClientMin
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric MaxPacketOverhead
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric MaxPing
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric MinPing
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric NumClients
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric Connections
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutBunches
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutPackets
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutPacketsClientPerSecondAvg
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutPacketsClientPerSecondMax
[2025.11.02-08.54.57:091][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutPacketsClientPerSecondMin
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutPacketsLost
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutRate
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutRateClientAvg
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutRateClientMax
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric OutRateClientMin
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt0
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt1
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt2
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt3
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt4
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt5
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt6
[2025.11.02-08.54.57:092][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric PingBucketInt7
[2025.11.02-08.54.57:093][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric ClosedConnectionsDueToReliableBufferOverflow
[2025.11.02-08.54.57:093][ 33]LogNet: Registering network metrics listener /Script/Engine.NetworkMetricsPerfCounters for metric AddedConnections
[2025.11.02-08.54.57:093][ 33]PacketHandlerLog: Loaded PacketHandler component: Engine.EngineHandlerComponentFactory (StatelessConnectHandlerComponent)
[2025.11.02-08.54.57:093][ 33]LogSockets: SteamSockets: Now tracking socket 65536 for addr 76561199060048109:7777, has parent? 0
[2025.11.02-08.54.57:093][ 33]LogNet: Name:GameNetDriver Def:GameNetDriver SteamSocketsNetDriver_2147477262 started listening on 7777
[2025.11.02-08.54.57:093][ 33]LogD3D12RHI: Waited for PSO creation for 200.000000ms
[2025.11.02-08.54.57:139][ 33]LogD3D12RHI: Waited for PSO creation for 400.000000ms
[2025.11.02-08.54.57:244][ 33]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000
[2025.11.02-08.54.57:244][ 33]LogOnlineVoice: OSS: Stopping networked voice for user: 0
[2025.11.02-08.54.57:245][ 34]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES  : OnlineServiceAndPing of type String
[2025.11.02-08.54.57:245][ 34]LogOnlineSession: Warning: STEAM: Empty session setting DRG_CLASSES  : OnlineServiceAndPing of type String
[2025.11.02-08.54.57:251][ 34]ServerListClientLog: Session Id is finally set
[2025.11.02-08.54.57:251][ 34]LogOnlineVoice: OSS: Registering all local talkers
[2025.11.02-08.54.57:251][ 34]LogVoiceEngine: OSS: Internal voice capture complete.
[2025.11.02-08.54.57:256][ 34]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000
[2025.11.02-08.54.57:256][ 34]LogOnlineVoice: OSS: Starting networked voice for user: 0
[2025.11.02-08.54.57:278][ 34]LogD3D12RHI: Waited for PSO creation for 400.000000ms
[2025.11.02-08.54.57:375][ 34]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000
[2025.11.02-08.54.57:375][ 34]LogOnlineVoice: OSS: Stopping networked voice for user: 0
[2025.11.02-08.54.57:381][ 34]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.54.57:381][ 34]LogStreaming: Display: FlushAsyncLoading(1880): 1 QueuedPackages, 9 AsyncPackages
[2025.11.02-08.54.57:499][ 34]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.54.57:539][ 34]LogD3D12RHI: Waited for PSO creation for 800.000000ms
[2025.11.02-08.54.57:740][ 35]LogVoiceEngine: OSS: Internal voice capture complete.
[2025.11.02-08.55.09:505][612]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] Character Select construct
[2025.11.02-08.55.09:505][612]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize
[2025.11.02-08.55.09:505][612]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture
[2025.11.02-08.55.09:505][612]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.09:505][612]LogStreaming: Display: FlushAsyncLoading(1891): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.09:552][612]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.09:552][612]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
[2025.11.02-08.55.09:553][612]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147477203' with 'SK_SLICER'
[2025.11.02-08.55.09:583][612]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.09:584][612]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147477128' with 'SK_SLICER'
[2025.11.02-08.55.09:585][612]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480830] Waitin for focus: Selection
[2025.11.02-08.55.09:601][612]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.09:601][612]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.09:602][612]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.09:678][614]BP_PlayerController_SpaceRig: [BP_PlayerController_SpaceRig_C_2147480830] Settin char world cam:Selection
[2025.11.02-08.55.09:678][614]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 1
[2025.11.02-08.55.09:678][614]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds
[2025.11.02-08.55.09:678][614]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds ShowCharacterSelectionWorld
[2025.11.02-08.55.09:679][614]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Character World with a character
[2025.11.02-08.55.09:679][614]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.09:679][614]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.09:686][614]LogPSOHitching: Encountered 100 PSO creation hitches so far (95 graphics, 5 compute). 6 of them were precached.
[2025.11.02-08.55.09:690][614]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.09:690][614]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.09:690][614]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_SlicerCharacter_C
[2025.11.02-08.55.09:691][614]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147477106' with 'SK_SLICER'
[2025.11.02-08.55.09:692][614]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.09:692][614]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.09:692][614]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.09:697][614]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.09:697][614]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.09:724][614]LogD3D12RHI: Waited for PSO creation for 100.000000ms
[2025.11.02-08.55.09:825][614]LogD3D12RHI: Waited for PSO creation for 200.000000ms
[2025.11.02-08.55.10:375][615]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
[2025.11.02-08.55.10:832][626]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.10:833][626]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.10:833][626]LogSkeletalMesh: Warning: Failed to write back clothing simulation data for component SkeletalMeshComponent_2147477128 as bone transforms are invalid.
[2025.11.02-08.55.10:849][626]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.10:849][626]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.10:850][626]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147477085' with 'SK_SLICER'
[2025.11.02-08.55.10:851][626]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.10:851][626]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.10:861][626]LogStreaming: Display: FlushAsyncLoading(1893): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.10:999][626]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.11:002][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.11:002][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.11:002][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_SlicerCharacter_C_2147477121
[2025.11.02-08.55.11:020][626]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.11:020][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_GuardianCharacter_C
[2025.11.02-08.55.11:020][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.11:020][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.11:020][626]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.11:020][626]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.11:020][626]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.11:026][627]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.11:027][627]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.11:027][627]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.12:662][734]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.12:662][734]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.12:674][734]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.12:674][734]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.12:674][734]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.12:674][734]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.12:683][734]LogStreaming: Display: FlushAsyncLoading(1902): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.12:859][734]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.12:922][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.12:922][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.12:922][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_GuardianCharacter_C_2147477071
[2025.11.02-08.55.12:935][734]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.12:935][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_FalconeerCharacter_C
[2025.11.02-08.55.12:937][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.12:937][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.12:937][734]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.12:938][734]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_FalconeerCharacter_C
[2025.11.02-08.55.12:938][734]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_FalconeerCharacter_C
[2025.11.02-08.55.12:941][734]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.12:941][734]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.12:941][734]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.16:179][995]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.16:179][995]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.16:195][995]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.16:195][995]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.16:195][995]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.16:195][995]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.16:211][995]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.16:211][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.16:211][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.16:211][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_FalconeerCharacter_C_2147477033
[2025.11.02-08.55.16:224][995]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.16:224][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_GuardianCharacter_C
[2025.11.02-08.55.16:224][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.16:224][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.16:224][995]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.16:224][995]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.16:224][995]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.16:230][996]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.16:230][996]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.16:230][996]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.18:504][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.18:504][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.18:515][173]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.18:515][173]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.18:517][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.18:517][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.18:530][173]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.18:531][173]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476954' with 'SK_SLICER'
[2025.11.02-08.55.18:531][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.18:531][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.18:531][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_GuardianCharacter_C_2147476989
[2025.11.02-08.55.18:553][173]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.18:553][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_SlicerCharacter_C
[2025.11.02-08.55.18:554][173]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476936' with 'SK_SLICER'
[2025.11.02-08.55.18:557][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.18:557][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.18:557][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.18:557][173]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_SlicerCharacter_C
[2025.11.02-08.55.18:557][173]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_SlicerCharacter_C
[2025.11.02-08.55.18:558][173]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.18:559][173]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.18:559][173]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.18:565][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.18:566][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.18:566][173]LogSkeletalMesh: Warning: Failed to write back clothing simulation data for component SkeletalMeshComponent_2147476954 as bone transforms are invalid.
[2025.11.02-08.55.18:584][173]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.18:584][173]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.18:585][173]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476918' with 'SK_SLICER'
[2025.11.02-08.55.18:586][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.18:586][173]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.18:597][173]LogStreaming: Display: FlushAsyncLoading(1921): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.18:761][173]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476903' with 'SK_SPOTTER'
[2025.11.02-08.55.18:782][173]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.18:817][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.18:817][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.18:818][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_SlicerCharacter_C_2147476951
[2025.11.02-08.55.18:830][173]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476883' with 'SK_SPOTTER'
[2025.11.02-08.55.18:833][173]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.18:833][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_SpotterCharacter_C
[2025.11.02-08.55.18:835][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.18:835][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.18:835][173]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.18:835][173]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_SpotterCharacter_C
[2025.11.02-08.55.18:836][173]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_SpotterCharacter_C
[2025.11.02-08.55.18:842][174]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.18:843][174]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.18:843][174]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:025][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:025][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:048][266]LogRHI: Warning: FShaderPipelineCache RogueCore_usr completed 923 tasks in 0.03s (34.64s wall time since intial open).
[2025.11.02-08.55.20:058][266]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476863' with 'SK_SPOTTER'
[2025.11.02-08.55.20:058][266]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:058][266]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:059][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:059][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:072][266]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:072][266]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476839' with 'SK_SLICER'
[2025.11.02-08.55.20:074][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.20:074][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.20:074][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_SpotterCharacter_C_2147476894
[2025.11.02-08.55.20:086][266]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:086][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_SlicerCharacter_C
[2025.11.02-08.55.20:086][266]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476821' with 'SK_SLICER'
[2025.11.02-08.55.20:088][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.20:088][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.20:088][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.20:088][266]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_SlicerCharacter_C
[2025.11.02-08.55.20:088][266]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_SlicerCharacter_C
[2025.11.02-08.55.20:091][266]LogRHI: FShaderPipelineCache::BeginNextPrecompileCacheTask() - Finished, no jobs remaining.
[2025.11.02-08.55.20:091][266]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.20:092][266]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:092][266]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:100][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:100][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:101][266]LogSkeletalMesh: Warning: Failed to write back clothing simulation data for component SkeletalMeshComponent_2147476839 as bone transforms are invalid.
[2025.11.02-08.55.20:113][266]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:113][266]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:114][266]LogSkeletalMesh: USkeletalMeshComponent: Recreating Clothing Actors for 'SkeletalMeshComponent_2147476803' with 'SK_SLICER'
[2025.11.02-08.55.20:115][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:115][266]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:130][266]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:131][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Cam PosSelection
[2025.11.02-08.55.20:131][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] RefreshCharacter
[2025.11.02-08.55.20:131][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Destroy Character: BP_SlicerCharacter_C_2147476836
[2025.11.02-08.55.20:142][266]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:143][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] Spawn Character: BP_GuardianCharacter_C
[2025.11.02-08.55.20:143][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186]  : false
[2025.11.02-08.55.20:143][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharSwitcher : Refresh Character Switch Weapon : -1
[2025.11.02-08.55.20:143][266]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] OnShowChar
[2025.11.02-08.55.20:143][266]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.20:143][266]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.20:148][267]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.20:149][267]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:149][267]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:717][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:717][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:731][310]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:731][310]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 0
[2025.11.02-08.55.20:732][310]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharUnchanged
[2025.11.02-08.55.20:732][310]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.20:732][310]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.20:732][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:732][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:744][310]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:744][310]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharUnchanged
[2025.11.02-08.55.20:744][310]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.20:744][310]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.20:744][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:744][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:756][310]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:757][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:757][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:774][310]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:774][310]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharUnchanged
[2025.11.02-08.55.20:775][310]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.20:775][310]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_SpaceRig_C_2147480829 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.20:790][310]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:790][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init player
[2025.11.02-08.55.20:790][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Init condition false
[2025.11.02-08.55.20:803][310]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.20:803][310]CharacterSelectionSwitcher: [CharacterSelectionSwitcher_186] CharUnchanged
[2025.11.02-08.55.20:806][310]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered
[2025.11.02-08.55.20:806][310]ITEM_CharacterSelectMovie: [ITEM_CharacterSelectMovie] CharacterSelect Video: Collapse
[2025.11.02-08.55.21:043][310]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently
[2025.11.02-08.55.21:043][310]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0
[2025.11.02-08.55.21:044][310]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds
[2025.11.02-08.55.21:044][310]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Normal World
[2025.11.02-08.55.21:044][310]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0
[2025.11.02-08.55.21:044][310]LogStreaming: Display: FlushAsyncLoading(1935): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.21:051][310]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
[2025.11.02-08.55.21:051][310]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
[2025.11.02-08.55.21:051][310]FSDLog_Gameflow: UPlayerHealthComponent rejoinState load damage for Toxin_deathgas 0: 0.000000
[2025.11.02-08.55.21:054][310]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load
[2025.11.02-08.55.21:060][310]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.55.21:098][311]FSDLog_Gameflow: FADING (24.127220): HUD_SpaceRig_C_2147476709: FadeScreenFromBlack
[2025.11.02-08.55.21:099][311]FSDLog_Gameflow: 24.1 HUD_SpaceRig_C_2147476709: FadeScreenFromBlack
[2025.11.02-08.55.23:041][379]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard).
[2025.11.02-08.55.23:041][379]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard).
[2025.11.02-08.55.25:936][478]LogWindowsTextInputMethodSystem: Activated input method: English (Australia) - (Keyboard).
[2025.11.02-08.55.25:936][478]LogWindowsTextInputMethodSystem: Activated input method: English (Australia) - (Keyboard).
[2025.11.02-08.55.26:570][503]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize
[2025.11.02-08.55.26:570][503]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture
[2025.11.02-08.55.28:551][646]LogTemp: Warning: BXE Seed: 15972
[2025.11.02-08.55.28:551][646]LogStreaming: Display: FlushAsyncLoading(1936): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.28:604][646]LogOnline: Warning: OSS: FSDCreateSessionCallbackProxy::Activate - Failed, already in session!
[2025.11.02-08.55.28:605][646]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently
[2025.11.02-08.55.28:605][646]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0
[2025.11.02-08.55.33:471][ 41]LogMetaSound: Display: []: rEPEAT 0.000000
[2025.11.02-08.55.33:581][ 50]LogMetaSound: Display: []: rEPEAT 1.000000
[2025.11.02-08.55.33:662][ 56]LogMetaSound: Display: []: rEPEAT 2.000000
[2025.11.02-08.55.38:638][550]FSDLog_Gameflow: FADING (41.696964): HUD_SpaceRig_C_2147477476: FadeScreenToBlack
[2025.11.02-08.55.38:638][550]FSDLog_Gameflow: 41.700001 HUD_SpaceRig_C_2147477476: FadeScreenToBlack
[2025.11.02-08.55.38:638][550]FSDLog_Gameflow: FADING (41.696964): HUD_SpaceRig_C_2147476709: FadeScreenToBlack
[2025.11.02-08.55.38:638][550]FSDLog_Gameflow: 41.700001 HUD_SpaceRig_C_2147476709: FadeScreenToBlack
[2025.11.02-08.55.42:627][959]FSDLog_Gameflow: Loading Mission: /Game/Maps/LVL_Procedural
[2025.11.02-08.55.42:628][959]LogGameMode: Display: Match State Changed from InProgress to LeavingMap
[2025.11.02-08.55.42:628][959]LogGameState: Match State Changed from InProgress to LeavingMap
[2025.11.02-08.55.42:628][959]LogGameMode: ProcessServerTravel: /Game/Maps/LVL_Procedural?Game=/Game/Game/GM_BXE.GM_BXE_C
[2025.11.02-08.55.42:631][959]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2025.11.02-08.55.42:631][959]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2025.11.02-08.55.42:631][959]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors
[2025.11.02-08.55.42:635][959]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors
[2025.11.02-08.55.42:637][959]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0
[2025.11.02-08.55.42:637][959]LogWorld: SeamlessTravel to: /Game/Maps/LVL_Procedural
[2025.11.02-08.55.42:644][960]LogWorld: BeginTearingDown for /Game/Maps/Spaceship/LVL_Ramrod_MAIN
[2025.11.02-08.55.42:651][960]LogWorld: UWorld::CleanupWorld for LVL_Ramrod_MAIN, bSessionEnded=false, bCleanupResources=true
[2025.11.02-08.55.42:668][960]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:668][960]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_Mesh_v07, bSessionEnded=false, bCleanupResources=true
[2025.11.02-08.55.42:668][960]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:668][960]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_VFX_Default, bSessionEnded=false, bCleanupResources=true
[2025.11.02-08.55.42:668][960]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:668][960]LogWorld: UWorld::CleanupWorld for SLVL_Ramrod_LightingDefault, bSessionEnded=false, bCleanupResources=true
[2025.11.02-08.55.42:668][960]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:668][960]LogWorld: UWorld::CleanupWorld for LVL_Skybox_Ramrod, bSessionEnded=false, bCleanupResources=true
[2025.11.02-08.55.42:668][960]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:691][960]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
[2025.11.02-08.55.42:705][960]LogAudio: Display: Audio Device unregistered from world 'None'.
[2025.11.02-08.55.42:757][960]LogRenderer: Forcing update for all mesh draw commands: SkyLight change
[2025.11.02-08.55.42:779][960]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.42:779][960]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
[2025.11.02-08.55.42:786][960]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.55.42:791][960]LogUObjectHash: Compacting FUObjectHashTables data took   3.96ms
[2025.11.02-08.55.42:797][960]LogStats:     SeamlessTravel FlushLevelStreaming  -  0.000 s
[2025.11.02-08.55.42:797][960]LogWorld: Bringing World /Temp/Untitled_4.Untitled up for play (max tick rate 0) at 2025.11.02-19.55.42
[2025.11.02-08.55.42:797][960]LogWorld: Bringing up level for play took: 0.000390
[2025.11.02-08.55.42:797][960]LogWorld: Sending NotifyLoadedWorld for LP: LocalPlayer_2147482059 PC: BP_PlayerController_SpaceRig_C_2147480830
[2025.11.02-08.55.42:797][960]LogWorld: StartLoadingDestination to: /Game/Maps/LVL_Procedural
[2025.11.02-08.55.42:798][960]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:803][961]LogSlate: Took 0.000432 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareSemiBold.ufont' (53K)
[2025.11.02-08.55.42:804][962]LogWorld: BeginTearingDown for /Temp/Untitled_4
[2025.11.02-08.55.42:805][962]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
[2025.11.02-08.55.42:805][962]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:805][962]LogAudio: Display: Audio Device (ID: 1) registered with world 'LVL_Procedural'.
[2025.11.02-08.55.42:812][962]LogAudio: Display: Audio Device unregistered from world 'None'.
[2025.11.02-08.55.42:818][962]LogUObjectHash: Compacting FUObjectHashTables data took   3.15ms
[2025.11.02-08.55.42:826][962]LogLoad: Game class is 'GM_BXE_C'
[2025.11.02-08.55.42:827][962]LogStats:     SeamlessTravel FlushLevelStreaming  -  0.000 s
[2025.11.02-08.55.42:827][962]LogWorld: Bringing World /Game/Maps/LVL_Procedural.LVL_Procedural up for play (max tick rate 0) at 2025.11.02-19.55.42
[2025.11.02-08.55.42:827][962]LogWorld: Bringing up level for play took: 0.000639
[2025.11.02-08.55.42:827][962]LogWorld: Sending NotifyLoadedWorld for LP: LocalPlayer_2147482059 PC: BP_PlayerController_SpaceRig_C_2147480830
[2025.11.02-08.55.42:827][962]LogWorld: ----SeamlessTravel finished in 0.19 seconds ------
[2025.11.02-08.55.42:827][962]FSDLog_Startup: AFSDGameMode::HandleSeamlessTravelPlayer - Removing player: BP_PlayerController_SpaceRig_C_2147480830 total count 0
[2025.11.02-08.55.42:828][962]FSDLog_Startup: AFSDPlayerState::SeamlessTravelTo setting selectedCharacter to BP_GuardianCharacter_C
[2025.11.02-08.55.42:828][962]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_C_2147475751 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.42:828][962]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_C_2147475751 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.42:828][962]FSDLog_Gameflow: UFSDGameInstance::SetCharacterSelectionWorldVisible 0
[2025.11.02-08.55.42:828][962]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2025.11.02-08.55.42:828][962]FSDLog_Gameflow: UFSDGameInstance::RestoreCursors
[2025.11.02-08.55.42:829][962]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
[2025.11.02-08.55.42:829][962]FSDLog_Startup: AFSDGameMode::InitSeamlessTravelPlayer - Adding player: BP_NetworkPlayerController_BXE_C_2147475752 total count: 1
[2025.11.02-08.55.42:829][962]LogGameMode: Display: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.55.42:830][962]LogStreaming: Display: FlushAsyncLoading(1946): 1 QueuedPackages, 5 AsyncPackages
[2025.11.02-08.55.42:885][962]LogStaticMesh: [SM_RiftParticleMesh] Mesh is marked for CPU read.
[2025.11.02-08.55.42:894][962]FSDLog_Gameflow: FADING (45.864640): BP_NetworkPlayerController_BXE_C_2147475752: BlackoutScreen
[2025.11.02-08.55.42:894][962]FSDLog_Gameflow: 45.900002 BP_NetworkPlayerController_BXE_C_2147475752: BlackoutScreen
[2025.11.02-08.55.42:895][962]FSDLog_Startup: OnRep_SelectedCharacter BP_PlayerState_C_2147475751 newValue: BP_GuardianCharacter_C
[2025.11.02-08.55.42:895][962]FSDLog_Startup: AFSDPlayerState::SetSelectedCharacter BP_PlayerState_C_2147475751 got a new SelectedCharacter BP_GuardianCharacter_C
[2025.11.02-08.55.42:895][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - OnCharacterSelected
[2025.11.02-08.55.42:895][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - HasSelectedCharacter : false LateJoinFinished : false
[2025.11.02-08.55.42:895][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - Not Ready to Spawn
[2025.11.02-08.55.42:895][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - HasSelectedCharacter : true LateJoinFinished : false
[2025.11.02-08.55.42:895][962]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147475752] Start Wait : Host_WaitForValidPLS
[2025.11.02-08.55.42:895][962]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147475752] Start Wait : NetworkPlayerController - Local Ready
[2025.11.02-08.55.42:895][962]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147475752] End Wait :NetworkPlayerController - Local Ready
[2025.11.02-08.55.42:917][962]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.42:919][962]BP_NetworkPlayerController: [BP_NetworkPlayerController_BXE_C_2147475752] Rejoin Detected - Starting Rejoin Flow
[2025.11.02-08.55.42:919][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - OnCharacterSelected
[2025.11.02-08.55.42:919][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - HasSelectedCharacter : true LateJoinFinished : false
[2025.11.02-08.55.42:919][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - Not Ready to Spawn
[2025.11.02-08.55.42:919][962]BP_PlayerState: [BP_PlayerState_C_2147475751] PlayerState - HasSelectedCharacter : true LateJoinFinished : false
[2025.11.02-08.55.42:919][962]FSDLog_Gameflow: FADING (45.864640): Screen_LoadLevel_C_2147475698: FadeScreenFromBlack
[2025.11.02-08.55.42:919][962]FSDLog_Gameflow: 45.900002 Screen_LoadLevel_C_2147475698: FadeScreenFromBlack
[2025.11.02-08.55.42:919][962]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0
[2025.11.02-08.55.42:919][962]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 1
[2025.11.02-08.55.42:919][962]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds
[2025.11.02-08.55.42:922][962]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Loader World (LS 1)
[2025.11.02-08.55.42:922][962]LVL_Loading_StartRun: [LVL_Loading_StartRun_C_0] LoaderSequence normal START: /Game/Maps/UILevels/RogueCore/Loading_Droppod/SQ_Load_StartRun_District_A.SQ_Load_StartRun_District_A
[2025.11.02-08.55.42:925][962]LogMovieScene: Starting new camera cut: 'CineCameraActor_2'
[2025.11.02-08.55.42:936][962]LVL_Loading_Elevator: [LVL_Loading_Elevator_C_1] LoaderSequence START: /Game/Maps/UILevels/RogueCore/Loading_Droppod/SQ_Load_StartRun_District_A.SQ_Load_StartRun_District_A
[2025.11.02-08.55.42:941][962]LogSlate: Took 0.000323 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareRegular.ufont' (52K)
[2025.11.02-08.55.42:946][962]LogGameState: Match State Changed from EnteringMap to WaitingToStart
[2025.11.02-08.55.42:946][962]LogOnlineVoice: OSS: Registering all local talkers
[2025.11.02-08.55.42:947][962]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000
[2025.11.02-08.55.42:948][962]LogOnlineVoice: OSS: Starting networked voice for user: 0
[2025.11.02-08.55.42:955][962]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000
[2025.11.02-08.55.42:955][962]LogOnlineVoice: OSS: Stopping networked voice for user: 0
[2025.11.02-08.55.43:093][962]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] Start Wait : Valid Controllers
[2025.11.02-08.55.43:093][962]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] End Wait :Valid Controllers
[2025.11.02-08.55.43:093][962]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] Start Wait : WorldReady
[2025.11.02-08.55.43:093][962]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] End Wait :WorldReady
[2025.11.02-08.55.43:094][962]FSDLog_Procedural: AProceduralSetup::SetSeed eba27bd0: Server: True PLSSeed: -708271700 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147475627)
[2025.11.02-08.55.43:094][962]LogTemp: Warning: FloodFiller Seed: -708271700
[2025.11.02-08.55.43:095][962]LogTemp: Warning: NoisyPathfinder Seed: -708271700
[2025.11.02-08.55.43:095][962]FSDLog_Procedural: PathFiller Seed: -708271700
[2025.11.02-08.55.43:095][962]LogTemp: Warning: FeatureFiller Seed: -708271700
[2025.11.02-08.55.43:126][963]FSDLog_Startup: FSDGameMode: All Controllers are ready
[2025.11.02-08.55.43:129][963]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147475752] End Wait :Host_WaitForValidPLS
[2025.11.02-08.55.43:129][963]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147475752] Start Wait : Server_ClientReady
[2025.11.02-08.55.43:143][963]LogRenderer: Forcing update for all mesh draw commands: SkyLight change
[2025.11.02-08.55.43:266][963]LogVoiceEngine: OSS: Internal voice capture complete.
[2025.11.02-08.55.43:799][ 36]LogOnlineVoice: OSS: Registering all local talkers
[2025.11.02-08.55.43:801][ 36]LogOnlineVoice: OSS: StartLocalProcessing(0) returned 0x00000000
[2025.11.02-08.55.43:801][ 36]LogOnlineVoice: OSS: Starting networked voice for user: 0
[2025.11.02-08.55.43:807][ 36]LogOnlineVoice: OSS: StopLocalVoiceProcessing(0) returned 0x00000000
[2025.11.02-08.55.43:807][ 36]LogOnlineVoice: OSS: Stopping networked voice for user: 0
[2025.11.02-08.55.43:815][ 37]LogVoiceEngine: OSS: Internal voice capture complete.
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning: Selecting pool(Stationary Pool):)
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_CaveLeech
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_FulgorVomiter
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_Shatterclaw_Slammer
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_Krizzok_Boomtick_Spawner
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning: Selecting pool(Rogue Core Enemy Pool):)
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_CoreSpawn_Creeper
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_Shatterclaw_Swarmer
[2025.11.02-08.55.44:202][ 81]FSDLog_Spawning:     ED_CoreSpawn_Vanguard
[2025.11.02-08.55.44:202][ 81]FSDLog_Procedural: AProceduralSetup::InitializePLS - Biome BIOME_FungusBogs, MissionLength 1.000000, DNA DNA_BXE_C
[2025.11.02-08.55.44:203][ 81]PLS_Base: [PLS_RC_Random_C_2147475627] PLS Initialized
[2025.11.02-08.55.44:203][ 81]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_BXE_Start_B at location X=0.000 Y=0.000 Z=0.000
[2025.11.02-08.55.44:203][ 81]PLS_RC_Random: [PLS_RC_Random_C_2147475627] LINEAR PLS
[2025.11.02-08.55.44:203][ 81]BPL_ProceduralLevelSetup: [PLS_RC_Random_C_2147475627] Selected Room From DNA: RMA_BXE_Large_B
[2025.11.02-08.55.44:203][ 81]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_BXE_Large_B at location X=16789.987 Y=324.808 Z=273.204
[2025.11.02-08.55.44:203][ 81]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_RookieRandom_BigC_BXE at location X=28453.926 Y=508.589 Z=-626.093
[2025.11.02-08.55.44:203][ 81]FSDLog_Procedural: AProceduralSetup::SetSeed eba27bd0: Server: True PLSSeed: -708271700 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147475627)
[2025.11.02-08.55.44:393][101]BP_Actor_Macros: [BP_NetworkPlayerController_BXE_C_2147475752] End Wait :Server_ClientReady
[2025.11.02-08.55.44:393][101]BP_ProceduralController: [PLS_RC_Random_C_2147475627] SendRoomData (Server) to Toxin_deathgas, Seed -708271700, RoomsInitialState Length = 3, PathObstacles Length = 3
[2025.11.02-08.55.44:393][101]BP_ProceduralController: [ProceduralController] SendRoomData (Client) to Toxin_deathgas, Seed -708271700, RoomsInitialState Length = 3, PathObstacles Length = 3
[2025.11.02-08.55.44:393][101]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] Start Wait : FromData - IsInitialized
[2025.11.02-08.55.44:393][101]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] End Wait :FromData - IsInitialized
[2025.11.02-08.55.44:393][101]FSDLog_Procedural: AProceduralSetup::SetSeed eba27bd0: Server: True PLSSeed: -708271700 (PLS_RC_Random_C /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.PLS_RC_Random_C_2147475627)
[2025.11.02-08.55.44:393][101]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] Start Wait : GenerateLandscape - Objectives
[2025.11.02-08.55.44:393][101]BP_Actor_Macros: [PLS_RC_Random_C_2147475627] End Wait :GenerateLandscape - Objectives
[2025.11.02-08.55.44:393][101]PLS_Base: [PLS_RC_Random_C_2147475627] CavesAdv -> Generate Landscape From Data
[2025.11.02-08.55.44:393][101]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147475752] PlayerController - Server_ClientReady
[2025.11.02-08.55.45:152][170]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.45:172][171]FSDLog_Procedural: ADeepCSGWorld::SelectDebrisSettings: Selecting Debris DBA_FungusBogs_C
[2025.11.02-08.55.45:176][171]FSDLog_Procedural: ADebrisDataActor::InitializeChildren - Seed: -708271700
[2025.11.02-08.55.45:320][186]LogSlate: Took 0.000603 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquareBold.ufont' (54K)
[2025.11.02-08.55.45:374][191]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.197443
[2025.11.02-08.55.45:612][211]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.238355
[2025.11.02-08.55.45:853][237]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.240134
[2025.11.02-08.55.45:862][237]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.46:510][259]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (222449/719328), Verts (0/1595812), Faces (0/327535)
[2025.11.02-08.55.46:515][259]FSDLog_Terrain: OnBaseLayerCommitDone 1
[2025.11.02-08.55.46:518][259]FSDLog_Procedural: NoisyPathfinder::Run - Nodes Searched: 610 RunTime: 0.002420
[2025.11.02-08.55.46:520][259]FSDLog_Procedural: NoisyPathfinder::Run - Nodes Searched: 580 RunTime: 0.001977
[2025.11.02-08.55.46:872][282]LogSlate: Took 0.000524 seconds to synchronously load lazily loaded font '../../../RogueCore/Content/Art/Fonts/RigidSquare_ExtraBold.ufont' (53K)
[2025.11.02-08.55.46:921][284]FSDLog_Procedural: FSDPathFiller::Run - PathSize 12 Runtime 0.040102
[2025.11.02-08.55.46:941][284]FSDLog_Procedural: FSDPathFiller::Run - PathSize 5 Runtime 0.019011
[2025.11.02-08.55.47:015][288]FSDLog_Procedural: FSDPathFiller::Run - PathSize 17 Runtime 0.070928
[2025.11.02-08.55.47:022][289]FSDLog_Procedural: FSDPathFiller::Run - PathSize 2 Runtime 0.006563
[2025.11.02-08.55.47:028][290]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.47:546][311]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (254720/891582), Verts (402178/2866696), Faces (82561/603072)
[2025.11.02-08.55.47:559][311]FSDLog_Terrain: OnBaseLayerCommitDone 2
[2025.11.02-08.55.47:560][311]LogStreaming: Display: FlushAsyncLoading(2429): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.47:805][317]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.47:956][325]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (54611/697112), Verts (30876/2560582), Faces (6326/541894)
[2025.11.02-08.55.47:961][325]FSDLog_Terrain: OnBaseLayerCommitDone 3
[2025.11.02-08.55.48:053][325]LogStreaming: Display: FlushAsyncLoading(2430): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.48:095][325]PLS_Base: [PLS_RC_Random_C_2147475627] AddRoomToInitialState,  ID = 3, Carve Pass = 2
[2025.11.02-08.55.48:095][325]FSDLog_Procedural: AProceduralSetup::AddRoom - Added Room RMA_BXE_ElevatorRoomCarver at location X=17506.002 Y=3713.021 Z=1408.170
[2025.11.02-08.55.48:099][325]GM_BXE: [GM_BXE_C_2147475763] GM_BXE: Large Pass Completed
[2025.11.02-08.55.48:120][325]LogStaticMesh: [SM_elevatorCable] Mesh is marked for CPU read.
[2025.11.02-08.55.48:133][326]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.48:526][369]LogMovieScene: Warning: Cleaning audio component '/Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.FSDWorldSettings.AudioComponent_2147475569' for section '/Game/UI/Menus/Menu_LoadingScreen/UI_LoadingScreen_FirstStage.UI_LoadingScreen_FirstStage_C:AnimText_INST.AnimText.MovieSceneAudioTrack_0.MovieSceneAudioSection_0' on actor '<null>'
[2025.11.02-08.55.49:363][462]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (1740563/3414756), Verts (189779/2941289), Faces (39886/627999)
[2025.11.02-08.55.49:376][462]FSDLog_Terrain: OnBaseLayerCommitDone 4
[2025.11.02-08.55.49:378][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_WallPlatforms_B_C)...
[2025.11.02-08.55.49:392][462]FSDLog_Procedural: Room 1: Trying again... BP_Construction_Cave_WallPlatforms_B_C
[2025.11.02-08.55.49:392][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_Scafolding_C_C)...
[2025.11.02-08.55.49:403][462]FSDLog_Procedural: Room 1: Trying again... BP_Construction_Cave_Scafolding_C_C
[2025.11.02-08.55.49:403][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_SuspendedPlatform_B_C)...
[2025.11.02-08.55.49:406][462]FSDLog_Procedural: Room 1: Structure Spawned! BP_Construction_Cave_SuspendedPlatform_B_C
[2025.11.02-08.55.49:406][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_PlatformWithMachines_C)...
[2025.11.02-08.55.49:408][462]FSDLog_Procedural: Room 1: Structure Spawned! BP_Construction_Cave_PlatformWithMachines_C
[2025.11.02-08.55.49:408][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_SuspendedPlatformCave_B_C)...
[2025.11.02-08.55.49:423][462]FSDLog_Procedural: Room 2: Trying again... BP_Construction_Cave_SuspendedPlatformCave_B_C
[2025.11.02-08.55.49:423][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_Scafolding_C_C)...
[2025.11.02-08.55.49:457][462]FSDLog_Procedural: Room 2: Trying again... BP_Construction_Cave_Scafolding_C_C
[2025.11.02-08.55.49:457][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_wallPipe_A_C)...
[2025.11.02-08.55.49:459][462]FSDLog_Procedural: Room 2: Structure Spawned! BP_Construction_Cave_wallPipe_A_C
[2025.11.02-08.55.49:459][462]FSDLog_Procedural: Trying to spawn Structure Actor (BP_Construction_Cave_Scafolding_A_C)...
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Room 2: Structure Spawned! BP_Construction_Cave_Scafolding_A_C
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Error: Structure (BP_Construction_Cave_SuspendedPlatformCave_B_C) Failed to spawn! 
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Error: Structure (BP_Construction_Cave_Scafolding_C_C) Failed to spawn! 
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Room Count: 3
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Rooms to populate: 2
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Structures spawned: 4
[2025.11.02-08.55.49:465][462]FSDLog_Procedural: Structures expected: 4
[2025.11.02-08.55.49:595][463]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.49:614][465]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/1674193), Verts (0/2751510), Faces (0/588113)
[2025.11.02-08.55.49:616][465]FSDLog_Terrain: OnBaseLayerCommitDone 5
[2025.11.02-08.55.49:616][465]LogStreaming: Display: FlushAsyncLoading(2432): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.49:808][465]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.55.50:030][470]FSDLog_Procedural: CSGFloodFiller::Run - Runtime 0.038262
[2025.11.02-08.55.50:032][470]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.50:188][485]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (137919/1859400), Verts (219612/3313443), Faces (45082/709998)
[2025.11.02-08.55.50:202][485]FSDLog_Terrain: OnBaseLayerCommitDone 6
[2025.11.02-08.55.50:204][485]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.50:224][488]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/1721481), Verts (0/3093831), Faces (0/664916)
[2025.11.02-08.55.50:225][488]FSDLog_Terrain: OnBaseLayerCommitDone 7
[2025.11.02-08.55.50:230][489]FSDLog_Procedural: FSDPathFiller::Run - PathSize 3 Runtime 0.004139
[2025.11.02-08.55.50:232][489]LogStreaming: Display: FlushAsyncLoading(2438): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.50:236][489]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.50:282][495]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (48449/1779380), Verts (119027/3284499), Faces (25672/707669)
[2025.11.02-08.55.50:292][495]FSDLog_Terrain: OnBaseLayerCommitDone 8
[2025.11.02-08.55.50:294][495]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.50:341][502]FSDLog_Terrain: DebrisCarver DebrisCarved_2147475583 (mat TM_Biome_DeepCore_Rock_NoDebris, noise 10.000000) carved 2 times
[2025.11.02-08.55.50:520][523]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (19053/1752553), Verts (29739/3238519), Faces (6058/698374)
[2025.11.02-08.55.50:528][523]FSDLog_Terrain: OnBaseLayerCommitDone 9
[2025.11.02-08.55.50:528][523]FSDLog_Procedural: UVeinResourceData::CreateInPLS RES_VEIN_Expenite BaseAmount: 250.000000, DensityModifier: 1.000000, Total Amount: 250.000000, UnitsPerLength 8.000000, Total Length 3125.000000
[2025.11.02-08.55.50:528][523]LogStreaming: Display: FlushAsyncLoading(2439): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.50:532][523]FSDLog_Procedural: UCarvedResourceData::CreateInPLS RES_CARVED_RedSugar BaseAmount: 36.000000, DensityModifier: 1.000000 Total Carvers: 8
[2025.11.02-08.55.50:532][523]FSDLog_Procedural: UCollectableResourceData::CreateInPLS RES_COLLECT_Camera BaseAmount: 8.294683, DensityModifier: 1.000000 Total Amount: 8
[2025.11.02-08.55.50:532][523]FSDLog_Procedural: UVeinResourceData::CreateInPLS RES_VEIN_Croppa BaseAmount: 57.577686, DensityModifier: 1.000000, Total Amount: 0.000000, UnitsPerLength 16.000000, Total Length 0.000000
[2025.11.02-08.55.50:535][523]FSDLog_Procedural: AProceduralSetup::GenerateGems - Runtime 0.000001
[2025.11.02-08.55.50:576][523]FSDLog_Procedural: Created Carved resource RES_CARVED_RedSugar Desired: 8 Spawned: 8 Overflow: 0.000000
[2025.11.02-08.55.50:607][528]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.51:066][580]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (471770/2246828), Verts (857285/4541857), Faces (187301/988337)
[2025.11.02-08.55.51:082][580]FSDLog_Terrain: OnBaseLayerCommitDone 10
[2025.11.02-08.55.51:082][580]LogStreaming: Display: FlushAsyncLoading(2443): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.51:424][618]FSDLog_Spawning: No Mobile Encounter in room: RMA_BXE_Large_B
[2025.11.02-08.55.51:424][618]FSDLog_Spawning: USpawningBlueprintLibrary::CreateEnemyGroup - Creating group of 114.300003 difficulty (381.000000 modified by multiplier 0.300000), excessFromLastWave: 0.000000, Diversity: 3 constant pressure: 0
[2025.11.02-08.55.51:424][618]LogStreaming: Display: FlushAsyncLoading(2444): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.55.51:590][618]FSDLog_Procedural: EncounterManager::AddEncounter - Runtime 0.166382
[2025.11.02-08.55.51:591][618]FSDLog_Spawning: Adding Stationary Encounter to room: RMA_BXE_Large_B with difficulty: 190.500000, room size modifier: 1.500000
[2025.11.02-08.55.51:591][618]FSDLog_Spawning: No Mobile Encounter in room: RMA_RookieRandom_BigC_BXE
[2025.11.02-08.55.51:591][618]FSDLog_Spawning: USpawningBlueprintLibrary::CreateEnemyGroup - Creating group of 134.100006 difficulty (447.000000 modified by multiplier 0.300000), excessFromLastWave: 0.000000, Diversity: 2 constant pressure: 0
[2025.11.02-08.55.51:720][618]FSDLog_Procedural: EncounterManager::AddEncounter - Runtime 0.129236
[2025.11.02-08.55.51:720][618]FSDLog_Spawning: Adding Stationary Encounter to room: RMA_RookieRandom_BigC_BXE with difficulty: 223.500000, room size modifier: 1.500000
[2025.11.02-08.55.51:720][618]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.53:893][775]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (1322331/3568060), Verts (1431106/6985741), Faces (311619/1519725)
[2025.11.02-08.55.53:917][775]FSDLog_Terrain: OnBaseLayerCommitDone 11
[2025.11.02-08.55.53:919][775]FSDLog_Procedural: Count Veins: RES_VEIN_Expenite , Target 250.000000, Actual 224.660248
[2025.11.02-08.55.53:920][775]FSDLog_Procedural: Count Veins: RES_VEIN_Croppa , Target 0.000000, Actual 0.000000
[2025.11.02-08.55.53:922][775]FSDLog_Procedural: Count Veins: Red Sugar , Target 36.000000, Actual 35.992001
[2025.11.02-08.55.53:922][775]FSDLog_Procedural: Resource: RES_VEIN_Expenite Is missing 25.339752 amount, adding more veins
[2025.11.02-08.55.53:922][775]FSDLog_Procedural: Resource (Distributed): RES_VEIN_Expenite Spawning 316.746887 length, in room 1
[2025.11.02-08.55.53:959][778]FSDLog_Procedural: Created Carved resource RES_CARVED_RedSugar Desired: 8 Spawned: 1 Overflow: 0.000000
[2025.11.02-08.55.53:959][778]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.54:085][793]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (67875/2319039), Verts (241987/5843474), Faces (53354/1272231)
[2025.11.02-08.55.54:103][793]FSDLog_Terrain: OnBaseLayerCommitDone 12
[2025.11.02-08.55.54:103][793]FSDLog_Terrain: ADeepCSGWorld::BaseLayerCommit 0, 1
[2025.11.02-08.55.54:124][796]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (0/2251164), Verts (0/5601487), Faces (0/1218877)
[2025.11.02-08.55.54:125][796]FSDLog_Terrain: OnBaseLayerCommitDone 13
[2025.11.02-08.55.56:171][959]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
[2025.11.02-08.55.57:055][985]FSDLog_Terrain: Spawned 6577 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_RubbleFloor--123(0-3).DebrisMesh_2147475600
[2025.11.02-08.55.57:057][985]FSDLog_Terrain: Spawned 6606 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_RubbleFloor--123(0-3).DebrisMesh_2147475600
[2025.11.02-08.55.57:059][985]FSDLog_Terrain: Spawned 1289 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_RubbleFloor--123(0-3).DebrisMesh_2147475600
[2025.11.02-08.55.57:059][985]FSDLog_Terrain: Spawned 1337 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_RubbleFloor--123(0-3).DebrisMesh_2147475600
[2025.11.02-08.55.57:067][986]FSDLog_Terrain: Spawned 5751 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_GrassSmall--2K(0-50).DebrisMesh_2147475599
[2025.11.02-08.55.57:110][991]FSDLog_Terrain: Spawned 1190 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_Vines--2K(0-50)_b5C(0-30).DebrisMesh_2147475594
[2025.11.02-08.55.57:110][991]FSDLog_Terrain: Spawned 1164 (0 ms) debris instance of type /Game/Maps/LVL_Procedural.LVL_Procedural:PersistentLevel.DBA_FungusBogs_C_2147475601.D_Vines--2K(0-50)_b5C(0-30).DebrisMesh_2147475594
[2025.11.02-08.55.57:265][  9]FSDLog_Terrain: ADeepCSGWorld::GarbageCollect. Planes (1932117/4247295), Verts (2695713/9125870), Faces (585221/2001038)
[2025.11.02-08.55.57:292][  9]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 760
[2025.11.02-08.55.57:292][  9]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 320
[2025.11.02-08.55.57:293][  9]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 1968
[2025.11.02-08.55.57:293][  9]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 108
[2025.11.02-08.55.57:341][ 14]BP_PlayerController: [BP_NetworkPlayerController_BXE_C_2147475752] Asynch Generation Done
[2025.11.02-08.56.00:043][319]FSDLog_Terrain: OnFinalLayerCommitDone
[2025.11.02-08.56.00:045][319]FSDLog_Procedural: Count Veins Final: RES_VEIN_Expenite , Target 250.000000, Actual 264.902100
[2025.11.02-08.56.00:046][319]FSDLog_Procedural: Count Veins Final: RES_VEIN_Croppa , Target 0.000000, Actual 0.000000
[2025.11.02-08.56.00:046][319]FSDLog_Audio: Music: Play Sound AmbienceFungusBog_Ambix_Cue in Category: MSC_Ambient
[2025.11.02-08.56.00:056][320]FSDLog_Audio: Music: Play Sound ST_AreYouSane_Master_Looping_MSS in Category: MSC_Music
[2025.11.02-08.56.01:112][440]LogGameMode: Display: Match State Changed from WaitingToStart to InProgress
[2025.11.02-08.56.01:119][440]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
[2025.11.02-08.56.01:119][440]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
[2025.11.02-08.56.01:120][440]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.56.01:120][440]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
[2025.11.02-08.56.01:120][440]LogSlate: Slate User Unregistered.  User Index 8
[2025.11.02-08.56.01:121][440]FSDLog_Gameflow: AFSDPlayerController OnPlayerCharacterPossesed triggered
[2025.11.02-08.56.01:121][440]FSDLog_Gameflow: FADING (64.172803): Screen_LoadLevel_C_2147475698: BlackoutScreen
[2025.11.02-08.56.01:121][440]FSDLog_Gameflow: 64.200005 Screen_LoadLevel_C_2147475698: BlackoutScreen
[2025.11.02-08.56.01:125][440]LogGameState: Match State Changed from WaitingToStart to InProgress
[2025.11.02-08.56.01:131][441]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
[2025.11.02-08.56.01:131][441]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
[2025.11.02-08.56.01:131][441]FSDLog_Gameflow: UPlayerHealthComponent rejoinState load damage for Toxin_deathgas 0: 0.000000
[2025.11.02-08.56.01:133][441]FSDLog_Spawning: UEnemyWaveManager::TickComponent - Setting Time to next spawn 262.000000
[2025.11.02-08.56.01:134][441]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load
[2025.11.02-08.56.01:135][441]LogMovieScene: Starting new camera cut: 'CineCameraActor_2'
[2025.11.02-08.56.01:226][450]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
[2025.11.02-08.56.01:226][450]LogStreaming: Display: FlushAsyncLoading(2454): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.56.01:257][450]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.56.01:295][451]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load
[2025.11.02-08.56.01:297][451]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load
[2025.11.02-08.56.01:360][456]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0
[2025.11.02-08.56.01:360][456]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds
[2025.11.02-08.56.01:360][456]LVL_Loading_StartRun: [LVL_Loading_StartRun_C_0] LoaderSequence STOP
[2025.11.02-08.56.01:385][456]LVL_Loading_Elevator: [LVL_Loading_Elevator_C_1] LoaderSequence STOP
[2025.11.02-08.56.01:385][456]FSDLog_Gameflow: UFSDGameInstance::UpdateActiveWorlds Switch To Normal World
[2025.11.02-08.56.01:386][456]FSDLog_Gameflow: UFSDGameInstance::SetLoaderWorldVisible 0
[2025.11.02-08.56.01:387][456]FSDLog_Gameflow: FADING (64.417811): Screen_LoadLevel_C_2147475698: FadeScreenFromBlack
[2025.11.02-08.56.01:387][456]FSDLog_Gameflow: 64.400002 Screen_LoadLevel_C_2147475698: FadeScreenFromBlack
[2025.11.02-08.56.02:769][591]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.56.02:770][591]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2025.11.02-08.56.02:872][594]HUD_Main_BXE: [HUD_Main_C_2147473956] HUD_Main: Constructing
[2025.11.02-08.56.02:873][594]BP_HUD: [BP_HUD_BXE_C_2147473983] HUD Spawned: HUD_Main_C_2147473956
[2025.11.02-08.56.02:896][595]LogStreaming: Display: FlushAsyncLoading(2478): 1 QueuedPackages, 11 AsyncPackages
[2025.11.02-08.56.02:978][596]HUD_Flares: [BS_Flares_330] Flare  Count: 4
[2025.11.02-08.56.11:648][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 324
[2025.11.02-08.56.11:648][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 360
[2025.11.02-08.56.11:648][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 216
[2025.11.02-08.56.11:648][699]FSDLog_Pathfinder: ADeepCSGWorld::RegisterPFCollider with large bounding box 360
[2025.11.02-08.56.13:659][928]FSDLog_Loading: AsyncLoadAssets call was empty and there was nothing to load
[2025.11.02-08.56.13:660][928]LogSlate: Took 0.000808 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
[2025.11.02-08.56.13:662][928]LogStreaming: Display: FlushAsyncLoading(2500): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.56.20:042][611]LogMetaSound: Display: []: rEPEAT 0.000000
[2025.11.02-08.56.20:212][631]LogMetaSound: Display: []: rEPEAT 1.000000
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: request failed, libcurl error: 65 (Send failed since rewinding of the data stream failed)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 0 (Found bundle for host: 0x25491a07a20 [serially])
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 1 (Re-using existing connection with host api.stathat.com)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 2 (We are completely uploaded and fine)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 3 (TLSv1.3 (IN), TLS alert, close notify (256):)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 4 (Connection died, retrying a fresh connect (retry count: 1))
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 5 (state.rewindbeforesend = TRUE)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 6 (Closing connection)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 7 (TLSv1.3 (OUT), TLS alert, close notify (256):)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 8 (Issue another request to this URL: 'https://api.stathat.com/ez')
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 9 (  Trying 13.216.185.76:443...)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 10 (Connected to api.stathat.com (13.216.185.76) port 443)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 11 (ALPN: curl offers http/1.1)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 12 (SSL reusing session ID)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 13 (TLSv1.3 (OUT), TLS handshake, Client hello (1):)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 14 (TLSv1.3 (IN), TLS handshake, Server hello (2):)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 15 (TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 16 (TLSv1.3 (IN), TLS handshake, Certificate (11):)
[2025.11.02-08.56.21:417][764]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 17 (TLSv1.3 (IN), TLS handshake, CERT verify (15):)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 18 (TLSv1.3 (IN), TLS handshake, Finished (20):)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 19 (TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 20 (TLSv1.3 (OUT), TLS handshake, Finished (20):)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 21 (SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 22 (ALPN: server accepted http/1.1)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 23 (Server certificate:)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 24 ( subject: CN=api.stathat.com)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 25 ( start date: Sep 19 01:17:26 2025 GMT)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 26 ( expire date: Dec 18 01:17:25 2025 GMT)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 27 ( subjectAltName: host "api.stathat.com" matched cert's "api.stathat.com")
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 28 ( issuer: C=US; O=Let's Encrypt; CN=E8)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 29 ( SSL certificate verify ok.)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 30 (using HTTP/1.1)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 31 (necessary data rewind wasn't possible)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 32 (Closing connection)
[2025.11.02-08.56.21:417][765]LogHttp: Warning: 00000255141FCCD0: libcurl info message cache 33 (TLSv1.3 (OUT), TLS alert, close notify (256):)
[2025.11.02-08.56.21:417][765]LogTemp: UStatHat::OnProcessRequestComplete() failed
[2025.11.02-08.56.24:973][137]LogMetaSound: Display: []: rEPEAT 0.000000
[2025.11.02-08.56.25:163][157]LogMetaSound: Display: []: rEPEAT 1.000000
[2025.11.02-08.56.39:581][908]LogBlueprintUserMessages: [HUD_NegotiationProgress_C_2147475327] Defenders : 1
[2025.11.02-08.56.40:885][ 56]LogBlueprintUserMessages: [HUD_NegotiationProgress_C_2147475327] Defenders : 0
[2025.11.02-08.56.40:885][ 56]BP_Barrier: [BP_Barrier_C_2147475346] Open
[2025.11.02-08.56.40:913][ 59]LogAudioStreamCaching: Warning: Chunk 2 not yet loaded for playing SoundWave 'BarrierDrone_BarrierStartUp_LightningLoop_01'. LikelyReason: Not loaded fast enough, IO Saturation.
[2025.11.02-08.56.45:137][500]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard).
[2025.11.02-08.56.45:137][500]LogWindowsTextInputMethodSystem: Activated input method: English (United States) - (Keyboard).
[2025.11.02-08.56.51:332][156]BP_Barrier: [BP_Barrier_C_2147475346] Close
[2025.11.02-08.56.51:333][156]BP_Barrier: [BP_Barrier_C_2147475346] Players Through The Portal : 1
[2025.11.02-08.56.58:622][ 15]FSDLog_Spawning: UEncounterManager::TickComponent(), Spawning PrePlacedItem : ED_Shatterclaw_Slammer in room 1
[2025.11.02-08.56.58:624][ 15]FSDLog_Spawning: UEncounterManager::TickComponent(), Spawning PrePlacedItem : ED_Shatterclaw_Slammer in room 1
[2025.11.02-08.56.58:627][ 15]FSDLog_Spawning: UEncounterManager::TickComponent(), Spawning PrePlacedItem : ED_Shatterclaw_Slammer in room 1
[2025.11.02-08.58.22:165][ 28]FSDLog_Gameflow: UFSDGameInstance::GetViewPortSize
[2025.11.02-08.58.22:165][ 28]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture
[2025.11.02-08.58.22:166][ 28]LogStreaming: Display: FlushAsyncLoading(2509): 1 QueuedPackages, 0 AsyncPackages
[2025.11.02-08.58.22:220][ 28]LogSlate: New Slate User Created. Platform User Id 9, User Index 9, Is Virtual User: 1
[2025.11.02-08.58.22:220][ 28]LogSlate: Slate User Registered.  User Index 9, Is Virtual User: 1
[2025.11.02-08.58.22:221][ 28]LogSlate: Slate User Unregistered.  User Index 9
[2025.11.02-08.58.22:221][ 28]LogSlate: Slate User Destroyed.  User Index 9, Is Virtual User: 1
[2025.11.02-08.58.22:221][ 28]LogSlate: Slate User Unregistered.  User Index 9
[2025.11.02-08.58.22:224][ 28]FSDLog_Character: CreateStartingEquipmentWhenItemsLoaded: Primary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, Secondary: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
Comments
No comments yet.
Loading comments...
Loading comments...
0 comments loaded

You need to join this project to comment on issues. Join Project