Cooperate-backup-2023.09.15-08.46.31.log 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. Log file open, 09/15/23 16:29:26
  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=32092)
  10. LogWindows: Custom abort handler registered for crash reporting.
  11. LogInit: Display: Running engine for game: Cooperate
  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="" E:\Work\ueProjects\Cooperate\Cooperate.uproject""
  21. LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.3324] "
  22. LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
  23. LogCsvProfiler: Display: Metadata set : pgoenabled="0"
  24. LogCsvProfiler: Display: Metadata set : loginid="38f7d028420349f7539f9d99f4d404cf"
  25. LogCsvProfiler: Display: Metadata set : asan="0"
  26. LogCsvProfiler: Display: Metadata set : llm="0"
  27. LogStats: Stats thread started at 0.233548
  28. LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: ''
  29. LogInit: Session CrashGUID >====================================================
  30. Session CrashGUID > UECC-Windows-6E01BA4B4220BC2539A9D1A97DE747D5
  31. Session CrashGUID >====================================================
  32. LogConfig: Display: Loading HoloLens ini files took 0.02 seconds
  33. LogConfig: Display: Loading Android ini files took 0.02 seconds
  34. LogConfig: Display: Loading IOS ini files took 0.02 seconds
  35. LogConfig: Display: Loading VulkanPC ini files took 0.02 seconds
  36. LogConfig: Display: Loading Mac ini files took 0.02 seconds
  37. LogConfig: Display: Loading Windows ini files took 0.02 seconds
  38. LogConfig: Display: Loading Unix ini files took 0.03 seconds
  39. LogConfig: Display: Loading TVOS ini files took 0.03 seconds
  40. LogConfig: Display: Loading Linux ini files took 0.03 seconds
  41. LogConfig: Display: Loading LinuxArm64 ini files took 0.03 seconds
  42. LogPluginManager: Mounting Engine plugin Bridge
  43. LogPluginManager: Mounting Engine plugin EnhancedInput
  44. LogPluginManager: Mounting Engine plugin FastBuildController
  45. LogPluginManager: Mounting Engine plugin MeshPainting
  46. LogPluginManager: Mounting Engine plugin XGEController
  47. LogPluginManager: Mounting Engine plugin TraceUtilities
  48. LogPluginManager: Mounting Engine plugin AlembicImporter
  49. LogPluginManager: Mounting Engine plugin AnimationModifierLibrary
  50. LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis
  51. LogPluginManager: Mounting Engine plugin ControlRig
  52. LogPluginManager: Mounting Engine plugin ControlRigSpline
  53. LogPluginManager: Mounting Engine plugin Niagara
  54. LogPluginManager: Mounting Engine plugin AISupport
  55. LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
  56. LogPluginManager: Mounting Engine plugin IKRig
  57. LogPluginManager: Mounting Engine plugin GameplayCameras
  58. LogPluginManager: Mounting Engine plugin AnimationSharing
  59. LogPluginManager: Mounting Engine plugin CameraShakePreviewer
  60. LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess
  61. LogPluginManager: Mounting Engine plugin NullSourceCodeAccess
  62. LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess
  63. LogPluginManager: Mounting Engine plugin GitSourceControl
  64. LogPluginManager: Mounting Engine plugin PerforceSourceControl
  65. LogPluginManager: Mounting Engine plugin PlasticSourceControl
  66. LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess
  67. LogPluginManager: Mounting Engine plugin PixWinPlugin
  68. LogPluginManager: Mounting Engine plugin DumpGPUServices
  69. LogPluginManager: Mounting Engine plugin PluginUtils
  70. LogPluginManager: Mounting Engine plugin PropertyAccessNode
  71. LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess
  72. LogPluginManager: Mounting Engine plugin TraceDataFilters
  73. LogPluginManager: Mounting Engine plugin UObjectPlugin
  74. LogPluginManager: Mounting Engine plugin TextureFormatOodle
  75. LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess
  76. LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess
  77. LogPluginManager: Mounting Engine plugin UdpMessaging
  78. LogPluginManager: Mounting Engine plugin TcpMessaging
  79. LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess
  80. LogPluginManager: Mounting Engine plugin SubversionSourceControl
  81. LogPluginManager: Mounting Engine plugin Takes
  82. LogPluginManager: Mounting Engine plugin OodleNetwork
  83. LogPluginManager: Mounting Engine plugin ActorSequence
  84. LogPluginManager: Mounting Engine plugin LevelSequenceEditor
  85. LogPluginManager: Mounting Engine plugin SequencerScripting
  86. LogPluginManager: Mounting Engine plugin TemplateSequence
  87. LogPluginManager: Mounting Engine plugin OnlineBase
  88. LogPluginManager: Mounting Engine plugin OnlineServices
  89. LogPluginManager: Mounting Engine plugin OnlineSubsystem
  90. LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
  91. LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
  92. LogPluginManager: Mounting Engine plugin DataprepEditor
  93. LogPluginManager: Mounting Engine plugin DatasmithFBXImporter
  94. LogPluginManager: Mounting Engine plugin DatasmithImporter
  95. LogPluginManager: Mounting Engine plugin DatasmithContent
  96. LogPluginManager: Mounting Engine plugin GLTFExporter
  97. LogPluginManager: Mounting Engine plugin VariantManager
  98. LogPluginManager: Mounting Engine plugin VariantManagerContent
  99. LogPluginManager: Mounting Engine plugin AutomationUtils
  100. LogPluginManager: Mounting Engine plugin BackChannel
  101. LogPluginManager: Mounting Engine plugin ChaosCaching
  102. LogPluginManager: Mounting Engine plugin ChaosClothEditor
  103. LogPluginManager: Mounting Engine plugin ChaosCloth
  104. LogPluginManager: Mounting Engine plugin ChaosEditor
  105. LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
  106. LogPluginManager: Mounting Engine plugin CharacterAI
  107. LogPluginManager: Mounting Engine plugin ChaosUserDataPT
  108. LogPluginManager: Mounting Engine plugin ChaosNiagara
  109. LogPluginManager: Mounting Engine plugin Dataflow
  110. LogPluginManager: Mounting Engine plugin FullBodyIK
  111. LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
  112. LogPluginManager: Mounting Engine plugin GeometryFlow
  113. LogPluginManager: Mounting Engine plugin Iris
  114. LogPluginManager: Mounting Engine plugin MeshLODToolset
  115. LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp
  116. LogPluginManager: Mounting Engine plugin OpenImageDenoise
  117. LogPluginManager: Mounting Engine plugin PlanarCut
  118. LogPluginManager: Mounting Engine plugin ProxyLODPlugin
  119. LogPluginManager: Mounting Engine plugin PlatformCrypto
  120. LogPluginManager: Mounting Engine plugin PythonScriptPlugin
  121. LogPluginManager: Mounting Engine plugin SkeletalReduction
  122. LogPluginManager: Mounting Engine plugin UVEditor
  123. LogPluginManager: Mounting Engine plugin InterchangeTests
  124. LogPluginManager: Mounting Engine plugin InterchangeEditor
  125. LogPluginManager: Mounting Engine plugin Interchange
  126. LogPluginManager: Found config from plugin[Interchange] Game
  127. LogPluginManager: Mounting Engine plugin Paper2D
  128. LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
  129. LogPluginManager: Mounting Engine plugin AssetManagerEditor
  130. LogPluginManager: Mounting Engine plugin BlueprintHeaderView
  131. LogPluginManager: Mounting Engine plugin CryptoKeys
  132. LogPluginManager: Mounting Engine plugin EditorDebugTools
  133. LogPluginManager: Mounting Engine plugin CurveEditorTools
  134. LogPluginManager: Mounting Engine plugin DataValidation
  135. LogPluginManager: Mounting Engine plugin FacialAnimation
  136. LogPluginManager: Mounting Engine plugin GameplayTagsEditor
  137. LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
  138. LogPluginManager: Mounting Engine plugin GeometryMode
  139. LogPluginManager: Mounting Engine plugin GLTFImporter
  140. LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard
  141. LogPluginManager: Mounting Engine plugin MacGraphicsSwitching
  142. LogPluginManager: Mounting Engine plugin MaterialAnalyzer
  143. LogPluginManager: Mounting Engine plugin SpeedTreeImporter
  144. LogPluginManager: Mounting Engine plugin PluginBrowser
  145. LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode
  146. LogPluginManager: Mounting Engine plugin SequencerAnimTools
  147. LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities
  148. LogPluginManager: Mounting Engine plugin StylusInput
  149. LogPluginManager: Mounting Engine plugin AndroidMedia
  150. LogPluginManager: Mounting Engine plugin AvfMedia
  151. LogPluginManager: Mounting Engine plugin MediaCompositing
  152. LogPluginManager: Mounting Engine plugin ImgMedia
  153. LogPluginManager: Mounting Engine plugin MediaPlate
  154. LogPluginManager: Mounting Engine plugin MediaPlayerEditor
  155. LogPluginManager: Mounting Engine plugin WebMMedia
  156. LogPluginManager: Mounting Engine plugin WmfMedia
  157. LogPluginManager: Mounting Engine plugin ActorLayerUtilities
  158. LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector
  159. LogPluginManager: Mounting Engine plugin AndroidPermission
  160. LogPluginManager: Mounting Engine plugin AppleImageUtils
  161. LogPluginManager: Mounting Engine plugin AndroidMoviePlayer
  162. LogPluginManager: Mounting Engine plugin AppleMoviePlayer
  163. LogPluginManager: Mounting Engine plugin AndroidFileServer
  164. LogPluginManager: Mounting Engine plugin ArchVisCharacter
  165. LogPluginManager: Mounting Engine plugin AssetTags
  166. LogPluginManager: Mounting Engine plugin AudioCapture
  167. LogPluginManager: Mounting Engine plugin AudioWidgets
  168. LogPluginManager: Mounting Engine plugin AudioSynesthesia
  169. LogPluginManager: Mounting Engine plugin CableComponent
  170. LogPluginManager: Mounting Engine plugin ChunkDownloader
  171. LogPluginManager: Mounting Engine plugin CustomMeshComponent
  172. LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
  173. LogPluginManager: Mounting Engine plugin GeometryCache
  174. LogPluginManager: Mounting Engine plugin GeometryProcessing
  175. LogPluginManager: Mounting Engine plugin GoogleCloudMessaging
  176. LogPluginManager: Mounting Engine plugin GooglePAD
  177. LogPluginManager: Mounting Engine plugin InputDebugging
  178. LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector
  179. LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector
  180. LogPluginManager: Mounting Engine plugin MeshModelingToolset
  181. LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
  182. LogPluginManager: Mounting Engine plugin Metasound
  183. LogPluginManager: Mounting Engine plugin MobilePatchingUtils
  184. LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
  185. LogPluginManager: Mounting Engine plugin PropertyAccessEditor
  186. LogPluginManager: Mounting Engine plugin SignificanceManager
  187. LogPluginManager: Mounting Engine plugin ResonanceAudio
  188. LogPluginManager: Mounting Engine plugin Synthesis
  189. LogPluginManager: Mounting Engine plugin WaveTable
  190. LogPluginManager: Mounting Engine plugin WebMMoviePlayer
  191. LogPluginManager: Mounting Engine plugin SoundFields
  192. LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
  193. LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
  194. LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource
  195. LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource
  196. LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource
  197. LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay
  198. LogPluginManager: Mounting Engine plugin ObjectMixer
  199. LogPluginManager: Mounting Engine plugin LightMixer
  200. LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS
  201. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Bridge/Content/' mounted to '/Bridge/'
  202. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
  203. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
  204. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
  205. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
  206. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
  207. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
  208. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
  209. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/DataprepEditor/Content/' mounted to '/DataprepEditor/'
  210. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
  211. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
  212. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
  213. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
  214. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
  215. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
  216. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
  217. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
  218. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
  219. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/GeometryFlow/Content/' mounted to '/GeometryFlow/'
  220. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/MeshLODToolset/Content/' mounted to '/MeshLODToolset/'
  221. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/MeshModelingToolsetExp/Content/' mounted to '/MeshModelingToolsetExp/'
  222. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
  223. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/UVEditor/Content/' mounted to '/UVEditor/'
  224. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
  225. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
  226. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
  227. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
  228. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/GLTFImporter/Content/' mounted to '/GLTFImporter/'
  229. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
  230. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ModelingToolsEditorMode/Content/' mounted to '/ModelingToolsEditorMode/'
  231. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
  232. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
  233. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
  234. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
  235. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
  236. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/MeshModelingToolset/Content/' mounted to '/MeshModelingToolset/'
  237. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
  238. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
  239. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
  240. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
  241. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
  242. LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
  243. SourceControl: Source control is disabled
  244. SourceControl: Source control is disabled
  245. PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
  246. LogInit: Using libcurl 7.83.1
  247. LogInit: - built for Windows
  248. LogInit: - supports SSL with OpenSSL/1.1.1n
  249. LogInit: - supports HTTP deflate (compression) using libz 1.2.12
  250. LogInit: - other features:
  251. LogInit: CURL_VERSION_SSL
  252. LogInit: CURL_VERSION_LIBZ
  253. LogInit: CURL_VERSION_IPV6
  254. LogInit: CURL_VERSION_ASYNCHDNS
  255. LogInit: CURL_VERSION_LARGEFILE
  256. LogInit: CurlRequestOptions (configurable via config and command line):
  257. LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate
  258. LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy
  259. LogInit: - bDontReuseConnections = false - Libcurl will reuse connections
  260. LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host
  261. LogInit: - LocalHostAddr = Default
  262. LogInit: - BufferSize = 65536
  263. LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
  264. LogOnline: OSS: Created online subsystem instance for: NULL
  265. LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
  266. LogInit: Build: ++UE5+Release-5.1-CL-23901901
  267. LogInit: Engine Version: 5.1.1-23901901+++UE5+Release-5.1
  268. LogInit: Compatible Engine Version: 5.1.0-23058290+++UE5+Release-5.1
  269. LogInit: Net CL: 23058290
  270. LogInit: OS: Windows 10 (22H2) [10.0.19045.3324] (), CPU: Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz, GPU: NVIDIA GeForce RTX 3060 Ti
  271. LogInit: Compiled (64-bit): Jan 30 2023 05:19:00
  272. LogInit: Compiled with Visual C++: 19.29.30147.00
  273. LogInit: Build Configuration: Development
  274. LogInit: Branch Name: ++UE5+Release-5.1
  275. LogInit: Command Line:
  276. LogInit: Base Directory: D:/Program Files/Epic Games/UE_5.1/Engine/Binaries/Win64/
  277. LogInit: Allocator: Mimalloc
  278. LogInit: Installed Engine Build: 1
  279. LogDevObjectVersion: Number of dev versions registered: 35
  280. LogDevObjectVersion: Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
  281. LogDevObjectVersion: Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
  282. LogDevObjectVersion: Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
  283. LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
  284. LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
  285. LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
  286. LogDevObjectVersion: Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
  287. LogDevObjectVersion: Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
  288. LogDevObjectVersion: Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
  289. LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
  290. LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 45
  291. LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
  292. LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
  293. LogDevObjectVersion: Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
  294. LogDevObjectVersion: Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
  295. LogDevObjectVersion: Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
  296. LogDevObjectVersion: Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
  297. LogDevObjectVersion: Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
  298. LogDevObjectVersion: Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
  299. LogDevObjectVersion: FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 80
  300. LogDevObjectVersion: FortniteNC (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
  301. LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 4
  302. LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
  303. LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
  304. LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
  305. LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
  306. LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
  307. LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
  308. LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
  309. LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 88
  310. LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 41
  311. LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
  312. LogDevObjectVersion: UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
  313. LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
  314. LogDevObjectVersion: UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
  315. LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
  316. LogInit: Object subsystem initialized
  317. LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
  318. LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
  319. LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
  320. LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
  321. LogConfig: Set CVar [[r.setres:1280x720]]
  322. LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
  323. LogConfig: CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] deferred - dummy variable created
  324. LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
  325. LogConfig: Set CVar [[r.Occlusion.SingleRHIThreadStall:1]]
  326. LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
  327. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.VSync:0]]
  328. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]]
  329. [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
  330. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created
  331. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created
  332. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
  333. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
  334. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
  335. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
  336. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
  337. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
  338. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
  339. [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
  340. [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
  341. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
  342. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
  343. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
  344. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
  345. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
  346. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
  347. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
  348. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
  349. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
  350. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
  351. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
  352. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
  353. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
  354. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
  355. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
  356. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
  357. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
  358. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
  359. [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
  360. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
  361. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
  362. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
  363. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
  364. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
  365. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
  366. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
  367. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
  368. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
  369. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
  370. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
  371. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
  372. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.BlueprintClusteringEnabled:0]]
  373. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
  374. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
  375. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.VerifyGCObjectNames:1]]
  376. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
  377. [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
  378. [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
  379. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
  380. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
  381. [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine]
  382. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[DefaultPVRTCQuality:1]] deferred - dummy variable created
  383. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:1]] deferred - dummy variable created
  384. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created
  385. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created
  386. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created
  387. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created
  388. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created
  389. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created
  390. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created
  391. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created
  392. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created
  393. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created
  394. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created
  395. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created
  396. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created
  397. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created
  398. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created
  399. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created
  400. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created
  401. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created
  402. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created
  403. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created
  404. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created
  405. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created
  406. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created
  407. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created
  408. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created
  409. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created
  410. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created
  411. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created
  412. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created
  413. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created
  414. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created
  415. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created
  416. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created
  417. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created
  418. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created
  419. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created
  420. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created
  421. [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created
  422. [2023.09.15-08.29.27:145][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
  423. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
  424. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
  425. [2023.09.15-08.29.27:145][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
  426. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
  427. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
  428. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
  429. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:100]]
  430. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
  431. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.GrandReprojection:1]]
  432. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
  433. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.Velocity.Extrapolation:1]]
  434. [2023.09.15-08.29.27:145][ 0]LogConfig: CVar [[r.TSR.Velocity.HoleFill:1]] deferred - dummy variable created
  435. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
  436. [2023.09.15-08.29.27:145][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
  437. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
  438. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]]
  439. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
  440. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
  441. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
  442. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
  443. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
  444. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
  445. [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
  446. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
  447. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
  448. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AOQuality:2]]
  449. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]]
  450. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
  451. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
  452. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
  453. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
  454. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
  455. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
  456. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
  457. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
  458. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
  459. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
  460. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
  461. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
  462. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
  463. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
  464. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
  465. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
  466. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
  467. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
  468. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
  469. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenSpaceBentNormal:1]]
  470. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
  471. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
  472. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
  473. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
  474. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
  475. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
  476. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
  477. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
  478. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
  479. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
  480. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
  481. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LumenScene.SurfaceCache.CardCaptureRefreshFraction:0.125]]
  482. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
  483. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
  484. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
  485. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
  486. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
  487. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
  488. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
  489. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
  490. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
  491. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
  492. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
  493. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
  494. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
  495. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
  496. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
  497. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
  498. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
  499. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.BloomQuality:5]]
  500. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:70.711]]
  501. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
  502. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
  503. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Tonemapper.GrainQuantization:1]]
  504. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
  505. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
  506. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
  507. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]]
  508. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]]
  509. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]]
  510. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]]
  511. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]]
  512. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]]
  513. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]]
  514. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]]
  515. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]]
  516. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]]
  517. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]]
  518. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
  519. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
  520. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
  521. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
  522. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
  523. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
  524. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
  525. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
  526. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
  527. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
  528. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
  529. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
  530. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
  531. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
  532. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]]
  533. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]]
  534. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
  535. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
  536. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DetailMode:2]]
  537. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
  538. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
  539. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]]
  540. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
  541. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]]
  542. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
  543. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
  544. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
  545. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
  546. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
  547. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
  548. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
  549. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
  550. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
  551. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
  552. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
  553. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
  554. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
  555. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
  556. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
  557. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
  558. [2023.09.15-08.29.27:146][ 0]LogConfig: CVar [[fx.Niagara.QualityLevel:3]] deferred - dummy variable created
  559. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
  560. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
  561. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
  562. [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
  563. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
  564. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
  565. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
  566. [2023.09.15-08.29.27:146][ 0]LogConfig: CVar [[r.HairStrands.Interpolation.UseSingleGuide:0]] deferred - dummy variable created
  567. [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
  568. [2023.09.15-08.29.27:152][ 0]LogD3D12RHI: Aftermath initialized
  569. [2023.09.15-08.29.27:152][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
  570. [2023.09.15-08.29.27:286][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3060 Ti (Max supported Feature Level 12_2, shader model 6.6)
  571. [2023.09.15-08.29.27:286][ 0]LogD3D12RHI: Adapter has 8038MB of dedicated video memory, 0MB of dedicated system memory, and 16256MB of shared system memory, 2 output[s]
  572. [2023.09.15-08.29.27:337][ 0]LogD3D12RHI: Found D3D12 adapter 1: Intel(R) UHD Graphics 630 (Max supported Feature Level 12_1, shader model 6.5)
  573. [2023.09.15-08.29.27:337][ 0]LogD3D12RHI: Adapter has 128MB of dedicated video memory, 0MB of dedicated system memory, and 16256MB of shared system memory, 0 output[s]
  574. [2023.09.15-08.29.27:341][ 0]LogD3D12RHI: Found D3D12 adapter 2: Microsoft Basic Render Driver (Max supported Feature Level 12_1, shader model 6.2)
  575. [2023.09.15-08.29.27:341][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16256MB of shared system memory, 0 output[s]
  576. [2023.09.15-08.29.27:341][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
  577. [2023.09.15-08.29.27:341][ 0]LogInit: Selected Device Profile: [WindowsEditor]
  578. [2023.09.15-08.29.27:341][ 0]LogHAL: Display: Platform has ~ 32 GB [34091962368 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
  579. [2023.09.15-08.29.27:341][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows]
  580. [2023.09.15-08.29.27:341][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile []
  581. [2023.09.15-08.29.27:341][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
  582. [2023.09.15-08.29.27:341][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
  583. [2023.09.15-08.29.27:341][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
  584. [2023.09.15-08.29.27:341][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
  585. [2023.09.15-08.29.27:341][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
  586. [2023.09.15-08.29.27:341][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [E:/Work/ueProjects/Cooperate/Saved/Config/WindowsEditor/Editor.ini]
  587. [2023.09.15-08.29.27:341][ 0]LogInit: Computer: BF-202302201105
  588. [2023.09.15-08.29.27:341][ 0]LogInit: User: Administrator
  589. [2023.09.15-08.29.27:341][ 0]LogInit: CPU Page size=4096, Cores=8
  590. [2023.09.15-08.29.27:341][ 0]LogInit: High frequency timer resolution =10.000000 MHz
  591. [2023.09.15-08.29.27:341][ 0]LogMemory: Memory total: Physical=31.8GB (32GB approx)
  592. [2023.09.15-08.29.27:341][ 0]LogMemory: Platform Memory Stats for WindowsEditor
  593. [2023.09.15-08.29.27:341][ 0]LogMemory: Process Physical Memory: 309.73 MB used, 311.71 MB peak
  594. [2023.09.15-08.29.27:341][ 0]LogMemory: Process Virtual Memory: 312.50 MB used, 312.50 MB peak
  595. [2023.09.15-08.29.27:341][ 0]LogMemory: Physical Memory: 17712.08 MB used, 14800.55 MB free, 32512.63 MB total
  596. [2023.09.15-08.29.27:341][ 0]LogMemory: Virtual Memory: 71145.94 MB used, 17297.21 MB free, 88443.15 MB total
  597. [2023.09.15-08.29.27:341][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
  598. [2023.09.15-08.29.27:345][ 0]LogWindows: WindowsPlatformFeatures enabled
  599. [2023.09.15-08.29.27:351][ 0]LogInit: Physics initialised using underlying interface: Chaos
  600. [2023.09.15-08.29.27:352][ 0]LogInit: Using OS detected language (zh-CN).
  601. [2023.09.15-08.29.27:352][ 0]LogInit: Using OS detected locale (zh-CN).
  602. [2023.09.15-08.29.27:353][ 0]LogTextLocalizationManager: No specific localization for 'zh-CN' exists, so 'zh-Hans' will be used for the language.
  603. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Editor/zh/Editor.locres' could not be opened for reading!
  604. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/EditorTutorials/zh/EditorTutorials.locres' could not be opened for reading!
  605. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Keywords/zh/Keywords.locres' could not be opened for reading!
  606. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Category/zh/Category.locres' could not be opened for reading!
  607. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/ToolTips/zh/ToolTips.locres' could not be opened for reading!
  608. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/PropertyNames/zh/PropertyNames.locres' could not be opened for reading!
  609. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Engine/zh/Engine.locres' could not be opened for reading!
  610. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/zh/OnlineSubsystem.locres' could not be opened for reading!
  611. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/zh/OnlineSubsystemUtils.locres' could not be opened for reading!
  612. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/Android/OnlineSubsystemGooglePlay/Content/Localization/OnlineSubsystemGooglePlay/zh/OnlineSubsystemGooglePlay.locres' could not be opened for reading!
  613. [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Plugins/Online/IOS/OnlineSubsystemIOS/Content/Localization/OnlineSubsystemIOS/zh/OnlineSubsystemIOS.locres' could not be opened for reading!
  614. [2023.09.15-08.29.27:496][ 0]LogInit: Setting process to per monitor DPI aware
  615. [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: Available input methods:
  616. [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 搜狗拼音输入法 (TSF IME).
  617. [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 微软拼音 (TSF IME).
  618. [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - (Keyboard).
  619. [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: Activated input method: 中文(简体,中国) - 搜狗拼音输入法 (TSF IME).
  620. [2023.09.15-08.29.27:563][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
  621. [2023.09.15-08.29.27:563][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0
  622. [2023.09.15-08.29.27:634][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
  623. [2023.09.15-08.29.27:635][ 0]LogWindows: Attached monitors:
  624. [2023.09.15-08.29.27:635][ 0]LogWindows: resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY9'
  625. [2023.09.15-08.29.27:635][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY10' [PRIMARY]
  626. [2023.09.15-08.29.27:635][ 0]LogWindows: Found 2 attached monitors.
  627. [2023.09.15-08.29.27:635][ 0]LogWindows: Gathering driver information using Windows Setup API
  628. [2023.09.15-08.29.27:635][ 0]LogRHI: RHI Adapter Info:
  629. [2023.09.15-08.29.27:635][ 0]LogRHI: Name: NVIDIA GeForce RTX 3060 Ti
  630. [2023.09.15-08.29.27:635][ 0]LogRHI: Driver Version: 536.40 (internal:31.0.15.3640, unified:536.40)
  631. [2023.09.15-08.29.27:635][ 0]LogRHI: Driver Date: 6-23-2023
  632. [2023.09.15-08.29.27:635][ 0]LogD3D12RHI: GPU DeviceId: 0x2489 (for the marketing name, search the web for "GPU Device Id")
  633. [2023.09.15-08.29.27:635][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
  634. [2023.09.15-08.29.27:637][ 0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
  635. [2023.09.15-08.29.27:637][ 0]LogD3D12RHI: Emitting draw events for PIX profiling.
  636. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
  637. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
  638. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device1 is supported.
  639. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device2 is supported.
  640. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device3 is supported.
  641. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device4 is supported.
  642. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device5 is supported.
  643. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device6 is supported.
  644. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device7 is supported.
  645. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device8 is supported.
  646. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device9 is supported.
  647. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device10 is supported.
  648. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: Bindless resources are supported
  649. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
  650. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported
  651. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
  652. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
  653. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
  654. [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
  655. [2023.09.15-08.29.27:765][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
  656. [2023.09.15-08.29.27:765][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
  657. [2023.09.15-08.29.27:766][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
  658. [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
  659. [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
  660. [2023.09.15-08.29.27:786][ 0]LogRHI: Texture pool is 4580 MB (70% of 6543 MB)
  661. [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: Async texture creation enabled
  662. [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: RHI has support for 64 bit atomics
  663. [2023.09.15-08.29.27:807][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="E:/Work/ueProjects/Cooperate/Cooperate.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyReport_0.log" -log="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyLog_0.log" -project="E:/Work/ueProjects/Cooperate/Cooperate.uproject" -platform=all'
  664. [2023.09.15-08.29.27:807][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""D:/Program Files/Epic Games/UE_5.1/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="E:/Work/ueProjects/Cooperate/Cooperate.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyReport_0.log" -log="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyLog_0.log" -project="E:/Work/ueProjects/Cooperate/Cooperate.uproject" -platform=all" ]
  665. [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC
  666. [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT
  667. [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2
  668. [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp
  669. [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed
  670. [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.8
  671. [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll
  672. [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.6.dll
  673. [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.7.dll
  674. [2023.09.15-08.29.27:823][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll
  675. [2023.09.15-08.29.27:823][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle
  676. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android'
  677. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC'
  678. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT'
  679. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2'
  680. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient'
  681. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient'
  682. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient'
  683. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client'
  684. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi'
  685. [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient'
  686. [2023.09.15-08.29.27:850][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'HoloLens'
  687. [2023.09.15-08.29.27:850][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'HoloLensClient'
  688. [2023.09.15-08.29.27:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS'
  689. [2023.09.15-08.29.27:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient'
  690. [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux'
  691. [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor'
  692. [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer'
  693. [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient'
  694. [2023.09.15-08.29.27:856][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64'
  695. [2023.09.15-08.29.27:856][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server'
  696. [2023.09.15-08.29.27:856][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client'
  697. [2023.09.15-08.29.27:858][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS'
  698. [2023.09.15-08.29.27:858][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient'
  699. [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows'
  700. [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor'
  701. [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer'
  702. [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient'
  703. [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor
  704. [2023.09.15-08.29.27:866][ 0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
  705. [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: Unable to find audio format BINKA from hinted modules, loading all potential format modules to find it
  706. [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: Loaded format module AudioFormatADPCM
  707. [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: ADPCM
  708. [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: PCM
  709. [2023.09.15-08.29.27:869][ 0]LogTargetPlatformManager: Loaded format module AudioFormatBink
  710. [2023.09.15-08.29.27:869][ 0]LogTargetPlatformManager: BINKA
  711. [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: Loaded format module AudioFormatOgg
  712. [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: OGG
  713. [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: Loaded format module AudioFormatOpus
  714. [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: OPUS
  715. [2023.09.15-08.29.27:896][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it
  716. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat
  717. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL
  718. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MRT
  719. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_TVOS
  720. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS
  721. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_SM5
  722. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1
  723. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC
  724. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D
  725. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: PCD3D_SM6
  726. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: PCD3D_SM5
  727. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: PCD3D_ES31
  728. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: D3D_ES3_1_HOLOLENS
  729. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL
  730. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: GLSL_150_ES31
  731. [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID
  732. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM
  733. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: VVM_1_0
  734. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat
  735. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_SM5
  736. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID
  737. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_ES31
  738. [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID
  739. [2023.09.15-08.29.27:903][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
  740. [2023.09.15-08.29.27:905][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file E:/Work/ueProjects/Cooperate/DerivedDataCache/DDC.ddp not found, will not use a pak cache.
  741. [2023.09.15-08.29.27:905][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy.
  742. [2023.09.15-08.29.27:905][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file E:/Work/ueProjects/Cooperate/DerivedDataCache/Compressed.ddp not found, will not use a pak cache.
  743. [2023.09.15-08.29.27:905][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy.
  744. [2023.09.15-08.29.27:922][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1363 MiB)
  745. [2023.09.15-08.29.27:922][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache.
  746. [2023.09.15-08.29.27:922][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy.
  747. [2023.09.15-08.29.27:925][ 0]LogDerivedDataCache: Speed tests for C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache took 0.00 seconds
  748. [2023.09.15-08.29.27:925][ 0]LogDerivedDataCache: Display: Performance to C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Latency=0.02ms. RandomReadSpeed=2061.85MBs, RandomWriteSpeed=374.44MBs. Assigned SpeedClass 'Local'
  749. [2023.09.15-08.29.27:926][ 0]LogDerivedDataCache: Using Local data cache path C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Writable
  750. [2023.09.15-08.29.27:926][ 0]LogDerivedDataCache: Shared data cache path not found in *engine.ini, will not use an Shared cache.
  751. [2023.09.15-08.29.27:926][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy.
  752. [2023.09.15-08.29.27:926][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None
  753. [2023.09.15-08.29.27:926][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled
  754. [2023.09.15-08.29.27:926][ 0]LogShaderCompilers: Guid format shader working directory is 25 characters bigger than the processId version (E:/Work/ueProjects/Cooperate/Intermediate/Shaders/WorkingDirectory/12984/).
  755. [2023.09.15-08.29.27:926][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/Administrator/AppData/Local/Temp/UnrealShaderWorkingDir/00A047014E818C4704122AB4879BE8A3/'.
  756. [2023.09.15-08.29.27:926][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine.
  757. [2023.09.15-08.29.27:927][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 8 workers.
  758. [2023.09.15-08.29.28:500][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0
  759. [2023.09.15-08.29.28:678][ 0]LogShaderCompilers: Display: Compiling shader autogen file: E:/Work/ueProjects/Cooperate/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush
  760. [2023.09.15-08.29.28:678][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
  761. [2023.09.15-08.29.29:155][ 0]LogSlate: Using FreeType 2.10.0
  762. [2023.09.15-08.29.29:155][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
  763. [2023.09.15-08.29.29:186][ 0]LogAssetRegistry: FAssetRegistry took 0.0087 seconds to start up
  764. [2023.09.15-08.29.29:189][ 0]LogEditorDomain: Display: EditorDomain is Disabled
  765. [2023.09.15-08.29.29:326][ 0]LogTexture: Display: Texture Encode Speed: FinalIfAvailable (editor).
  766. [2023.09.15-08.29.29:584][ 0]LogInit: Selected Device Profile: [WindowsEditor]
  767. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: Available device profiles:
  768. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFD000][0000053D707A6000 52] GlobalDefaults,
  769. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFE400][0000053D6E0A0000 52] Windows,
  770. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFE600][0000053D6E0A5000 52] WindowsEditor,
  771. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFDA00][0000053D67D20000 52] WindowsServer,
  772. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFC600][0000053D7345C800 52] WindowsClient,
  773. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFEE00][0000053D6E430000 52] IOS,
  774. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFD600][0000053D6E0A7800 52] iPadAir2,
  775. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFF000][0000053D6E43C800 52] IPadPro,
  776. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFF200][0000053D70522800 52] iPadAir3,
  777. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFEC00][0000053D7A790000 52] iPadAir4,
  778. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFD800][0000053D7A795000 52] iPadAir5,
  779. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFDC00][0000053D7A797800 52] iPadMini4,
  780. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFDE00][0000053D7A79A000 52] iPadMini5,
  781. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFA600][0000053D7A79C800 52] iPadMini6,
  782. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930C00][0000053D7A7A2800 52] iPhone6S,
  783. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930E00][0000053D7A7A0000 52] iPhone7,
  784. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930800][0000053D7A7A5000 52] iPodTouch7,
  785. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931800][0000053D7A7AA000 52] iPhone6SPlus,
  786. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930200][0000053D7A7AC800 52] iPhone7Plus,
  787. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931E00][0000053D73A0C800 52] iPhoneSE,
  788. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930400][0000053D7A7A7800 52] iPhone8,
  789. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930600][0000053D7A940000 52] iPhone8Plus,
  790. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932000][0000053D7A945000 52] iPhoneX,
  791. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931000][0000053D7A947800 52] iPhoneXS,
  792. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930A00][0000053D7A94A000 52] iPhoneXSMax,
  793. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931200][0000053D7A94C800 52] iPhoneXR,
  794. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932800][0000053D7A792800 52] iPhone11,
  795. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931600][0000053D7A920000 52] iPhone11Pro,
  796. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932A00][0000053D7A925000 52] iPhone11ProMax,
  797. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932E00][0000053D7A927800 52] iPhoneSE2,
  798. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933000][0000053D7A92A000 52] iPhone12Mini,
  799. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932200][0000053D7A92C800 52] iPhone12,
  800. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932400][0000053D7A942800 52] iPhone12Pro,
  801. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931C00][0000053D7A7B0000 52] iPhone12ProMax,
  802. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933800][0000053D7A7B5000 52] iPhone13Mini,
  803. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931A00][0000053D7A7B7800 52] iPhone13,
  804. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933A00][0000053D7A7BA000 52] iPhone13Pro,
  805. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933E00][0000053D7A7BC800 52] iPhone13ProMax,
  806. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934000][0000053D7A922800 52] iPhoneSE3,
  807. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933200][0000053D7A7C0000 52] iPhone14,
  808. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933400][0000053D7A7C5000 52] iPhone14Plus,
  809. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930000][0000053D7A7C7800 52] iPhone14Pro,
  810. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934800][0000053D7A7CA000 52] iPhone14ProMax,
  811. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931400][0000053D7A7CC800 52] iPadPro105,
  812. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934A00][0000053D7A7B2800 52] iPadPro129,
  813. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934E00][0000053D7A7D0000 52] iPadPro97,
  814. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935000][0000053D7A7D5000 52] iPadPro2_129,
  815. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934200][0000053D7A7D7800 52] iPad5,
  816. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934400][0000053D7A7DA000 52] iPad6,
  817. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932600][0000053D7A7DC800 52] iPad7,
  818. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935800][0000053D7A7C2800 52] iPad8,
  819. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932C00][0000053D7A910000 52] iPad9,
  820. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935A00][0000053D7A915000 52] iPad10,
  821. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935E00][0000053D7A917800 52] iPadPro11,
  822. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936000][0000053D7A91A000 52] iPadPro2_11,
  823. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935200][0000053D7A91C800 52] iPadPro3_11,
  824. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935400][0000053D7A7D2800 52] iPadPro4_11,
  825. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933600][0000053D7A7E0000 52] iPadPro3_129,
  826. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936800][0000053D7A7E5000 52] iPadPro4_129,
  827. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933C00][0000053D7A7E7800 52] iPadPro5_129,
  828. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936A00][0000053D7A7EA000 52] iPadPro6_129,
  829. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936E00][0000053D7A7EC800 52] AppleTV,
  830. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937000][0000053D7A912800 52] AppleTV4K,
  831. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936200][0000053D7A7F0000 52] AppleTV2_4K,
  832. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936400][0000053D7A7F5000 52] TVOS,
  833. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938800][0000053D7A7FA000 52] Mac,
  834. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938A00][0000053D7A7F7800 52] MacEditor,
  835. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937400][0000053D7A7FC800 52] MacClient,
  836. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938400][0000053D7A7E2800 52] MacServer,
  837. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937600][0000053D7A962800 52] Linux,
  838. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937200][0000053D7A960000 52] LinuxEditor,
  839. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938C00][0000053D7A967800 52] LinuxArm64Editor,
  840. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935C00][0000053D7A96A000 52] LinuxArm64,
  841. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937800][0000053D7A96C800 52] LinuxClient,
  842. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936C00][0000053D7A7F2800 52] LinuxArm64Client,
  843. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937C00][0000053D7A970000 52] LinuxServer,
  844. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934C00][0000053D7A975000 52] LinuxArm64Server,
  845. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936600][0000053D7A977800 52] Android,
  846. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939000][0000053D7A97A000 52] Android_Preview_OpenGL,
  847. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938200][0000053D7A97C800 52] Android_Preview_Vulkan,
  848. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934600][0000053D7A965000 52] Android_Low,
  849. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937E00][0000053D7A980000 52] Android_Mid,
  850. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939800][0000053D7A985000 52] Android_High,
  851. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937A00][0000053D7A987800 52] Android_Default,
  852. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939A00][0000053D7A98A000 52] Android_Adreno4xx,
  853. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939E00][0000053D7A98C800 52] Android_Adreno5xx_Low,
  854. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A000][0000053D7A972800 52] Android_Adreno5xx,
  855. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939200][0000053D7A990000 52] Android_Adreno6xx,
  856. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939400][0000053D7A995000 52] Android_Adreno6xx_Vulkan,
  857. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935600][0000053D7A997800 52] Android_Adreno7xx,
  858. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A800][0000053D7A99A000 52] Android_Adreno7xx_Vulkan,
  859. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938E00][0000053D7A99C800 52] Android_Mali_T6xx,
  860. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93AA00][0000053D7A982800 52] Android_Mali_T7xx,
  861. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93AE00][0000053D7A9A0000 52] Android_Mali_T8xx,
  862. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B000][0000053D7A9A5000 52] Android_Mali_G71,
  863. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A200][0000053D7A9A7800 52] Android_Mali_G72,
  864. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A400][0000053D7A9AA000 52] Android_Mali_G72_Vulkan,
  865. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938600][0000053D7A9AC800 52] Android_Mali_G76,
  866. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B800][0000053D7A992800 52] Android_Mali_G76_Vulkan,
  867. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938000][0000053D7A9B0000 52] Android_Mali_G77,
  868. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93BA00][0000053D7A9B5000 52] Android_Mali_G77_Vulkan,
  869. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93BE00][0000053D7A9B7800 52] Android_Mali_G78,
  870. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93C000][0000053D7A9BA000 52] Android_Mali_G78_Vulkan,
  871. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B200][0000053D7A9BC800 52] Android_Mali_G710,
  872. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B400][0000053D7A9A2800 52] Android_Mali_G710_Vulkan,
  873. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939600][0000053D7A9C0000 52] Android_Xclipse_920,
  874. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93C800][0000053D7A9C5000 52] Android_Xclipse_920_Vulkan,
  875. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939C00][0000053D7A9C7800 52] Android_Vulkan_SM5,
  876. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93CA00][0000053D7A9CA000 52] Android_PowerVR_G6xxx,
  877. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93CE00][0000053D7A9CC800 52] Android_PowerVR_GT7xxx,
  878. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93D000][0000053D7A9B2800 52] Android_PowerVR_GE8xxx,
  879. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93CC00][0000053D7A9D0000 52] Android_PowerVR_GM9xxx,
  880. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93DA00][0000053D7A9D5000 52] Android_PowerVR_GM9xxx_Vulkan,
  881. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93BC00][0000053D7A9D7800 52] Android_TegraK1,
  882. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93AC00][0000053D7A9DA000 52] Android_Unknown_Vulkan,
  883. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93C400][0000053D7A9DC800 52] Oculus_Quest,
  884. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93E000][0000053D7A9C2800 52] Oculus_Quest2,
  885. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93D400][0000053D7A9E0000 52] HoloLens,
  886. [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: Active device profile: [0000053D79CFE600][0000053D6E0A5000 52] WindowsEditor
  887. [2023.09.15-08.29.29:584][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor"
  888. [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Compiling shader autogen file: E:/Work/ueProjects/Cooperate/Intermediate/ShaderAutogen/PCD3D_SM5/AutogenShaderHeaders.ush
  889. [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
  890. [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Compiling shader autogen file: E:/Work/ueProjects/Cooperate/Intermediate/ShaderAutogen/PCD3D_ES3_1/AutogenShaderHeaders.ush
  891. [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
  892. [2023.09.15-08.29.29:586][ 0]LogTurnkeySupport: Turnkey Platform: Android: (Status=Invalid, Allowed_Sdk=r25b, Current_Sdk=, Allowed_AutoSdk=r25b, Current_AutoSdk=, Flags="Platform_InvalidHostPrerequisites", Error="Android Studio is not installed correctly.|Android SDK directory is not set correctly.")
  893. [2023.09.15-08.29.29:586][ 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")
  894. [2023.09.15-08.29.29:586][ 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")
  895. [2023.09.15-08.29.29:586][ 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")
  896. [2023.09.15-08.29.29:586][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.00000.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.19041.0, Allowed_AutoSdk=10.0.18362.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists")
  897. [2023.09.15-08.29.29:588][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="E:/Work/ueProjects/Cooperate/Cooperate.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyReport_1.log" -log="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyLog_1.log" -project="E:/Work/ueProjects/Cooperate/Cooperate.uproject" -Device=Win64@BF-202302201105'
  898. [2023.09.15-08.29.29:588][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""D:/Program Files/Epic Games/UE_5.1/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="E:/Work/ueProjects/Cooperate/Cooperate.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyReport_1.log" -log="E:/Work/ueProjects/Cooperate/Intermediate/TurnkeyLog_1.log" -project="E:/Work/ueProjects/Cooperate/Cooperate.uproject" -Device=Win64@BF-202302201105" -nocompile -nocompileuat ]
  899. [2023.09.15-08.29.29:607][ 0]LogTexture: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
  900. [2023.09.15-08.29.29:720][ 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_FParticleSpriteVertexFactory0B9848D46CEFCCD36BD972B3DCD50B8535368BABF99E1B0FB635933CEEAC41CF9441DF5EA4A994CA9DAE5A7C55936FD50BC3B20BD063C1832A4D4247_TGPUSkinVertexFactoryUnlimited78B6E71606342DB0718C0CB5514BFF039A3BFC1D180376A7171B50BD465E9983F32BCB5A07542FE7_FVectorFieldVisualizationVertexFactory29E6C71148328626051CD3685ED4463389FCC050CC854D8E74FEAEF90804D69AF6B78BD07A141ACC_FNiagaraMeshVertexFactoryABADC3FDA7FFF8E984F9BD6ABC7F9CC89BF514854B3A20E0CA93D5CA5A60C16EF2EB14EA073FC9571BD81B2CBA1F364F28A837532353718EB814537B4B3A20E0CA93D5CA5A60C16EF2EB14EA073FC9574B3A20E0CA93D5CA5A60C16EF2EB14EA073FC957_FParticleBeamTrailVertexFactory713DBD8F3CB30EBEE7F1075062B25AE25537E1D1378BBDDEC2CEAC35A309C357B38D702E7981D5D3_TGPUSkinVertexFactoryDefault78B6E71606342DB0718C0CB5514BFF039A3BFC1D180376A7171B50BD465E9983F32BCB5A07542FE7_TGPUSkinAPEXClothVertexFactoryUnlimited78B6E71606342DB0718C0CB5514BFF039A3BFC1D594A4B2FCC58950587792A2CD41332131D3786E2_FGeometryCollectionVertexFactoryF791AC6341FF97FC6CF0C8483241C9BC3B55570949D716CAD02F0AC031CC93ACB2AFCB9C42E7DC4149D716CAD02F0AC031CC93ACB2AFCB9C42E7DC4149D716CAD02F0AC031CC93ACB2AFCB9C42E7DC41_FLandscapeXYOffsetVertexFactory10E569238A1467FCD7FB548253D74CF0ABE0F4F8B1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCEB1684FBEF19B946A8709F4309D7CC4E5FC6044ADB1684FBEF19B946A8709F4309D7CC4E5FC6044AD_FMeshParticleVertexFactory083F8367142CEF5680A007B3BEFDF4AD3B6626EEF773920348F231C490A74B1A551F8CE3ABF04791_FInstancedStaticMeshVertexFactory3B3DFB1FEDE34A7A85FB5103E7AD47D9FB2DAB05A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8A163AB24C1DAF4D0703BC40B6B0C866D318AC9F8_FSplineMeshVertexFactory3B3DFB1FEDE34A7A85FB5103E7AD47D9FB2DAB05A747D67BD07743C1BEA1DE549F682B82EB7B9965_FLocalVertexFactory3B3DFB1FEDE34A7A85FB5103E7AD47D9FB2DAB05AC1A437FDC42E3432CC66409573A167E09487E70AC1A437FDC42E3432CC66409573A167E09487E70AC1A437FDC42E3432CC66409573A167E09487E70_FLandscapeVertexFactory10E569238A1467FCD7FB548253D74CF0ABE0F4F8B1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCEB1684FBEF19B946A8709F4309D7CC4E5FC6044ADB1684FBEF19B946A8709F4309D7CC4E5FC6044AD_FNiagaraSpriteVertexFactory983CF9980B73A474E8D7D8E01013CC0E6E16DAAE5957CFEE095AEFFBA7F83F09F020F15CF6555718EFF166204144512228FF7A163011544EEF3FD2265957CFEE095AEFFBA7F83F09F020F15CF65557185957CFEE095AEFFBA7F83F09F020F15CF6555718_Nanite::FVertexFactory7385151ADD4080DE340A31F56C59707655B6838D_FGeometryCacheVertexVertexFactory921F6B033EF261C9D21AB065EC0B6C351583BCAA76143182082C57C6F98756E7AE927ED26DD4479A76143182082C57C6F98756E7AE927ED26DD4479A_FLandscapeFixedGridVertexFactory10E569238A1467FCD7FB548253D74CF0ABE0F4F83F5F45F5620EF6411E27211E3D675CEA50B38DFBEBA49461CECB1EA5D21E2BF8918B91C7C3994DCE3F5F45F5620EF6411E27211E3D675CEA50B38DFB3F5F45F5620EF6411E27211E3D675CEA50B38DFB254810141414444414441444141414141444447401010101010131454444143314401310102044441615121414240444424141413131014344447443424144444444404444444444444444341414141424044444444444444442434141415101010110131313331213333434141423141342044444141413131343041413101015101010103561616135343434146461616161616146121316161606434343434441444444445151510101011310105361616161210004040404040404040404040404040434343434343434444434343434040404040404043434343404040404444424244444444344444424241412141444444424141414341414141414141414131313131314443444444444141414141414141414141414343434444444444444344404441414141444141414141414341414144414141414444414141414141334144244444414141432341414141413141414142412343424143434341434141444141413131313432444141412441413131344443414141212124212131314442122226141142210121212124244444444440414151015101530434101331414600144444451011015151515161616161610101010101505242131616161616111260101117044313131413143101410101010101015101010101030445101101010101010101010101010101010101010106001404044414040421213131344141010101010101010131010002431313141616161101016164642141313131212121212121212141444444444441402444444212121212121212121212121213121212121212121212121412121212121212121214344314110131313131616161616161616023144444444434144414141414242212121212121212121213121212121212121212121212121212121444442424243434341414441414141414444444444444444214421101313131313131616161606010121010101015101210140444444043424044424141315004444444444443434101313133214030404043414443414331443341433143314341434143314331433142214143314441441210431413141015101010146444444044464444444444044401415101510151015000101010101010101010101010110000444140404141210101000010101010101014444424201404444444444444444444444444444444444444444444444444444444444444444444444444404444444444444434144414141414342101313131212132322222212101010101000010101010144444242412101010101510151014101015101010101004444441415151040404043410004040404040404040404040404040434343434343434444434343434040404040404043434343404040404444424244444444344444424241412141444444424141414341414141414141414131313131314443444444444141414141414141414141414343434444444444444344404441414141444141414141414341414144414141414444414141414141334144244444414141432341414141413141414142412343424143434341434141444141413131313432444141412441413131344443414141212124212131314141010151515151515151515151010101010101010101515151515101510151015101510151010101010101015101616161616151015101510151015101510151013131515151510151010151016461414151010161617161636340431313131313131314422223141414101010101010000110000001300000013000000130000001300000013000000130000000C00000013000000130000000D00000008000000140000000F00000010000000080000000900000008000000230000001000000010000000090000000800000008000000100000001000000010000000100000000800000008000000080000001000000010000000CE00000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000120000001000000008000000080000000800000014000000140000001300000008000000100000000800000008000000080000000800000008000000080000001300000009000000140000000E00000013000000130000001300000013000000130000001300000008000000100000000900000008000000090000000800000008000000130000000900000008000000090000000800000009000000080000000C00000009000000080000000900000009000000090000000900000009000000080000000800000008000000080000000800000013000000100000001000000010000000130000001000000010000000100000001000000009000000090000000900000010000000100000001000000010000000080000001A00000014000000290000000D000000440000000B0000000B00000013000000130000000900000009000000090000001400000008000000090000000D0000000C00000010000000080000000800000028000000100000001000000010000000100000000900000008000000100000001000000010000000100000001000000009000000080000000800000008000000080000000D00000009000000090000000900000009000000090000000900000009000000090000000900000009000000090000000C000000080000000C00000013000000100000001000000010000000100000001000000010000000100000000D0000000C00000009000000080000000900000008000000090000000C0000000800000013000000260000000F000000110000000900000009000000090000000900000009000000100000001B0000001300000013000000130000001300000013000000090000000800000009000000080000000800000008000000140000001400000008000000090000000900000008000000080000001000000008000000080000001000000010000000290100001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000080000000800000008000000140000001000000010000000100000001000000009000000433AFC833894B7681A1D3DDBA35F7F5A9509A899000000000000000000000000000000000000000054BDFD528AA46A4E9413E044DCAC9A8F37A07E9D_101_101_4;
  901. [2023.09.15-08.29.29:766][ 0]LogMeshReduction: Using QuadricMeshReduction for automatic static mesh reduction
  902. [2023.09.15-08.29.29:766][ 0]LogMeshReduction: Using SimplygonMeshReduction for automatic skeletal mesh reduction
  903. [2023.09.15-08.29.29:766][ 0]LogMeshReduction: Using ProxyLODMeshReduction for automatic mesh merging
  904. [2023.09.15-08.29.29:766][ 0]LogMeshReduction: No distributed automatic mesh merging module available
  905. [2023.09.15-08.29.29:766][ 0]LogMeshMerging: No distributed automatic mesh merging module available
  906. [2023.09.15-08.29.29:834][ 0]LogNetVersion: Cooperate 1.0.0, NetCL: 23058290, EngineNetVer: 30, GameNetVer: 0 (Checksum: 4162449832)
  907. [2023.09.15-08.29.30:037][ 0]LogUObjectArray: 20936 objects as part of root set at end of initial load.
  908. [2023.09.15-08.29.30:037][ 0]LogUObjectAllocator: 5786384 out of 0 bytes used by permanent object pool.
  909. [2023.09.15-08.29.30:037][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool
  910. [2023.09.15-08.29.30:053][ 0]LogSlate: Border
  911. [2023.09.15-08.29.30:053][ 0]LogSlate: BreadcrumbButton
  912. [2023.09.15-08.29.30:053][ 0]LogSlate: Brushes.Title
  913. [2023.09.15-08.29.30:053][ 0]LogSlate: Default
  914. [2023.09.15-08.29.30:053][ 0]LogSlate: Icons.Save
  915. [2023.09.15-08.29.30:053][ 0]LogSlate: Icons.Toolbar.Settings
  916. [2023.09.15-08.29.30:053][ 0]LogSlate: ListView
  917. [2023.09.15-08.29.30:053][ 0]LogSlate: SoftwareCursor_CardinalCross
  918. [2023.09.15-08.29.30:053][ 0]LogSlate: SoftwareCursor_Grab
  919. [2023.09.15-08.29.30:053][ 0]LogSlate: TableView.DarkRow
  920. [2023.09.15-08.29.30:053][ 0]LogSlate: TableView.Row
  921. [2023.09.15-08.29.30:053][ 0]LogSlate: TreeView
  922. [2023.09.15-08.29.30:225][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 531FBCEA45670CC07A291CA4AB549ACA | Instance: 2A57A6E94AE2B6EDF94A2BA53B716AEE (BF-202302201105-12984).
  923. [2023.09.15-08.29.30:277][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666.
  924. [2023.09.15-08.29.30:280][ 0]LogUdpMessaging: Display: Added local interface '192.168.31.189' to multicast group '230.0.0.1:6666'
  925. [2023.09.15-08.29.30:280][ 0]LogUdpMessaging: Display: Added local interface '192.168.4.219' to multicast group '230.0.0.1:6666'
  926. [2023.09.15-08.29.30:285][ 0]LogTcpMessaging: Initializing TcpMessaging bridge
  927. [2023.09.15-08.29.30:302][ 0]LogTurnkeySupport: Completed device detection: Code = 0
  928. [2023.09.15-08.29.30:392][ 0]LogPython: Using Python 3.9.7
  929. [2023.09.15-08.29.31:221][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
  930. [2023.09.15-08.29.31:239][ 0]LogMetasoundEngine: MetaSound Engine Initialized
  931. [2023.09.15-08.29.31:354][ 0]SourceControl: 源码管理已禁用
  932. [2023.09.15-08.29.31:356][ 0]SourceControl: 源码管理已禁用
  933. [2023.09.15-08.29.31:365][ 0]LogUProjectInfo: Found projects:
  934. [2023.09.15-08.29.31:371][ 0]SourceControl: 源码管理已禁用
  935. [2023.09.15-08.29.31:403][ 0]LogPackageName: Display: FPackageName: Mount point added: 'E:/Work/ueProjects/Cooperate/Intermediate/DataprepTemp/' mounted to '/Engine/DataprepCore/Transient/'
  936. [2023.09.15-08.29.31:715][ 0]LogOpenImageDenoise: OIDN starting up
  937. [2023.09.15-08.29.31:917][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
  938. [2023.09.15-08.29.31:931][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
  939. [2023.09.15-08.29.31:931][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
  940. [2023.09.15-08.29.31:966][ 0]LogCollectionManager: Loaded 0 collections in 0.000607 seconds
  941. [2023.09.15-08.29.31:967][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Saved/Collections/' took 0.00s
  942. [2023.09.15-08.29.31:968][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Content/Developers/Administrator/Collections/' took 0.00s
  943. [2023.09.15-08.29.31:970][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Content/Collections/' took 0.00s
  944. [2023.09.15-08.29.32:278][ 0]LogEngine: Initializing Engine...
  945. [2023.09.15-08.29.32:286][ 0]LogStylusInput: Initializing StylusInput subsystem.
  946. [2023.09.15-08.29.32:287][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s
  947. [2023.09.15-08.29.32:289][ 0]LogMaterial: Display: Missing cached shadermap for WireframeMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: 0E9698C4697E872CBAA750A81F13B17C7CEA9AAD), compiling. Is special engine material.
  948. [2023.09.15-08.29.32:292][ 0]LogMaterial: Display: Missing cached shadermap for LevelColorationLitMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: F94896208BB2C48320F28BA2B200D9B09C2924D7), compiling. Is special engine material.
  949. [2023.09.15-08.29.32:294][ 0]LogMaterial: Display: Missing cached shadermap for LevelColorationUnlitMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: C69B3513A9BCE1B5877E8C1F14F444F2E516C54A), compiling. Is special engine material.
  950. [2023.09.15-08.29.32:297][ 0]LogMaterial: Display: Missing cached shadermap for MAT_LevelColorationLitLightmapUV in PCD3D_SM6, Default, SM6 (DDC key hash: 6A6B6CA42A1CFE73D98380E44359090BD1019353), compiling. Is special engine material.
  951. [2023.09.15-08.29.32:299][ 0]LogMaterial: Display: Missing cached shadermap for ShadedLevelColorationLitMaterial in PCD3D_SM6, Default, SM6 (DDC key hash: 7860C6F9C70533941C3C28714AFF4744F9ACB6BC), compiling. Is special engine material.
  952. [2023.09.15-08.29.32:302][ 0]LogMaterial: Display: Missing cached shadermap for ShadedLevelColorationUnlitMateri in PCD3D_SM6, Default, SM6 (DDC key hash: 8163769FA55201E2D8B7175BC0E56F9348F0AC32), compiling. Is special engine material.
  953. [2023.09.15-08.29.32:366][ 0]LogInit: Initializing FReadOnlyCVARCache
  954. [2023.09.15-08.29.32:380][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  955. [2023.09.15-08.29.32:395][ 0]LogAIModule: Creating AISystem for world Untitled
  956. [2023.09.15-08.29.32:396][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
  957. [2023.09.15-08.29.32:396][ 0]LogInit: Texture streaming: Enabled
  958. [2023.09.15-08.29.32:413][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/. AppVersion = 5.1.1-23901901+++UE5+Release-5.1
  959. [2023.09.15-08.29.32:421][ 0]LogAudio: Display: Initializing Audio Device Manager...
  960. [2023.09.15-08.29.32:432][ 0]LogAudio: Display: Loading Default Audio Settings Objects...
  961. [2023.09.15-08.29.32:432][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
  962. [2023.09.15-08.29.32:434][ 0]LogAudio: Display: AudioInfo: 'BINKA' Registered
  963. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'PCM' Registered
  964. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
  965. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'OGG' Registered
  966. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'OPUS' Registered
  967. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: Audio Device Manager Initialized
  968. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True
  969. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings:
  970. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Sample Rate: 48000
  971. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024
  972. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024
  973. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Number of buffers to queue: 1
  974. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Max Channels (voices): 0
  975. [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4
  976. [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioDevice MaxSources: 32
  977. [2023.09.15-08.29.32:436][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
  978. [2023.09.15-08.29.32:436][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
  979. [2023.09.15-08.29.32:436][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
  980. [2023.09.15-08.29.32:440][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
  981. [2023.09.15-08.29.32:485][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (2- USB PnP Sound Device)
  982. [2023.09.15-08.29.32:485][ 0]LogAudioMixer: Display: Initializing Sound Submixes...
  983. [2023.09.15-08.29.32:486][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
  984. [2023.09.15-08.29.32:486][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
  985. [2023.09.15-08.29.32:487][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
  986. [2023.09.15-08.29.32:487][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
  987. [2023.09.15-08.29.32:488][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
  988. [2023.09.15-08.29.32:488][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
  989. [2023.09.15-08.29.32:488][ 0]LogInit: FAudioDevice initialized.
  990. [2023.09.15-08.29.32:488][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
  991. [2023.09.15-08.29.32:499][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
  992. [2023.09.15-08.29.32:504][ 0]LogLiveCoding: Display: Starting LiveCoding
  993. [2023.09.15-08.29.32:504][ 0]LogLiveCoding: Display: LiveCodingConsole Arguments: UnrealEditor Win64 Development
  994. [2023.09.15-08.29.32:505][ 0]LogLiveCoding: Display: First instance in process group "UE_Cooperate_0x08156d6b", spawning console
  995. [2023.09.15-08.29.32:508][ 0]LogLiveCoding: Display: Waiting for server
  996. [2023.09.15-08.29.33:041][ 0]LogLiveCoding: Display: Successfully initialized, removing startup thread
  997. [2023.09.15-08.29.33:058][ 0]LogInit: Transaction tracking system initialized
  998. [2023.09.15-08.29.33:080][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded E:/Work/ueProjects/Cooperate/Saved/SourceControl/UncontrolledChangelists.json
  999. [2023.09.15-08.29.33:080][ 0]LogSourceControl: Uncontrolled asset enumeration started...
  1000. [2023.09.15-08.29.33:082][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.002318 seconds (Found 129 uncontrolled assets)
  1001. [2023.09.15-08.29.33:114][ 0]BlueprintLog: New page: 编辑器加载
  1002. [2023.09.15-08.29.33:214][ 0]LocalizationService: 本地化服务已禁用
  1003. [2023.09.15-08.29.33:237][ 0]TimingProfiler: Initialize
  1004. [2023.09.15-08.29.33:237][ 0]TimingProfiler: OnSessionChanged
  1005. [2023.09.15-08.29.33:237][ 0]LoadingProfiler: Initialize
  1006. [2023.09.15-08.29.33:237][ 0]LoadingProfiler: OnSessionChanged
  1007. [2023.09.15-08.29.33:237][ 0]NetworkingProfiler: Initialize
  1008. [2023.09.15-08.29.33:237][ 0]NetworkingProfiler: OnSessionChanged
  1009. [2023.09.15-08.29.33:237][ 0]MemoryProfiler: Initialize
  1010. [2023.09.15-08.29.33:237][ 0]MemoryProfiler: OnSessionChanged
  1011. [2023.09.15-08.29.33:413][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Content/' took 0.00s
  1012. [2023.09.15-08.29.33:473][ 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.
  1013. To clear this message, resave packages that use the deleted class, or load its module earlier than the packages that use it are referenced.
  1014. [2023.09.15-08.29.33:510][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized.
  1015. [2023.09.15-08.29.33:729][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
  1016. [2023.09.15-08.29.33:730][ 0]SourceControl: 源码管理已禁用
  1017. [2023.09.15-08.29.33:730][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 7.162
  1018. [2023.09.15-08.29.33:730][ 0]Cmd: MAP LOAD FILE="../../../Engine/Content/Maps/Templates/OpenWorld.umap" TEMPLATE=1 SHOWPROGRESS=1 FEATURELEVEL=4
  1019. [2023.09.15-08.29.33:731][ 0]LightingResults: New page: 光照构建
  1020. [2023.09.15-08.29.33:733][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
  1021. [2023.09.15-08.29.33:733][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1022. [2023.09.15-08.29.33:734][ 0]MapCheck: New page: 地图检测
  1023. [2023.09.15-08.29.33:734][ 0]LightingResults: New page: 光照构建
  1024. [2023.09.15-08.29.33:740][ 0]LogAudio: Display: Audio Device unregistered from world 'None'.
  1025. [2023.09.15-08.29.33:743][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1026. [2023.09.15-08.29.33:747][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled_1'.
  1027. [2023.09.15-08.29.33:747][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1028. [2023.09.15-08.29.33:747][ 0]LogAIModule: Creating AISystem for world Untitled_1
  1029. [2023.09.15-08.29.33:747][ 0]LogWorldPartition: ULevel::OnLevelLoaded(Untitled_1)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, bIsValidLevelInstance=0, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=0)
  1030. [2023.09.15-08.29.33:747][ 0]LogWorldPartition: Display: WorldPartition initialize started...
  1031. [2023.09.15-08.29.33:747][ 0]LogWorldPartition: UWorldPartition::Initialize(Asset=Untitled_1, IsEditor=1, bPIEWorldTravel=0 IsGame=0, IsCooking=0)
  1032. [2023.09.15-08.29.34:037][ 0]LogContentBundle: [Container: Untitled_1] Creating new contrainer.
  1033. [2023.09.15-08.29.34:038][ 0]LogWorldPartition: Display: WorldPartition initialize took 290 ms
  1034. [2023.09.15-08.29.34:428][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1035. [2023.09.15-08.29.34:531][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1036. [2023.09.15-08.29.34:531][ 0]Cmd: MAP CHECKDEP NOCLEARLOG
  1037. [2023.09.15-08.29.34:542][ 0]MapCheck: 地图检测完成:0个错误、0个警告、完成用时10.962毫秒。
  1038. [2023.09.15-08.29.34:542][ 0]LogFileHelpers: Loading map 'OpenWorld' took 0.812
  1039. [2023.09.15-08.29.34:549][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 7.982
  1040. [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: ================================================
  1041. [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: === FShaderJobCache stats ===
  1042. [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: Total job queries 0, among them cache hits 0 (0.00%)
  1043. [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: Tracking 0 distinct input hashes that result in 0 distinct outputs (0.00%)
  1044. [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: RAM used: 0.00 MB (0.00 GB) of 1638.40 MB (1.60 GB) budget. Usage: 0.00%
  1045. [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: === Shader Compilation stats ===
  1046. [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: Shaders Compiled: 0
  1047. [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: Jobs assigned 0, completed 0 (0.00%)
  1048. [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: Time at least one job was in flight (either pending or executed): 0.00 s
  1049. [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: ================================================
  1050. [2023.09.15-08.29.34:733][ 0]LogSlate: The tab "VerticalModeToolbar" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1051. [2023.09.15-08.29.34:733][ 0]LogSlate: The tab "VerticalModeToolbar" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1052. [2023.09.15-08.29.34:733][ 0]LogSlate: The tab "TopLeftModeTab" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1053. [2023.09.15-08.29.34:734][ 0]LogSlate: The tab "Cesium" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1054. [2023.09.15-08.29.34:734][ 0]LogSlate: The tab "TopLeftModeTab" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1055. [2023.09.15-08.29.34:734][ 0]LogSlate: The tab "TopLeftModeTab" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1056. [2023.09.15-08.29.34:734][ 0]LogSlate: The tab "BottomLeftModeTab" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1057. [2023.09.15-08.29.34:742][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1058. [2023.09.15-08.29.34:747][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1059. [2023.09.15-08.29.34:751][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1060. [2023.09.15-08.29.34:755][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
  1061. [2023.09.15-08.29.34:756][ 0]LogSlate: The tab "CesiumIon" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1062. [2023.09.15-08.29.34:756][ 0]LogSlate: The tab "TopRightModeTab" attempted to spawn in layout 'LevelEditor_Layout_v1.8' but failed for some reason. It will not be displayed.
  1063. [2023.09.15-08.29.34:826][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/StarterContent.upack', mount point: 'root:/'
  1064. [2023.09.15-08.29.34:827][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/'
  1065. [2023.09.15-08.29.34:827][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/'
  1066. [2023.09.15-08.29.34:827][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/'
  1067. [2023.09.15-08.29.34:828][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/'
  1068. [2023.09.15-08.29.34:828][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/'
  1069. [2023.09.15-08.29.34:828][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_TopDown.upack', mount point: 'root:/'
  1070. [2023.09.15-08.29.34:828][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/'
  1071. [2023.09.15-08.29.34:829][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/'
  1072. [2023.09.15-08.29.34:829][ 0]LogPakFile: Display: Mounted Pak file 'D:/Program Files/Epic Games/UE_5.1/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/'
  1073. [2023.09.15-08.29.34:868][ 0]LogTurnkeySupport: Turnkey Device: Win64@BF-202302201105: (Name=BF-202302201105, Type=Computer, Status=Valid, , Flags="Device_InstallSoftwareValid")
  1074. [2023.09.15-08.29.34:900][ 0]LogSlate: Took 0.000097 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
  1075. [2023.09.15-08.29.34:902][ 0]LogSlate: Took 0.001160 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K)
  1076. [2023.09.15-08.29.34:902][ 0]LogSlate: Took 0.000098 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K)
  1077. [2023.09.15-08.29.34:904][ 0]LogSlate: Took 0.000092 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K)
  1078. [2023.09.15-08.29.34:904][ 0]LogSlate: Took 0.000069 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K)
  1079. [2023.09.15-08.29.34:929][ 0]LogViewport: Scene viewport resized to 1136x902, mode Windowed.
  1080. [2023.09.15-08.29.35:366][ 0]LogStall: Startup...
  1081. [2023.09.15-08.29.35:367][ 0]LogStall: Startup complete.
  1082. [2023.09.15-08.29.35:394][ 0]LogLoad: (Engine Initialization) Total time: 8.83 seconds
  1083. [2023.09.15-08.29.35:394][ 0]LogLoad: (Engine Initialization) Total Blueprint compile time: 0.00 seconds
  1084. [2023.09.15-08.29.35:454][ 0]LogAssetRegistry: Asset discovery search completed in 6.2693 seconds
  1085. [2023.09.15-08.29.35:485][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000004 seconds (updated 0 objects)
  1086. [2023.09.15-08.29.35:485][ 0]LogContentStreaming: Texture pool size now 1000 MB
  1087. [2023.09.15-08.29.37:810][201]LogSlate: Took 0.000098 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K)
  1088. [2023.09.15-08.29.40:557][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1089. [2023.09.15-08.29.40:650][504]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/tiyuguan.tiyuguan
  1090. [2023.09.15-08.29.40:650][504]Cmd: MAP LOAD FILE="E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1091. [2023.09.15-08.29.40:650][504]LightingResults: New page: 光照构建
  1092. [2023.09.15-08.29.40:650][504]LoadErrors: New page: 正在加载地图:tiyuguan.umap
  1093. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/203969_2_2_Tex.203969_2_2_Tex (TFO_AutoDXT, 512x512 x1x1x1)(预计所需内存:45.145823 MB),编码速度:Fast
  1094. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss079_2_2_Tex.zzsss079_2_2_Tex (TFO_AutoDXT, 512x512 x1x1x1)(预计所需内存:45.145823 MB),编码速度:Fast
  1095. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXY_BQ_DX0051_2_2_Tex.HHXY_BQ_DX0051_2_2_Tex (TFO_AutoDXT, 512x512 x1x1x1)(预计所需内存:45.145823 MB),编码速度:Fast
  1096. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/04w_2_2_Tex.04w_2_2_Tex (TFO_AutoDXT, 256x256 x1x1x1)(预计所需内存:10.395709 MB),编码速度:Fast
  1097. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXY_BQ_JZ0174_2_2_Tex.HHXY_BQ_JZ0174_2_2_Tex (TFO_AutoDXT, 512x512 x1x1x1)(预计所需内存:45.145823 MB),编码速度:Fast
  1098. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss080_2_2_Tex.zzsss080_2_2_Tex (TFO_AutoDXT, 1024x1024 x1x1x1)(预计所需内存:124.145823 MB),编码速度:Fast
  1099. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss082_2_2_Tex.zzsss082_2_2_Tex (TFO_AutoDXT, 1024x1024 x1x1x1)(预计所需内存:124.145823 MB),编码速度:Fast
  1100. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXp020_2_2_Tex.HHXp020_2_2_Tex (TFO_AutoDXT, 2048x1024 x1x1x1)(预计所需内存:169.479147 MB),编码速度:Fast
  1101. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss081_2_2_Tex.zzsss081_2_2_Tex (TFO_AutoDXT, 1024x1024 x1x1x1)(预计所需内存:124.145823 MB),编码速度:Fast
  1102. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXY_BQ_DX0084_2_2_Tex.HHXY_BQ_DX0084_2_2_Tex (TFO_AutoDXT, 256x256 x1x1x1)(预计所需内存:10.395709 MB),编码速度:Fast
  1103. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss083_2_2_Tex.zzsss083_2_2_Tex (TFO_AutoDXT, 512x1024 x1x1x1)(预计所需内存:84.604147 MB),编码速度:Fast
  1104. [2023.09.15-08.29.40:711][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXY_BQ_JZ0193_2_2_Tex.HHXY_BQ_JZ0193_2_2_Tex (TFO_AutoDXT, 512x512 x1x1x1)(预计所需内存:45.145823 MB),编码速度:Fast
  1105. [2023.09.15-08.29.40:732][504]LogWorld: UWorld::CleanupWorld for Untitled_1, bSessionEnded=true, bCleanupResources=true
  1106. [2023.09.15-08.29.40:732][504]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1107. [2023.09.15-08.29.40:739][504]LogContentBundle: [Container: Untitled_1] Deleting container.
  1108. [2023.09.15-08.29.40:739][504]MapCheck: New page: 地图检测
  1109. [2023.09.15-08.29.40:739][504]LightingResults: New page: 光照构建
  1110. [2023.09.15-08.29.40:750][504]LogAudio: Display: Audio Device unregistered from world 'None'.
  1111. [2023.09.15-08.29.40:763][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.54ms
  1112. [2023.09.15-08.29.40:796][504]LogTexture: Display: 正在等待纹理就绪4/18(/Game/HHXY_TYG_JZ/Textures/HHXp020_2_2_Tex)……
  1113. [2023.09.15-08.29.40:831][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXY_BQ_JZ0045_2_2_Tex.HHXY_BQ_JZ0045_2_2_Tex (TFO_AutoDXT, 128x128 x1x1x1)(预计所需内存:2.645795 MB),编码速度:Fast
  1114. [2023.09.15-08.29.40:848][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/HHXY_BQ_JZ0080_2_2_Tex.HHXY_BQ_JZ0080_2_2_Tex (TFO_AutoDXT, 1024x1024 x1x1x1)(预计所需内存:124.145823 MB),编码速度:Fast
  1115. [2023.09.15-08.29.40:859][504]LogStaticMesh: Display: 正在构建静态网格体Tube005……
  1116. [2023.09.15-08.29.40:863][504]LogTexture: Display: 正在等待纹理就绪12/18(/Game/HHXY_TYG_JZ/Textures/ppp4_2_2_Tex)……
  1117. [2023.09.15-08.29.40:876][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss069_2_2_Tex.zzsss069_2_2_Tex (TFO_AutoDXT, 512x512 x1x1x1)(预计所需内存:45.145823 MB),编码速度:Fast
  1118. [2023.09.15-08.29.40:881][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss085_2_2_Tex.zzsss085_2_2_Tex (TFO_AutoDXT, 1024x1024 x1x1x1)(预计所需内存:124.145823 MB),编码速度:Fast
  1119. [2023.09.15-08.29.40:887][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/zzsss084_2_2_Tex.zzsss084_2_2_Tex (TFO_AutoDXT, 2048x2048 x1x1x1)(预计所需内存:288.062484 MB),编码速度:Fast
  1120. [2023.09.15-08.29.40:897][504]LogTexture: Display: 正在构建纹理:/Game/HHXY_TYG_JZ/Textures/ppp4_2_2_Tex.ppp4_2_2_Tex (TFO_AutoDXT, 2048x2048 x1x1x1)(预计所需内存:288.062484 MB),编码速度:Fast
  1121. [2023.09.15-08.29.41:279][504]LogStaticMesh: Display: 正在等待静态网格体就绪0/1(/Game/HHXY_TYG_JZ/Geometries/Tube005)……
  1122. [2023.09.15-08.29.42:605][504]LogStaticMesh: Built static mesh [1.77s] /Game/HHXY_TYG_JZ/Geometries/Tube005.Tube005
  1123. [2023.09.15-08.29.42:655][504]LogStall: Stall detector 'UAssetEditorSubsystem::OpenEditorForAsset' exceeded budget of 2.000000s, reporting...
  1124. [2023.09.15-08.29.43:400][504]LogStall: Stall detector 'UAssetEditorSubsystem::OpenEditorForAsset' report submitted, and took 0.049944s
  1125. [2023.09.15-08.29.47:189][504]LogMeshUtilities: Finished distance field build in 3.8s - 126x126x126 sparse distance field, 2.4Mb total, 0.1Mb always loaded, 68% occupied, 23102 triangles, Tube005
  1126. [2023.09.15-08.29.47:295][504]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1127. [2023.09.15-08.29.47:295][504]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1128. [2023.09.15-08.29.47:304][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
  1129. [2023.09.15-08.29.47:311][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
  1130. [2023.09.15-08.29.47:313][504]LogAudio: Display: Audio Device (ID: 1) registered with world 'tiyuguan'.
  1131. [2023.09.15-08.29.47:313][504]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1132. [2023.09.15-08.29.47:313][504]LogAIModule: Creating AISystem for world tiyuguan
  1133. [2023.09.15-08.29.47:351][504]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1134. [2023.09.15-08.29.47:361][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1135. [2023.09.15-08.29.47:364][504]Cmd: MAP CHECKDEP NOCLEARLOG
  1136. [2023.09.15-08.29.47:364][504]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.057毫秒。
  1137. [2023.09.15-08.29.47:364][504]LogFileHelpers: Loading map 'tiyuguan' took 6.714
  1138. [2023.09.15-08.29.47:366][504]LogStall: Stall detector 'UAssetEditorSubsystem::OpenEditorForAsset' complete in 0.005311s (4.016059s overbudget)
  1139. [2023.09.15-08.29.52:993][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.20ms
  1140. [2023.09.15-08.29.53:060][106]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Map.Map
  1141. [2023.09.15-08.29.53:060][106]Cmd: MAP LOAD FILE="E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1142. [2023.09.15-08.29.53:060][106]LightingResults: New page: 光照构建
  1143. [2023.09.15-08.29.53:060][106]LoadErrors: New page: 正在加载地图:Map.umap
  1144. [2023.09.15-08.29.53:100][106]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1145. [2023.09.15-08.29.53:100][106]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1146. [2023.09.15-08.29.53:100][106]MapCheck: New page: 地图检测
  1147. [2023.09.15-08.29.53:100][106]LightingResults: New page: 光照构建
  1148. [2023.09.15-08.29.53:106][106]LogAudio: Display: Audio Device unregistered from world 'None'.
  1149. [2023.09.15-08.29.53:107][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.44ms
  1150. [2023.09.15-08.29.53:109][106]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
  1151. [2023.09.15-08.29.53:109][106]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1152. [2023.09.15-08.29.53:116][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.58ms
  1153. [2023.09.15-08.29.53:123][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms
  1154. [2023.09.15-08.29.53:125][106]LogAudio: Display: Audio Device (ID: 1) registered with world 'Map'.
  1155. [2023.09.15-08.29.53:125][106]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1156. [2023.09.15-08.29.53:125][106]LogAIModule: Creating AISystem for world Map
  1157. [2023.09.15-08.29.53:140][106]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1158. [2023.09.15-08.29.53:148][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.45ms
  1159. [2023.09.15-08.29.53:151][106]Cmd: MAP CHECKDEP NOCLEARLOG
  1160. [2023.09.15-08.29.53:151][106]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.05毫秒。
  1161. [2023.09.15-08.29.53:151][106]LogFileHelpers: Loading map 'Map' took 0.091
  1162. [2023.09.15-08.30.22:478][355]LogSlate: Window '关卡' being destroyed
  1163. [2023.09.15-08.30.22:483][355]LogSlate: Window '关卡' being destroyed
  1164. [2023.09.15-08.30.35:886][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1165. [2023.09.15-08.30.39:303][837]LogSlate: Window '保存内容' being destroyed
  1166. [2023.09.15-08.30.39:311][837]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1167. [2023.09.15-08.30.39:358][837]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Maps/Map" FILE="E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1168. [2023.09.15-08.30.39:365][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.20ms
  1169. [2023.09.15-08.30.39:371][837]LogPackageLocalizationCache: Processed 45 localized package path(s) for 2 prioritized culture(s) in 0.005435 seconds
  1170. [2023.09.15-08.30.39:372][837]LogSerialization: UsePackageTrailer: 'true'
  1171. [2023.09.15-08.30.39:373][837]LogSavePackage: Moving output files for package: /Game/Maps/Map
  1172. [2023.09.15-08.30.39:373][837]LogSavePackage: Moving 'E:/Work/ueProjects/Cooperate/Saved/Map34EBBFAA42FA5FCA26CD0FBEBBB1C56A.tmp' to 'E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap'
  1173. [2023.09.15-08.30.39:377][837]LogFileHelpers: Saving map 'Map' took 0.018
  1174. [2023.09.15-08.30.39:377][837]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Maps/tiyuguan" FILE="E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1175. [2023.09.15-08.30.39:384][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.26ms
  1176. [2023.09.15-08.30.39:386][837]LogSavePackage: Moving output files for package: /Game/Maps/tiyuguan
  1177. [2023.09.15-08.30.39:386][837]LogSavePackage: Moving 'E:/Work/ueProjects/Cooperate/Saved/tiyuguan6B5C2E8A49FDC262975785A0B25CC271.tmp' to 'E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap'
  1178. [2023.09.15-08.30.39:387][837]LogFileHelpers: Saving map 'tiyuguan' took 0.010
  1179. [2023.09.15-08.30.39:394][837]LogFileHelpers: InternalPromptForCheckoutAndSave took 82 ms
  1180. [2023.09.15-08.30.39:394][837]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/tiyuguan.tiyuguan
  1181. [2023.09.15-08.30.39:394][837]Cmd: MAP LOAD FILE="E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1182. [2023.09.15-08.30.39:394][837]LightingResults: New page: 光照构建
  1183. [2023.09.15-08.30.39:394][837]LoadErrors: New page: 正在加载地图:tiyuguan.umap
  1184. [2023.09.15-08.30.39:397][837]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
  1185. [2023.09.15-08.30.39:397][837]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1186. [2023.09.15-08.30.39:397][837]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1187. [2023.09.15-08.30.39:397][837]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1188. [2023.09.15-08.30.39:397][837]MapCheck: New page: 地图检测
  1189. [2023.09.15-08.30.39:397][837]LightingResults: New page: 光照构建
  1190. [2023.09.15-08.30.39:404][837]LogAudio: Display: Audio Device unregistered from world 'None'.
  1191. [2023.09.15-08.30.39:404][837]LogWorld: Warning: UWorld::FinishDestroy called after InitWorld without calling CleanupWorld first.
  1192. [2023.09.15-08.30.39:405][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms
  1193. [2023.09.15-08.30.39:407][837]LogAudio: Display: Audio Device (ID: 1) registered with world 'tiyuguan'.
  1194. [2023.09.15-08.30.39:407][837]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1195. [2023.09.15-08.30.39:407][837]LogAIModule: Creating AISystem for world tiyuguan
  1196. [2023.09.15-08.30.39:421][837]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1197. [2023.09.15-08.30.39:430][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1198. [2023.09.15-08.30.39:433][837]Cmd: MAP CHECKDEP NOCLEARLOG
  1199. [2023.09.15-08.30.39:433][837]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.056毫秒。
  1200. [2023.09.15-08.30.39:433][837]LogFileHelpers: Loading map 'tiyuguan' took 0.039
  1201. [2023.09.15-08.30.39:437][837]AssetCheck: New page: 资产保存:多个资产
  1202. [2023.09.15-08.30.39:437][837]LogContentValidation: Display: 正在验证/Script/Engine.World /Game/Maps/tiyuguan.tiyuguan
  1203. [2023.09.15-08.30.39:446][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.23ms
  1204. [2023.09.15-08.30.46:151][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.35ms
  1205. [2023.09.15-08.30.46:208][611]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Map.Map
  1206. [2023.09.15-08.30.46:208][611]Cmd: MAP LOAD FILE="E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1207. [2023.09.15-08.30.46:208][611]LightingResults: New page: 光照构建
  1208. [2023.09.15-08.30.46:208][611]LoadErrors: New page: 正在加载地图:Map.umap
  1209. [2023.09.15-08.30.46:209][611]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1210. [2023.09.15-08.30.46:209][611]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1211. [2023.09.15-08.30.46:210][611]MapCheck: New page: 地图检测
  1212. [2023.09.15-08.30.46:210][611]LightingResults: New page: 光照构建
  1213. [2023.09.15-08.30.46:216][611]LogAudio: Display: Audio Device unregistered from world 'None'.
  1214. [2023.09.15-08.30.46:217][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
  1215. [2023.09.15-08.30.46:218][611]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
  1216. [2023.09.15-08.30.46:218][611]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1217. [2023.09.15-08.30.46:225][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1218. [2023.09.15-08.30.46:233][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.50ms
  1219. [2023.09.15-08.30.46:234][611]LogAudio: Display: Audio Device (ID: 1) registered with world 'Map'.
  1220. [2023.09.15-08.30.46:234][611]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1221. [2023.09.15-08.30.46:235][611]LogAIModule: Creating AISystem for world Map
  1222. [2023.09.15-08.30.46:260][611]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/tiyuguan) is flushing async loading
  1223. [2023.09.15-08.30.46:262][611]LogStreaming: Display: FlushAsyncLoading(-1): 1 QueuedPackages, 0 AsyncPackages
  1224. [2023.09.15-08.30.46:308][611]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1225. [2023.09.15-08.30.46:317][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
  1226. [2023.09.15-08.30.46:320][611]Cmd: MAP CHECKDEP NOCLEARLOG
  1227. [2023.09.15-08.30.46:320][611]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.079毫秒。
  1228. [2023.09.15-08.30.46:320][611]LogFileHelpers: Loading map 'Map' took 0.112
  1229. [2023.09.15-08.30.51:092][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.21ms
  1230. [2023.09.15-08.30.51:093][174]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/tiyuguan.tiyuguan
  1231. [2023.09.15-08.30.51:093][174]Cmd: MAP LOAD FILE="E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1232. [2023.09.15-08.30.51:093][174]LightingResults: New page: 光照构建
  1233. [2023.09.15-08.30.51:093][174]LoadErrors: New page: 正在加载地图:tiyuguan.umap
  1234. [2023.09.15-08.30.51:131][174]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
  1235. [2023.09.15-08.30.51:131][174]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1236. [2023.09.15-08.30.51:131][174]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1237. [2023.09.15-08.30.51:131][174]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1238. [2023.09.15-08.30.51:131][174]MapCheck: New page: 地图检测
  1239. [2023.09.15-08.30.51:131][174]LightingResults: New page: 光照构建
  1240. [2023.09.15-08.30.51:138][174]LogAudio: Display: Audio Device unregistered from world 'None'.
  1241. [2023.09.15-08.30.51:139][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
  1242. [2023.09.15-08.30.51:139][174]LogAudio: Display: Audio Device (ID: 1) registered with world 'tiyuguan'.
  1243. [2023.09.15-08.30.51:139][174]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1244. [2023.09.15-08.30.51:140][174]LogAIModule: Creating AISystem for world tiyuguan
  1245. [2023.09.15-08.30.51:155][174]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1246. [2023.09.15-08.30.51:163][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms
  1247. [2023.09.15-08.30.51:166][174]Cmd: MAP CHECKDEP NOCLEARLOG
  1248. [2023.09.15-08.30.51:166][174]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.052毫秒。
  1249. [2023.09.15-08.30.51:166][174]LogFileHelpers: Loading map 'tiyuguan' took 0.073
  1250. [2023.09.15-08.30.51:177][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.20ms
  1251. [2023.09.15-08.31.01:622][408]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
  1252. [2023.09.15-08.31.01:623][408]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
  1253. [2023.09.15-08.31.01:628][408]LogActorFactory: Actor Factory spawned Class /Script/Engine.DirectionalLight as actor: DirectionalLight /Game/Maps/tiyuguan.tiyuguan:PersistentLevel.DirectionalLight_0
  1254. [2023.09.15-08.31.01:628][408]LogActorFactory: Actor Factory spawned Class /Script/Engine.DirectionalLight as actor: DirectionalLight /Game/Maps/tiyuguan.tiyuguan:PersistentLevel.DirectionalLight_0
  1255. [2023.09.15-08.31.02:045][441]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
  1256. [2023.09.15-08.31.02:045][441]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
  1257. [2023.09.15-08.31.02:047][441]LogActorFactory: Actor Factory spawned Class /Script/Engine.DirectionalLight as actor: DirectionalLight /Game/Maps/tiyuguan.tiyuguan:PersistentLevel.DirectionalLight_1
  1258. [2023.09.15-08.31.02:047][441]LogActorFactory: Actor Factory spawned Class /Script/Engine.DirectionalLight as actor: DirectionalLight /Game/Maps/tiyuguan.tiyuguan:PersistentLevel.DirectionalLight_1
  1259. [2023.09.15-08.31.05:794][883]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1260. [2023.09.15-08.31.05:859][883]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Maps/tiyuguan" FILE="E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1261. [2023.09.15-08.31.05:866][883]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms
  1262. [2023.09.15-08.31.05:869][883]LogSavePackage: Moving output files for package: /Game/Maps/tiyuguan
  1263. [2023.09.15-08.31.05:869][883]LogSavePackage: Moving 'E:/Work/ueProjects/Cooperate/Saved/tiyuguan4A39DBD04EEC14704B59B79124ECD3FB.tmp' to 'E:/Work/ueProjects/Cooperate/Content/Maps/tiyuguan.umap'
  1264. [2023.09.15-08.31.05:872][883]LogFileHelpers: Saving map 'tiyuguan' took 0.014
  1265. [2023.09.15-08.31.05:879][883]LogFileHelpers: InternalPromptForCheckoutAndSave took 84 ms (total: 167 ms)
  1266. [2023.09.15-08.31.05:881][883]AssetCheck: New page: 资产保存:tiyuguan
  1267. [2023.09.15-08.31.05:881][883]LogContentValidation: Display: 正在验证/Script/Engine.World /Game/Maps/tiyuguan.tiyuguan
  1268. [2023.09.15-08.31.08:252][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.23ms
  1269. [2023.09.15-08.31.08:309][159]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Map.Map
  1270. [2023.09.15-08.31.08:309][159]Cmd: MAP LOAD FILE="E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4
  1271. [2023.09.15-08.31.08:309][159]LightingResults: New page: 光照构建
  1272. [2023.09.15-08.31.08:309][159]LoadErrors: New page: 正在加载地图:Map.umap
  1273. [2023.09.15-08.31.08:339][159]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1274. [2023.09.15-08.31.08:339][159]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1275. [2023.09.15-08.31.08:340][159]MapCheck: New page: 地图检测
  1276. [2023.09.15-08.31.08:340][159]LightingResults: New page: 光照构建
  1277. [2023.09.15-08.31.08:346][159]LogAudio: Display: Audio Device unregistered from world 'None'.
  1278. [2023.09.15-08.31.08:347][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
  1279. [2023.09.15-08.31.08:348][159]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
  1280. [2023.09.15-08.31.08:348][159]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1281. [2023.09.15-08.31.08:356][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms
  1282. [2023.09.15-08.31.08:363][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms
  1283. [2023.09.15-08.31.08:364][159]LogAudio: Display: Audio Device (ID: 1) registered with world 'Map'.
  1284. [2023.09.15-08.31.08:364][159]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1285. [2023.09.15-08.31.08:365][159]LogAIModule: Creating AISystem for world Map
  1286. [2023.09.15-08.31.08:365][159]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/tiyuguan) is flushing async loading
  1287. [2023.09.15-08.31.08:365][159]LogStreaming: Display: FlushAsyncLoading(-1): 1 QueuedPackages, 0 AsyncPackages
  1288. [2023.09.15-08.31.08:389][159]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
  1289. [2023.09.15-08.31.08:398][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms
  1290. [2023.09.15-08.31.08:400][159]Cmd: MAP CHECKDEP NOCLEARLOG
  1291. [2023.09.15-08.31.08:400][159]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.075毫秒。
  1292. [2023.09.15-08.31.08:400][159]LogFileHelpers: Loading map 'Map' took 0.092
  1293. [2023.09.15-08.31.13:730][765]LogSlate: Took 0.000121 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K)
  1294. [2023.09.15-08.31.31:380][737]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.
  1295. [2023.09.15-08.31.31:381][737]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.
  1296. [2023.09.15-08.31.31:381][737]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.
  1297. [2023.09.15-08.31.32:995][737]LogDerivedDataCache: C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:05.068 and deleted 0 files with total size 0 MiB. Scanned 3423 files in 3393 folders with total size 206 MiB.
  1298. [2023.09.15-08.31.33:444][737]LogSlate: Window '选取父类' being destroyed
  1299. [2023.09.15-08.31.33:454][737]LogContentBrowser: Deferred new asset file creation: NewBlueprint
  1300. [2023.09.15-08.31.33:458][737]LogContentBrowser: Creating deferred item: NewBlueprint
  1301. [2023.09.15-08.31.33:467][738]LogContentBrowser: Renaming the item being created (Deferred Item: NewBlueprint).
  1302. [2023.09.15-08.31.34:422][833]LogContentBrowser: Attempting asset rename: NewBlueprint -> NewBlueprint
  1303. [2023.09.15-08.31.34:455][833]LogContentBrowser: End creating deferred item NewBlueprint
  1304. [2023.09.15-08.31.35:141][903]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
  1305. [2023.09.15-08.31.35:141][903]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
  1306. [2023.09.15-08.31.35:143][903]LogActorFactory: Actor Factory spawned Blueprint /Game/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Map.Map:PersistentLevel.NewBlueprint_C_0
  1307. [2023.09.15-08.31.35:143][903]LogActorFactory: Actor Factory spawned Blueprint /Game/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Map.Map:PersistentLevel.NewBlueprint_C_0
  1308. [2023.09.15-08.31.35:145][903]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance
  1309. [2023.09.15-08.31.35:725][971]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
  1310. [2023.09.15-08.31.35:725][971]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
  1311. [2023.09.15-08.31.35:726][971]LogActorFactory: Actor Factory spawned Blueprint /Game/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Map.Map:PersistentLevel.NewBlueprint_C_1
  1312. [2023.09.15-08.31.35:726][971]LogActorFactory: Actor Factory spawned Blueprint /Game/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Map.Map:PersistentLevel.NewBlueprint_C_1
  1313. [2023.09.15-08.31.43:593][899]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/NewBlueprint.NewBlueprint
  1314. [2023.09.15-08.31.43:593][899]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
  1315. [2023.09.15-08.31.45:494][899]LogViewport: Scene viewport resized to 1277x683, mode Windowed.
  1316. [2023.09.15-08.31.50:282][323]LogSlate: Took 0.000123 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K)
  1317. [2023.09.15-08.32.03:620][750]BlueprintLog: New page: 编译NewBlueprint
  1318. [2023.09.15-08.32.03:697][750]LogUObjectHash: Compacting FUObjectHashTables data took 0.97ms
  1319. [2023.09.15-08.32.04:212][803]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1320. [2023.09.15-08.32.04:275][803]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/NewBlueprint" FILE="E:/Work/ueProjects/Cooperate/Content/NewBlueprint.uasset" SILENT=true
  1321. [2023.09.15-08.32.04:291][803]LogSavePackage: Moving output files for package: /Game/NewBlueprint
  1322. [2023.09.15-08.32.04:292][803]LogSavePackage: Moving 'E:/Work/ueProjects/Cooperate/Saved/NewBlueprint4178135E4333C3CC9F5C1A9007E0621E.tmp' to 'E:/Work/ueProjects/Cooperate/Content/NewBlueprint.uasset'
  1323. [2023.09.15-08.32.04:298][803]LogFileHelpers: InternalPromptForCheckoutAndSave took 85 ms (total: 253 ms)
  1324. [2023.09.15-08.32.04:303][803]AssetCheck: New page: 资产保存:NewBlueprint
  1325. [2023.09.15-08.32.04:303][803]LogContentValidation: Display: 正在验证/Script/Engine.Blueprint /Game/NewBlueprint.NewBlueprint
  1326. [2023.09.15-08.32.08:351][270]LogSlate: Window 'NewBlueprint' being destroyed
  1327. [2023.09.15-08.32.08:358][270]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true
  1328. [2023.09.15-08.32.08:358][270]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1329. [2023.09.15-08.32.17:649][375]LogEditorViewport: Clicking Background
  1330. [2023.09.15-08.32.18:068][423]LogFileHelpers: InternalPromptForCheckoutAndSave started...
  1331. [2023.09.15-08.32.18:124][423]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Maps/Map" FILE="E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap" SILENT=true AUTOSAVING=false KEEPDIRTY=false
  1332. [2023.09.15-08.32.18:149][423]LogUObjectHash: Compacting FUObjectHashTables data took 0.98ms
  1333. [2023.09.15-08.32.18:153][423]LogSavePackage: Moving output files for package: /Game/Maps/Map
  1334. [2023.09.15-08.32.18:153][423]LogSavePackage: Moving 'E:/Work/ueProjects/Cooperate/Saved/MapA79EBE2B493771DCB7D530BC02E2744E.tmp' to 'E:/Work/ueProjects/Cooperate/Content/Maps/Map.umap'
  1335. [2023.09.15-08.32.18:156][423]LogFileHelpers: Saving map 'Map' took 0.032
  1336. [2023.09.15-08.32.18:162][423]LogFileHelpers: InternalPromptForCheckoutAndSave took 93 ms (total: 347 ms)
  1337. [2023.09.15-08.32.18:167][423]AssetCheck: New page: 资产保存:Map
  1338. [2023.09.15-08.32.18:167][423]LogContentValidation: Display: 正在验证/Script/Engine.World /Game/Maps/Map.Map
  1339. [2023.09.15-08.32.18:935][515]LogEditorViewport: Clicking Background
  1340. [2023.09.15-08.46.29:412][522]LogUObjectHash: Compacting FUObjectHashTables data took 1.09ms
  1341. [2023.09.15-08.46.29:413][522]LogStall: Shutdown...
  1342. [2023.09.15-08.46.29:418][522]LogStall: Shutdown complete.
  1343. [2023.09.15-08.46.29:436][522]LogSlate: Window 'Cooperate - 虚幻编辑器' being destroyed
  1344. [2023.09.15-08.46.29:469][523]Cmd: QUIT_EDITOR
  1345. [2023.09.15-08.46.29:469][523]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor())
  1346. [2023.09.15-08.46.29:471][523]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
  1347. [2023.09.15-08.46.29:471][523]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown
  1348. [2023.09.15-08.46.29:471][523]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown
  1349. [2023.09.15-08.46.29:471][523]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
  1350. [2023.09.15-08.46.29:471][523]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1351. [2023.09.15-08.46.29:471][523]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
  1352. [2023.09.15-08.46.29:471][523]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
  1353. [2023.09.15-08.46.29:471][523]LogStylusInput: Shutting down StylusInput subsystem.
  1354. [2023.09.15-08.46.29:471][523]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized.
  1355. [2023.09.15-08.46.29:548][523]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
  1356. [2023.09.15-08.46.29:548][523]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
  1357. [2023.09.15-08.46.29:549][523]LogAudio: Display: Audio Device unregistered from world 'Map'.
  1358. [2023.09.15-08.46.29:549][523]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
  1359. [2023.09.15-08.46.29:550][523]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
  1360. [2023.09.15-08.46.29:571][523]LogAudio: Display: Audio Device Manager Shutdown
  1361. [2023.09.15-08.46.29:573][523]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0
  1362. [2023.09.15-08.46.29:573][523]LogExit: Preparing to exit.
  1363. [2023.09.15-08.46.29:599][523]LogUObjectHash: Compacting FUObjectHashTables data took 1.00ms
  1364. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1365. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1366. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1367. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1368. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1369. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1370. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1371. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1372. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1373. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1374. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1375. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1376. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1377. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1378. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1379. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1380. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1381. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1382. [2023.09.15-08.46.29:602][523]LogPython: Display: Object '/Engine/PythonTypes.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources!
  1383. [2023.09.15-08.46.30:040][523]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true
  1384. [2023.09.15-08.46.30:042][523]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true
  1385. [2023.09.15-08.46.30:091][523]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
  1386. [2023.09.15-08.46.30:097][523]LogExit: Editor shut down
  1387. [2023.09.15-08.46.30:098][523]LogExit: Transaction tracking system shut down
  1388. [2023.09.15-08.46.30:193][523]LogExit: Object subsystem successfully closed.
  1389. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: ================================================
  1390. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: === FShaderJobCache stats ===
  1391. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Total job queries 100, among them cache hits 2 (2.00%)
  1392. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Tracking 98 distinct input hashes that result in 82 distinct outputs (83.67%)
  1393. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: RAM used: 0.86 MB (0.00 GB) of 1638.40 MB (1.60 GB) budget. Usage: 0.05%
  1394. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: === Shader Compilation stats ===
  1395. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Shaders Compiled: 25
  1396. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Jobs assigned 25, completed 25 (100.00%)
  1397. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Average time worker was idle: 16.50 s
  1398. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Time job spent in pending queue: average 0.34 s, longest 1.00 s
  1399. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Job execution time: average 0.75 s, max 0.95 s
  1400. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Job life time (pending + execution): average 1.09 s, max 1.82
  1401. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Time at least one job was in flight (either pending or executed): 3.76 s
  1402. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Jobs were issued in 25 batches (only local compilation was used), average 1.00 jobs/batch
  1403. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Average processing rate: 6.66 jobs/sec
  1404. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Total thread time: 13.99 s
  1405. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Total thread preprocess time: 0.81 s
  1406. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Percentage time preprocessing: 5.77%
  1407. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Effective parallelization: 3.72 (times faster than compiling all shaders on one thread). Compare with number of workers: 8
  1408. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Top 5 most expensive shader types by average time:
  1409. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: TBasePassPSFNoLightMapPolicySkylight (compiled 1 times, average 0.75 sec, max 0.75 sec, min 0.75 sec)
  1410. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: TBasePassPSFNoLightMapPolicy (compiled 5 times, average 0.72 sec, max 0.86 sec, min 0.68 sec)
  1411. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: TBasePassVSFNoLightMapPolicy (compiled 5 times, average 0.64 sec, max 0.65 sec, min 0.62 sec)
  1412. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: FLumenCardVS (compiled 4 times, average 0.57 sec, max 0.58 sec, min 0.56 sec)
  1413. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: FLumenFrontLayerTranslucencyGBufferVS (compiled 1 times, average 0.53 sec, max 0.53 sec, min 0.53 sec)
  1414. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Top 5 shader types by total compile time:
  1415. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: TBasePassPSFNoLightMapPolicy - 25.81% of total time (compiled 5 times, average 0.72 sec, max 0.86 sec, min 0.68 sec)
  1416. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: TBasePassVSFNoLightMapPolicy - 22.84% of total time (compiled 5 times, average 0.64 sec, max 0.65 sec, min 0.62 sec)
  1417. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: FLumenCardVS - 16.41% of total time (compiled 4 times, average 0.57 sec, max 0.58 sec, min 0.56 sec)
  1418. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: FLumenCardPS<false> - 10.34% of total time (compiled 4 times, average 0.36 sec, max 0.38 sec, min 0.34 sec)
  1419. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: TBasePassPSFNoLightMapPolicySkylight - 5.37% of total time (compiled 1 times, average 0.75 sec, max 0.75 sec, min 0.75 sec)
  1420. [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: ================================================
  1421. [2023.09.15-08.46.30:234][523]LogShaderCompilers: Display: Shaders left to compile 0
  1422. [2023.09.15-08.46.30:241][523]LogVirtualization: UE::Virtualization was shutdown
  1423. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module BlueprintGraph (1021)
  1424. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module HierarchicalLODOutliner (1017)
  1425. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module UnsavedAssetsTracker (1015)
  1426. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AddContentDialog (1013)
  1427. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WidgetCarousel (1012)
  1428. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SubobjectEditor (1009)
  1429. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SceneOutliner (1007)
  1430. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module StatusBar (1005)
  1431. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module GameProjectGeneration (1003)
  1432. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module StatsViewer (1001)
  1433. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SequenceRecorderSections (999)
  1434. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AutomationWorker (997)
  1435. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WaveTableEditor (995)
  1436. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module ResonanceAudioEditor (993)
  1437. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module GooglePADEditor (991)
  1438. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AudioCaptureEditor (989)
  1439. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AndroidFileServerEditor (987)
  1440. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (985)
  1441. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WmfMediaEditor (983)
  1442. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (981)
  1443. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WebMMediaEditor (979)
  1444. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WebMMedia (977)
  1445. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module MediaPlayerEditor (975)
  1446. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (973)
  1447. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (971)
  1448. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module ImgMediaEditor (969)
  1449. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module MediaCompositingEditor (967)
  1450. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SequenceRecorder (966)
  1451. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (963)
  1452. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AvfMediaEditor (961)
  1453. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AndroidMediaFactory (959)
  1454. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AndroidMediaEditor (957)
  1455. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module TextureAlignMode (955)
  1456. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module BspMode (953)
  1457. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module GeometryMode (951)
  1458. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SmartSnapping (949)
  1459. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module PlanarCut (947)
  1460. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module CharacterAI (945)
  1461. [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module DatasmithFBXTranslator (943)
  1462. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module DatasmithDeltaGenTranslator (941)
  1463. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module DatasmithVREDTranslator (939)
  1464. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module TemplateSequenceEditor (937)
  1465. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module LevelSequenceEditor (935)
  1466. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ActorSequenceEditor (933)
  1467. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module CameraShakePreviewer (931)
  1468. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module IKRigEditor (929)
  1469. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ControlRigEditor (927)
  1470. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module SessionServices (925)
  1471. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module MeshPaint (923)
  1472. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module VirtualTexturingEditor (921)
  1473. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module PlacementMode (920)
  1474. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module FoliageEdit (917)
  1475. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module LandscapeEditor (915)
  1476. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module SceneDepthPickerMode (913)
  1477. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ActorPickerMode (911)
  1478. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ViewportSnapping (909)
  1479. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ViewportInteraction (907)
  1480. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ClothPainter (905)
  1481. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module SkeletalMeshEditor (904)
  1482. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module LogVisualizer (901)
  1483. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module IOSPlatformEditor (899)
  1484. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module AndroidPlatformEditor (897)
  1485. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module PIEPreviewDeviceProfileSelector (896)
  1486. [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module AndroidDeviceDetection (894)
  1487. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module WindowsPlatformEditor (891)
  1488. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module HoloLensPlatformEditor (889)
  1489. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module IOSRuntimeSettings (887)
  1490. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AndroidRuntimeSettings (885)
  1491. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AnimationSettings (883)
  1492. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module VirtualizationEditor (881)
  1493. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module CSVtoSVG (879)
  1494. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DerivedDataEditor (877)
  1495. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorConfig (875)
  1496. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module WorldPartitionEditor (873)
  1497. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorFramework (871)
  1498. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module StaticMeshEditor (869)
  1499. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module TraceInsights (867)
  1500. [2023.09.15-08.46.31:091][523]MemoryProfiler: Shutdown
  1501. [2023.09.15-08.46.31:091][523]NetworkingProfiler: Shutdown
  1502. [2023.09.15-08.46.31:091][523]LoadingProfiler: Shutdown
  1503. [2023.09.15-08.46.31:091][523]TimingProfiler: Shutdown
  1504. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module TraceServices (866)
  1505. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorInteractiveToolsFramework (863)
  1506. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module InteractiveToolsFramework (862)
  1507. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module InputBindingEditor (859)
  1508. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module MergeActors (857)
  1509. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module LocalizationDashboard (855)
  1510. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module LocalizationService (854)
  1511. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module HardwareTargeting (851)
  1512. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DeviceProfileEditor (849)
  1513. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module UndoHistory (847)
  1514. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module XmlParser (845)
  1515. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module Blutility (843)
  1516. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProjectSettingsViewer (841)
  1517. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProjectTargetPlatformEditor (840)
  1518. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorSettingsViewer (837)
  1519. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module InternationalizationSettings (836)
  1520. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module SettingsEditor (833)
  1521. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProjectLauncher (831)
  1522. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module SessionFrontend (829)
  1523. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProfilerClient (827)
  1524. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DeviceManager (825)
  1525. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AutomationController (823)
  1526. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AutomationWindow (821)
  1527. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module Layers (819)
  1528. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ComponentVisualizers (817)
  1529. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DetailCustomizations (815)
  1530. [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module PackagesDialog (813)
  1531. [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module AnimationBlueprintEditor (811)
  1532. [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module Persona (809)
  1533. [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module AdvancedPreviewScene (808)
  1534. [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module AnimGraph (806)
  1535. [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module Kismet (803)
  1536. [2023.09.15-08.46.31:096][523]LogModuleManager: Shutting down and abandoning module KismetWidgets (802)
  1537. [2023.09.15-08.46.31:096][523]LogModuleManager: Shutting down and abandoning module GraphEditor (799)
  1538. [2023.09.15-08.46.31:097][523]LogModuleManager: Shutting down and abandoning module StructViewer (797)
  1539. [2023.09.15-08.46.31:097][523]LogModuleManager: Shutting down and abandoning module ClassViewer (795)
  1540. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module NaniteTools (793)
  1541. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module UncontrolledChangelists (791)
  1542. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module SourceControlWindowExtender (789)
  1543. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module SourceControlWindows (787)
  1544. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module OutputLog (785)
  1545. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module Documentation (783)
  1546. [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module LiveCoding (781)
  1547. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (779)
  1548. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module MovieScene (777)
  1549. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (775)
  1550. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (773)
  1551. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (771)
  1552. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AudioMixer (770)
  1553. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AudioMixerCore (769)
  1554. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module LauncherPlatform (765)
  1555. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AnalyticsET (763)
  1556. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module PortalServices (761)
  1557. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module PortalRpc (759)
  1558. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module MessagingRpc (757)
  1559. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AIModule (755)
  1560. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module GameplayDebugger (754)
  1561. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AITestSuite (752)
  1562. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module NavigationSystem (750)
  1563. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module DataLayerEditor (747)
  1564. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module EditorWidgets (746)
  1565. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module LevelInstanceEditor (743)
  1566. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (741)
  1567. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module TypedElementFramework (739)
  1568. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (737)
  1569. [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module ProfilerService (735)
  1570. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TaskGraph (733)
  1571. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaEditor (731)
  1572. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TakeRecorderSources (729)
  1573. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TakeTrackRecorders (727)
  1574. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TakesCore (725)
  1575. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module MegascansPlugin (723)
  1576. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module Bridge (721)
  1577. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module LightMixer (719)
  1578. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ObjectMixerEditor (717)
  1579. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ContentBrowserFileDataSource (715)
  1580. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ContentBrowserClassDataSource (713)
  1581. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ContentBrowserAssetDataSource (711)
  1582. [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module CollectionManager (710)
  1583. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module SynthesisEditor (707)
  1584. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ResonanceAudio (705)
  1585. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponentEditor (703)
  1586. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (701)
  1587. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingOperatorsEditorOnly (699)
  1588. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingOperators (697)
  1589. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingComponentsEditorOnly (695)
  1590. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingComponents (693)
  1591. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFramework (692)
  1592. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingToolsEditorOnly (689)
  1593. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingTools (687)
  1594. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InputDebugging (685)
  1595. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GooglePAD (683)
  1596. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DynamicMesh (681)
  1597. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (679)
  1598. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (677)
  1599. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCacheStreamer (675)
  1600. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCacheSequencer (673)
  1601. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AudioCapture (671)
  1602. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AudioCaptureRtAudio (670)
  1603. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AssetTags (667)
  1604. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (665)
  1605. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AppleImageUtilsBlueprintSupport (663)
  1606. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AppleImageUtils (661)
  1607. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AndroidPermission (659)
  1608. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ActorLayerUtilitiesEditor (657)
  1609. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (655)
  1610. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MediaPlateEditor (653)
  1611. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MediaPlate (651)
  1612. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ImgMedia (649)
  1613. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MediaCompositing (647)
  1614. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module StylusInput (645)
  1615. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module WorldPartitionHLODUtilities (643)
  1616. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module SequencerAnimTools (641)
  1617. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingToolsEditorMode (639)
  1618. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module PluginBrowser (637)
  1619. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module SpeedTreeImporter (635)
  1620. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MaterialAnalyzer (633)
  1621. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MobileLauncherProfileWizard (631)
  1622. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFImporter (629)
  1623. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFCore (627)
  1624. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module EditorScriptingUtilities (625)
  1625. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module CurveEditorTools (623)
  1626. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module EditorDebugTools (621)
  1627. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module CryptoKeysOpenSSL (619)
  1628. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module CryptoKeys (617)
  1629. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module BlueprintHeaderView (615)
  1630. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module PaperTiledImporter (613)
  1631. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module PaperSpriteSheetImporter (611)
  1632. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module Paper2DEditor (609)
  1633. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeFbxParser (607)
  1634. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (605)
  1635. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (603)
  1636. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangePipelines (601)
  1637. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeExport (599)
  1638. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeMessages (597)
  1639. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeImport (595)
  1640. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (593)
  1641. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeNodes (591)
  1642. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeEditorUtilities (589)
  1643. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeResultsBrowser (587)
  1644. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeEditorPipelines (585)
  1645. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeEditor (583)
  1646. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeTestEditor (581)
  1647. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeTests (579)
  1648. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module UVEditorToolsEditorOnly (577)
  1649. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module UVEditorTools (575)
  1650. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module UVEditor (573)
  1651. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (571)
  1652. [2023.09.15-08.46.31:203][523]LogOpenImageDenoise: OIDN shutting down
  1653. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingEditorUI (569)
  1654. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryProcessingAdapters (567)
  1655. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingToolsEditorOnlyExp (565)
  1656. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingToolsExp (563)
  1657. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshLODToolset (561)
  1658. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module Iris (559)
  1659. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFlowMeshProcessingEditor (557)
  1660. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFlowMeshProcessing (555)
  1661. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFlowCore (553)
  1662. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (551)
  1663. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (549)
  1664. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionEngine (548)
  1665. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionSequencer (546)
  1666. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionEditor (543)
  1667. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataflowNodes (541)
  1668. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataflowEditor (539)
  1669. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosNiagara (537)
  1670. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (535)
  1671. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosSolverEditor (533)
  1672. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module FractureEditor (531)
  1673. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosClothEditor (529)
  1674. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module BackChannel (527)
  1675. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AutomationUtilsEditor (525)
  1676. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AutomationUtils (523)
  1677. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module VariantManager (521)
  1678. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module VariantManagerContentEditor (520)
  1679. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFMaterialBaking (517)
  1680. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFMaterialAnalyzer (515)
  1681. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DirectLinkTest (513)
  1682. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DirectLinkExtensionEditor (511)
  1683. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithNativeTranslator (509)
  1684. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithTranslator (507)
  1685. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithImporter (505)
  1686. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithContentEditor (504)
  1687. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithExternalSource (501)
  1688. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DirectLinkExtension (500)
  1689. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ExternalSource (499)
  1690. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepEditorScriptingUtilities (495)
  1691. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepLibraries (493)
  1692. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepCore (491)
  1693. [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepEditor (489)
  1694. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TemplateSequence (485)
  1695. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SequencerScriptingEditor (483)
  1696. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SequencerScripting (481)
  1697. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (479)
  1698. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TakeSequencer (477)
  1699. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TakeMovieScene (475)
  1700. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SubversionSourceControl (473)
  1701. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module VisualStudioSourceCodeAccess (471)
  1702. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module VisualStudioCodeSourceCodeAccess (469)
  1703. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module UObjectPlugin (467)
  1704. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module RiderSourceCodeAccess (465)
  1705. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PluginUtils (463)
  1706. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module DumpGPUServices (461)
  1707. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PlasticSourceControl (459)
  1708. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GitSourceControl (457)
  1709. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module CLionSourceCodeAccess (455)
  1710. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AnimationSharingEd (453)
  1711. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module NiagaraEditorWidgets (451)
  1712. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ControlRigSpline (449)
  1713. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module BlendSpaceMotionAnalysis (447)
  1714. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AnimationModifierLibrary (445)
  1715. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AlembicImporter (443)
  1716. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AlembicLibrary (442)
  1717. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GeometryCache (441)
  1718. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GeometryCacheEd (440)
  1719. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module EditorTraceUtilities (435)
  1720. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TraceUtilities (433)
  1721. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MeshPaintingToolset (431)
  1722. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MeshPaintEditorMode (429)
  1723. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module InputEditor (427)
  1724. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SoundFields (425)
  1725. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module Synthesis (423)
  1726. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SignificanceManager (421)
  1727. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PropertyAccessEditor (419)
  1728. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (417)
  1729. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundEditor (415)
  1730. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioWidgets (414)
  1731. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (413)
  1732. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (409)
  1733. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundEngine (407)
  1734. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module WaveTable (406)
  1735. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (404)
  1736. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (401)
  1737. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (399)
  1738. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (397)
  1739. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (395)
  1740. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (393)
  1741. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (391)
  1742. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module CableComponent (389)
  1743. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (387)
  1744. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (386)
  1745. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (383)
  1746. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (381)
  1747. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GameplayTagsEditor (379)
  1748. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module FacialAnimationEditor (377)
  1749. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module FacialAnimation (375)
  1750. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module DataValidation (373)
  1751. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AssetManagerEditor (371)
  1752. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TreeMap (370)
  1753. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module Paper2D (367)
  1754. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PythonScriptPlugin (365)
  1755. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PBIK (363)
  1756. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module FullBodyIK (361)
  1757. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ChaosCachingEditor (359)
  1758. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TakeRecorder (358)
  1759. [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module LevelEditor (356)
  1760. [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module PixelInspectorModule (355)
  1761. [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module LevelAssetEditor (353)
  1762. [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module CommonMenuExtensions (351)
  1763. [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module MainFrame (349)
  1764. [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module HotReload (348)
  1765. [2023.09.15-08.46.31:213][523]LogModuleManager: Shutting down and abandoning module ChaosCaching (343)
  1766. [2023.09.15-08.46.31:213][523]LogModuleManager: Shutting down and abandoning module ActorSequence (341)
  1767. [2023.09.15-08.46.31:213][523]LogModuleManager: Shutting down and abandoning module TcpMessaging (339)
  1768. [2023.09.15-08.46.31:314][523]LogModuleManager: Shutting down and abandoning module UdpMessaging (337)
  1769. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module TraceDataFiltering (335)
  1770. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module PropertyAccessNode (333)
  1771. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module AnimationSharing (331)
  1772. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module GameplayCameras (329)
  1773. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module IKRigDeveloper (327)
  1774. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module IKRig (325)
  1775. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module EnvironmentQueryEditor (323)
  1776. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (321)
  1777. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module Niagara (319)
  1778. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module SignalProcessing (318)
  1779. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NiagaraEditor (316)
  1780. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ContentBrowser (315)
  1781. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ToolMenus (314)
  1782. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ContentBrowserData (312)
  1783. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NiagaraCore (307)
  1784. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ControlRigDeveloper (305)
  1785. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ControlRig (303)
  1786. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module LevelSequence (302)
  1787. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module InputBlueprintNodes (299)
  1788. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module EnhancedInput (297)
  1789. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (295)
  1790. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (293)
  1791. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module AndroidFileServer (291)
  1792. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (289)
  1793. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module PacketHandler (287)
  1794. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module TimeManagement (285)
  1795. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module AnimationDataController (283)
  1796. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ClothingSystemEditor (281)
  1797. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (279)
  1798. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module MediaAssets (277)
  1799. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module Overlay (275)
  1800. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module OverlayEditor (274)
  1801. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module VREditor (271)
  1802. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module StringTableEditor (269)
  1803. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module GameplayTasksEditor (267)
  1804. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module BehaviorTreeEditor (265)
  1805. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module FunctionalTesting (263)
  1806. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module CollisionAnalyzer (261)
  1807. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module WorkspaceMenuStructure (260)
  1808. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module UMG (257)
  1809. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module UMGEditor (256)
  1810. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module EditorStyle (251)
  1811. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module SlateReflector (249)
  1812. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module Slate (247)
  1813. [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module SlateCore (245)
  1814. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module SubobjectDataInterface (243)
  1815. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module LandscapeEditorUtilities (241)
  1816. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module UnrealEd (239)
  1817. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MRMesh (237)
  1818. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Messaging (235)
  1819. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module SourceCodeAccess (233)
  1820. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (231)
  1821. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Networking (229)
  1822. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Core (227)
  1823. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MaterialEditor (225)
  1824. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MovieSceneTools (223)
  1825. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module CurveEditor (222)
  1826. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Sequencer (220)
  1827. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module KismetCompiler (217)
  1828. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MeshBuilder (215)
  1829. [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module NaniteBuilder (213)
  1830. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshUtilities (211)
  1831. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshMergeUtilities (210)
  1832. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshReductionInterface (209)
  1833. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshBoneReduction (208)
  1834. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module SkeletalMeshReduction (206)
  1835. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module ProxyLODMeshReduction (204)
  1836. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module QuadricMeshReduction (202)
  1837. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MaterialBaking (198)
  1838. [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module TargetDeviceServices (195)
  1839. [2023.09.15-08.46.31:428][523]LogModuleManager: Shutting down and abandoning module NullInstallBundleManager (191)
  1840. [2023.09.15-08.46.31:428][523]LogModuleManager: Shutting down and abandoning module DerivedDataCache (189)
  1841. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TargetPlatform (187)
  1842. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ShaderFormatVectorVM (186)
  1843. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module MetalShaderFormat (184)
  1844. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module VulkanShaderFormat (182)
  1845. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ShaderFormatOpenGL (180)
  1846. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ShaderFormatD3D (178)
  1847. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatBink (176)
  1848. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatADPCM (173)
  1849. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatOGG (171)
  1850. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatOPUS (169)
  1851. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WindowsTargetPlatform (167)
  1852. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TVOSTargetPlatform (165)
  1853. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module LinuxArm64TargetPlatform (163)
  1854. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module LinuxTargetPlatform (161)
  1855. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module IOSTargetPlatform (159)
  1856. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module HoloLensTargetPlatform (157)
  1857. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AndroidTargetPlatform (155)
  1858. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormat (153)
  1859. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ImageWrapper (152)
  1860. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatOodle (150)
  1861. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatUncompressed (148)
  1862. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatIntelISPCTexComp (146)
  1863. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatETC2 (144)
  1864. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatDXT (142)
  1865. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatASTC (140)
  1866. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TurnkeySupport (137)
  1867. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module InputCore (134)
  1868. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module Settings (132)
  1869. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module DirectoryWatcher (130)
  1870. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (128)
  1871. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (127)
  1872. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module Chaos (124)
  1873. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module GeometryCore (123)
  1874. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (120)
  1875. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (119)
  1876. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AVEncoder (118)
  1877. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module D3D12RHI (114)
  1878. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (112)
  1879. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (110)
  1880. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ChunkDownloader (108)
  1881. [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WmfMedia (106)
  1882. [2023.09.15-08.46.31:431][523]LogModuleManager: Shutting down and abandoning module Media (105)
  1883. [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (102)
  1884. [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (100)
  1885. [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module ChaosCloth (98)
  1886. [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module VariantManagerContent (96)
  1887. [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module GLTFExporter (94)
  1888. [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module DatasmithContent (92)
  1889. [2023.09.15-08.46.31:433][523]LogModuleManager: Shutting down and abandoning module OnlineBlueprintSupport (90)
  1890. [2023.09.15-08.46.31:433][523]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (88)
  1891. [2023.09.15-08.46.31:433][523]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (86)
  1892. [2023.09.15-08.46.31:434][523]LogModuleManager: Shutting down and abandoning module XMPP (81)
  1893. [2023.09.15-08.46.31:434][523]LogModuleManager: Shutting down and abandoning module WebSockets (80)
  1894. [2023.09.15-08.46.31:468][523]LogModuleManager: Shutting down and abandoning module HTTP (77)
  1895. [2023.09.15-08.46.31:468][523]LogHttp: Warning: [FHttpManager::Flush] FlushReason was Shutdown. Unbinding delegates for 1 outstanding Http Requests:
  1896. [2023.09.15-08.46.31:468][523]LogHttp: Warning: verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7B468A6DA0-4E1C-33B9-B73C-D58CF400B563%7D&AppID=UEEditor.Rocket.Release&AppVersion=5.1.1-23901901%2B%2B%2BUE5%2BRelease-5.1&UserID=38f7d028420349f7539f9d99f4d404cf%7C5d9a579556c34b77819d8fad9be49f0d%7Cffc76fa6-c7f8-4c43-bf16-d697a154c3c1&AppEnvironment=datacollector-binary&UploadType=eteventstream] refs=[1] status=Processing
  1897. [2023.09.15-08.46.31:471][523]LogModuleManager: Shutting down and abandoning module SSL (76)
  1898. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (72)
  1899. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (70)
  1900. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (68)
  1901. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PixWinPlugin (66)
  1902. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module AISupportModule (64)
  1903. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (62)
  1904. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module NiagaraShader (60)
  1905. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module DesktopPlatform (58)
  1906. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (56)
  1907. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (54)
  1908. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (52)
  1909. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PlatformCrypto (50)
  1910. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PerforceSourceControl (48)
  1911. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module SourceControl (47)
  1912. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module XGEController (44)
  1913. [2023.09.15-08.46.31:472][523]LogXGEController: Cleaning working directory: C:/Users/Administrator/AppData/Local/Temp/UnrealXGEWorkingDir/
  1914. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module FastBuildController (42)
  1915. [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module AnimationModifiers (40)
  1916. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module AudioEditor (38)
  1917. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module PropertyEditor (37)
  1918. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module Virtualization (34)
  1919. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module MessageLog (33)
  1920. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module TextureCompressor (30)
  1921. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module RenderCore (28)
  1922. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module Landscape (26)
  1923. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
  1924. [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
  1925. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module Renderer (20)
  1926. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module Engine (18)
  1927. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
  1928. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
  1929. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module PakFile (12)
  1930. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module RSA (11)
  1931. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
  1932. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
  1933. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
  1934. [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
  1935. [2023.09.15-08.46.31:580][523]LogD3D12RHI: ~FD3D12DynamicRHI
  1936. [2023.09.15-08.46.31:640][523]LogExit: Exiting.
  1937. [2023.09.15-08.46.31:659][523]Log file closed, 09/15/23 16:46:31