SteelFactory_2.log 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848
  1. Log file open, 09/10/24 12:59:58
  2. LogWindows: Failed to load 'aqProf.dll' (GetLastError=0)
  3. LogWindows: File 'aqProf.dll' does not exist
  4. LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
  5. LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=0)
  6. LogWindows: File 'VtuneApi.dll' does not exist
  7. LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=0)
  8. LogWindows: File 'VtuneApi32e.dll' does not exist
  9. LogWindows: Started CrashReportClient (pid=31636)
  10. LogWindows: Custom abort handler registered for crash reporting.
  11. LogInit: Display: Running engine for game: SteelFactory
  12. LogCore: UnrealTraceServer: Trace store launch successful
  13. LogCore: Initializing trace...
  14. LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark'
  15. LogCore: Finished trace initialization.
  16. LogCsvProfiler: Display: Metadata set : platform="Windows"
  17. LogCsvProfiler: Display: Metadata set : config="Development"
  18. LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.1-CL-23901901"
  19. LogCsvProfiler: Display: Metadata set : engineversion="5.1.1-23901901+++UE5+Release-5.1"
  20. LogCsvProfiler: Display: Metadata set : commandline="" ../../../../../UnrealProject/SteelFactory/SteelFactory.uproject""
  21. LogCsvProfiler: Display: Metadata set : os="Windows 10 (20H2) [10.0.19042.985] "
  22. LogCsvProfiler: Display: Metadata set : cpu="AuthenticAMD|AMD Ryzen 9 3900X 12-Core Processor"
  23. LogCsvProfiler: Display: Metadata set : pgoenabled="0"
  24. LogCsvProfiler: Display: Metadata set : loginid="3c66924e469b52283c8d80ac2a3a8533"
  25. LogCsvProfiler: Display: Metadata set : asan="0"
  26. LogCsvProfiler: Display: Metadata set : llm="0"
  27. LogStats: Stats thread started at 0.353183
  28. LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: ''
  29. LogInit: Session CrashGUID >====================================================
  30. Session CrashGUID > UECC-Windows-40692E54484C35B7570F7F96075EA34B
  31. Session CrashGUID >====================================================
  32. LogConfig: Display: Loading IOS ini files took 0.03 seconds
  33. LogConfig: Display: Loading HoloLens ini files took 0.03 seconds
  34. LogConfig: Display: Loading Android ini files took 0.03 seconds
  35. LogConfig: Display: Loading VulkanPC ini files took 0.03 seconds
  36. LogConfig: Display: Loading Mac ini files took 0.03 seconds
  37. LogConfig: Display: Loading TVOS ini files took 0.04 seconds
  38. LogConfig: Display: Loading Windows ini files took 0.04 seconds
  39. LogConfig: Display: Loading Unix ini files took 0.04 seconds
  40. LogConfig: Display: Loading LinuxArm64 ini files took 0.04 seconds
  41. LogConfig: Display: Loading Linux ini files took 0.04 seconds
  42. LogPluginManager: Mounting Engine plugin FastBuildController
  43. LogPluginManager: Mounting Engine plugin Bridge
  44. LogPluginManager: Mounting Engine plugin MeshPainting
  45. LogPluginManager: Mounting Engine plugin TraceUtilities
  46. LogPluginManager: Mounting Engine plugin EnhancedInput
  47. LogPluginManager: Mounting Engine plugin XGEController
  48. LogPluginManager: Mounting Engine plugin Paper2D
  49. LogPluginManager: Mounting Engine plugin BackChannel
  50. LogPluginManager: Mounting Engine plugin AutomationUtils
  51. LogPluginManager: Mounting Engine plugin ChaosCaching
  52. LogPluginManager: Mounting Engine plugin ChaosCloth
  53. LogPluginManager: Mounting Engine plugin ChaosClothEditor
  54. LogPluginManager: Mounting Engine plugin ChaosNiagara
  55. LogPluginManager: Mounting Engine plugin ChaosUserDataPT
  56. LogPluginManager: Mounting Engine plugin ChaosEditor
  57. LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
  58. LogPluginManager: Mounting Engine plugin Dataflow
  59. LogPluginManager: Mounting Engine plugin FullBodyIK
  60. LogPluginManager: Mounting Engine plugin GeometryFlow
  61. LogPluginManager: Mounting Engine plugin Iris
  62. LogPluginManager: Mounting Engine plugin Landmass
  63. LogPluginManager: Mounting Engine plugin CharacterAI
  64. LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
  65. LogPluginManager: Mounting Engine plugin MeshLODToolset
  66. LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp
  67. LogPluginManager: Mounting Engine plugin OpenImageDenoise
  68. LogPluginManager: Mounting Engine plugin PlanarCut
  69. LogPluginManager: Mounting Engine plugin ProxyLODPlugin
  70. LogPluginManager: Mounting Engine plugin PythonScriptPlugin
  71. LogPluginManager: Mounting Engine plugin SkeletalReduction
  72. LogPluginManager: Mounting Engine plugin UVEditor
  73. LogPluginManager: Mounting Engine plugin Water
  74. LogPluginManager: Mounting Engine plugin PlatformCrypto
  75. LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis
  76. LogPluginManager: Mounting Engine plugin ControlRigSpline
  77. LogPluginManager: Mounting Engine plugin ControlRig
  78. LogPluginManager: Mounting Engine plugin IKRig
  79. LogPluginManager: Mounting Engine plugin InterchangeEditor
  80. LogPluginManager: Mounting Engine plugin Interchange
  81. LogPluginManager: Found config from plugin[Interchange] Game
  82. LogPluginManager: Mounting Engine plugin ActorSequence
  83. LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
  84. LogPluginManager: Mounting Engine plugin Niagara
  85. LogPluginManager: Mounting Engine plugin OnlineBase
  86. LogPluginManager: Mounting Engine plugin OnlineSubsystem
  87. LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
  88. LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
  89. LogPluginManager: Mounting Engine plugin TemplateSequence
  90. LogPluginManager: Mounting Engine plugin InterchangeTests
  91. LogPluginManager: Mounting Engine plugin TcpMessaging
  92. LogPluginManager: Mounting Engine plugin UdpMessaging
  93. LogPluginManager: Mounting Engine plugin OnlineServices
  94. LogPluginManager: Mounting Engine plugin ActorLayerUtilities
  95. LogPluginManager: Mounting Engine plugin Takes
  96. LogPluginManager: Mounting Engine plugin AndroidMoviePlayer
  97. LogPluginManager: Mounting Engine plugin AndroidPermission
  98. LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector
  99. LogPluginManager: Mounting Engine plugin AnimationModifierLibrary
  100. LogPluginManager: Mounting Engine plugin AppleMoviePlayer
  101. LogPluginManager: Mounting Engine plugin AlembicImporter
  102. LogPluginManager: Mounting Engine plugin SequencerScripting
  103. LogPluginManager: Mounting Engine plugin ArchVisCharacter
  104. LogPluginManager: Mounting Engine plugin AssetTags
  105. LogPluginManager: Mounting Engine plugin AudioCapture
  106. LogPluginManager: Mounting Engine plugin AudioSynesthesia
  107. LogPluginManager: Mounting Engine plugin CableComponent
  108. LogPluginManager: Mounting Engine plugin AndroidFileServer
  109. LogPluginManager: Mounting Engine plugin ChunkDownloader
  110. LogPluginManager: Mounting Engine plugin CustomMeshComponent
  111. LogPluginManager: Mounting Engine plugin AudioWidgets
  112. LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
  113. LogPluginManager: Mounting Engine plugin GoogleCloudMessaging
  114. LogPluginManager: Mounting Engine plugin GeometryCache
  115. LogPluginManager: Mounting Engine plugin AppleImageUtils
  116. LogPluginManager: Mounting Engine plugin InputDebugging
  117. LogPluginManager: Mounting Engine plugin GooglePAD
  118. LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
  119. LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector
  120. LogPluginManager: Mounting Engine plugin MeshModelingToolset
  121. LogPluginManager: Mounting Engine plugin GeometryProcessing
  122. LogPluginManager: Mounting Engine plugin Metasound
  123. LogPluginManager: Mounting Engine plugin MobilePatchingUtils
  124. LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
  125. LogPluginManager: Mounting Engine plugin LevelSequenceEditor
  126. LogPluginManager: Mounting Engine plugin PropertyAccessEditor
  127. LogPluginManager: Mounting Engine plugin ResonanceAudio
  128. LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector
  129. LogPluginManager: Mounting Engine plugin SignificanceManager
  130. LogPluginManager: Mounting Engine plugin Synthesis
  131. LogPluginManager: Mounting Engine plugin WaveTable
  132. LogPluginManager: Mounting Engine plugin WebMMoviePlayer
  133. LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
  134. LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
  135. LogPluginManager: Mounting Engine plugin GameplayCameras
  136. LogPluginManager: Mounting Engine plugin CesiumForUnreal
  137. LogPluginManager: Found config from plugin[CesiumForUnreal] Engine
  138. LogPluginManager: Mounting Engine plugin AssetManagerEditor
  139. LogPluginManager: Mounting Engine plugin SunPosition
  140. LogPluginManager: Mounting Engine plugin BlueprintHeaderView
  141. LogPluginManager: Mounting Engine plugin CryptoKeys
  142. LogPluginManager: Mounting Engine plugin CurveEditorTools
  143. LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
  144. LogPluginManager: Mounting Engine plugin SoundFields
  145. LogPluginManager: Mounting Engine plugin EditorDebugTools
  146. LogPluginManager: Mounting Engine plugin FacialAnimation
  147. LogPluginManager: Mounting Engine plugin GeometryMode
  148. LogPluginManager: Mounting Engine plugin MacGraphicsSwitching
  149. LogPluginManager: Mounting Engine plugin GameplayTagsEditor
  150. LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
  151. LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard
  152. LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode
  153. LogPluginManager: Mounting Engine plugin GLTFImporter
  154. LogPluginManager: Mounting Engine plugin SequencerAnimTools
  155. LogPluginManager: Mounting Engine plugin CameraShakePreviewer
  156. LogPluginManager: Mounting Engine plugin StylusInput
  157. LogPluginManager: Mounting Engine plugin SpeedTreeImporter
  158. LogPluginManager: Mounting Engine plugin MaterialAnalyzer
  159. LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities
  160. LogPluginManager: Mounting Engine plugin DatasmithContent
  161. LogPluginManager: Mounting Engine plugin GLTFExporter
  162. LogPluginManager: Mounting Engine plugin VariantManager
  163. LogPluginManager: Mounting Engine plugin VariantManagerContent
  164. LogPluginManager: Mounting Engine plugin PluginBrowser
  165. LogPluginManager: Mounting Engine plugin DataValidation
  166. LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess
  167. LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess
  168. LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess
  169. LogPluginManager: Mounting Engine plugin PerforceSourceControl
  170. LogPluginManager: Mounting Engine plugin DumpGPUServices
  171. LogPluginManager: Mounting Engine plugin GitSourceControl
  172. LogPluginManager: Mounting Engine plugin PluginUtils
  173. LogPluginManager: Mounting Engine plugin AnimationSharing
  174. LogPluginManager: Mounting Engine plugin PlasticSourceControl
  175. LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess
  176. LogPluginManager: Mounting Engine plugin PixWinPlugin
  177. LogPluginManager: Mounting Engine plugin TextureFormatOodle
  178. LogPluginManager: Mounting Engine plugin NullSourceCodeAccess
  179. LogPluginManager: Mounting Engine plugin SubversionSourceControl
  180. LogPluginManager: Mounting Engine plugin TraceDataFilters
  181. LogPluginManager: Mounting Engine plugin UObjectPlugin
  182. LogPluginManager: Mounting Engine plugin PropertyAccessNode
  183. LogPluginManager: Mounting Engine plugin AISupport
  184. LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess
  185. LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess
  186. LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess
  187. LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
  188. LogPluginManager: Mounting Engine plugin OodleNetwork
  189. LogPluginManager: Mounting Engine plugin AndroidMedia
  190. LogPluginManager: Mounting Engine plugin AvfMedia
  191. LogPluginManager: Mounting Engine plugin MediaCompositing
  192. LogPluginManager: Mounting Engine plugin MediaPlate
  193. LogPluginManager: Mounting Engine plugin ImgMedia
  194. LogPluginManager: Mounting Engine plugin MediaPlayerEditor
  195. LogPluginManager: Mounting Engine plugin WmfMedia
  196. LogPluginManager: Mounting Engine plugin WebMMedia
  197. LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource
  198. LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource
  199. LogPluginManager: Mounting Engine plugin LightMixer
  200. LogPluginManager: Mounting Engine plugin ObjectMixer
  201. LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay
  202. LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS
  203. LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource
  204. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Bridge/Content/' mounted to '/Bridge/'
  205. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
  206. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
  207. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
  208. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
  209. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
  210. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
  211. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
  212. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/GeometryFlow/Content/' mounted to '/GeometryFlow/'
  213. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/Landmass/Content/' mounted to '/Landmass/'
  214. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
  215. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/MeshLODToolset/Content/' mounted to '/MeshLODToolset/'
  216. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/MeshModelingToolsetExp/Content/' mounted to '/MeshModelingToolsetExp/'
  217. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
  218. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/UVEditor/Content/' mounted to '/UVEditor/'
  219. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/Water/Content/' mounted to '/Water/'
  220. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
  221. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
  222. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
  223. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
  224. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
  225. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
  226. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
  227. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
  228. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
  229. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/MeshModelingToolset/Content/' mounted to '/MeshModelingToolset/'
  230. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
  231. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
  232. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
  233. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
  234. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
  235. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Marketplace/CesiumForUnreal/Content/' mounted to '/CesiumForUnreal/'
  236. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/SunPosition/Content/' mounted to '/SunPosition/'
  237. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
  238. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
  239. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ModelingToolsEditorMode/Content/' mounted to '/ModelingToolsEditorMode/'
  240. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/GLTFImporter/Content/' mounted to '/GLTFImporter/'
  241. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
  242. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
  243. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
  244. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
  245. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
  246. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
  247. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
  248. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
  249. SourceControl: Source control is disabled
  250. SourceControl: Source control is disabled
  251. LogInit: Using libcurl 7.83.1
  252. LogInit: - built for Windows
  253. LogInit: - supports SSL with OpenSSL/1.1.1n
  254. LogInit: - supports HTTP deflate (compression) using libz 1.2.12
  255. LogInit: - other features:
  256. LogInit: CURL_VERSION_SSL
  257. LogInit: CURL_VERSION_LIBZ
  258. LogInit: CURL_VERSION_IPV6
  259. LogInit: CURL_VERSION_ASYNCHDNS
  260. LogInit: CURL_VERSION_LARGEFILE
  261. LogInit: CurlRequestOptions (configurable via config and command line):
  262. LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate
  263. LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy
  264. LogInit: - bDontReuseConnections = false - Libcurl will reuse connections
  265. LogInit: - MaxHostConnections = 40 - Libcurl will limit the number of connections to a host
  266. LogInit: - LocalHostAddr = Default
  267. LogInit: - BufferSize = 65536
  268. LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
  269. LogOnline: OSS: Created online subsystem instance for: NULL
  270. LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
  271. PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
  272. LogInit: Build: ++UE5+Release-5.1-CL-23901901
  273. LogInit: Engine Version: 5.1.1-23901901+++UE5+Release-5.1
  274. LogInit: Compatible Engine Version: 5.1.0-23058290+++UE5+Release-5.1
  275. LogInit: Net CL: 23058290
  276. LogInit: OS: Windows 10 (20H2) [10.0.19042.985] (), CPU: AMD Ryzen 9 3900X 12-Core Processor , GPU: NVIDIA TITAN RTX
  277. LogInit: Compiled (64-bit): Jan 30 2023 05:19:00
  278. LogInit: Compiled with Visual C++: 19.29.30147.00
  279. LogInit: Build Configuration: Development
  280. LogInit: Branch Name: ++UE5+Release-5.1
  281. LogInit: Command Line:
  282. LogInit: Base Directory: e:/Epic Games/UE_5.1/Engine/Binaries/Win64/
  283. LogInit: Allocator: Mimalloc
  284. LogInit: Installed Engine Build: 1
  285. LogDevObjectVersion: Number of dev versions registered: 35
  286. LogDevObjectVersion: Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
  287. LogDevObjectVersion: Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
  288. LogDevObjectVersion: Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
  289. LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
  290. LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
  291. LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
  292. LogDevObjectVersion: Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
  293. LogDevObjectVersion: Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
  294. LogDevObjectVersion: Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
  295. LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
  296. LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 45
  297. LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
  298. LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
  299. LogDevObjectVersion: Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
  300. LogDevObjectVersion: Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
  301. LogDevObjectVersion: Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
  302. LogDevObjectVersion: Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
  303. LogDevObjectVersion: Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
  304. LogDevObjectVersion: Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
  305. LogDevObjectVersion: FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 80
  306. LogDevObjectVersion: FortniteNC (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
  307. LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 4
  308. LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
  309. LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
  310. LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
  311. LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
  312. LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
  313. LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
  314. LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
  315. LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 88
  316. LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 41
  317. LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
  318. LogDevObjectVersion: UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
  319. LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
  320. LogDevObjectVersion: UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
  321. LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
  322. LogInit: Object subsystem initialized
  323. LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
  324. LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
  325. LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
  326. LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
  327. LogConfig: Set CVar [[r.setres:1280x720]]
  328. LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
  329. LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
  330. LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
  331. LogConfig: Set CVar [[r.Occlusion.SingleRHIThreadStall:1]]
  332. LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
  333. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.VSync:0]]
  334. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]]
  335. [2024.09.10-04.59.58:835][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
  336. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created
  337. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created
  338. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
  339. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
  340. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
  341. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
  342. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
  343. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
  344. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
  345. [2024.09.10-04.59.58:835][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
  346. [2024.09.10-04.59.58:835][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
  347. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
  348. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
  349. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
  350. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
  351. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
  352. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
  353. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
  354. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
  355. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
  356. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
  357. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
  358. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
  359. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
  360. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
  361. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
  362. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
  363. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
  364. [2024.09.10-04.59.58:835][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
  365. [2024.09.10-04.59.58:835][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
  366. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
  367. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
  368. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
  369. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
  370. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
  371. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
  372. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
  373. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
  374. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
  375. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
  376. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
  377. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
  378. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.BlueprintClusteringEnabled:0]]
  379. [2024.09.10-04.59.58:835][ 0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
  380. [2024.09.10-04.59.58:836][ 0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
  381. [2024.09.10-04.59.58:836][ 0]LogConfig: Set CVar [[gc.VerifyGCObjectNames:1]]
  382. [2024.09.10-04.59.58:836][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
  383. [2024.09.10-04.59.58:836][ 0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
  384. [2024.09.10-04.59.58:836][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
  385. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
  386. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
  387. [2024.09.10-04.59.58:836][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine]
  388. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[DefaultPVRTCQuality:1]] deferred - dummy variable created
  389. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:1]] deferred - dummy variable created
  390. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created
  391. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created
  392. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created
  393. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created
  394. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created
  395. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created
  396. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created
  397. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created
  398. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created
  399. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created
  400. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created
  401. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created
  402. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created
  403. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created
  404. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created
  405. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created
  406. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created
  407. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created
  408. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created
  409. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created
  410. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created
  411. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created
  412. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created
  413. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created
  414. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created
  415. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created
  416. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created
  417. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created
  418. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created
  419. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created
  420. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created
  421. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created
  422. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created
  423. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created
  424. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created
  425. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created
  426. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created
  427. [2024.09.10-04.59.58:836][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created
  428. [2024.09.10-04.59.58:841][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
  429. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
  430. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
  431. [2024.09.10-04.59.58:841][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
  432. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
  433. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
  434. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
  435. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:100]]
  436. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
  437. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.History.GrandReprojection:1]]
  438. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
  439. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.Velocity.Extrapolation:1]]
  440. [2024.09.10-04.59.58:841][ 0]LogConfig: CVar [[r.TSR.Velocity.HoleFill:1]] deferred - dummy variable created
  441. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
  442. [2024.09.10-04.59.58:841][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
  443. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
  444. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]]
  445. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
  446. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
  447. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
  448. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
  449. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
  450. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
  451. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
  452. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
  453. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
  454. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.AOQuality:2]]
  455. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]]
  456. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
  457. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
  458. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
  459. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
  460. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
  461. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
  462. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
  463. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
  464. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
  465. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
  466. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
  467. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
  468. [2024.09.10-04.59.58:841][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
  469. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
  470. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
  471. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
  472. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
  473. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
  474. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
  475. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenSpaceBentNormal:1]]
  476. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
  477. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
  478. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
  479. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
  480. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
  481. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
  482. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
  483. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
  484. [2024.09.10-04.59.58:841][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
  485. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
  486. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
  487. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.LumenScene.SurfaceCache.CardCaptureRefreshFraction:0.125]]
  488. [2024.09.10-04.59.58:842][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
  489. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
  490. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
  491. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
  492. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
  493. [2024.09.10-04.59.58:842][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
  494. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
  495. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
  496. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
  497. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
  498. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
  499. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
  500. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
  501. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
  502. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
  503. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
  504. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
  505. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.BloomQuality:5]]
  506. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:70.711]]
  507. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
  508. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
  509. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Tonemapper.GrainQuantization:1]]
  510. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
  511. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
  512. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
  513. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]]
  514. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]]
  515. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]]
  516. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]]
  517. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]]
  518. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]]
  519. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]]
  520. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]]
  521. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]]
  522. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]]
  523. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]]
  524. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
  525. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
  526. [2024.09.10-04.59.58:842][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
  527. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
  528. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
  529. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
  530. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
  531. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
  532. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
  533. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
  534. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
  535. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
  536. [2024.09.10-04.59.58:842][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
  537. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
  538. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]]
  539. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]]
  540. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
  541. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
  542. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.DetailMode:2]]
  543. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
  544. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
  545. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]]
  546. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
  547. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]]
  548. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
  549. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
  550. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
  551. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
  552. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
  553. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
  554. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
  555. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
  556. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
  557. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
  558. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
  559. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
  560. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
  561. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
  562. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
  563. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
  564. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
  565. [2024.09.10-04.59.58:842][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
  566. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
  567. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
  568. [2024.09.10-04.59.58:842][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
  569. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
  570. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
  571. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
  572. [2024.09.10-04.59.58:842][ 0]LogConfig: CVar [[r.HairStrands.Interpolation.UseSingleGuide:0]] deferred - dummy variable created
  573. [2024.09.10-04.59.58:842][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
  574. [2024.09.10-04.59.58:853][ 0]LogD3D12RHI: Aftermath initialized
  575. [2024.09.10-04.59.58:853][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
  576. [2024.09.10-04.59.59:077][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA TITAN RTX (Max supported Feature Level 12_2, shader model 6.6)
  577. [2024.09.10-04.59.59:077][ 0]LogD3D12RHI: Adapter has 24268MB of dedicated video memory, 0MB of dedicated system memory, and 16337MB of shared system memory, 2 output[s]
  578. [2024.09.10-04.59.59:084][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (Max supported Feature Level 12_1, shader model 6.2)
  579. [2024.09.10-04.59.59:084][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16337MB of shared system memory, 0 output[s]
  580. [2024.09.10-04.59.59:247][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA TITAN RTX (Max supported Feature Level 12_2, shader model 6.6)
  581. [2024.09.10-04.59.59:247][ 0]LogD3D12RHI: Adapter has 24268MB of dedicated video memory, 0MB of dedicated system memory, and 16337MB of shared system memory, 0 output[s]
  582. [2024.09.10-04.59.59:247][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
  583. [2024.09.10-04.59.59:247][ 0]LogInit: Selected Device Profile: [WindowsEditor]
  584. [2024.09.10-04.59.59:247][ 0]LogHAL: Display: Platform has ~ 32 GB [34262425600 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
  585. [2024.09.10-04.59.59:247][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows]
  586. [2024.09.10-04.59.59:247][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile []
  587. [2024.09.10-04.59.59:247][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
  588. [2024.09.10-04.59.59:248][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
  589. [2024.09.10-04.59.59:248][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
  590. [2024.09.10-04.59.59:248][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
  591. [2024.09.10-04.59.59:248][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
  592. [2024.09.10-04.59.59:248][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [e:/UnrealProject/SteelFactory/Saved/Config/WindowsEditor/Editor.ini]
  593. [2024.09.10-04.59.59:248][ 0]LogInit: Computer: PC-202102041234
  594. [2024.09.10-04.59.59:248][ 0]LogInit: User: Administrator
  595. [2024.09.10-04.59.59:248][ 0]LogInit: CPU Page size=4096, Cores=12
  596. [2024.09.10-04.59.59:248][ 0]LogInit: High frequency timer resolution =10.000000 MHz
  597. [2024.09.10-04.59.59:248][ 0]LogMemory: Memory total: Physical=31.9GB (32GB approx)
  598. [2024.09.10-04.59.59:248][ 0]LogMemory: Platform Memory Stats for WindowsEditor
  599. [2024.09.10-04.59.59:248][ 0]LogMemory: Process Physical Memory: 341.80 MB used, 355.08 MB peak
  600. [2024.09.10-04.59.59:248][ 0]LogMemory: Process Virtual Memory: 343.29 MB used, 343.29 MB peak
  601. [2024.09.10-04.59.59:248][ 0]LogMemory: Physical Memory: 24549.79 MB used, 8125.41 MB free, 32675.20 MB total
  602. [2024.09.10-04.59.59:248][ 0]LogMemory: Virtual Memory: 59099.58 MB used, 22594.62 MB free, 81694.20 MB total
  603. [2024.09.10-04.59.59:248][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
  604. [2024.09.10-04.59.59:254][ 0]LogWindows: WindowsPlatformFeatures enabled
  605. [2024.09.10-04.59.59:263][ 0]LogInit: Physics initialised using underlying interface: Chaos
  606. [2024.09.10-04.59.59:264][ 0]LogInit: Overriding language with editor language configuration option (en).
  607. [2024.09.10-04.59.59:264][ 0]LogInit: Overriding language with editor locale configuration option (en).
  608. [2024.09.10-04.59.59:520][ 0]LogInit: Setting process to per monitor DPI aware
  609. [2024.09.10-04.59.59:540][ 0]LogWindowsTextInputMethodSystem: Available input methods:
  610. [2024.09.10-04.59.59:540][ 0]LogWindowsTextInputMethodSystem: - 英语(美国) - (Keyboard).
  611. [2024.09.10-04.59.59:540][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 搜狗拼音输入法 (TSF IME).
  612. [2024.09.10-04.59.59:540][ 0]LogWindowsTextInputMethodSystem: Activated input method: 英语(美国) - (Keyboard).
  613. [2024.09.10-04.59.59:563][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
  614. [2024.09.10-04.59.59:564][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0
  615. [2024.09.10-04.59.59:668][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
  616. [2024.09.10-04.59.59:668][ 0]LogWindows: Attached monitors:
  617. [2024.09.10-04.59.59:668][ 0]LogWindows: resolution: 1920x1080, work area: (1920, 0) -> (3840, 1080), device: '\\.\DISPLAY1'
  618. [2024.09.10-04.59.59:668][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1080), device: '\\.\DISPLAY2' [PRIMARY]
  619. [2024.09.10-04.59.59:668][ 0]LogWindows: Found 2 attached monitors.
  620. [2024.09.10-04.59.59:668][ 0]LogWindows: Gathering driver information using Windows Setup API
  621. [2024.09.10-04.59.59:669][ 0]LogRHI: RHI Adapter Info:
  622. [2024.09.10-04.59.59:669][ 0]LogRHI: Name: NVIDIA TITAN RTX
  623. [2024.09.10-04.59.59:669][ 0]LogRHI: Driver Version: 546.17 (internal:31.0.15.4617, unified:546.17)
  624. [2024.09.10-04.59.59:669][ 0]LogRHI: Driver Date: 11-9-2023
  625. [2024.09.10-04.59.59:669][ 0]LogD3D12RHI: GPU DeviceId: 0x1e02 (for the marketing name, search the web for "GPU Device Id")
  626. [2024.09.10-04.59.59:669][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
  627. [2024.09.10-04.59.59:674][ 0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
  628. [2024.09.10-04.59.59:674][ 0]LogD3D12RHI: Emitting draw events for PIX profiling.
  629. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
  630. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
  631. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device1 is supported.
  632. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device2 is supported.
  633. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device3 is supported.
  634. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device4 is supported.
  635. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device5 is supported.
  636. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device6 is supported.
  637. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device7 is supported.
  638. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device8 is supported.
  639. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device9 is supported.
  640. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: ID3D12Device10 is supported.
  641. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: Bindless resources are supported
  642. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
  643. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported
  644. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
  645. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
  646. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
  647. [2024.09.10-04.59.59:828][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
  648. [2024.09.10-04.59.59:894][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
  649. [2024.09.10-04.59.59:894][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
  650. [2024.09.10-04.59.59:894][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
  651. [2024.09.10-04.59.59:917][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
  652. [2024.09.10-04.59.59:917][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
  653. [2024.09.10-04.59.59:918][ 0]LogRHI: Texture pool is 14805 MB (70% of 21150 MB)
  654. [2024.09.10-04.59.59:918][ 0]LogD3D12RHI: Async texture creation enabled
  655. [2024.09.10-04.59.59:918][ 0]LogD3D12RHI: RHI has support for 64 bit atomics
  656. [2024.09.10-04.59.59:957][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="e:/UnrealProject/SteelFactory/SteelFactory.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyReport_0.log" -log="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyLog_0.log" -project="e:/UnrealProject/SteelFactory/SteelFactory.uproject" -platform=all'
  657. [2024.09.10-04.59.59:957][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""e:/Epic Games/UE_5.1/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="e:/UnrealProject/SteelFactory/SteelFactory.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyReport_0.log" -log="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyLog_0.log" -project="e:/UnrealProject/SteelFactory/SteelFactory.uproject" -platform=all" ]
  658. [2024.09.10-04.59.59:984][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC
  659. [2024.09.10-04.59.59:984][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT
  660. [2024.09.10-04.59.59:984][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2
  661. [2024.09.10-04.59.59:984][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp
  662. [2024.09.10-04.59.59:984][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed
  663. [2024.09.10-04.59.59:984][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.8
  664. [2024.09.10-04.59.59:984][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll
  665. [2024.09.10-04.59.59:985][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.6.dll
  666. [2024.09.10-04.59.59:986][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.7.dll
  667. [2024.09.10-04.59.59:987][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll
  668. [2024.09.10-04.59.59:988][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle
  669. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android'
  670. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC'
  671. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT'
  672. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2'
  673. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient'
  674. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient'
  675. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient'
  676. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client'
  677. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi'
  678. [2024.09.10-04.59.59:996][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient'
  679. [2024.09.10-05.00.00:027][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'HoloLens'
  680. [2024.09.10-05.00.00:027][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'HoloLensClient'
  681. [2024.09.10-05.00.00:033][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS'
  682. [2024.09.10-05.00.00:033][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient'
  683. [2024.09.10-05.00.00:038][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux'
  684. [2024.09.10-05.00.00:038][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor'
  685. [2024.09.10-05.00.00:038][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer'
  686. [2024.09.10-05.00.00:038][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient'
  687. [2024.09.10-05.00.00:042][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64'
  688. [2024.09.10-05.00.00:042][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server'
  689. [2024.09.10-05.00.00:042][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client'
  690. [2024.09.10-05.00.00:045][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS'
  691. [2024.09.10-05.00.00:045][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient'
  692. [2024.09.10-05.00.00:052][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows'
  693. [2024.09.10-05.00.00:052][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor'
  694. [2024.09.10-05.00.00:052][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer'
  695. [2024.09.10-05.00.00:052][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient'
  696. [2024.09.10-05.00.00:052][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor
  697. [2024.09.10-05.00.00:063][ 0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
  698. [2024.09.10-05.00.00:066][ 0]LogTargetPlatformManager: Unable to find audio format BINKA from hinted modules, loading all potential format modules to find it
  699. [2024.09.10-05.00.00:067][ 0]LogTargetPlatformManager: Loaded format module AudioFormatADPCM
  700. [2024.09.10-05.00.00:067][ 0]LogTargetPlatformManager: ADPCM
  701. [2024.09.10-05.00.00:067][ 0]LogTargetPlatformManager: PCM
  702. [2024.09.10-05.00.00:070][ 0]LogTargetPlatformManager: Loaded format module AudioFormatBink
  703. [2024.09.10-05.00.00:070][ 0]LogTargetPlatformManager: BINKA
  704. [2024.09.10-05.00.00:070][ 0]LogTargetPlatformManager: Loaded format module AudioFormatOgg
  705. [2024.09.10-05.00.00:070][ 0]LogTargetPlatformManager: OGG
  706. [2024.09.10-05.00.00:070][ 0]LogTargetPlatformManager: Loaded format module AudioFormatOpus
  707. [2024.09.10-05.00.00:070][ 0]LogTargetPlatformManager: OPUS
  708. [2024.09.10-05.00.00:124][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it
  709. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat
  710. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL
  711. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL_MRT
  712. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL_TVOS
  713. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS
  714. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL_SM5
  715. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1
  716. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC
  717. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D
  718. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: PCD3D_SM6
  719. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: PCD3D_SM5
  720. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: PCD3D_ES31
  721. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: D3D_ES3_1_HOLOLENS
  722. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL
  723. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: GLSL_150_ES31
  724. [2024.09.10-05.00.00:132][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID
  725. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM
  726. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: VVM_1_0
  727. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat
  728. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: SF_VULKAN_SM5
  729. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID
  730. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: SF_VULKAN_ES31
  731. [2024.09.10-05.00.00:136][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID
  732. [2024.09.10-05.00.00:136][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
  733. [2024.09.10-05.00.00:139][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file ../../../../../UnrealProject/SteelFactory/DerivedDataCache/DDC.ddp not found, will not use a pak cache.
  734. [2024.09.10-05.00.00:139][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy.
  735. [2024.09.10-05.00.00:139][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file ../../../../../UnrealProject/SteelFactory/DerivedDataCache/Compressed.ddp not found, will not use a pak cache.
  736. [2024.09.10-05.00.00:139][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy.
  737. [2024.09.10-05.00.00:176][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1363 MiB)
  738. [2024.09.10-05.00.00:176][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache.
  739. [2024.09.10-05.00.00:176][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy.
  740. [2024.09.10-05.00.00:182][ 0]LogDerivedDataCache: Speed tests for C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache took 0.01 seconds
  741. [2024.09.10-05.00.00:182][ 0]LogDerivedDataCache: Display: Performance to C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Latency=0.03ms. RandomReadSpeed=1706.79MBs, RandomWriteSpeed=190.62MBs. Assigned SpeedClass 'Local'
  742. [2024.09.10-05.00.00:184][ 0]LogDerivedDataCache: Using Local data cache path C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Writable
  743. [2024.09.10-05.00.00:184][ 0]LogDerivedDataCache: Shared data cache path not found in *engine.ini, will not use an Shared cache.
  744. [2024.09.10-05.00.00:184][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy.
  745. [2024.09.10-05.00.00:184][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None
  746. [2024.09.10-05.00.00:184][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled
  747. [2024.09.10-05.00.00:184][ 0]LogShaderCompilers: Guid format shader working directory is 12 characters bigger than the processId version (../../../../../UnrealProject/SteelFactory/Intermediate/Shaders/WorkingDirectory/23232/).
  748. [2024.09.10-05.00.00:184][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/Administrator/AppData/Local/Temp/UnrealShaderWorkingDir/AB6428384863C0F35A138B98E98731B3/'.
  749. [2024.09.10-05.00.00:184][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine.
  750. [2024.09.10-05.00.00:184][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers.
  751. [2024.09.10-05.00.01:117][ 0]LogShaderCompilers: Display: Compiling shader autogen file: ../../../../../UnrealProject/SteelFactory/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush
  752. [2024.09.10-05.00.01:117][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
  753. [2024.09.10-05.00.01:486][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0
  754. [2024.09.10-05.00.01:551][ 0]LogSlate: Using FreeType 2.10.0
  755. [2024.09.10-05.00.01:552][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
  756. [2024.09.10-05.00.01:588][ 0]LogAssetRegistry: FAssetRegistry took 0.0116 seconds to start up
  757. [2024.09.10-05.00.01:595][ 0]LogEditorDomain: Display: EditorDomain is Disabled
  758. [2024.09.10-05.00.01:823][ 0]LogTexture: Display: Texture Encode Speed: FinalIfAvailable (editor).
  759. [2024.09.10-05.00.02:188][ 0]LogInit: Selected Device Profile: [WindowsEditor]
  760. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: Available device profiles:
  761. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8000][00000BC0F575D800 52] GlobalDefaults,
  762. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9A00][00000BC0F5770000 52] Windows,
  763. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9C00][00000BC0F5775000 52] WindowsEditor,
  764. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9400][00000BC0F4BAC800 52] WindowsServer,
  765. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF7C00][00000BC0F5FD0000 52] WindowsClient,
  766. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9000][00000BC0EAEC2800 52] IOS,
  767. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9E00][00000BC1014A0000 52] iPadAir2,
  768. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFA400][00000BC1014A7800 52] IPadPro,
  769. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFA600][00000BC1014A5000 52] iPadAir3,
  770. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF7E00][00000BC1014AA000 52] iPadAir4,
  771. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF7800][00000BC1014AC800 52] iPadAir5,
  772. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFAE00][00000BC0F577C800 52] iPadMini4,
  773. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF7000][00000BC101470000 52] iPadMini5,
  774. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFA000][00000BC101475000 52] iPadMini6,
  775. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFC200][00000BC10147C800 52] iPhone6S,
  776. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFC400][00000BC10147A000 52] iPhone7,
  777. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFC600][00000BC101477800 52] iPodTouch7,
  778. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8800][00000BC1014A2800 52] iPhone6SPlus,
  779. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFB200][00000BC1014C0000 52] iPhone7Plus,
  780. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9600][00000BC1014C5000 52] iPhoneSE,
  781. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8C00][00000BC1014C7800 52] iPhone8,
  782. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8600][00000BC1014CA000 52] iPhone8Plus,
  783. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFB800][00000BC1014CC800 52] iPhoneX,
  784. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFA800][00000BC101472800 52] iPhoneXS,
  785. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFCE00][00000BC1014E0000 52] iPhoneXSMax,
  786. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFAC00][00000BC1014E5000 52] iPhoneXR,
  787. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9200][00000BC1014E7800 52] iPhone11,
  788. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFCA00][00000BC1014EA000 52] iPhone11Pro,
  789. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF7200][00000BC1014EC800 52] iPhone11ProMax,
  790. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFB600][00000BC1014C2800 52] iPhoneSE2,
  791. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF9800][00000BC1014F0000 52] iPhone12Mini,
  792. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFBE00][00000BC1014F5000 52] iPhone12,
  793. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFA200][00000BC1014F7800 52] iPhone12Pro,
  794. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFBC00][00000BC1014FA000 52] iPhone12ProMax,
  795. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8A00][00000BC1014FC800 52] iPhone13Mini,
  796. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFBA00][00000BC1014E2800 52] iPhone13,
  797. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFC000][00000BC101500000 52] iPhone13Pro,
  798. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFD000][00000BC101505000 52] iPhone13ProMax,
  799. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8E00][00000BC101507800 52] iPhoneSE3,
  800. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFB400][00000BC10150A000 52] iPhone14,
  801. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF8400][00000BC10150C800 52] iPhone14Plus,
  802. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFD800][00000BC1014F2800 52] iPhone14Pro,
  803. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFCC00][00000BC101510000 52] iPhone14ProMax,
  804. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFDA00][00000BC101515000 52] iPadPro105,
  805. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFDE00][00000BC101517800 52] iPadPro129,
  806. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFE000][00000BC10151A000 52] iPadPro97,
  807. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFD200][00000BC10151C800 52] iPadPro2_129,
  808. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFD400][00000BC101502800 52] iPad5,
  809. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFC800][00000BC101530000 52] iPad6,
  810. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFE800][00000BC101535000 52] iPad7,
  811. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DF7600][00000BC101537800 52] iPad8,
  812. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFEA00][00000BC10153A000 52] iPad9,
  813. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFEE00][00000BC10153C800 52] iPad10,
  814. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFF000][00000BC101512800 52] iPadPro11,
  815. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFE200][00000BC101540000 52] iPadPro2_11,
  816. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFE400][00000BC101545000 52] iPadPro3_11,
  817. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFAA00][00000BC101547800 52] iPadPro4_11,
  818. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFF800][00000BC10154A000 52] iPadPro3_129,
  819. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFB000][00000BC10154C800 52] iPadPro4_129,
  820. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFFA00][00000BC101532800 52] iPadPro5_129,
  821. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC100DFFE00][00000BC101550000 52] iPadPro6_129,
  822. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC0FFE9FE00][00000BC101555000 52] AppleTV,
  823. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC0F6BEDE00][00000BC101557800 52] AppleTV4K,
  824. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101580000][00000BC10155A000 52] AppleTV2_4K,
  825. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101581200][00000BC10155C800 52] TVOS,
  826. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101582400][00000BC101590000 52] Mac,
  827. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101582600][00000BC101592800 52] MacEditor,
  828. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101581A00][00000BC101597800 52] MacClient,
  829. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101580600][00000BC10159A000 52] MacServer,
  830. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101581000][00000BC101542800 52] Linux,
  831. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101582E00][00000BC101552800 52] LinuxEditor,
  832. [2024.09.10-05.00.02:188][ 0]LogDeviceProfileManager: [00000BC101580800][00000BC10159C800 52] LinuxArm64Editor,
  833. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101581C00][00000BC101570000 52] LinuxArm64,
  834. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101580A00][00000BC101575000 52] LinuxClient,
  835. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101580C00][00000BC101577800 52] LinuxArm64Client,
  836. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101582200][00000BC10157A000 52] LinuxServer,
  837. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101580E00][00000BC10157C800 52] LinuxArm64Server,
  838. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101581600][00000BC101595000 52] Android,
  839. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101582000][00000BC1015A0000 52] Android_Preview_OpenGL,
  840. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583000][00000BC1015A5000 52] Android_Preview_Vulkan,
  841. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101581E00][00000BC1015A7800 52] Android_Low,
  842. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101580400][00000BC1015AA000 52] Android_Mid,
  843. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101580200][00000BC1015AC800 52] Android_High,
  844. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583800][00000BC101572800 52] Android_Default,
  845. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101582C00][00000BC1015B0000 52] Android_Adreno4xx,
  846. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583A00][00000BC1015B5000 52] Android_Adreno5xx_Low,
  847. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583E00][00000BC1015B7800 52] Android_Adreno5xx,
  848. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584000][00000BC1015BA000 52] Android_Adreno6xx,
  849. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583200][00000BC1015BC800 52] Android_Adreno6xx_Vulkan,
  850. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583400][00000BC1015A2800 52] Android_Adreno7xx,
  851. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101582800][00000BC101520000 52] Android_Adreno7xx_Vulkan,
  852. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584800][00000BC101525000 52] Android_Mali_T6xx,
  853. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101582A00][00000BC101527800 52] Android_Mali_T7xx,
  854. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584A00][00000BC10152A000 52] Android_Mali_T8xx,
  855. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584E00][00000BC10152C800 52] Android_Mali_G71,
  856. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585000][00000BC1015B2800 52] Android_Mali_G72,
  857. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584200][00000BC0FF9D0000 52] Android_Mali_G72_Vulkan,
  858. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584400][00000BC0FF9D5000 52] Android_Mali_G76,
  859. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101581800][00000BC0FF9D7800 52] Android_Mali_G76_Vulkan,
  860. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585800][00000BC0FF9DA000 52] Android_Mali_G77,
  861. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101581400][00000BC0FF9DC800 52] Android_Mali_G77_Vulkan,
  862. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585A00][00000BC101522800 52] Android_Mali_G78,
  863. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585E00][00000BC0FF9E0000 52] Android_Mali_G78_Vulkan,
  864. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586000][00000BC0FF9E5000 52] Android_Mali_G710,
  865. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585200][00000BC0FF9E7800 52] Android_Mali_G710_Vulkan,
  866. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585400][00000BC0FF9EA000 52] Android_Xclipse_920,
  867. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583600][00000BC0FF9EC800 52] Android_Xclipse_920_Vulkan,
  868. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586800][00000BC0FF9D2800 52] Android_Vulkan_SM5,
  869. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101583C00][00000BC0FF9F0000 52] Android_PowerVR_G6xxx,
  870. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586A00][00000BC0FF9F5000 52] Android_PowerVR_GT7xxx,
  871. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586E00][00000BC0FF9F7800 52] Android_PowerVR_GE8xxx,
  872. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101585C00][00000BC0FF9FA000 52] Android_PowerVR_GM9xxx,
  873. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586C00][00000BC0FF9FC800 52] Android_PowerVR_GM9xxx_Vulkan,
  874. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101584600][00000BC0FF9E2800 52] Android_TegraK1,
  875. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101587600][00000BC0FFA00000 52] Android_Unknown_Vulkan,
  876. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586400][00000BC0FFA05000 52] Oculus_Quest,
  877. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101586200][00000BC0FFA07800 52] Oculus_Quest2,
  878. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: [00000BC101588000][00000BC0FFA0A000 52] HoloLens,
  879. [2024.09.10-05.00.02:189][ 0]LogDeviceProfileManager: Active device profile: [00000BC100DF9C00][00000BC0F5775000 52] WindowsEditor
  880. [2024.09.10-05.00.02:189][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor"
  881. [2024.09.10-05.00.02:189][ 0]LogShaderCompilers: Display: Compiling shader autogen file: ../../../../../UnrealProject/SteelFactory/Intermediate/ShaderAutogen/PCD3D_SM5/AutogenShaderHeaders.ush
  882. [2024.09.10-05.00.02:189][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
  883. [2024.09.10-05.00.02:189][ 0]LogShaderCompilers: Display: Compiling shader autogen file: ../../../../../UnrealProject/SteelFactory/Intermediate/ShaderAutogen/PCD3D_ES3_1/AutogenShaderHeaders.ush
  884. [2024.09.10-05.00.02:189][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
  885. [2024.09.10-05.00.02:191][ 0]LogTurnkeySupport: Turnkey Platform: Android: (Status=Invalid, Allowed_Sdk=r25b, Current_Sdk=r21b, Allowed_AutoSdk=r25b, Current_AutoSdk=, Flags="InstalledSdk_InvalidVersionExists, Platform_ValidHostPrerequisites")
  886. [2024.09.10-05.00.02:191][ 0]LogTurnkeySupport: Turnkey Platform: IOS: (Status=Invalid, MinAllowed_Sdk=1100.0.0.0, MaxAllowed_Sdk=1499.0, Current_Sdk=, Allowed_AutoSdk=13.3, Current_AutoSdk=, Flags="Platform_ValidHostPrerequisites")
  887. [2024.09.10-05.00.02:191][ 0]LogTurnkeySupport: Turnkey Platform: Linux: (Status=Invalid, Allowed_Sdk=v20_clang-13.0.1-centos7, Current_Sdk=, Allowed_AutoSdk=v20_clang-13.0.1-centos7, Current_AutoSdk=, Flags="Platform_ValidHostPrerequisites")
  888. [2024.09.10-05.00.02:191][ 0]LogTurnkeySupport: Turnkey Platform: LinuxArm64: (Status=Invalid, Allowed_Sdk=v20_clang-13.0.1-centos7, Current_Sdk=, Allowed_AutoSdk=v20_clang-13.0.1-centos7, Current_AutoSdk=, Flags="Platform_ValidHostPrerequisites")
  889. [2024.09.10-05.00.02:191][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.00000.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.18362.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists")
  890. [2024.09.10-05.00.02:195][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="e:/UnrealProject/SteelFactory/SteelFactory.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyReport_1.log" -log="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyLog_1.log" -project="e:/UnrealProject/SteelFactory/SteelFactory.uproject" -Device=Win64@PC-202102041234'
  891. [2024.09.10-05.00.02:195][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""e:/Epic Games/UE_5.1/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="e:/UnrealProject/SteelFactory/SteelFactory.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyReport_1.log" -log="e:/UnrealProject/SteelFactory/Intermediate/TurnkeyLog_1.log" -project="e:/UnrealProject/SteelFactory/SteelFactory.uproject" -Device=Win64@PC-202102041234" -nocompile -nocompileuat ]
  892. [2024.09.10-05.00.02:226][ 0]LogTexture: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
  893. [2024.09.10-05.00.02:313][ 0]LogMaterial: Display: WorldGridMaterial-SM6-Default: MATSM_01614A42F67F4FFC8600AD04D15D199F_PCD3D_SM6_2056272690__BC5N_NoCCBN_NoIris_DEV_SL_GV_PreExp_DBuf_UnInt_DXC0_VFO_SKYATM_SKYHF_SLWDFS_gs1_sdct_VT-0-0-1-0_DF_MS_T0_MS_T1_BNDLS_VED_Aniso-1_ComprOodle_Compr2_Lev6_ExclNonPipSh-1_LWC-2097152_3152175004D223CF754F51059EF2CB96AE54674576_Num_SM6_FL_0000000d_MFA_00000008_V_B6A0A753ED62499D8F30931E61FCAB05_0_DB3E993F4E2E98B305AD13B92D8C5DA5_5ED0A2783F630BA5CB3EC77766BEDE91B3ED4A5F___TShadowDepthPSPixelShadowDepth_PerspectiveCorrectF449D5DEDCF833608913E6CD8B760EAB37A0558772C96EE55043153763054472F92891367BC849EC_FLumenCardPS<false>C99F08DFC47581645B636159483DE183E5DB9135B4AFBC835B0E8511B596BB98C6C375E96F613E4D_TShadowDepthPSPixelShadowDepth_NonPerspectiveCorrectF449D5DEDCF833608913E6CD8B760EAB37A055875D9003A07122BE7BD2876C98DF8D858F5E00365D_TShadowDepthVSVertexShadowDepth_OutputDepthPositionOnly566268C17842BE32F7F4196A64F1F860A951687BFCFDE4884D635EDF4F18BD3392801DB627240626_FMicropolyRasterizeCS84D2AD0C1762EC1B1A376348479AF93FE79505AD38D66192BF0D34515EC5AD2CDACFA24FFB6B4CAC_TLightMapDensityPSTLightMapPolicyHQC84C3C8B1FA855658F9C0A2A371DDABD1F79452E29E8E0F5F6FD2EDF413A1250AA7BE6E52C951D64_TBasePassPSFPrecomputedVolumetricLightmapLightingPolicySkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C72C399F00EA0D8E90CF7BA4C61EF5A3EF74973E9_TBasePassPSTLightMapPolicyLQSkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C2E4EA8FEEED7EE52C208FC54424FEDB2CB987C3B_FLandscapeGrassWeightVSCE760ED4917D7AE7004CF8C6F5F4499E9B97C589A469FA5FCF448A131F926D214995E53915A18256_TLightMapDensityVSFNoLightMapPolicyC84C3C8B1FA855658F9C0A2A371DDABD1F79452E891C1124EC1B5DB941DF1BA5FABB4BBFA352223F_TBasePassPSTDistanceFieldShadowsAndLightMapPolicyHQA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C69888500E07A0F62E3747DCAFAE5FAC8F032AD04_FHWRasterizeVS84D2AD0C1762EC1B1A376348479AF93FE79505AD48C83E6C6E5EB20B8752F7226BE8C1194A6F8F77_FHitProxyVS7C36940791A54FBE6A358BA344C8BFAD3CAD2B93B282128ADBC0C8F2E22B2C5B575EEDED30A8B7B8_FHitProxyPSF2A8FCCDF8BB1EBC7BCC3C20C862B59EB528CDEF2A74A59EB00EA821209C26349094BBB03F4D6ED5_FLandscapeGrassWeightPSCE760ED4917D7AE7004CF8C6F5F4499E9B97C589106C943CF2E5C6D33DAE5FDC4A4E9B8232B7C78A_TBasePassPSFNoLightMapPolicyA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C6C8686026B054D9BD961D4C440F5FDD54CA38C07_FHWRasterizePS84D2AD0C1762EC1B1A376348479AF93FE79505AD48C028453BCF70A104115FCB364BA6A5C3C4AAA0_TShadowDepthVSVertexShadowDepth_OutputDepth566268C17842BE32F7F4196A64F1F860A951687B5C128A2F6D1507D174ED09775E1D5BB050F02683_TDepthOnlyVS<true>77E78BED1A1AECF5E6A7B716F216702EBC4CCE9C2A9A9EB6F6AEC78D04ED0798341235919F1C7EA3_FLandscapePhysicalMaterialPS9BD56FDC1A69F5A3842C3E86AD24E497CDE01F1CBD4AAA5E1E701CB0F79C3E8D450BEF8AC937258A_TLightMapDensityVSFDummyLightMapPolicyC84C3C8B1FA855658F9C0A2A371DDABD1F79452EA8D01D556A2A6347711968CC5B2C44E20848E17B_FLumenCardVSAC81B5EC2471BF6EB1C6B5C0DED961C1BBCB3000617646237FDC69FB38D590AA0B687E0FB01A281E_TShadowDepthPSPixelShadowDepth_VirtualShadowMapF449D5DEDCF833608913E6CD8B760EAB37A05587DFFF0B5EA8BD51A79796C1533647D79F12B2FEBD_TBasePassVSFPrecomputedVolumetricLightmapLightingPolicyD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD6279FB996F0BE2BDCDA243D4A21F958EA439EF10418F_TBasePassPSTDistanceFieldShadowsAndLightMapPolicyHQSkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435CE098E06E3A7ED4E7D0AE384D374798EAC9E671FB_TBasePassPSFPrecomputedVolumetricLightmapLightingPolicyA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C1BF2DD414CE38D1A46E8BD153A9AAA4080A3ED8A_TBasePassPSTLightMapPolicyHQA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C26BD9FE44090B7A8EDCBBA02B66941E951A0847F_FLumenCardPS<true>C99F08DFC47581645B636159483DE183E5DB913510BC213CA7B98C6BDB504A3A124DF8170F9D2A6B_TLightMapDensityPSFDummyLightMapPolicyC84C3C8B1FA855658F9C0A2A371DDABD1F79452E696F9EC07D698191FA845F9186A9C2C14B87D692_TBasePassPSFCachedPointIndirectLightingPolicySkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435CEA781543209A66E56FAA33319B50428AB09B65E2_FTranslucentLightingInjectPSCCCA088722FF1CDD2E95226DEA88C3E868FF7BC670CF5C264EEE993F300F770C1E5D8BD55181BC8A_TBasePassVSFCachedPointIndirectLightingPolicyD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD6279D1726533EF0C3E687EA7E3E99D89F6645873B5F6_FHWRasterizeMS84D2AD0C1762EC1B1A376348479AF93FE79505AD82A55489FBDC4449CDA421AFD89E7C8F3ED6A32B_TBasePassPSFCachedPointIndirectLightingPolicyA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C233B673B73AD5C3DA45AB58558A2FEAF1AB5A7AA_FVelocityPSC89A3E8742CC125CAF8FEB3824D895F0E057EC90CC98E6311AC1581B96A09EEE8AE8F6960285B5A2_TBasePassPSFCachedVolumeIndirectLightingPolicyA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C80D0A4694439F865D3CC508893BCA55969638F38_TShadowDepthVSVertexShadowDepth_PerspectiveCorrect566268C17842BE32F7F4196A64F1F860A951687BC004ABA017AA57991204B7B624FFD889C3B24A57_TBasePassPSFCachedVolumeIndirectLightingPolicySkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C588D69EC55B53A1F6EF1FDFE007D13A68C0DD945_TLightMapDensityPSFNoLightMapPolicyC84C3C8B1FA855658F9C0A2A371DDABD1F79452E0E6A1E8C16C0AF9964CF3FEFC1B82F1F3B567770_TLightMapDensityVSTLightMapPolicyLQC84C3C8B1FA855658F9C0A2A371DDABD1F79452E436509D3C31F9011DB1B52E8E02F2100F14082F9_TBasePassVSTLightMapPolicyHQD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD6279CE573C2FA544614368F38DB987E943642455C304_FLandscapePhysicalMaterialVS9BD56FDC1A69F5A3842C3E86AD24E497CDE01F1CDE0D5BCEA7EC56FCFAF6FE24C7902B1E6C1A2354_TBasePassPSFNoLightMapPolicySkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C3C0FD33120C8575A512698C01E1EBF84CB90BE73_TBasePassVSFCachedVolumeIndirectLightingPolicyD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD627952DA8047FE3873ACFEEB67FCFF3AF5DF1AA7C5C8_TShadowDepthPSPixelShadowDepth_OnePassPointLightF449D5DEDCF833608913E6CD8B760EAB37A055871C20FE0F6421C3566B37C59CBA77F6639400AC09_TShadowDepthVSVertexShadowDepth_PerspectiveCorrectPositionOnly566268C17842BE32F7F4196A64F1F860A951687B860900EDBECB877A088A2E4A829C4D0BA92DB982_TBasePassVSTDistanceFieldShadowsAndLightMapPolicyHQD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD627960D5E6FFDE96A687BE1C1A2ED9EDE815F8E41839_TShadowDepthVSVertexShadowDepth_VirtualShadowMap566268C17842BE32F7F4196A64F1F860A951687BB4ECC9EA8AA550391078AD8904E08901E177AD2E_TShadowDepthVSVertexShadowDepth_OnePassPointLight566268C17842BE32F7F4196A64F1F860A951687B56E359529EA5F920092BA8DF37812C451EC3EEF6_TBasePassPSTLightMapPolicyLQA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C94FC918ED25A4366478C0CE664DD0F431FB434A6_TLightMapDensityPSTLightMapPolicyLQC84C3C8B1FA855658F9C0A2A371DDABD1F79452E0B66239385DAE6F5050046365A9D116D80E52224_TBasePassVSTLightMapPolicyLQD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD6279BFC5C974DD65E6DA17A7D3C21BFBF250BA30283F_TLightMapDensityVSTLightMapPolicyHQC84C3C8B1FA855658F9C0A2A371DDABD1F79452EB0E82574BC7F5C377B8E738E24BDE3D732363B44_TShadowDepthVSVertexShadowDepth_VirtualShadowMapPositionOnly566268C17842BE32F7F4196A64F1F860A951687B2206E6F09C16C096D9488323D49A0F7639FE2E34_FDebugViewModePS56838088095D59EE5193ECF20E85FE62298C7B9EE177622259CDB9DC1140CF61335F5353997EC8B6_TBasePassPSTLightMapPolicyHQSkylightA50322446B83A4AA2D12EFC7A6D5C9AEFA80435C25C2A51F6B76462E73EA9720145CE5233C11211C_TDepthOnlyVS<false>24730E33B4CBAAD6CC8E99A19D1BC1E6B4CB0B0AACA14F90957AEBF5BC1C2C3E6DB6BC750BA01CCD_FVelocityVSC89A3E8742CC125CAF8FEB3824D895F0E057EC90C043BB9FD7164B6E8DBD4123FD00693BC9B4513E_FDebugViewModeVS3D41E5A6CFCAEA88797E908D01A0A213270F85AA809CB80A6A7260721600DBFAB6C1E0001BD9B8AE_TShadowDepthVSVertexShadowDepth_OnePassPointLightPositionOnly566268C17842BE32F7F4196A64F1F860A951687B6EB2AEF0350E0D6AC5867CF6F9990BDA65424641_TBasePassVSFNoLightMapPolicyD04A42A3D7B4A6D063A7A38C2B9ADF7F0EFD62792677AEB94C74F9DCEF44AB17F94D82839B020A23_DepthPosOnlyNoPixelPipeline77E78BED1A1AECF5E6A7B716F216702EBC4CCE9C_VelocityPipeline870119D18CF0465BE0070A38FCB3F092A61618D2_DepthNoPixelPipeline24730E33B4CBAAD6CC8E99A19D1BC1E6B4CB0B0A_FGPUSpriteVertexFactoryB023D948191B883949FF744AF068D58B6674E0495C5BE91DA01DC2B25B1018F3EDA7A6FC7D1D30AEB9CA513CCBA4F1E3AF7D9556DD0F2FF45E951E1A_FNiagaraRibbonVertexFactory02111BEB92300CA1083426DF3B5036FB866E6D3DA5C2BD7C8E1CB8C2C0438E13767AF67A0D5B5966DE03DD13CEAD2D60503F2AAC85D4762994EF4025A5C2BD7C8E1CB8C2C0438E13767AF67A0D5B5966A5C2BD7C8E1CB8C2C0438E13767AF67A0D5B5966_TGPUSkinAPEXClothVertexFactoryDefault78B6E71606342DB0718C0CB5514BFF039A3BFC1D594A4B2FCC58950587792A2CD41332131D3786E2_TWaterVertexFactory< false>C2964D35CA5E3720D121CD16F30833344F481ADF295D256B82891294744045A87BB9B9F11F889491295D256B82891294744045A87BB9B9F11F889491295D256B82891294744045A87BB9B9F11F889491_FParticleSpriteVertexFactory0B9848D46CEFCCD36BD972B3DCD50B8535368BABF99E1B0FB635933CEEAC41CF9441DF5EA4A994CA9DAE5A7C55936FD50BC3B20BD063C1832A4D4247_TGPUSkinVertexFactoryUnlimited78B6E71606342DB0718C0CB5514BFF039A3BFC1D180376A7171B50BD465E9983F32BCB5A07542FE7_FVectorFieldVisualizationVertexFactory29E6C71148328626051CD3685ED4463389FCC050CC854D8E74FEAEF90804D69AF6B78BD07A141ACC_FNiagaraMeshVertexFactoryABADC3FDA7FFF8E984F9BD6ABC7F9CC89BF514854B3A20E0CA93D5CA5A60C16EF2EB14EA073FC9571BD81B2CBA1F364F28A837532353718EB814537B4B3A20E0CA93D5CA5A60C16EF2EB14EA073FC9574B3A20E0CA93D5CA5A60C16EF2EB14EA073FC957_FParticleBeamTrailVertexFactory713DBD8F3CB30EBEE7F1075062B25AE25537E1D1378BBDDEC2CEAC35A309C357B38D702E7981D5D3_TGPUSkinVertexFactoryDefault78B6E71606342DB0718C0CB5514BFF039A3BFC1D180376A7171B50BD465E9983F32BCB5A07542FE7_TGPUSkinAPEXClothVertexFactoryUnlimited78B6E71606342DB0718C0CB5514BFF039A3BFC1D594A4B2FCC58950587792A2CD41332131D3786E2_FGeometryCollectionVertexFactoryF791AC6341FF97FC6CF0C8483241C9BC3B55570949D716CAD02F0AC031CC93ACB2AFCB9C42E7DC4149D716CAD02F0AC031CC93ACB2AFCB9C42E7DC4149D716CAD02F0AC031CC93ACB2AFCB9C42E7DC41_FLandscapeXYOffsetVertexFactory10E569238A1467FCD7FB548253D74CF0ABE0F4F8B1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCEB1684FBEF19B946A8709F4309D7CC4E5FC6044ADB1684FBEF19B946A8709F4309D7CC4E5FC6044AD_FMeshParticleVertexFactory083F8367142CEF5680A007B3BEFDF4AD3B6626EEF773920348F231C490A74B1A551F8CE3ABF04791_FCesiumPointAttenuationVertexFactory61C32CE44CB0D1C6E882640C741907B0FD892A7CC8E67C27A64AE201DFA6C7409BEA87B97017C9DA_FInstancedStaticMeshVertexFactory3B3DFB1FEDE34A7A85FB5103E7AD47D9FB2DAB05A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8_FSplineMeshVertexFactory3B3DFB1FEDE34A7A85FB5103E7AD47D9FB2DAB05A747D67BD07743C1BEA1DE549F682B82EB7B9965_TWaterVertexFactory< true>C2964D35CA5E3720D121CD16F30833344F481ADFF06C64CCD77B1C9E345ED2D7F6053A0AC8701007F06C64CCD77B1C9E345ED2D7F6053A0AC8701007F06C64CCD77B1C9E345ED2D7F6053A0AC8701007_FLocalVertexFactory3B3DFB1FEDE34A7A85FB5103E7AD47D9FB2DAB05AC1A437FDC42E3432CC66409573A167E09487E70AC1A437FDC42E3432CC66409573A167E09487E70AC1A437FDC42E3432CC66409573A167E09487E70_FLandscapeVertexFactory10E569238A1467FCD7FB548253D74CF0ABE0F4F8B1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCEB1684FBEF19B946A8709F4309D7CC4E5FC6044ADB1684FBEF19B946A8709F4309D7CC4E5FC6044AD_FNiagaraSpriteVertexFactory983CF9980B73A474E8D7D8E01013CC0E6E16DAAE5957CFEE095AEFFBA7F83F09F020F15CF6555718EFF166204144512228FF7A163011544EEF3FD2265957CFEE095AEFFBA7F83F09F020F15CF65557185957CFEE095AEFFBA7F83F09F020F15CF6555718_Nanite::FVertexFactory7385151ADD4080DE340A31F56C59707655B6838D_FGeometryCacheVertexVertexFactory921F6B033EF261C9D21AB065EC0B6C351583BCAA76143182082C57C6F98756E7AE927ED26DD4479A76143182082C57C6F98756E7AE927ED26DD4479A_FLandscapeFixedGridVertexFactory10E569238A1467FCD7FB548253D74CF0ABE0F4F83F5F45F5620EF6411E27211E3D675CEA50B38DFBEBA49461CECB1EA5D21E2BF8918B91C7C3994DCE3F5F45F5620EF6411E27211E3D675CEA50B38DFB3F5F45F5620EF6411E27211E3D675CEA50B38DFB2564101414144444144414441414141414444474010101010101314544441433144013101020444416151214142404444241414131310143444474434241444444444044444444444444443414141414240444444444444444424341414151010101101313133312133334341414231413420444441414131313430414131010151010101035616161353434341464616161616161461213161616064343434344414444444451515101010113101053616161612100040404040404040404040404040404343434343434344444343434340404040404040434343434040404044444242444444443444444242414121414444444241414143414141414141414141313131313144434444444441414141414141414141414143434344444444444443444044414141414441414141414143414141444141414144444141414141413341442444444141414323414141414131414141424123434241434343414341414441414131313134324441414124414131313444434141412121242121313144421222261411422101212121242444444444404141510151015304341013314146001444444510110151515151616161616101010101015052421316161616161112601011170443131314131431014101010101010151010101010304451011010101010101010101010101010101010101060014040444140404212131313441410101010101010101310100024313131416161611010161646421413131312121212121212121414444444444414024444442121212121212121212121212131212121212121212121214121212121212121212143443141101313131316161616161616160231444444444341444141414142422121212121212121212131212121212121212121212121212121214444424242434343414144414141414144444444444444442144211013131313131316161616060101210101010151012101404444440434240444241413150044444444444434341013131332140304040434144434143314433414331433143414341433143314331422141433144414412104314131410151010101464444440444644444444440444014151015101510150001010101010101010101010101100004441404041412101010000101010101010144444242014044444444444444444444444444444444444444444444444444444444444444444444444444044444444444444341444141414143421013131312121323222222121010101010000101010101444442424121010101015101510141010151010101010044444414151510404040434100040404040404040404040404040404343434343434344444343434340404040404040434343434040404044444242444444443444444242414121414444444241414143414141414141414141313131313144434444444441414141414141414141414143434344444444444443444044414141414441414141414143414141444141414144444141414141413341442444444141414323414141414131414141424123434241434343414341414441414131313134324441414124414131313444434141412121242121313141410101515151515151515151510101010101010101015151515151015101510151015101510101010101010151016161616161510151015101510151015101510131315151515101510101510164614141510101616171616363404313131313131313144222231414141010101010113464444412121210000110000001300000013000000130000001300000013000000130000000C00000013000000130000000D00000008000000140000000F00000010000000080000000900000008000000230000001000000010000000090000000800000008000000100000001000000010000000100000000800000008000000080000001000000010000000CE00000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000120000001000000008000000080000000800000014000000140000001300000008000000100000000800000008000000080000000800000008000000080000001300000009000000140000000E00000013000000130000001300000013000000130000001300000008000000100000000900000008000000090000000800000008000000130000000900000008000000090000000800000009000000080000000C00000009000000080000000900000009000000090000000900000009000000080000000800000008000000080000000800000013000000100000001000000010000000130000001000000010000000100000001000000009000000090000000900000010000000100000001000000010000000080000001A00000014000000290000000D000000440000000B0000000B00000013000000130000000900000009000000090000001400000008000000090000000D0000000C00000010000000080000000800000028000000100000001000000010000000100000000900000008000000100000001000000010000000100000001000000009000000080000000800000008000000080000000D00000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000C000000080000000C00000013000000100000001000000010000000100000001000000010000000100000000D0000000C00000009000000080000000900000008000000090000000C0000000800000013000000260000000F000000110000000900000009000000090000000900000009000000100000001B0000001300000013000000130000001300000013000000090000000800000009000000080000000800000008000000140000001400000008000000090000000900000008000000080000001000000008000000080000001000000010000000290100001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000140000001000000010000000100000001000000009000000433AFC833894B7681A1D3DDBA35F7F5A9509A899000000000000000000000000000000000000000054BDFD528AA46A4E9413E044DCAC9A8F37A07E9D_101_101_4;
  894. [2024.09.10-05.00.02:394][ 0]LogMeshReduction: Using QuadricMeshReduction for automatic static mesh reduction
  895. [2024.09.10-05.00.02:394][ 0]LogMeshReduction: Using SimplygonMeshReduction for automatic skeletal mesh reduction
  896. [2024.09.10-05.00.02:394][ 0]LogMeshReduction: Using ProxyLODMeshReduction for automatic mesh merging
  897. [2024.09.10-05.00.02:394][ 0]LogMeshReduction: No distributed automatic mesh merging module available
  898. [2024.09.10-05.00.02:394][ 0]LogMeshMerging: No distributed automatic mesh merging module available
  899. [2024.09.10-05.00.02:478][ 0]LogNetVersion: SteelFactory 1.0.0, NetCL: 23058290, EngineNetVer: 30, GameNetVer: 0 (Checksum: 3200751721)
  900. [2024.09.10-05.00.03:121][ 0]LogUObjectArray: 23745 objects as part of root set at end of initial load.
  901. [2024.09.10-05.00.03:121][ 0]LogUObjectAllocator: 6880280 out of 0 bytes used by permanent object pool.
  902. [2024.09.10-05.00.03:121][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool
  903. [2024.09.10-05.00.03:150][ 0]LogSlate: Border
  904. [2024.09.10-05.00.03:150][ 0]LogSlate: BreadcrumbButton
  905. [2024.09.10-05.00.03:150][ 0]LogSlate: Brushes.Title
  906. [2024.09.10-05.00.03:150][ 0]LogSlate: Default
  907. [2024.09.10-05.00.03:150][ 0]LogSlate: Icons.Save
  908. [2024.09.10-05.00.03:150][ 0]LogSlate: Icons.Toolbar.Settings
  909. [2024.09.10-05.00.03:150][ 0]LogSlate: ListView
  910. [2024.09.10-05.00.03:150][ 0]LogSlate: SoftwareCursor_CardinalCross
  911. [2024.09.10-05.00.03:150][ 0]LogSlate: SoftwareCursor_Grab
  912. [2024.09.10-05.00.03:150][ 0]LogSlate: TableView.DarkRow
  913. [2024.09.10-05.00.03:150][ 0]LogSlate: TableView.Row
  914. [2024.09.10-05.00.03:150][ 0]LogSlate: TreeView
  915. [2024.09.10-05.00.03:593][ 0]LogPython: Using Python 3.9.7
  916. [2024.09.10-05.00.03:664][ 0]LogTurnkeySupport: Completed device detection: Code = 0
  917. [2024.09.10-05.00.04:610][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 2536A5AB4F85D629F60DCF9E2FCC4B0C | Instance: 7218288A47A943D12059D2894155F8E7 (PC-202102041234-23232).
  918. [2024.09.10-05.00.04:661][ 0]LogTcpMessaging: Initializing TcpMessaging bridge
  919. [2024.09.10-05.00.04:667][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666.
  920. [2024.09.10-05.00.04:669][ 0]LogUdpMessaging: Display: Added local interface '192.168.0.16' to multicast group '230.0.0.1:6666'
  921. [2024.09.10-05.00.04:669][ 0]LogUdpMessaging: Display: Added local interface '192.168.44.1' to multicast group '230.0.0.1:6666'
  922. [2024.09.10-05.00.04:669][ 0]LogUdpMessaging: Display: Added local interface '192.168.137.1' to multicast group '230.0.0.1:6666'
  923. [2024.09.10-05.00.04:881][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
  924. [2024.09.10-05.00.04:910][ 0]LogMetasoundEngine: MetaSound Engine Initialized
  925. [2024.09.10-05.00.05:356][ 0]LogOpenImageDenoise: OIDN starting up
  926. [2024.09.10-05.00.05:498][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
  927. [2024.09.10-05.00.05:583][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
  928. [2024.09.10-05.00.05:583][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
  929. [2024.09.10-05.00.05:820][ 0]SourceControl: Source control is disabled
  930. [2024.09.10-05.00.05:827][ 0]SourceControl: Source control is disabled
  931. [2024.09.10-05.00.05:838][ 0]SourceControl: Source control is disabled
  932. [2024.09.10-05.00.05:845][ 0]LogUProjectInfo: Found projects:
  933. [2024.09.10-05.00.05:928][ 0]LogCollectionManager: Loaded 0 collections in 0.001165 seconds
  934. [2024.09.10-05.00.05:930][ 0]LogFileCache: Scanning file cache for directory 'e:/UnrealProject/SteelFactory/Saved/Collections/' took 0.00s
  935. [2024.09.10-05.00.05:931][ 0]LogFileCache: Scanning file cache for directory 'e:/UnrealProject/SteelFactory/Content/Developers/Administrator/Collections/' took 0.00s
  936. [2024.09.10-05.00.05:934][ 0]LogFileCache: Scanning file cache for directory 'e:/UnrealProject/SteelFactory/Content/Collections/' took 0.00s
  937. [2024.09.10-05.00.06:431][ 0]LogEngine: Initializing Engine...
  938. [2024.09.10-05.00.06:449][ 0]LogStylusInput: Initializing StylusInput subsystem.
  939. [2024.09.10-05.00.06:452][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s
  940. [2024.09.10-05.00.06:454][ 0]LogMaterial: Display: Missing cached shadermap for WireframeMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: 120AABB3229C6BB51A12D14F4F81844E5370E2A4), compiling. Is special engine material.
  941. [2024.09.10-05.00.06:459][ 0]LogMaterial: Display: Missing cached shadermap for LevelColorationLitMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: E6BF2237BE7C72ED4C7263FBA8CC3098264A5A45), compiling. Is special engine material.
  942. [2024.09.10-05.00.06:463][ 0]LogMaterial: Display: Missing cached shadermap for LevelColorationUnlitMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: 9BDA624EB1558ABE51A1034F58765262F21233F3), compiling. Is special engine material.
  943. [2024.09.10-05.00.06:468][ 0]LogMaterial: Display: Missing cached shadermap for MAT_LevelColorationLitLightmapUV in PCD3D_SM6, Default, SM6 (DDC key hash: B0AC7E7CF75C5F81FB8D5523351C977E8D777466), compiling. Is special engine material.
  944. [2024.09.10-05.00.06:472][ 0]LogMaterial: Display: Missing cached shadermap for ShadedLevelColorationLitMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: BC96F52E0AB1514A72FACE7F4716AD69F404FEF1), compiling. Is special engine material.
  945. [2024.09.10-05.00.06:477][ 0]LogMaterial: Display: Missing cached shadermap for ShadedLevelColorationUnlitMateri in PCD3D_SM6, Default, SM6 (DDC key hash: 677CE81EDB30DBF80A6E6CF036325528952DDF4D), compiling. Is special engine material.
  946. [2024.09.10-05.00.06:580][ 0]LogInit: Initializing FReadOnlyCVARCache
  947. [2024.09.10-05.00.06:607][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  948. [2024.09.10-05.00.06:643][ 0]LogAIModule: Creating AISystem for world Untitled
  949. [2024.09.10-05.00.06:644][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
  950. [2024.09.10-05.00.06:644][ 0]LogInit: Texture streaming: Enabled
  951. [2024.09.10-05.00.06:684][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/. AppVersion = 5.1.1-23901901+++UE5+Release-5.1
  952. [2024.09.10-05.00.06:698][ 0]LogAudio: Display: Initializing Audio Device Manager...
  953. [2024.09.10-05.00.06:725][ 0]LogAudio: Display: Loading Default Audio Settings Objects...
  954. [2024.09.10-05.00.06:726][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
  955. [2024.09.10-05.00.06:730][ 0]LogAudio: Display: AudioInfo: 'BINKA' Registered
  956. [2024.09.10-05.00.06:733][ 0]LogAudio: Display: AudioInfo: 'PCM' Registered
  957. [2024.09.10-05.00.06:733][ 0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
  958. [2024.09.10-05.00.06:733][ 0]LogAudio: Display: AudioInfo: 'OGG' Registered
  959. [2024.09.10-05.00.06:733][ 0]LogAudio: Display: AudioInfo: 'OPUS' Registered
  960. [2024.09.10-05.00.06:734][ 0]LogAudio: Display: Audio Device Manager Initialized
  961. [2024.09.10-05.00.06:734][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True
  962. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings:
  963. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Sample Rate: 48000
  964. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024
  965. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024
  966. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Number of buffers to queue: 1
  967. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Max Channels (voices): 0
  968. [2024.09.10-05.00.06:734][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4
  969. [2024.09.10-05.00.06:734][ 0]LogAudio: Display: AudioDevice MaxSources: 32
  970. [2024.09.10-05.00.06:734][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
  971. [2024.09.10-05.00.06:734][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
  972. [2024.09.10-05.00.06:734][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
  973. [2024.09.10-05.00.06:745][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
  974. [2024.09.10-05.00.06:780][ 0]LogAudioMixer: Display: Using Audio Hardware Device 2490W1 (NVIDIA High Definition Audio)
  975. [2024.09.10-05.00.06:781][ 0]LogAudioMixer: Display: Initializing Sound Submixes...
  976. [2024.09.10-05.00.06:783][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
  977. [2024.09.10-05.00.06:783][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
  978. [2024.09.10-05.00.06:785][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
  979. [2024.09.10-05.00.06:785][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
  980. [2024.09.10-05.00.06:787][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
  981. [2024.09.10-05.00.06:787][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
  982. [2024.09.10-05.00.06:787][ 0]LogInit: FAudioDevice initialized.
  983. [2024.09.10-05.00.06:787][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
  984. [2024.09.10-05.00.06:811][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
  985. [2024.09.10-05.00.06:822][ 0]LogLiveCoding: Display: Starting LiveCoding
  986. [2024.09.10-05.00.06:822][ 0]LogLiveCoding: Display: LiveCodingConsole Arguments: UnrealEditor Win64 Development
  987. [2024.09.10-05.00.06:824][ 0]LogLiveCoding: Display: First instance in process group "UE_SteelFactory_0x800609b7", spawning console
  988. [2024.09.10-05.00.06:829][ 0]LogLiveCoding: Display: Waiting for server
  989. [2024.09.10-05.00.07:843][ 0]LogLiveCoding: Display: Successfully initialized, removing startup thread
  990. [2024.09.10-05.00.07:880][ 0]LogInit: Transaction tracking system initialized
  991. [2024.09.10-05.00.07:926][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded ../../../../../UnrealProject/SteelFactory/Saved/SourceControl/UncontrolledChangelists.json
  992. [2024.09.10-05.00.07:927][ 0]LogSourceControl: Uncontrolled asset enumeration started...
  993. [2024.09.10-05.00.07:930][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.002999 seconds (Found 130 uncontrolled assets)
  994. [2024.09.10-05.00.07:985][ 0]BlueprintLog: New page: Editor Load
  995. [2024.09.10-05.00.08:210][ 0]LocalizationService: Localization service is disabled
  996. [2024.09.10-05.00.08:265][ 0]TimingProfiler: Initialize
  997. [2024.09.10-05.00.08:265][ 0]TimingProfiler: OnSessionChanged
  998. [2024.09.10-05.00.08:265][ 0]LoadingProfiler: Initialize
  999. [2024.09.10-05.00.08:265][ 0]LoadingProfiler: OnSessionChanged
  1000. [2024.09.10-05.00.08:265][ 0]NetworkingProfiler: Initialize
  1001. [2024.09.10-05.00.08:265][ 0]NetworkingProfiler: OnSessionChanged
  1002. [2024.09.10-05.00.08:265][ 0]MemoryProfiler: Initialize
  1003. [2024.09.10-05.00.08:265][ 0]MemoryProfiler: OnSessionChanged
  1004. [2024.09.10-05.00.08:631][ 0]LogFileCache: Scanning file cache for directory 'e:/UnrealProject/SteelFactory/Content/' took 0.00s
  1005. [2024.09.10-05.00.08:745][ 0]LogEditorDomain: Display: Class /Script/AnimationData.AnimationSequencerDataModel is imported by a package but does not exist in memory. EditorDomain keys for packages using it will be invalid if it still exists.
  1006. To clear this message, resave packages that use the deleted class, or load its module earlier than the packages that use it are referenced.
  1007. [2024.09.10-05.00.08:817][ 0]LoadErrors: Error: Collision Profile settings do not include an entry for the Water Body Collision profile, which is required for water collision to function. Add entry to DefaultEngine.ini?
  1008. [2024.09.10-05.00.08:937][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized.
  1009. [2024.09.10-05.00.09:258][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
  1010. [2024.09.10-05.00.09:260][ 0]SourceControl: Source control is disabled
  1011. [2024.09.10-05.00.09:260][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 11.484
  1012. [2024.09.10-05.00.09:260][ 0]Cmd: MAP LOAD FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1013. [2024.09.10-05.00.09:260][ 0]LightingResults: New page: Lighting Build
  1014. [2024.09.10-05.00.09:268][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
  1015. [2024.09.10-05.00.09:268][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1016. [2024.09.10-05.00.09:268][ 0]MapCheck: New page: Map Check
  1017. [2024.09.10-05.00.09:268][ 0]LightingResults: New page: Lighting Build
  1018. [2024.09.10-05.00.09:277][ 0]LogAudio: Display: Audio Device unregistered from world 'None'.
  1019. [2024.09.10-05.00.09:283][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms
  1020. [2024.09.10-05.00.09:312][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Main'.
  1021. [2024.09.10-05.00.09:312][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1022. [2024.09.10-05.00.09:312][ 0]LogAIModule: Creating AISystem for world Main
  1023. [2024.09.10-05.00.09:328][ 0]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1024. [2024.09.10-05.00.09:328][ 0]LogCesium: Display: Caching Cesium requests in C:/Users/Administrator/AppData/Local/UnrealEngine/5.1/cesium-request-cache.sqlite
  1025. [2024.09.10-05.00.09:382][ 0]LogCesium: Loading tileset for asset ID 1
  1026. [2024.09.10-05.00.09:386][ 0]LogCesium: Loading tileset for asset ID 1 done
  1027. [2024.09.10-05.00.09:386][ 0]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1028. [2024.09.10-05.00.09:387][ 0]LogCesium: Loading tileset for asset ID 0
  1029. [2024.09.10-05.00.09:387][ 0]LogCesium: Loading tileset for asset ID 0 done
  1030. [2024.09.10-05.00.09:387][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1031. [2024.09.10-05.00.09:396][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.63ms
  1032. [2024.09.10-05.00.09:396][ 0]Cmd: MAP CHECKDEP NOCLEARLOG
  1033. [2024.09.10-05.00.09:396][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.155ms to complete.
  1034. [2024.09.10-05.00.09:396][ 0]LogFileHelpers: Loading map 'Main' took 0.137
  1035. [2024.09.10-05.00.09:411][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 11.635
  1036. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: ================================================
  1037. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: === FShaderJobCache stats ===
  1038. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: Total job queries 2, among them cache hits 0 (0.00%)
  1039. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: Tracking 2 distinct input hashes that result in 2 distinct outputs (100.00%)
  1040. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: RAM used: 0.01 MB (0.00 GB) of 1638.40 MB (1.60 GB) budget. Usage: 0.00%
  1041. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: === Shader Compilation stats ===
  1042. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: Shaders Compiled: 0
  1043. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: Jobs assigned 0, completed 0 (0.00%)
  1044. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: Time at least one job was in flight (either pending or executed): 0.00 s
  1045. [2024.09.10-05.00.09:411][ 0]LogShaderCompilers: Display: ================================================
  1046. [2024.09.10-05.00.09:565][ 0]LogSlate: The tab "LevelEditorToolBar" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1047. [2024.09.10-05.00.09:577][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1048. [2024.09.10-05.00.09:585][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1049. [2024.09.10-05.00.09:592][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1050. [2024.09.10-05.00.09:598][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1051. [2024.09.10-05.00.09:638][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/StarterContent.upack', mount point: 'root:/'
  1052. [2024.09.10-05.00.09:638][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/'
  1053. [2024.09.10-05.00.09:639][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/'
  1054. [2024.09.10-05.00.09:639][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/'
  1055. [2024.09.10-05.00.09:640][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/'
  1056. [2024.09.10-05.00.09:641][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/'
  1057. [2024.09.10-05.00.09:641][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_TopDown.upack', mount point: 'root:/'
  1058. [2024.09.10-05.00.09:642][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/'
  1059. [2024.09.10-05.00.09:642][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/'
  1060. [2024.09.10-05.00.09:642][ 0]LogPakFile: Display: Mounted Pak file 'e:/Epic Games/UE_5.1/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/'
  1061. [2024.09.10-05.00.09:836][ 0]LogTurnkeySupport: Turnkey Device: Win64@PC-202102041234: (Name=PC-202102041234, Type=Computer, Status=Valid, , Flags="Device_InstallSoftwareValid")
  1062. [2024.09.10-05.00.09:973][ 0]LogSlate: Took 0.000198 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
  1063. [2024.09.10-05.00.09:975][ 0]LogSlate: Took 0.000208 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K)
  1064. [2024.09.10-05.00.09:980][ 0]LogSlate: Took 0.000258 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K)
  1065. [2024.09.10-05.00.09:981][ 0]LogSlate: Took 0.000159 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K)
  1066. [2024.09.10-05.00.10:012][ 0]LogViewport: Scene viewport resized to 1204x610, mode Windowed.
  1067. [2024.09.10-05.00.10:047][ 0]LogSlate: Took 0.000102 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K)
  1068. [2024.09.10-05.00.11:182][ 0]LogStall: Startup...
  1069. [2024.09.10-05.00.11:185][ 0]LogStall: Startup complete.
  1070. [2024.09.10-05.00.11:197][ 0]LogLoad: (Engine Initialization) Total time: 13.42 seconds
  1071. [2024.09.10-05.00.11:197][ 0]LogLoad: (Engine Initialization) Total Blueprint compile time: 0.00 seconds
  1072. [2024.09.10-05.00.11:292][ 0]LogAssetRegistry: Asset discovery search completed in 9.7062 seconds
  1073. [2024.09.10-05.00.11:304][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000006 seconds (updated 0 objects)
  1074. [2024.09.10-05.00.11:471][ 0]LogContentStreaming: Texture pool size now 1000 MB
  1075. [2024.09.10-05.00.19:648][736]LogSlate: Window 'Message Log' being destroyed
  1076. [2024.09.10-05.00.19:662][736]LogSlate: Window 'Message Log' being destroyed
  1077. [2024.09.10-05.00.20:782][856]LogSlate: Window 'Plugins' being destroyed
  1078. [2024.09.10-05.00.20:793][856]LogSlate: Window 'Plugins' being destroyed
  1079. [2024.09.10-05.00.20:793][856]LogDirectoryWatcher: A directory notification for '../../../Engine/Plugins/' was aborted.
  1080. [2024.09.10-05.00.20:793][856]LogDirectoryWatcher: A directory notification for '../../../../../UnrealProject/SteelFactory/Plugins/' was aborted.
  1081. [2024.09.10-05.00.23:895][173]LogUObjectHash: Compacting FUObjectHashTables data took 0.62ms
  1082. [2024.09.10-05.00.23:896][173]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Main.Main
  1083. [2024.09.10-05.00.23:897][173]Cmd: MAP LOAD FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1084. [2024.09.10-05.00.23:897][173]LightingResults: New page: Lighting Build
  1085. [2024.09.10-05.00.23:897][173]LoadErrors: New page: Loading map: Main.umap
  1086. [2024.09.10-05.00.23:900][173]LogWorld: UWorld::CleanupWorld for Main, bSessionEnded=true, bCleanupResources=true
  1087. [2024.09.10-05.00.23:900][173]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1088. [2024.09.10-05.00.23:900][173]MapCheck: New page: Map Check
  1089. [2024.09.10-05.00.23:900][173]LightingResults: New page: Lighting Build
  1090. [2024.09.10-05.00.23:927][173]LogAudio: Display: Audio Device unregistered from world 'None'.
  1091. [2024.09.10-05.00.23:935][173]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms
  1092. [2024.09.10-05.00.23:946][173]LogAudio: Display: Audio Device (ID: 1) registered with world 'Main'.
  1093. [2024.09.10-05.00.23:946][173]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1094. [2024.09.10-05.00.23:947][173]LogAIModule: Creating AISystem for world Main
  1095. [2024.09.10-05.00.23:949][173]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1096. [2024.09.10-05.00.23:949][173]LogCesium: Loading tileset for asset ID 1
  1097. [2024.09.10-05.00.23:949][173]LogCesium: Loading tileset for asset ID 1 done
  1098. [2024.09.10-05.00.23:949][173]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1099. [2024.09.10-05.00.23:949][173]LogCesium: Loading tileset for asset ID 0
  1100. [2024.09.10-05.00.23:949][173]LogCesium: Loading tileset for asset ID 0 done
  1101. [2024.09.10-05.00.23:959][173]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1102. [2024.09.10-05.00.23:971][173]LogUObjectHash: Compacting FUObjectHashTables data took 0.62ms
  1103. [2024.09.10-05.00.23:983][173]Cmd: MAP CHECKDEP NOCLEARLOG
  1104. [2024.09.10-05.00.23:983][173]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.124ms to complete.
  1105. [2024.09.10-05.00.23:983][173]LogFileHelpers: Loading map 'Main' took 0.086
  1106. [2024.09.10-05.00.39:224][790]LogEditor: Attempting to add actor of class 'DynamicPawn_C' to level at 0.00,0.00,0.00
  1107. [2024.09.10-05.00.39:555][791]LogViewport: Scene viewport resized to 380x192, mode Windowed.
  1108. [2024.09.10-05.00.47:070][361]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1109. [2024.09.10-05.00.47:139][361]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Main" FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1110. [2024.09.10-05.00.47:151][361]LogUObjectHash: Compacting FUObjectHashTables data took 0.69ms
  1111. [2024.09.10-05.00.47:161][361]LogPackageLocalizationCache: Processed 47 localized package path(s) for 1 prioritized culture(s) in 0.008047 seconds
  1112. [2024.09.10-05.00.47:181][361]LogSerialization: UsePackageTrailer: 'true'
  1113. [2024.09.10-05.00.47:190][361]LogSavePackage: Moving output files for package: /Game/Main
  1114. [2024.09.10-05.00.47:190][361]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/Main77FE81EE4592A25ED64135B85E0AD768.tmp' to '../../../../../UnrealProject/SteelFactory/Content/Main.umap'
  1115. [2024.09.10-05.00.47:202][361]LogFileHelpers: Saving map 'Main' took 0.064
  1116. [2024.09.10-05.00.47:228][361]LogFileHelpers: InternalPromptForCheckoutAndSave took 158 ms
  1117. [2024.09.10-05.00.47:237][361]AssetCheck: New page: Asset Save: Main
  1118. [2024.09.10-05.00.47:237][361]LogContentValidation: Display: Validating /Script/Engine.World /Game/Main.Main
  1119. [2024.09.10-05.00.47:677][392]LogDebuggerCommands: Repeating last play command: Selected Viewport
  1120. [2024.09.10-05.00.47:692][392]LogPlayLevel: PlayLevel: No blueprints needed recompiling
  1121. [2024.09.10-05.00.47:693][392]PIE: New page: PIE session: Main (Sep 10, 2024, 9:00:47 PM)
  1122. [2024.09.10-05.00.47:698][392]LogOnline: OSS: Created online subsystem instance for: NULL
  1123. [2024.09.10-05.00.47:699][392]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
  1124. [2024.09.10-05.00.47:700][392]LogPlayLevel: Creating play world package: /Game/UEDPIE_0_Main
  1125. [2024.09.10-05.00.47:706][392]LogPlayLevel: PIE: StaticDuplicateObject took: (0.005392s)
  1126. [2024.09.10-05.00.47:706][392]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Main.Main to /Game/UEDPIE_0_Main.Main (0.005948s)
  1127. [2024.09.10-05.00.47:707][392]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1128. [2024.09.10-05.00.47:708][392]LogAIModule: Creating AISystem for world Main
  1129. [2024.09.10-05.00.47:708][392]LogPlayLevel: PIE: World Init took: (0.001755s)
  1130. [2024.09.10-05.00.47:717][392]LogUObjectHash: Compacting FUObjectHashTables data took 0.62ms
  1131. [2024.09.10-05.00.47:720][392]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True
  1132. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Audio Mixer Platform Settings:
  1133. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Sample Rate: 48000
  1134. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024
  1135. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024
  1136. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Number of buffers to queue: 1
  1137. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Max Channels (voices): 0
  1138. [2024.09.10-05.00.47:720][392]LogAudioMixer: Display: Number of Async Source Workers: 4
  1139. [2024.09.10-05.00.47:720][392]LogAudio: Display: AudioDevice MaxSources: 32
  1140. [2024.09.10-05.00.47:721][392]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
  1141. [2024.09.10-05.00.47:721][392]LogAudio: Display: Audio Reverb Plugin: None (built-in).
  1142. [2024.09.10-05.00.47:721][392]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
  1143. [2024.09.10-05.00.47:724][392]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
  1144. [2024.09.10-05.00.47:744][392]LogAudioMixer: Display: Using Audio Hardware Device 2490W1 (NVIDIA High Definition Audio)
  1145. [2024.09.10-05.00.47:745][392]LogAudioMixer: Display: Initializing Sound Submixes...
  1146. [2024.09.10-05.00.47:745][392]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
  1147. [2024.09.10-05.00.47:745][392]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
  1148. [2024.09.10-05.00.47:746][392]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2
  1149. [2024.09.10-05.00.47:747][392]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2
  1150. [2024.09.10-05.00.47:749][392]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2
  1151. [2024.09.10-05.00.47:749][392]LogInit: FAudioDevice initialized.
  1152. [2024.09.10-05.00.47:749][392]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2
  1153. [2024.09.10-05.00.47:749][392]LogAudio: Display: Audio Device (ID: 2) registered with world 'Main'.
  1154. [2024.09.10-05.00.47:756][392]LogLoad: Game class is 'GameModeBase'
  1155. [2024.09.10-05.00.47:757][392]LogWorld: Bringing World /Game/UEDPIE_0_Main.Main up for play (max tick rate 0) at 2024.09.10-13.00.47
  1156. [2024.09.10-05.00.47:758][392]LogWorld: Bringing up level for play took: 0.002376
  1157. [2024.09.10-05.00.47:761][392]LogOnline: OSS: Created online subsystem instance for: :Context_1
  1158. [2024.09.10-05.00.47:786][392]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1159. [2024.09.10-05.00.47:787][392]LogCesium: Loading tileset for asset ID 1
  1160. [2024.09.10-05.00.47:787][392]LogCesium: Loading tileset for asset ID 1 done
  1161. [2024.09.10-05.00.47:787][392]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1162. [2024.09.10-05.00.47:787][392]LogCesium: Loading tileset for asset ID 0
  1163. [2024.09.10-05.00.47:787][392]LogCesium: Loading tileset for asset ID 0 done
  1164. [2024.09.10-05.00.47:789][392]PIE: Server logged in
  1165. [2024.09.10-05.00.47:791][392]PIE: Play in editor total start time 0.103 seconds.
  1166. [2024.09.10-05.00.49:853][596]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1167. [2024.09.10-05.00.49:853][596]LogWorld: BeginTearingDown for /Game/UEDPIE_0_Main
  1168. [2024.09.10-05.00.49:875][596]LogWorld: UWorld::CleanupWorld for Main, bSessionEnded=true, bCleanupResources=true
  1169. [2024.09.10-05.00.49:877][596]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1170. [2024.09.10-05.00.49:885][596]LogPlayLevel: Display: Shutting down PIE online subsystems
  1171. [2024.09.10-05.00.49:891][596]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1172. [2024.09.10-05.00.49:901][596]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1173. [2024.09.10-05.00.49:901][596]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2
  1174. [2024.09.10-05.00.49:904][596]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2
  1175. [2024.09.10-05.00.49:920][596]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms
  1176. [2024.09.10-05.00.50:009][597]LogPlayLevel: Display: Destroying online subsystem :Context_1
  1177. [2024.09.10-05.00.50:031][597]LogViewport: Scene viewport resized to 380x192, mode Windowed.
  1178. [2024.09.10-05.00.51:423][698]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1179. [2024.09.10-05.00.51:487][698]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Main" FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1180. [2024.09.10-05.00.51:495][698]LogUObjectHash: Compacting FUObjectHashTables data took 0.59ms
  1181. [2024.09.10-05.00.51:512][698]LogSavePackage: Moving output files for package: /Game/Main
  1182. [2024.09.10-05.00.51:512][698]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/MainA710364B4C0923E8737A07971A8EDD80.tmp' to '../../../../../UnrealProject/SteelFactory/Content/Main.umap'
  1183. [2024.09.10-05.00.51:525][698]LogFileHelpers: Saving map 'Main' took 0.039
  1184. [2024.09.10-05.00.51:532][698]LogFileHelpers: InternalPromptForCheckoutAndSave took 108 ms (total: 267 ms)
  1185. [2024.09.10-05.00.51:537][698]AssetCheck: New page: Asset Save: Main
  1186. [2024.09.10-05.00.51:537][698]LogContentValidation: Display: Validating /Script/Engine.World /Game/Main.Main
  1187. [2024.09.10-05.00.52:455][756]LogUObjectHash: Compacting FUObjectHashTables data took 0.44ms
  1188. [2024.09.10-05.00.52:457][756]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Main.Main
  1189. [2024.09.10-05.00.52:457][756]Cmd: MAP LOAD FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1190. [2024.09.10-05.00.52:457][756]LightingResults: New page: Lighting Build
  1191. [2024.09.10-05.00.52:457][756]LoadErrors: New page: Loading map: Main.umap
  1192. [2024.09.10-05.00.52:462][756]LogWorld: UWorld::CleanupWorld for Main, bSessionEnded=true, bCleanupResources=true
  1193. [2024.09.10-05.00.52:462][756]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1194. [2024.09.10-05.00.52:463][756]MapCheck: New page: Map Check
  1195. [2024.09.10-05.00.52:463][756]LightingResults: New page: Lighting Build
  1196. [2024.09.10-05.00.52:494][756]LogAudio: Display: Audio Device unregistered from world 'None'.
  1197. [2024.09.10-05.00.52:514][756]LogUObjectHash: Compacting FUObjectHashTables data took 1.05ms
  1198. [2024.09.10-05.00.52:526][756]LogAudio: Display: Audio Device (ID: 1) registered with world 'Main'.
  1199. [2024.09.10-05.00.52:526][756]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1200. [2024.09.10-05.00.52:526][756]LogAIModule: Creating AISystem for world Main
  1201. [2024.09.10-05.00.52:529][756]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1202. [2024.09.10-05.00.52:529][756]LogCesium: Loading tileset for asset ID 1
  1203. [2024.09.10-05.00.52:529][756]LogCesium: Loading tileset for asset ID 1 done
  1204. [2024.09.10-05.00.52:529][756]LogCesium: Warning: "Enable World Bounds Checks" in the world settings is currently enabled. Please consider disabling it to avoid potential issues.
  1205. [2024.09.10-05.00.52:529][756]LogCesium: Loading tileset for asset ID 0
  1206. [2024.09.10-05.00.52:529][756]LogCesium: Loading tileset for asset ID 0 done
  1207. [2024.09.10-05.00.52:540][756]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1208. [2024.09.10-05.00.52:554][756]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms
  1209. [2024.09.10-05.00.52:566][756]Cmd: MAP CHECKDEP NOCLEARLOG
  1210. [2024.09.10-05.00.52:566][756]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.112ms to complete.
  1211. [2024.09.10-05.00.52:566][756]LogFileHelpers: Loading map 'Main' took 0.109
  1212. [2024.09.10-05.00.58:944][183]LogSlate: Window 'Project Settings' being destroyed
  1213. [2024.09.10-05.00.58:952][183]LogSlate: Window 'Project Settings' being destroyed
  1214. [2024.09.10-05.00.59:454][230]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1215. [2024.09.10-05.00.59:521][230]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Main" FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1216. [2024.09.10-05.00.59:529][230]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms
  1217. [2024.09.10-05.00.59:547][230]LogSavePackage: Moving output files for package: /Game/Main
  1218. [2024.09.10-05.00.59:548][230]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/MainD21E13BF495CE80EED7DF19CC7836C92.tmp' to '../../../../../UnrealProject/SteelFactory/Content/Main.umap'
  1219. [2024.09.10-05.00.59:559][230]LogFileHelpers: Saving map 'Main' took 0.039
  1220. [2024.09.10-05.00.59:568][230]LogFileHelpers: InternalPromptForCheckoutAndSave took 114 ms (total: 381 ms)
  1221. [2024.09.10-05.00.59:574][230]AssetCheck: New page: Asset Save: Main
  1222. [2024.09.10-05.00.59:574][230]LogContentValidation: Display: Validating /Script/Engine.World /Game/Main.Main
  1223. [2024.09.10-05.01.00:653][355]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1224. [2024.09.10-05.01.00:718][355]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Main" FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1225. [2024.09.10-05.01.00:727][355]LogUObjectHash: Compacting FUObjectHashTables data took 0.36ms
  1226. [2024.09.10-05.01.00:742][355]LogSavePackage: Moving output files for package: /Game/Main
  1227. [2024.09.10-05.01.00:742][355]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/Main8A5259AD4F6ED911F6B7CBA5DEEF1A8F.tmp' to '../../../../../UnrealProject/SteelFactory/Content/Main.umap'
  1228. [2024.09.10-05.01.00:755][355]LogFileHelpers: Saving map 'Main' took 0.037
  1229. [2024.09.10-05.01.00:763][355]LogFileHelpers: InternalPromptForCheckoutAndSave took 110 ms (total: 491 ms)
  1230. [2024.09.10-05.01.00:768][355]AssetCheck: New page: Asset Save: Main
  1231. [2024.09.10-05.01.00:768][355]LogContentValidation: Display: Validating /Script/Engine.World /Game/Main.Main
  1232. [2024.09.10-05.01.00:870][367]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1233. [2024.09.10-05.01.00:935][367]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Main" FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1234. [2024.09.10-05.01.00:944][367]LogUObjectHash: Compacting FUObjectHashTables data took 0.33ms
  1235. [2024.09.10-05.01.00:960][367]LogSavePackage: Moving output files for package: /Game/Main
  1236. [2024.09.10-05.01.00:960][367]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/Main2350FC844400C62959237DA47B4E9660.tmp' to '../../../../../UnrealProject/SteelFactory/Content/Main.umap'
  1237. [2024.09.10-05.01.00:973][367]LogFileHelpers: Saving map 'Main' took 0.039
  1238. [2024.09.10-05.01.00:982][367]LogFileHelpers: InternalPromptForCheckoutAndSave took 112 ms (total: 603 ms)
  1239. [2024.09.10-05.01.00:987][367]AssetCheck: New page: Asset Save: Main
  1240. [2024.09.10-05.01.00:987][367]LogContentValidation: Display: Validating /Script/Engine.World /Game/Main.Main
  1241. [2024.09.10-05.01.01:088][379]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1242. [2024.09.10-05.01.01:155][379]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Main" FILE="../../../../../UnrealProject/SteelFactory/Content/Main.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1243. [2024.09.10-05.01.01:163][379]LogUObjectHash: Compacting FUObjectHashTables data took 0.31ms
  1244. [2024.09.10-05.01.01:178][379]LogSavePackage: Moving output files for package: /Game/Main
  1245. [2024.09.10-05.01.01:179][379]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/Main7701D48A4E40C7FA61C6F99B0C611805.tmp' to '../../../../../UnrealProject/SteelFactory/Content/Main.umap'
  1246. [2024.09.10-05.01.01:191][379]LogFileHelpers: Saving map 'Main' took 0.038
  1247. [2024.09.10-05.01.01:198][379]LogFileHelpers: InternalPromptForCheckoutAndSave took 109 ms (total: 713 ms)
  1248. [2024.09.10-05.01.01:204][379]AssetCheck: New page: Asset Save: Main
  1249. [2024.09.10-05.01.01:204][379]LogContentValidation: Display: Validating /Script/Engine.World /Game/Main.Main
  1250. [2024.09.10-05.01.15:935][921]LogEditorClassViewer: Warning: Class /Script/InteractiveToolsFramework.GizmoActor has parent /Script/InteractiveToolsFramework.InternalToolFrameworkActor, but this parent is not found. The Class will not be shown in ClassViewer.
  1251. [2024.09.10-05.01.15:936][921]LogEditorClassViewer: Warning: Class /Script/ModelingComponents.PreviewGeometryActor has parent /Script/InteractiveToolsFramework.InternalToolFrameworkActor, but this parent is not found. The Class will not be shown in ClassViewer.
  1252. [2024.09.10-05.01.15:936][921]LogEditorClassViewer: Warning: Class /Script/ModelingComponents.PreviewMeshActor has parent /Script/InteractiveToolsFramework.InternalToolFrameworkActor, but this parent is not found. The Class will not be shown in ClassViewer.
  1253. [2024.09.10-05.01.18:854][921]LogSlate: Window 'Pick Parent Class' being destroyed
  1254. [2024.09.10-05.01.45:007][215]LogSlate: Window 'Pick Root Widget for New Widget Blueprint' being destroyed
  1255. [2024.09.10-05.01.45:028][215]LogContentBrowser: Deferred new asset file creation: NewWidgetBlueprint
  1256. [2024.09.10-05.01.45:034][215]LogContentBrowser: Creating deferred item: NewWidgetBlueprint
  1257. [2024.09.10-05.01.45:049][216]LogContentBrowser: Renaming the item being created (Deferred Item: NewWidgetBlueprint).
  1258. [2024.09.10-05.01.48:010][561]LogContentBrowser: Attempting asset rename: NewWidgetBlueprint -> MainUI
  1259. [2024.09.10-05.01.48:030][561]LogContentBrowser: End creating deferred item NewWidgetBlueprint
  1260. [2024.09.10-05.01.48:210][582]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/MainUI.MainUI
  1261. [2024.09.10-05.01.48:211][582]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1262. [2024.09.10-05.01.48:220][582]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1263. [2024.09.10-05.01.48:228][582]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar]
  1264. [2024.09.10-05.01.49:736][582]LogSlateStyle: Warning: Unable to find Slate Widget Style 'None'. Using FToolbarStyle defaults instead.
  1265. [2024.09.10-05.01.49:736][582]LogSlateStyle: Warning: Unable to find Slate Widget Style 'None'. Using FToolbarStyle defaults instead.
  1266. [2024.09.10-05.01.49:893][582]LogSlate: Took 0.001670 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K)
  1267. [2024.09.10-05.01.49:933][582]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.'
  1268. [2024.09.10-05.01.49:935][582]LogSlate: Took 0.000530 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K)
  1269. [2024.09.10-05.01.57:154][257]LogSlate: Window 'MainUI' being destroyed
  1270. [2024.09.10-05.01.57:162][257]LogSlate: Window 'MainUI' being destroyed
  1271. [2024.09.10-05.01.57:211][257]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true
  1272. [2024.09.10-05.01.57:211][257]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1273. [2024.09.10-05.01.57:224][257]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true
  1274. [2024.09.10-05.01.57:225][257]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1275. [2024.09.10-05.01.57:680][296]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1276. [2024.09.10-05.01.57:744][296]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/MainUI" FILE="../../../../../UnrealProject/SteelFactory/Content/MainUI.uasset" SILENT=true
  1277. [2024.09.10-05.01.57:748][296]LogSavePackage: Moving output files for package: /Game/MainUI
  1278. [2024.09.10-05.01.57:748][296]LogSavePackage: Moving '../../../../../UnrealProject/SteelFactory/Saved/MainUI891C2A924C7373D04F5669A27D59D4AC.tmp' to '../../../../../UnrealProject/SteelFactory/Content/MainUI.uasset'
  1279. [2024.09.10-05.01.57:756][296]LogFileHelpers: InternalPromptForCheckoutAndSave took 76 ms (total: 789 ms)
  1280. [2024.09.10-05.01.57:765][296]AssetCheck: New page: Asset Save: MainUI
  1281. [2024.09.10-05.01.57:765][296]LogContentValidation: Display: Validating /Script/UMGEditor.WidgetBlueprint /Game/MainUI.MainUI
  1282. [2024.09.10-05.02.06:053][119]Cmd: CLOSE_SLATE_MAINFRAME
  1283. [2024.09.10-05.02.06:174][119]LogUObjectHash: Compacting FUObjectHashTables data took 2.31ms
  1284. [2024.09.10-05.02.06:181][119]LogStall: Shutdown...
  1285. [2024.09.10-05.02.06:185][119]LogStall: Shutdown complete.
  1286. [2024.09.10-05.02.06:224][119]LogSlate: Window 'Plugins' being destroyed
  1287. [2024.09.10-05.02.06:234][119]LogDirectoryWatcher: A directory notification for '../../../Engine/Plugins/' was aborted.
  1288. [2024.09.10-05.02.06:234][119]LogDirectoryWatcher: A directory notification for '../../../../../UnrealProject/SteelFactory/Plugins/' was aborted.
  1289. [2024.09.10-05.02.06:237][119]LogSlate: Window 'SteelFactory - Unreal Editor' being destroyed
  1290. [2024.09.10-05.02.06:239][119]LogWindowsTextInputMethodSystem: Activated input method: 英语(美国) - (Keyboard).
  1291. [2024.09.10-05.02.06:377][120]Cmd: QUIT_EDITOR
  1292. [2024.09.10-05.02.06:378][120]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor())
  1293. [2024.09.10-05.02.06:388][120]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
  1294. [2024.09.10-05.02.06:388][120]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown
  1295. [2024.09.10-05.02.06:388][120]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown
  1296. [2024.09.10-05.02.06:391][120]LogWorld: UWorld::CleanupWorld for Main, bSessionEnded=true, bCleanupResources=true
  1297. [2024.09.10-05.02.06:391][120]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1298. [2024.09.10-05.02.06:393][120]LogStylusInput: Shutting down StylusInput subsystem.
  1299. [2024.09.10-05.02.06:394][120]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized.
  1300. [2024.09.10-05.02.07:548][120]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
  1301. [2024.09.10-05.02.07:548][120]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
  1302. [2024.09.10-05.02.07:548][120]LogAudio: Display: Audio Device unregistered from world 'Main'.
  1303. [2024.09.10-05.02.07:548][120]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
  1304. [2024.09.10-05.02.07:550][120]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
  1305. [2024.09.10-05.02.07:556][120]LogAudio: Display: Audio Device Manager Shutdown
  1306. [2024.09.10-05.02.07:560][120]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0
  1307. [2024.09.10-05.02.07:560][120]LogExit: Preparing to exit.
  1308. [2024.09.10-05.02.07:632][120]LogUObjectHash: Compacting FUObjectHashTables data took 3.01ms
  1309. [2024.09.10-05.02.07:650][120]LogPython: Display: Object '/Engine/PythonTypes.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1310. [2024.09.10-05.02.07:650][120]LogPython: Display: Object '/Engine/PythonTypes.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1311. [2024.09.10-05.02.07:650][120]LogPython: Display: Object '/Engine/PythonTypes.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1312. [2024.09.10-05.02.07:650][120]LogPython: Display: Object '/Engine/PythonTypes.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1313. [2024.09.10-05.02.07:650][120]LogPython: Display: Object '/Engine/PythonTypes.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1314. [2024.09.10-05.02.07:650][120]LogPython: Display: Object '/Engine/PythonTypes.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1315. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1316. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1317. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1318. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1319. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1320. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1321. [2024.09.10-05.02.08:750][120]LogActorComponent: UnregisterComponent: (None.None) Not registered. Aborting.
  1322. [2024.09.10-05.02.08:750][120]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true
  1323. [2024.09.10-05.02.08:845][120]LogExit: Editor shut down
  1324. [2024.09.10-05.02.08:846][120]LogExit: Transaction tracking system shut down
  1325. [2024.09.10-05.02.08:860][120]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
  1326. [2024.09.10-05.02.09:068][120]LogExit: Object subsystem successfully closed.
  1327. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: ================================================
  1328. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: === FShaderJobCache stats ===
  1329. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: Total job queries 127, among them cache hits 15 (11.81%)
  1330. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: Tracking 112 distinct input hashes that result in 94 distinct outputs (83.93%)
  1331. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: RAM used: 0.94 MB (0.00 GB) of 1638.40 MB (1.60 GB) budget. Usage: 0.06%
  1332. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: === Shader Compilation stats ===
  1333. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: Shaders Compiled: 0
  1334. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: Jobs assigned 0, completed 0 (0.00%)
  1335. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: Time at least one job was in flight (either pending or executed): 0.00 s
  1336. [2024.09.10-05.02.09:079][120]LogShaderCompilers: Display: ================================================
  1337. [2024.09.10-05.02.09:141][120]LogShaderCompilers: Display: Shaders left to compile 0
  1338. [2024.09.10-05.02.09:157][120]LogVirtualization: UE::Virtualization was shutdown
  1339. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module SequencerWidgets (1013)
  1340. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module BlueprintGraph (1011)
  1341. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module ExternalImagePicker (1009)
  1342. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module MovieSceneCapture (1007)
  1343. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module Voice (1005)
  1344. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module HierarchicalLODOutliner (1003)
  1345. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module UnsavedAssetsTracker (1001)
  1346. [2024.09.10-05.02.09:172][120]LogModuleManager: Shutting down and abandoning module SubobjectEditor (999)
  1347. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module SceneOutliner (997)
  1348. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AddContentDialog (995)
  1349. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WidgetCarousel (994)
  1350. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module StatusBar (991)
  1351. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module GameProjectGeneration (989)
  1352. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module StatsViewer (987)
  1353. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module SequenceRecorderSections (985)
  1354. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AutomationWorker (983)
  1355. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (981)
  1356. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WebMMediaEditor (979)
  1357. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WebMMedia (977)
  1358. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (975)
  1359. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WmfMediaEditor (973)
  1360. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module MediaPlayerEditor (971)
  1361. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (969)
  1362. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (967)
  1363. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module ImgMediaEditor (965)
  1364. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module MediaCompositingEditor (963)
  1365. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (961)
  1366. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AvfMediaEditor (959)
  1367. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AndroidMediaFactory (957)
  1368. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AndroidMediaEditor (955)
  1369. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module CameraShakePreviewer (953)
  1370. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module TextureAlignMode (951)
  1371. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module BspMode (949)
  1372. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module GeometryMode (947)
  1373. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module SunPosition (945)
  1374. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module CesiumEditor (943)
  1375. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WaveTableEditor (941)
  1376. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module ResonanceAudioEditor (939)
  1377. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module LevelSequenceEditor (937)
  1378. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module GooglePADEditor (935)
  1379. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AndroidFileServerEditor (933)
  1380. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module AudioCaptureEditor (931)
  1381. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module SequenceRecorder (930)
  1382. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module TemplateSequenceEditor (927)
  1383. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module ActorSequenceEditor (925)
  1384. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module IKRigEditor (923)
  1385. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module ControlRigEditor (921)
  1386. [2024.09.10-05.02.09:173][120]LogModuleManager: Shutting down and abandoning module WaterEditor (919)
  1387. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module PlanarCut (917)
  1388. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module CharacterAI (915)
  1389. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module SmartSnapping (913)
  1390. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module SessionServices (911)
  1391. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module MeshPaint (909)
  1392. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module VirtualTexturingEditor (907)
  1393. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module PlacementMode (906)
  1394. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module FoliageEdit (903)
  1395. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module LandscapeEditor (901)
  1396. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module SceneDepthPickerMode (899)
  1397. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module ActorPickerMode (897)
  1398. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module ViewportSnapping (895)
  1399. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module ViewportInteraction (893)
  1400. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module ClothPainter (891)
  1401. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module SkeletalMeshEditor (890)
  1402. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module LogVisualizer (887)
  1403. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module IOSPlatformEditor (885)
  1404. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module AndroidPlatformEditor (883)
  1405. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module PIEPreviewDeviceProfileSelector (882)
  1406. [2024.09.10-05.02.09:174][120]LogModuleManager: Shutting down and abandoning module AndroidDeviceDetection (880)
  1407. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module WindowsPlatformEditor (877)
  1408. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module HoloLensPlatformEditor (875)
  1409. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module IOSRuntimeSettings (873)
  1410. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module AndroidRuntimeSettings (871)
  1411. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module AnimationSettings (869)
  1412. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module VirtualizationEditor (867)
  1413. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module CSVtoSVG (865)
  1414. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module DerivedDataEditor (863)
  1415. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module EditorConfig (861)
  1416. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module WorldPartitionEditor (859)
  1417. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module EditorFramework (857)
  1418. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module StaticMeshEditor (855)
  1419. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module TraceInsights (853)
  1420. [2024.09.10-05.02.09:536][120]MemoryProfiler: Shutdown
  1421. [2024.09.10-05.02.09:536][120]NetworkingProfiler: Shutdown
  1422. [2024.09.10-05.02.09:536][120]LoadingProfiler: Shutdown
  1423. [2024.09.10-05.02.09:536][120]TimingProfiler: Shutdown
  1424. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module TraceServices (852)
  1425. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module EditorInteractiveToolsFramework (849)
  1426. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module InteractiveToolsFramework (848)
  1427. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module InputBindingEditor (845)
  1428. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module MergeActors (843)
  1429. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module LocalizationDashboard (841)
  1430. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module LocalizationService (840)
  1431. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module HardwareTargeting (837)
  1432. [2024.09.10-05.02.09:536][120]LogModuleManager: Shutting down and abandoning module DeviceProfileEditor (835)
  1433. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module UndoHistory (833)
  1434. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module XmlParser (831)
  1435. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module Blutility (829)
  1436. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module ProjectSettingsViewer (827)
  1437. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module ProjectTargetPlatformEditor (826)
  1438. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module EditorSettingsViewer (823)
  1439. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module InternationalizationSettings (822)
  1440. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module SettingsEditor (819)
  1441. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module ProjectLauncher (817)
  1442. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module SessionFrontend (815)
  1443. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module ProfilerClient (813)
  1444. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module DeviceManager (811)
  1445. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module AutomationController (809)
  1446. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module AutomationWindow (807)
  1447. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module Layers (805)
  1448. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module ComponentVisualizers (803)
  1449. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module DetailCustomizations (801)
  1450. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module PackagesDialog (799)
  1451. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module AnimationBlueprintEditor (797)
  1452. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module Persona (795)
  1453. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module AdvancedPreviewScene (794)
  1454. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module AnimGraph (792)
  1455. [2024.09.10-05.02.09:537][120]LogModuleManager: Shutting down and abandoning module Kismet (789)
  1456. [2024.09.10-05.02.09:553][120]LogModuleManager: Shutting down and abandoning module KismetWidgets (788)
  1457. [2024.09.10-05.02.09:553][120]LogModuleManager: Shutting down and abandoning module GraphEditor (785)
  1458. [2024.09.10-05.02.09:553][120]LogModuleManager: Shutting down and abandoning module StructViewer (783)
  1459. [2024.09.10-05.02.09:553][120]LogModuleManager: Shutting down and abandoning module ClassViewer (781)
  1460. [2024.09.10-05.02.09:556][120]LogModuleManager: Shutting down and abandoning module NaniteTools (779)
  1461. [2024.09.10-05.02.09:556][120]LogModuleManager: Shutting down and abandoning module UncontrolledChangelists (777)
  1462. [2024.09.10-05.02.09:557][120]LogModuleManager: Shutting down and abandoning module SourceControlWindowExtender (775)
  1463. [2024.09.10-05.02.09:557][120]LogModuleManager: Shutting down and abandoning module SourceControlWindows (773)
  1464. [2024.09.10-05.02.09:557][120]LogModuleManager: Shutting down and abandoning module OutputLog (771)
  1465. [2024.09.10-05.02.09:557][120]LogModuleManager: Shutting down and abandoning module Documentation (769)
  1466. [2024.09.10-05.02.09:557][120]LogModuleManager: Shutting down and abandoning module LiveCoding (767)
  1467. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (765)
  1468. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module MovieScene (763)
  1469. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (761)
  1470. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (759)
  1471. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (757)
  1472. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module AudioMixer (756)
  1473. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module AudioMixerCore (755)
  1474. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module LauncherPlatform (751)
  1475. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module AnalyticsET (749)
  1476. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module PortalServices (747)
  1477. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module PortalRpc (745)
  1478. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module MessagingRpc (743)
  1479. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module AIModule (741)
  1480. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module GameplayDebugger (740)
  1481. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module AITestSuite (738)
  1482. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module NavigationSystem (736)
  1483. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module DataLayerEditor (733)
  1484. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module EditorWidgets (732)
  1485. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module LevelInstanceEditor (729)
  1486. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (727)
  1487. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module TypedElementFramework (725)
  1488. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (723)
  1489. [2024.09.10-05.02.09:565][120]LogModuleManager: Shutting down and abandoning module ProfilerService (721)
  1490. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module TaskGraph (719)
  1491. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaEditor (717)
  1492. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module TakeRecorderSources (715)
  1493. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module TakeTrackRecorders (713)
  1494. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module TakesCore (711)
  1495. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module MegascansPlugin (709)
  1496. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module Bridge (707)
  1497. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module ContentBrowserClassDataSource (705)
  1498. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module ObjectMixerEditor (703)
  1499. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module LightMixer (701)
  1500. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module ContentBrowserFileDataSource (699)
  1501. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module ContentBrowserAssetDataSource (697)
  1502. [2024.09.10-05.02.09:787][120]LogModuleManager: Shutting down and abandoning module CollectionManager (696)
  1503. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module ImgMedia (693)
  1504. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module MediaPlateEditor (691)
  1505. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module MediaPlate (689)
  1506. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module MediaCompositing (687)
  1507. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (685)
  1508. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module VisualStudioCodeSourceCodeAccess (683)
  1509. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module VisualStudioSourceCodeAccess (681)
  1510. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module UObjectPlugin (679)
  1511. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module SubversionSourceControl (677)
  1512. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module RiderSourceCodeAccess (675)
  1513. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module PlasticSourceControl (673)
  1514. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module AnimationSharingEd (671)
  1515. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module PluginUtils (669)
  1516. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module GitSourceControl (667)
  1517. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module DumpGPUServices (665)
  1518. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module CLionSourceCodeAccess (663)
  1519. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module PluginBrowser (661)
  1520. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module VariantManager (659)
  1521. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module VariantManagerContentEditor (658)
  1522. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module GLTFMaterialBaking (655)
  1523. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module GLTFMaterialAnalyzer (653)
  1524. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module DatasmithContentEditor (651)
  1525. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module WorldPartitionHLODUtilities (649)
  1526. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module MaterialAnalyzer (647)
  1527. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module SpeedTreeImporter (645)
  1528. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module StylusInput (643)
  1529. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module SequencerAnimTools (641)
  1530. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module GLTFImporter (639)
  1531. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module GLTFCore (637)
  1532. [2024.09.10-05.02.09:788][120]LogModuleManager: Shutting down and abandoning module ModelingToolsEditorMode (635)
  1533. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module MobileLauncherProfileWizard (633)
  1534. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module EditorScriptingUtilities (631)
  1535. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module EditorDebugTools (629)
  1536. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module CurveEditorTools (627)
  1537. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module CryptoKeysOpenSSL (625)
  1538. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module CryptoKeys (623)
  1539. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module BlueprintHeaderView (621)
  1540. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module SynthesisEditor (619)
  1541. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ResonanceAudio (617)
  1542. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponentEditor (615)
  1543. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (613)
  1544. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module DynamicMesh (611)
  1545. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (609)
  1546. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ModelingOperatorsEditorOnly (607)
  1547. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ModelingOperators (605)
  1548. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ModelingComponentsEditorOnly (603)
  1549. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ModelingComponents (601)
  1550. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryFramework (600)
  1551. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module MeshModelingToolsEditorOnly (597)
  1552. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module MeshModelingTools (595)
  1553. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GooglePAD (593)
  1554. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InputDebugging (591)
  1555. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AppleImageUtilsBlueprintSupport (589)
  1556. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AppleImageUtils (587)
  1557. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (585)
  1558. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryCacheStreamer (583)
  1559. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryCacheSequencer (581)
  1560. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AudioCapture (579)
  1561. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AudioCaptureRtAudio (578)
  1562. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AssetTags (575)
  1563. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (573)
  1564. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module SequencerScriptingEditor (571)
  1565. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module SequencerScripting (569)
  1566. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AlembicImporter (567)
  1567. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AlembicLibrary (566)
  1568. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryCache (565)
  1569. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module GeometryCacheEd (564)
  1570. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AnimationModifierLibrary (559)
  1571. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module AndroidPermission (557)
  1572. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module TakeSequencer (555)
  1573. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module TakeMovieScene (553)
  1574. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ActorLayerUtilitiesEditor (551)
  1575. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (549)
  1576. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeTestEditor (547)
  1577. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeTests (545)
  1578. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module TemplateSequence (543)
  1579. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module NiagaraEditorWidgets (539)
  1580. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeFbxParser (537)
  1581. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (535)
  1582. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (533)
  1583. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangePipelines (531)
  1584. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeExport (529)
  1585. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeMessages (527)
  1586. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeImport (525)
  1587. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (523)
  1588. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeNodes (521)
  1589. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeEditorUtilities (519)
  1590. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeResultsBrowser (517)
  1591. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeEditorPipelines (515)
  1592. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module InterchangeEditor (513)
  1593. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module ControlRigSpline (511)
  1594. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module BlendSpaceMotionAnalysis (509)
  1595. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module UVEditorToolsEditorOnly (507)
  1596. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module UVEditorTools (505)
  1597. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module UVEditor (503)
  1598. [2024.09.10-05.02.09:789][120]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (501)
  1599. [2024.09.10-05.02.09:789][120]LogOpenImageDenoise: OIDN shutting down
  1600. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ModelingEditorUI (499)
  1601. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryProcessingAdapters (497)
  1602. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MeshModelingToolsEditorOnlyExp (495)
  1603. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MeshModelingToolsExp (493)
  1604. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MeshLODToolset (491)
  1605. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (489)
  1606. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (487)
  1607. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryCollectionEngine (486)
  1608. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryCollectionSequencer (484)
  1609. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryCollectionEditor (481)
  1610. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module LandmassEditor (479)
  1611. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module Landmass (477)
  1612. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module Iris (475)
  1613. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryFlowMeshProcessingEditor (473)
  1614. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryFlowMeshProcessing (471)
  1615. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GeometryFlowCore (469)
  1616. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module DataflowNodes (467)
  1617. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module DataflowEditor (465)
  1618. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ChaosSolverEditor (463)
  1619. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module FractureEditor (461)
  1620. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (459)
  1621. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ChaosNiagara (457)
  1622. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ChaosClothEditor (455)
  1623. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AutomationUtilsEditor (453)
  1624. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AutomationUtils (451)
  1625. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module BackChannel (449)
  1626. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module PaperTiledImporter (447)
  1627. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module PaperSpriteSheetImporter (445)
  1628. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module Paper2DEditor (443)
  1629. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module InputEditor (441)
  1630. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module EditorTraceUtilities (439)
  1631. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module TraceUtilities (437)
  1632. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MeshPaintingToolset (435)
  1633. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MeshPaintEditorMode (433)
  1634. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (431)
  1635. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module EnvironmentQueryEditor (429)
  1636. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module PropertyAccessNode (427)
  1637. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module TraceDataFiltering (425)
  1638. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AnimationSharing (423)
  1639. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module DataValidation (421)
  1640. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GameplayTagsEditor (419)
  1641. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module FacialAnimationEditor (417)
  1642. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module FacialAnimation (415)
  1643. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module SoundFields (413)
  1644. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AssetManagerEditor (411)
  1645. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module TreeMap (410)
  1646. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module GameplayCameras (407)
  1647. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module Synthesis (405)
  1648. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module SignificanceManager (403)
  1649. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module PropertyAccessEditor (401)
  1650. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (399)
  1651. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundEditor (397)
  1652. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AudioWidgets (396)
  1653. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (395)
  1654. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (391)
  1655. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundEngine (389)
  1656. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module WaveTable (388)
  1657. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (386)
  1658. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (383)
  1659. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (381)
  1660. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (379)
  1661. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (377)
  1662. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (375)
  1663. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (373)
  1664. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module CableComponent (371)
  1665. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (369)
  1666. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (368)
  1667. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (365)
  1668. [2024.09.10-05.02.09:790][120]LogModuleManager: Shutting down and abandoning module UdpMessaging (363)
  1669. [2024.09.10-05.02.09:891][120]LogModuleManager: Shutting down and abandoning module TcpMessaging (361)
  1670. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (359)
  1671. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module Niagara (357)
  1672. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module SignalProcessing (356)
  1673. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module NiagaraEditor (354)
  1674. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module ContentBrowser (353)
  1675. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module ToolMenus (352)
  1676. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module ContentBrowserData (350)
  1677. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module NiagaraCore (345)
  1678. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module ActorSequence (343)
  1679. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module IKRigDeveloper (341)
  1680. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module IKRig (339)
  1681. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module ControlRigDeveloper (337)
  1682. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module ControlRig (335)
  1683. [2024.09.10-05.02.09:992][120]LogModuleManager: Shutting down and abandoning module PythonScriptPlugin (333)
  1684. [2024.09.10-05.02.09:997][120]LogModuleManager: Shutting down and abandoning module PBIK (331)
  1685. [2024.09.10-05.02.09:997][120]LogModuleManager: Shutting down and abandoning module FullBodyIK (329)
  1686. [2024.09.10-05.02.09:997][120]LogModuleManager: Shutting down and abandoning module ChaosCachingEditor (327)
  1687. [2024.09.10-05.02.09:997][120]LogModuleManager: Shutting down and abandoning module TakeRecorder (326)
  1688. [2024.09.10-05.02.09:997][120]LogModuleManager: Shutting down and abandoning module LevelEditor (324)
  1689. [2024.09.10-05.02.09:999][120]LogModuleManager: Shutting down and abandoning module PixelInspectorModule (323)
  1690. [2024.09.10-05.02.09:999][120]LogModuleManager: Shutting down and abandoning module LevelAssetEditor (321)
  1691. [2024.09.10-05.02.09:999][120]LogModuleManager: Shutting down and abandoning module CommonMenuExtensions (319)
  1692. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module MainFrame (317)
  1693. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module HotReload (316)
  1694. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module ChaosCaching (311)
  1695. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module LevelSequence (310)
  1696. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module Paper2D (307)
  1697. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module InputBlueprintNodes (305)
  1698. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module EnhancedInput (303)
  1699. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module BlueprintMaterialTextureNodes (301)
  1700. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (299)
  1701. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (297)
  1702. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module AndroidFileServer (295)
  1703. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (293)
  1704. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module PacketHandler (291)
  1705. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module TimeManagement (289)
  1706. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module AnimationDataController (287)
  1707. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module ClothingSystemEditor (285)
  1708. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (283)
  1709. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module MediaAssets (281)
  1710. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module Overlay (279)
  1711. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module OverlayEditor (278)
  1712. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module VREditor (275)
  1713. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module StringTableEditor (273)
  1714. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module GameplayTasksEditor (271)
  1715. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module BehaviorTreeEditor (269)
  1716. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module FunctionalTesting (267)
  1717. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module CollisionAnalyzer (265)
  1718. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module WorkspaceMenuStructure (264)
  1719. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module UMG (261)
  1720. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module UMGEditor (260)
  1721. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module EditorStyle (255)
  1722. [2024.09.10-05.02.10:000][120]LogModuleManager: Shutting down and abandoning module SlateReflector (253)
  1723. [2024.09.10-05.02.10:001][120]LogModuleManager: Shutting down and abandoning module Slate (251)
  1724. [2024.09.10-05.02.10:001][120]LogModuleManager: Shutting down and abandoning module SlateCore (249)
  1725. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module SubobjectDataInterface (247)
  1726. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module LandscapeEditorUtilities (245)
  1727. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module UnrealEd (243)
  1728. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module MRMesh (241)
  1729. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module Messaging (239)
  1730. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module SourceCodeAccess (237)
  1731. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (235)
  1732. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module Networking (233)
  1733. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module Core (231)
  1734. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module MaterialEditor (229)
  1735. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module MovieSceneTools (227)
  1736. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module CurveEditor (226)
  1737. [2024.09.10-05.02.10:002][120]LogModuleManager: Shutting down and abandoning module Sequencer (224)
  1738. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module KismetCompiler (221)
  1739. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module MeshBuilder (219)
  1740. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module NaniteBuilder (217)
  1741. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module MeshUtilities (215)
  1742. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module MeshMergeUtilities (214)
  1743. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module MeshReductionInterface (213)
  1744. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module MeshBoneReduction (212)
  1745. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module SkeletalMeshReduction (210)
  1746. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module ProxyLODMeshReduction (208)
  1747. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module QuadricMeshReduction (206)
  1748. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module MaterialBaking (202)
  1749. [2024.09.10-05.02.10:003][120]LogModuleManager: Shutting down and abandoning module TargetDeviceServices (199)
  1750. [2024.09.10-05.02.10:014][120]LogModuleManager: Shutting down and abandoning module NullInstallBundleManager (195)
  1751. [2024.09.10-05.02.10:014][120]LogModuleManager: Shutting down and abandoning module DerivedDataCache (193)
  1752. [2024.09.10-05.02.10:015][120]LogDerivedDataCache: C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:09.832 and deleted 0 files with total size 0 MiB. Scanned 5626 files in 5374 folders with total size 1135 MiB.
  1753. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TargetPlatform (191)
  1754. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module ShaderFormatVectorVM (190)
  1755. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module MetalShaderFormat (188)
  1756. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module VulkanShaderFormat (186)
  1757. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module ShaderFormatOpenGL (184)
  1758. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module ShaderFormatD3D (182)
  1759. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module AudioFormatBink (180)
  1760. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module AudioFormatADPCM (177)
  1761. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module AudioFormatOGG (175)
  1762. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module AudioFormatOPUS (173)
  1763. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module WindowsTargetPlatform (171)
  1764. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TVOSTargetPlatform (169)
  1765. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module LinuxArm64TargetPlatform (167)
  1766. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module LinuxTargetPlatform (165)
  1767. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module IOSTargetPlatform (163)
  1768. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module HoloLensTargetPlatform (161)
  1769. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module AndroidTargetPlatform (159)
  1770. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormat (157)
  1771. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module ImageWrapper (156)
  1772. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormatOodle (154)
  1773. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormatUncompressed (152)
  1774. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormatIntelISPCTexComp (150)
  1775. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormatETC2 (148)
  1776. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormatDXT (146)
  1777. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TextureFormatASTC (144)
  1778. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module TurnkeySupport (141)
  1779. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module InputCore (138)
  1780. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module Settings (136)
  1781. [2024.09.10-05.02.10:018][120]LogModuleManager: Shutting down and abandoning module DirectoryWatcher (134)
  1782. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (132)
  1783. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (131)
  1784. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module Chaos (128)
  1785. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module GeometryCore (127)
  1786. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (124)
  1787. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (123)
  1788. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module AVEncoder (122)
  1789. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module D3D12RHI (118)
  1790. [2024.09.10-05.02.10:019][120]LogModuleManager: Shutting down and abandoning module WmfMedia (116)
  1791. [2024.09.10-05.02.10:023][120]LogModuleManager: Shutting down and abandoning module Media (115)
  1792. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (112)
  1793. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module AISupportModule (110)
  1794. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module PixWinPlugin (108)
  1795. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module VariantManagerContent (106)
  1796. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module GLTFExporter (104)
  1797. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module DatasmithContent (102)
  1798. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module CesiumRuntime (100)
  1799. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (98)
  1800. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (96)
  1801. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module ChunkDownloader (94)
  1802. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (92)
  1803. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (90)
  1804. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (88)
  1805. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module OnlineBlueprintSupport (86)
  1806. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (84)
  1807. [2024.09.10-05.02.10:025][120]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (82)
  1808. [2024.09.10-05.02.10:028][120]LogModuleManager: Shutting down and abandoning module XMPP (77)
  1809. [2024.09.10-05.02.10:028][120]LogModuleManager: Shutting down and abandoning module WebSockets (76)
  1810. [2024.09.10-05.02.10:067][120]LogModuleManager: Shutting down and abandoning module HTTP (73)
  1811. [2024.09.10-05.02.10:081][120]LogModuleManager: Shutting down and abandoning module SSL (72)
  1812. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (68)
  1813. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module NiagaraShader (66)
  1814. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (64)
  1815. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module Water (62)
  1816. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module ChaosCloth (60)
  1817. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module DesktopPlatform (58)
  1818. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module PerforceSourceControl (56)
  1819. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module SourceControl (55)
  1820. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (52)
  1821. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (50)
  1822. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module PlatformCrypto (48)
  1823. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (46)
  1824. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module XGEController (44)
  1825. [2024.09.10-05.02.10:084][120]LogModuleManager: Shutting down and abandoning module FastBuildController (42)
  1826. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module AnimationModifiers (40)
  1827. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module AudioEditor (38)
  1828. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module PropertyEditor (37)
  1829. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module Virtualization (34)
  1830. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module MessageLog (33)
  1831. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module TextureCompressor (30)
  1832. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module RenderCore (28)
  1833. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module Landscape (26)
  1834. [2024.09.10-05.02.10:085][120]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
  1835. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
  1836. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module Renderer (20)
  1837. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module Engine (18)
  1838. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
  1839. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
  1840. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module PakFile (12)
  1841. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module RSA (11)
  1842. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
  1843. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
  1844. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
  1845. [2024.09.10-05.02.10:086][120]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
  1846. [2024.09.10-05.02.10:237][120]LogD3D12RHI: ~FD3D12DynamicRHI
  1847. [2024.09.10-05.02.10:317][120]LogExit: Exiting.
  1848. [2024.09.10-05.02.10:327][120]Log file closed, 09/10/24 13:02:10