123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938 |
- Log file open, 09/15/23 16:29:26
- LogWindows: Failed to load 'aqProf.dll' (GetLastError=0)
- LogWindows: File 'aqProf.dll' does not exist
- LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
- LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=0)
- LogWindows: File 'VtuneApi.dll' does not exist
- LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=0)
- LogWindows: File 'VtuneApi32e.dll' does not exist
- LogWindows: Started CrashReportClient (pid=32092)
- LogWindows: Custom abort handler registered for crash reporting.
- LogInit: Display: Running engine for game: Cooperate
- LogCore: UnrealTraceServer: Trace store launch successful
- LogCore: Initializing trace...
- LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark'
- LogCore: Finished trace initialization.
- LogCsvProfiler: Display: Metadata set : platform="Windows"
- LogCsvProfiler: Display: Metadata set : config="Development"
- LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.1-CL-23901901"
- LogCsvProfiler: Display: Metadata set : engineversion="5.1.1-23901901+++UE5+Release-5.1"
- LogCsvProfiler: Display: Metadata set : commandline="" E:\Work\ueProjects\Cooperate\Cooperate.uproject""
- LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.3324] "
- LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz"
- LogCsvProfiler: Display: Metadata set : pgoenabled="0"
- LogCsvProfiler: Display: Metadata set : loginid="38f7d028420349f7539f9d99f4d404cf"
- LogCsvProfiler: Display: Metadata set : asan="0"
- LogCsvProfiler: Display: Metadata set : llm="0"
- LogStats: Stats thread started at 0.233548
- LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: ''
- LogInit: Session CrashGUID >====================================================
- Session CrashGUID > UECC-Windows-6E01BA4B4220BC2539A9D1A97DE747D5
- Session CrashGUID >====================================================
- LogConfig: Display: Loading HoloLens ini files took 0.02 seconds
- LogConfig: Display: Loading Android ini files took 0.02 seconds
- LogConfig: Display: Loading IOS ini files took 0.02 seconds
- LogConfig: Display: Loading VulkanPC ini files took 0.02 seconds
- LogConfig: Display: Loading Mac ini files took 0.02 seconds
- LogConfig: Display: Loading Windows ini files took 0.02 seconds
- LogConfig: Display: Loading Unix ini files took 0.03 seconds
- LogConfig: Display: Loading TVOS ini files took 0.03 seconds
- LogConfig: Display: Loading Linux ini files took 0.03 seconds
- LogConfig: Display: Loading LinuxArm64 ini files took 0.03 seconds
- LogPluginManager: Mounting Engine plugin Bridge
- LogPluginManager: Mounting Engine plugin EnhancedInput
- LogPluginManager: Mounting Engine plugin FastBuildController
- LogPluginManager: Mounting Engine plugin MeshPainting
- LogPluginManager: Mounting Engine plugin XGEController
- LogPluginManager: Mounting Engine plugin TraceUtilities
- LogPluginManager: Mounting Engine plugin AlembicImporter
- LogPluginManager: Mounting Engine plugin AnimationModifierLibrary
- LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis
- LogPluginManager: Mounting Engine plugin ControlRig
- LogPluginManager: Mounting Engine plugin ControlRigSpline
- LogPluginManager: Mounting Engine plugin Niagara
- LogPluginManager: Mounting Engine plugin AISupport
- LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
- LogPluginManager: Mounting Engine plugin IKRig
- LogPluginManager: Mounting Engine plugin GameplayCameras
- LogPluginManager: Mounting Engine plugin AnimationSharing
- LogPluginManager: Mounting Engine plugin CameraShakePreviewer
- LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess
- LogPluginManager: Mounting Engine plugin NullSourceCodeAccess
- LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess
- LogPluginManager: Mounting Engine plugin GitSourceControl
- LogPluginManager: Mounting Engine plugin PerforceSourceControl
- LogPluginManager: Mounting Engine plugin PlasticSourceControl
- LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess
- LogPluginManager: Mounting Engine plugin PixWinPlugin
- LogPluginManager: Mounting Engine plugin DumpGPUServices
- LogPluginManager: Mounting Engine plugin PluginUtils
- LogPluginManager: Mounting Engine plugin PropertyAccessNode
- LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess
- LogPluginManager: Mounting Engine plugin TraceDataFilters
- LogPluginManager: Mounting Engine plugin UObjectPlugin
- LogPluginManager: Mounting Engine plugin TextureFormatOodle
- LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess
- LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess
- LogPluginManager: Mounting Engine plugin UdpMessaging
- LogPluginManager: Mounting Engine plugin TcpMessaging
- LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess
- LogPluginManager: Mounting Engine plugin SubversionSourceControl
- LogPluginManager: Mounting Engine plugin Takes
- LogPluginManager: Mounting Engine plugin OodleNetwork
- LogPluginManager: Mounting Engine plugin ActorSequence
- LogPluginManager: Mounting Engine plugin LevelSequenceEditor
- LogPluginManager: Mounting Engine plugin SequencerScripting
- LogPluginManager: Mounting Engine plugin TemplateSequence
- LogPluginManager: Mounting Engine plugin OnlineBase
- LogPluginManager: Mounting Engine plugin OnlineServices
- LogPluginManager: Mounting Engine plugin OnlineSubsystem
- LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
- LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
- LogPluginManager: Mounting Engine plugin DataprepEditor
- LogPluginManager: Mounting Engine plugin DatasmithFBXImporter
- LogPluginManager: Mounting Engine plugin DatasmithImporter
- LogPluginManager: Mounting Engine plugin DatasmithContent
- LogPluginManager: Mounting Engine plugin GLTFExporter
- LogPluginManager: Mounting Engine plugin VariantManager
- LogPluginManager: Mounting Engine plugin VariantManagerContent
- LogPluginManager: Mounting Engine plugin AutomationUtils
- LogPluginManager: Mounting Engine plugin BackChannel
- LogPluginManager: Mounting Engine plugin ChaosCaching
- LogPluginManager: Mounting Engine plugin ChaosClothEditor
- LogPluginManager: Mounting Engine plugin ChaosCloth
- LogPluginManager: Mounting Engine plugin ChaosEditor
- LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
- LogPluginManager: Mounting Engine plugin CharacterAI
- LogPluginManager: Mounting Engine plugin ChaosUserDataPT
- LogPluginManager: Mounting Engine plugin ChaosNiagara
- LogPluginManager: Mounting Engine plugin Dataflow
- LogPluginManager: Mounting Engine plugin FullBodyIK
- LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
- LogPluginManager: Mounting Engine plugin GeometryFlow
- LogPluginManager: Mounting Engine plugin Iris
- LogPluginManager: Mounting Engine plugin MeshLODToolset
- LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp
- LogPluginManager: Mounting Engine plugin OpenImageDenoise
- LogPluginManager: Mounting Engine plugin PlanarCut
- LogPluginManager: Mounting Engine plugin ProxyLODPlugin
- LogPluginManager: Mounting Engine plugin PlatformCrypto
- LogPluginManager: Mounting Engine plugin PythonScriptPlugin
- LogPluginManager: Mounting Engine plugin SkeletalReduction
- LogPluginManager: Mounting Engine plugin UVEditor
- LogPluginManager: Mounting Engine plugin InterchangeTests
- LogPluginManager: Mounting Engine plugin InterchangeEditor
- LogPluginManager: Mounting Engine plugin Interchange
- LogPluginManager: Found config from plugin[Interchange] Game
- LogPluginManager: Mounting Engine plugin Paper2D
- LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
- LogPluginManager: Mounting Engine plugin AssetManagerEditor
- LogPluginManager: Mounting Engine plugin BlueprintHeaderView
- LogPluginManager: Mounting Engine plugin CryptoKeys
- LogPluginManager: Mounting Engine plugin EditorDebugTools
- LogPluginManager: Mounting Engine plugin CurveEditorTools
- LogPluginManager: Mounting Engine plugin DataValidation
- LogPluginManager: Mounting Engine plugin FacialAnimation
- LogPluginManager: Mounting Engine plugin GameplayTagsEditor
- LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
- LogPluginManager: Mounting Engine plugin GeometryMode
- LogPluginManager: Mounting Engine plugin GLTFImporter
- LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard
- LogPluginManager: Mounting Engine plugin MacGraphicsSwitching
- LogPluginManager: Mounting Engine plugin MaterialAnalyzer
- LogPluginManager: Mounting Engine plugin SpeedTreeImporter
- LogPluginManager: Mounting Engine plugin PluginBrowser
- LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode
- LogPluginManager: Mounting Engine plugin SequencerAnimTools
- LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities
- LogPluginManager: Mounting Engine plugin StylusInput
- LogPluginManager: Mounting Engine plugin AndroidMedia
- LogPluginManager: Mounting Engine plugin AvfMedia
- LogPluginManager: Mounting Engine plugin MediaCompositing
- LogPluginManager: Mounting Engine plugin ImgMedia
- LogPluginManager: Mounting Engine plugin MediaPlate
- LogPluginManager: Mounting Engine plugin MediaPlayerEditor
- LogPluginManager: Mounting Engine plugin WebMMedia
- LogPluginManager: Mounting Engine plugin WmfMedia
- LogPluginManager: Mounting Engine plugin ActorLayerUtilities
- LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector
- LogPluginManager: Mounting Engine plugin AndroidPermission
- LogPluginManager: Mounting Engine plugin AppleImageUtils
- LogPluginManager: Mounting Engine plugin AndroidMoviePlayer
- LogPluginManager: Mounting Engine plugin AppleMoviePlayer
- LogPluginManager: Mounting Engine plugin AndroidFileServer
- LogPluginManager: Mounting Engine plugin ArchVisCharacter
- LogPluginManager: Mounting Engine plugin AssetTags
- LogPluginManager: Mounting Engine plugin AudioCapture
- LogPluginManager: Mounting Engine plugin AudioWidgets
- LogPluginManager: Mounting Engine plugin AudioSynesthesia
- LogPluginManager: Mounting Engine plugin CableComponent
- LogPluginManager: Mounting Engine plugin ChunkDownloader
- LogPluginManager: Mounting Engine plugin CustomMeshComponent
- LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
- LogPluginManager: Mounting Engine plugin GeometryCache
- LogPluginManager: Mounting Engine plugin GeometryProcessing
- LogPluginManager: Mounting Engine plugin GoogleCloudMessaging
- LogPluginManager: Mounting Engine plugin GooglePAD
- LogPluginManager: Mounting Engine plugin InputDebugging
- LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector
- LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector
- LogPluginManager: Mounting Engine plugin MeshModelingToolset
- LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
- LogPluginManager: Mounting Engine plugin Metasound
- LogPluginManager: Mounting Engine plugin MobilePatchingUtils
- LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
- LogPluginManager: Mounting Engine plugin PropertyAccessEditor
- LogPluginManager: Mounting Engine plugin SignificanceManager
- LogPluginManager: Mounting Engine plugin ResonanceAudio
- LogPluginManager: Mounting Engine plugin Synthesis
- LogPluginManager: Mounting Engine plugin WaveTable
- LogPluginManager: Mounting Engine plugin WebMMoviePlayer
- LogPluginManager: Mounting Engine plugin SoundFields
- LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
- LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
- LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource
- LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource
- LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource
- LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay
- LogPluginManager: Mounting Engine plugin ObjectMixer
- LogPluginManager: Mounting Engine plugin LightMixer
- LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Bridge/Content/' mounted to '/Bridge/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/DataprepEditor/Content/' mounted to '/DataprepEditor/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/GeometryFlow/Content/' mounted to '/GeometryFlow/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/MeshLODToolset/Content/' mounted to '/MeshLODToolset/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/MeshModelingToolsetExp/Content/' mounted to '/MeshModelingToolsetExp/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Experimental/UVEditor/Content/' mounted to '/UVEditor/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/GLTFImporter/Content/' mounted to '/GLTFImporter/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ModelingToolsEditorMode/Content/' mounted to '/ModelingToolsEditorMode/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/MeshModelingToolset/Content/' mounted to '/MeshModelingToolset/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
- LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
- SourceControl: Source control is disabled
- SourceControl: Source control is disabled
- PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
- LogInit: Using libcurl 7.83.1
- LogInit: - built for Windows
- LogInit: - supports SSL with OpenSSL/1.1.1n
- LogInit: - supports HTTP deflate (compression) using libz 1.2.12
- LogInit: - other features:
- LogInit: CURL_VERSION_SSL
- LogInit: CURL_VERSION_LIBZ
- LogInit: CURL_VERSION_IPV6
- LogInit: CURL_VERSION_ASYNCHDNS
- LogInit: CURL_VERSION_LARGEFILE
- LogInit: CurlRequestOptions (configurable via config and command line):
- LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate
- LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy
- LogInit: - bDontReuseConnections = false - Libcurl will reuse connections
- LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host
- LogInit: - LocalHostAddr = Default
- LogInit: - BufferSize = 65536
- LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
- LogOnline: OSS: Created online subsystem instance for: NULL
- LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
- LogInit: Build: ++UE5+Release-5.1-CL-23901901
- LogInit: Engine Version: 5.1.1-23901901+++UE5+Release-5.1
- LogInit: Compatible Engine Version: 5.1.0-23058290+++UE5+Release-5.1
- LogInit: Net CL: 23058290
- 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
- LogInit: Compiled (64-bit): Jan 30 2023 05:19:00
- LogInit: Compiled with Visual C++: 19.29.30147.00
- LogInit: Build Configuration: Development
- LogInit: Branch Name: ++UE5+Release-5.1
- LogInit: Command Line:
- LogInit: Base Directory: D:/Program Files/Epic Games/UE_5.1/Engine/Binaries/Win64/
- LogInit: Allocator: Mimalloc
- LogInit: Installed Engine Build: 1
- LogDevObjectVersion: Number of dev versions registered: 35
- LogDevObjectVersion: Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
- LogDevObjectVersion: Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
- LogDevObjectVersion: Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
- LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
- LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
- LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
- LogDevObjectVersion: Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
- LogDevObjectVersion: Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
- LogDevObjectVersion: Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
- LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
- LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 45
- LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
- LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
- LogDevObjectVersion: Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
- LogDevObjectVersion: Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
- LogDevObjectVersion: Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
- LogDevObjectVersion: Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
- LogDevObjectVersion: Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
- LogDevObjectVersion: Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
- LogDevObjectVersion: FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 80
- LogDevObjectVersion: FortniteNC (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
- LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 4
- LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
- LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
- LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
- LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
- LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
- LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
- LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
- LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 88
- LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 41
- LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
- LogDevObjectVersion: UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
- LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
- LogDevObjectVersion: UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
- LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
- LogInit: Object subsystem initialized
- LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
- LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
- LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
- LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
- LogConfig: Set CVar [[r.setres:1280x720]]
- LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
- LogConfig: CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] deferred - dummy variable created
- LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
- LogConfig: Set CVar [[r.Occlusion.SingleRHIThreadStall:1]]
- LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.VSync:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.BlueprintClusteringEnabled:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.VerifyGCObjectNames:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
- [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine]
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[DefaultPVRTCQuality:1]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:1]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created
- [2023.09.15-08.29.27:143][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created
- [2023.09.15-08.29.27:145][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:100]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.History.GrandReprojection:1]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.Velocity.Extrapolation:1]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: CVar [[r.TSR.Velocity.HoleFill:1]] deferred - dummy variable created
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
- [2023.09.15-08.29.27:145][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AOQuality:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenSpaceBentNormal:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LumenScene.SurfaceCache.CardCaptureRefreshFraction:0.125]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.BloomQuality:5]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:70.711]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Tonemapper.GrainQuantization:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]]
- [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]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.DetailMode:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
- [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]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: CVar [[fx.Niagara.QualityLevel:3]] deferred - dummy variable created
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
- [2023.09.15-08.29.27:146][ 0]LogConfig: CVar [[r.HairStrands.Interpolation.UseSingleGuide:0]] deferred - dummy variable created
- [2023.09.15-08.29.27:146][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
- [2023.09.15-08.29.27:152][ 0]LogD3D12RHI: Aftermath initialized
- [2023.09.15-08.29.27:152][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
- [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)
- [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]
- [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)
- [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]
- [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)
- [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]
- [2023.09.15-08.29.27:341][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
- [2023.09.15-08.29.27:341][ 0]LogInit: Selected Device Profile: [WindowsEditor]
- [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)
- [2023.09.15-08.29.27:341][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows]
- [2023.09.15-08.29.27:341][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile []
- [2023.09.15-08.29.27:341][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
- [2023.09.15-08.29.27:341][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
- [2023.09.15-08.29.27:341][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
- [2023.09.15-08.29.27:341][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
- [2023.09.15-08.29.27:341][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
- [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]
- [2023.09.15-08.29.27:341][ 0]LogInit: Computer: BF-202302201105
- [2023.09.15-08.29.27:341][ 0]LogInit: User: Administrator
- [2023.09.15-08.29.27:341][ 0]LogInit: CPU Page size=4096, Cores=8
- [2023.09.15-08.29.27:341][ 0]LogInit: High frequency timer resolution =10.000000 MHz
- [2023.09.15-08.29.27:341][ 0]LogMemory: Memory total: Physical=31.8GB (32GB approx)
- [2023.09.15-08.29.27:341][ 0]LogMemory: Platform Memory Stats for WindowsEditor
- [2023.09.15-08.29.27:341][ 0]LogMemory: Process Physical Memory: 309.73 MB used, 311.71 MB peak
- [2023.09.15-08.29.27:341][ 0]LogMemory: Process Virtual Memory: 312.50 MB used, 312.50 MB peak
- [2023.09.15-08.29.27:341][ 0]LogMemory: Physical Memory: 17712.08 MB used, 14800.55 MB free, 32512.63 MB total
- [2023.09.15-08.29.27:341][ 0]LogMemory: Virtual Memory: 71145.94 MB used, 17297.21 MB free, 88443.15 MB total
- [2023.09.15-08.29.27:341][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
- [2023.09.15-08.29.27:345][ 0]LogWindows: WindowsPlatformFeatures enabled
- [2023.09.15-08.29.27:351][ 0]LogInit: Physics initialised using underlying interface: Chaos
- [2023.09.15-08.29.27:352][ 0]LogInit: Using OS detected language (zh-CN).
- [2023.09.15-08.29.27:352][ 0]LogInit: Using OS detected locale (zh-CN).
- [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.
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Editor/zh/Editor.locres' could not be opened for reading!
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/EditorTutorials/zh/EditorTutorials.locres' could not be opened for reading!
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Keywords/zh/Keywords.locres' could not be opened for reading!
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Category/zh/Category.locres' could not be opened for reading!
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/ToolTips/zh/ToolTips.locres' could not be opened for reading!
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/PropertyNames/zh/PropertyNames.locres' could not be opened for reading!
- [2023.09.15-08.29.27:447][ 0]LogTextLocalizationResource: LocRes '../../../Engine/Content/Localization/Engine/zh/Engine.locres' could not be opened for reading!
- [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!
- [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!
- [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!
- [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!
- [2023.09.15-08.29.27:496][ 0]LogInit: Setting process to per monitor DPI aware
- [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: Available input methods:
- [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 搜狗拼音输入法 (TSF IME).
- [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - 微软拼音 (TSF IME).
- [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: - 中文(简体,中国) - (Keyboard).
- [2023.09.15-08.29.27:555][ 0]LogWindowsTextInputMethodSystem: Activated input method: 中文(简体,中国) - 搜狗拼音输入法 (TSF IME).
- [2023.09.15-08.29.27:563][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
- [2023.09.15-08.29.27:563][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0
- [2023.09.15-08.29.27:634][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
- [2023.09.15-08.29.27:635][ 0]LogWindows: Attached monitors:
- [2023.09.15-08.29.27:635][ 0]LogWindows: resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY9'
- [2023.09.15-08.29.27:635][ 0]LogWindows: resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY10' [PRIMARY]
- [2023.09.15-08.29.27:635][ 0]LogWindows: Found 2 attached monitors.
- [2023.09.15-08.29.27:635][ 0]LogWindows: Gathering driver information using Windows Setup API
- [2023.09.15-08.29.27:635][ 0]LogRHI: RHI Adapter Info:
- [2023.09.15-08.29.27:635][ 0]LogRHI: Name: NVIDIA GeForce RTX 3060 Ti
- [2023.09.15-08.29.27:635][ 0]LogRHI: Driver Version: 536.40 (internal:31.0.15.3640, unified:536.40)
- [2023.09.15-08.29.27:635][ 0]LogRHI: Driver Date: 6-23-2023
- [2023.09.15-08.29.27:635][ 0]LogD3D12RHI: GPU DeviceId: 0x2489 (for the marketing name, search the web for "GPU Device Id")
- [2023.09.15-08.29.27:635][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
- [2023.09.15-08.29.27:637][ 0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
- [2023.09.15-08.29.27:637][ 0]LogD3D12RHI: Emitting draw events for PIX profiling.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device1 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device2 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device3 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device4 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device5 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device6 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device7 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device8 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device9 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: ID3D12Device10 is supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: Bindless resources are supported
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
- [2023.09.15-08.29.27:729][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
- [2023.09.15-08.29.27:765][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
- [2023.09.15-08.29.27:765][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
- [2023.09.15-08.29.27:766][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
- [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
- [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
- [2023.09.15-08.29.27:786][ 0]LogRHI: Texture pool is 4580 MB (70% of 6543 MB)
- [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: Async texture creation enabled
- [2023.09.15-08.29.27:786][ 0]LogD3D12RHI: RHI has support for 64 bit atomics
- [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'
- [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" ]
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.8
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.6.dll
- [2023.09.15-08.29.27:822][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.7.dll
- [2023.09.15-08.29.27:823][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll
- [2023.09.15-08.29.27:823][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi'
- [2023.09.15-08.29.27:830][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient'
- [2023.09.15-08.29.27:850][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'HoloLens'
- [2023.09.15-08.29.27:850][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'HoloLensClient'
- [2023.09.15-08.29.27:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS'
- [2023.09.15-08.29.27:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient'
- [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux'
- [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor'
- [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer'
- [2023.09.15-08.29.27:855][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient'
- [2023.09.15-08.29.27:856][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64'
- [2023.09.15-08.29.27:856][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server'
- [2023.09.15-08.29.27:856][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client'
- [2023.09.15-08.29.27:858][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS'
- [2023.09.15-08.29.27:858][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient'
- [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows'
- [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor'
- [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer'
- [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient'
- [2023.09.15-08.29.27:862][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor
- [2023.09.15-08.29.27:866][ 0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
- [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
- [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: Loaded format module AudioFormatADPCM
- [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: ADPCM
- [2023.09.15-08.29.27:868][ 0]LogTargetPlatformManager: PCM
- [2023.09.15-08.29.27:869][ 0]LogTargetPlatformManager: Loaded format module AudioFormatBink
- [2023.09.15-08.29.27:869][ 0]LogTargetPlatformManager: BINKA
- [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: Loaded format module AudioFormatOgg
- [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: OGG
- [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: Loaded format module AudioFormatOpus
- [2023.09.15-08.29.27:870][ 0]LogTargetPlatformManager: OPUS
- [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
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MRT
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_TVOS
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_SM5
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: PCD3D_SM6
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: PCD3D_SM5
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: PCD3D_ES31
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: D3D_ES3_1_HOLOLENS
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: GLSL_150_ES31
- [2023.09.15-08.29.27:899][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: VVM_1_0
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_SM5
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_ES31
- [2023.09.15-08.29.27:903][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID
- [2023.09.15-08.29.27:903][ 0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
- [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.
- [2023.09.15-08.29.27:905][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy.
- [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.
- [2023.09.15-08.29.27:905][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy.
- [2023.09.15-08.29.27:922][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1363 MiB)
- [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.
- [2023.09.15-08.29.27:922][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy.
- [2023.09.15-08.29.27:925][ 0]LogDerivedDataCache: Speed tests for C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache took 0.00 seconds
- [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'
- [2023.09.15-08.29.27:926][ 0]LogDerivedDataCache: Using Local data cache path C:/Users/Administrator/AppData/Local/UnrealEngine/Common/DerivedDataCache: Writable
- [2023.09.15-08.29.27:926][ 0]LogDerivedDataCache: Shared data cache path not found in *engine.ini, will not use an Shared cache.
- [2023.09.15-08.29.27:926][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy.
- [2023.09.15-08.29.27:926][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None
- [2023.09.15-08.29.27:926][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled
- [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/).
- [2023.09.15-08.29.27:926][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/Administrator/AppData/Local/Temp/UnrealShaderWorkingDir/00A047014E818C4704122AB4879BE8A3/'.
- [2023.09.15-08.29.27:926][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine.
- [2023.09.15-08.29.27:927][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 8 workers.
- [2023.09.15-08.29.28:500][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0
- [2023.09.15-08.29.28:678][ 0]LogShaderCompilers: Display: Compiling shader autogen file: E:/Work/ueProjects/Cooperate/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush
- [2023.09.15-08.29.28:678][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
- [2023.09.15-08.29.29:155][ 0]LogSlate: Using FreeType 2.10.0
- [2023.09.15-08.29.29:155][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
- [2023.09.15-08.29.29:186][ 0]LogAssetRegistry: FAssetRegistry took 0.0087 seconds to start up
- [2023.09.15-08.29.29:189][ 0]LogEditorDomain: Display: EditorDomain is Disabled
- [2023.09.15-08.29.29:326][ 0]LogTexture: Display: Texture Encode Speed: FinalIfAvailable (editor).
- [2023.09.15-08.29.29:584][ 0]LogInit: Selected Device Profile: [WindowsEditor]
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: Available device profiles:
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFD000][0000053D707A6000 52] GlobalDefaults,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFE400][0000053D6E0A0000 52] Windows,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFE600][0000053D6E0A5000 52] WindowsEditor,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFDA00][0000053D67D20000 52] WindowsServer,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFC600][0000053D7345C800 52] WindowsClient,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFEE00][0000053D6E430000 52] IOS,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFD600][0000053D6E0A7800 52] iPadAir2,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFF000][0000053D6E43C800 52] IPadPro,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFF200][0000053D70522800 52] iPadAir3,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFEC00][0000053D7A790000 52] iPadAir4,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFD800][0000053D7A795000 52] iPadAir5,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFDC00][0000053D7A797800 52] iPadMini4,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFDE00][0000053D7A79A000 52] iPadMini5,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D79CFA600][0000053D7A79C800 52] iPadMini6,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930C00][0000053D7A7A2800 52] iPhone6S,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930E00][0000053D7A7A0000 52] iPhone7,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930800][0000053D7A7A5000 52] iPodTouch7,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931800][0000053D7A7AA000 52] iPhone6SPlus,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930200][0000053D7A7AC800 52] iPhone7Plus,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931E00][0000053D73A0C800 52] iPhoneSE,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930400][0000053D7A7A7800 52] iPhone8,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930600][0000053D7A940000 52] iPhone8Plus,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932000][0000053D7A945000 52] iPhoneX,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931000][0000053D7A947800 52] iPhoneXS,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930A00][0000053D7A94A000 52] iPhoneXSMax,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931200][0000053D7A94C800 52] iPhoneXR,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932800][0000053D7A792800 52] iPhone11,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931600][0000053D7A920000 52] iPhone11Pro,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932A00][0000053D7A925000 52] iPhone11ProMax,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932E00][0000053D7A927800 52] iPhoneSE2,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933000][0000053D7A92A000 52] iPhone12Mini,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932200][0000053D7A92C800 52] iPhone12,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932400][0000053D7A942800 52] iPhone12Pro,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931C00][0000053D7A7B0000 52] iPhone12ProMax,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933800][0000053D7A7B5000 52] iPhone13Mini,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931A00][0000053D7A7B7800 52] iPhone13,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933A00][0000053D7A7BA000 52] iPhone13Pro,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933E00][0000053D7A7BC800 52] iPhone13ProMax,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934000][0000053D7A922800 52] iPhoneSE3,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933200][0000053D7A7C0000 52] iPhone14,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933400][0000053D7A7C5000 52] iPhone14Plus,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A930000][0000053D7A7C7800 52] iPhone14Pro,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934800][0000053D7A7CA000 52] iPhone14ProMax,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A931400][0000053D7A7CC800 52] iPadPro105,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934A00][0000053D7A7B2800 52] iPadPro129,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934E00][0000053D7A7D0000 52] iPadPro97,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935000][0000053D7A7D5000 52] iPadPro2_129,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934200][0000053D7A7D7800 52] iPad5,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934400][0000053D7A7DA000 52] iPad6,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932600][0000053D7A7DC800 52] iPad7,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935800][0000053D7A7C2800 52] iPad8,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A932C00][0000053D7A910000 52] iPad9,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935A00][0000053D7A915000 52] iPad10,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935E00][0000053D7A917800 52] iPadPro11,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936000][0000053D7A91A000 52] iPadPro2_11,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935200][0000053D7A91C800 52] iPadPro3_11,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935400][0000053D7A7D2800 52] iPadPro4_11,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933600][0000053D7A7E0000 52] iPadPro3_129,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936800][0000053D7A7E5000 52] iPadPro4_129,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A933C00][0000053D7A7E7800 52] iPadPro5_129,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936A00][0000053D7A7EA000 52] iPadPro6_129,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936E00][0000053D7A7EC800 52] AppleTV,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937000][0000053D7A912800 52] AppleTV4K,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936200][0000053D7A7F0000 52] AppleTV2_4K,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936400][0000053D7A7F5000 52] TVOS,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938800][0000053D7A7FA000 52] Mac,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938A00][0000053D7A7F7800 52] MacEditor,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937400][0000053D7A7FC800 52] MacClient,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938400][0000053D7A7E2800 52] MacServer,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937600][0000053D7A962800 52] Linux,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937200][0000053D7A960000 52] LinuxEditor,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938C00][0000053D7A967800 52] LinuxArm64Editor,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935C00][0000053D7A96A000 52] LinuxArm64,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937800][0000053D7A96C800 52] LinuxClient,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936C00][0000053D7A7F2800 52] LinuxArm64Client,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937C00][0000053D7A970000 52] LinuxServer,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934C00][0000053D7A975000 52] LinuxArm64Server,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A936600][0000053D7A977800 52] Android,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939000][0000053D7A97A000 52] Android_Preview_OpenGL,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938200][0000053D7A97C800 52] Android_Preview_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A934600][0000053D7A965000 52] Android_Low,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937E00][0000053D7A980000 52] Android_Mid,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939800][0000053D7A985000 52] Android_High,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A937A00][0000053D7A987800 52] Android_Default,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939A00][0000053D7A98A000 52] Android_Adreno4xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939E00][0000053D7A98C800 52] Android_Adreno5xx_Low,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A000][0000053D7A972800 52] Android_Adreno5xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939200][0000053D7A990000 52] Android_Adreno6xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939400][0000053D7A995000 52] Android_Adreno6xx_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A935600][0000053D7A997800 52] Android_Adreno7xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A800][0000053D7A99A000 52] Android_Adreno7xx_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938E00][0000053D7A99C800 52] Android_Mali_T6xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93AA00][0000053D7A982800 52] Android_Mali_T7xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93AE00][0000053D7A9A0000 52] Android_Mali_T8xx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B000][0000053D7A9A5000 52] Android_Mali_G71,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A200][0000053D7A9A7800 52] Android_Mali_G72,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93A400][0000053D7A9AA000 52] Android_Mali_G72_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938600][0000053D7A9AC800 52] Android_Mali_G76,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B800][0000053D7A992800 52] Android_Mali_G76_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A938000][0000053D7A9B0000 52] Android_Mali_G77,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93BA00][0000053D7A9B5000 52] Android_Mali_G77_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93BE00][0000053D7A9B7800 52] Android_Mali_G78,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93C000][0000053D7A9BA000 52] Android_Mali_G78_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B200][0000053D7A9BC800 52] Android_Mali_G710,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93B400][0000053D7A9A2800 52] Android_Mali_G710_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939600][0000053D7A9C0000 52] Android_Xclipse_920,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93C800][0000053D7A9C5000 52] Android_Xclipse_920_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A939C00][0000053D7A9C7800 52] Android_Vulkan_SM5,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93CA00][0000053D7A9CA000 52] Android_PowerVR_G6xxx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93CE00][0000053D7A9CC800 52] Android_PowerVR_GT7xxx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93D000][0000053D7A9B2800 52] Android_PowerVR_GE8xxx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93CC00][0000053D7A9D0000 52] Android_PowerVR_GM9xxx,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93DA00][0000053D7A9D5000 52] Android_PowerVR_GM9xxx_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93BC00][0000053D7A9D7800 52] Android_TegraK1,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93AC00][0000053D7A9DA000 52] Android_Unknown_Vulkan,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93C400][0000053D7A9DC800 52] Oculus_Quest,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93E000][0000053D7A9C2800 52] Oculus_Quest2,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: [0000053D7A93D400][0000053D7A9E0000 52] HoloLens,
- [2023.09.15-08.29.29:584][ 0]LogDeviceProfileManager: Active device profile: [0000053D79CFE600][0000053D6E0A5000 52] WindowsEditor
- [2023.09.15-08.29.29:584][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor"
- [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Compiling shader autogen file: E:/Work/ueProjects/Cooperate/Intermediate/ShaderAutogen/PCD3D_SM5/AutogenShaderHeaders.ush
- [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
- [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
- [2023.09.15-08.29.29:584][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write.
- [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.")
- [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")
- [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")
- [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")
- [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")
- [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'
- [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 ]
- [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
- [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;
- [2023.09.15-08.29.29:766][ 0]LogMeshReduction: Using QuadricMeshReduction for automatic static mesh reduction
- [2023.09.15-08.29.29:766][ 0]LogMeshReduction: Using SimplygonMeshReduction for automatic skeletal mesh reduction
- [2023.09.15-08.29.29:766][ 0]LogMeshReduction: Using ProxyLODMeshReduction for automatic mesh merging
- [2023.09.15-08.29.29:766][ 0]LogMeshReduction: No distributed automatic mesh merging module available
- [2023.09.15-08.29.29:766][ 0]LogMeshMerging: No distributed automatic mesh merging module available
- [2023.09.15-08.29.29:834][ 0]LogNetVersion: Cooperate 1.0.0, NetCL: 23058290, EngineNetVer: 30, GameNetVer: 0 (Checksum: 4162449832)
- [2023.09.15-08.29.30:037][ 0]LogUObjectArray: 20936 objects as part of root set at end of initial load.
- [2023.09.15-08.29.30:037][ 0]LogUObjectAllocator: 5786384 out of 0 bytes used by permanent object pool.
- [2023.09.15-08.29.30:037][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool
- [2023.09.15-08.29.30:053][ 0]LogSlate: Border
- [2023.09.15-08.29.30:053][ 0]LogSlate: BreadcrumbButton
- [2023.09.15-08.29.30:053][ 0]LogSlate: Brushes.Title
- [2023.09.15-08.29.30:053][ 0]LogSlate: Default
- [2023.09.15-08.29.30:053][ 0]LogSlate: Icons.Save
- [2023.09.15-08.29.30:053][ 0]LogSlate: Icons.Toolbar.Settings
- [2023.09.15-08.29.30:053][ 0]LogSlate: ListView
- [2023.09.15-08.29.30:053][ 0]LogSlate: SoftwareCursor_CardinalCross
- [2023.09.15-08.29.30:053][ 0]LogSlate: SoftwareCursor_Grab
- [2023.09.15-08.29.30:053][ 0]LogSlate: TableView.DarkRow
- [2023.09.15-08.29.30:053][ 0]LogSlate: TableView.Row
- [2023.09.15-08.29.30:053][ 0]LogSlate: TreeView
- [2023.09.15-08.29.30:225][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 531FBCEA45670CC07A291CA4AB549ACA | Instance: 2A57A6E94AE2B6EDF94A2BA53B716AEE (BF-202302201105-12984).
- [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.
- [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'
- [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'
- [2023.09.15-08.29.30:285][ 0]LogTcpMessaging: Initializing TcpMessaging bridge
- [2023.09.15-08.29.30:302][ 0]LogTurnkeySupport: Completed device detection: Code = 0
- [2023.09.15-08.29.30:392][ 0]LogPython: Using Python 3.9.7
- [2023.09.15-08.29.31:221][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
- [2023.09.15-08.29.31:239][ 0]LogMetasoundEngine: MetaSound Engine Initialized
- [2023.09.15-08.29.31:354][ 0]SourceControl: 源码管理已禁用
- [2023.09.15-08.29.31:356][ 0]SourceControl: 源码管理已禁用
- [2023.09.15-08.29.31:365][ 0]LogUProjectInfo: Found projects:
- [2023.09.15-08.29.31:371][ 0]SourceControl: 源码管理已禁用
- [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/'
- [2023.09.15-08.29.31:715][ 0]LogOpenImageDenoise: OIDN starting up
- [2023.09.15-08.29.31:917][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
- [2023.09.15-08.29.31:931][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
- [2023.09.15-08.29.31:931][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
- [2023.09.15-08.29.31:966][ 0]LogCollectionManager: Loaded 0 collections in 0.000607 seconds
- [2023.09.15-08.29.31:967][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Saved/Collections/' took 0.00s
- [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
- [2023.09.15-08.29.31:970][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Content/Collections/' took 0.00s
- [2023.09.15-08.29.32:278][ 0]LogEngine: Initializing Engine...
- [2023.09.15-08.29.32:286][ 0]LogStylusInput: Initializing StylusInput subsystem.
- [2023.09.15-08.29.32:287][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s
- [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.
- [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.
- [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.
- [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.
- [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.
- [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.
- [2023.09.15-08.29.32:366][ 0]LogInit: Initializing FReadOnlyCVARCache
- [2023.09.15-08.29.32:380][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.29.32:395][ 0]LogAIModule: Creating AISystem for world Untitled
- [2023.09.15-08.29.32:396][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
- [2023.09.15-08.29.32:396][ 0]LogInit: Texture streaming: Enabled
- [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
- [2023.09.15-08.29.32:421][ 0]LogAudio: Display: Initializing Audio Device Manager...
- [2023.09.15-08.29.32:432][ 0]LogAudio: Display: Loading Default Audio Settings Objects...
- [2023.09.15-08.29.32:432][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
- [2023.09.15-08.29.32:434][ 0]LogAudio: Display: AudioInfo: 'BINKA' Registered
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'PCM' Registered
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'OGG' Registered
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioInfo: 'OPUS' Registered
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: Audio Device Manager Initialized
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings:
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Sample Rate: 48000
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Number of buffers to queue: 1
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Max Channels (voices): 0
- [2023.09.15-08.29.32:435][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4
- [2023.09.15-08.29.32:435][ 0]LogAudio: Display: AudioDevice MaxSources: 32
- [2023.09.15-08.29.32:436][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
- [2023.09.15-08.29.32:436][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
- [2023.09.15-08.29.32:436][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
- [2023.09.15-08.29.32:440][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
- [2023.09.15-08.29.32:485][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (2- USB PnP Sound Device)
- [2023.09.15-08.29.32:485][ 0]LogAudioMixer: Display: Initializing Sound Submixes...
- [2023.09.15-08.29.32:486][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
- [2023.09.15-08.29.32:486][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
- [2023.09.15-08.29.32:487][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
- [2023.09.15-08.29.32:487][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
- [2023.09.15-08.29.32:488][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
- [2023.09.15-08.29.32:488][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
- [2023.09.15-08.29.32:488][ 0]LogInit: FAudioDevice initialized.
- [2023.09.15-08.29.32:488][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
- [2023.09.15-08.29.32:499][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
- [2023.09.15-08.29.32:504][ 0]LogLiveCoding: Display: Starting LiveCoding
- [2023.09.15-08.29.32:504][ 0]LogLiveCoding: Display: LiveCodingConsole Arguments: UnrealEditor Win64 Development
- [2023.09.15-08.29.32:505][ 0]LogLiveCoding: Display: First instance in process group "UE_Cooperate_0x08156d6b", spawning console
- [2023.09.15-08.29.32:508][ 0]LogLiveCoding: Display: Waiting for server
- [2023.09.15-08.29.33:041][ 0]LogLiveCoding: Display: Successfully initialized, removing startup thread
- [2023.09.15-08.29.33:058][ 0]LogInit: Transaction tracking system initialized
- [2023.09.15-08.29.33:080][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded E:/Work/ueProjects/Cooperate/Saved/SourceControl/UncontrolledChangelists.json
- [2023.09.15-08.29.33:080][ 0]LogSourceControl: Uncontrolled asset enumeration started...
- [2023.09.15-08.29.33:082][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.002318 seconds (Found 129 uncontrolled assets)
- [2023.09.15-08.29.33:114][ 0]BlueprintLog: New page: 编辑器加载
- [2023.09.15-08.29.33:214][ 0]LocalizationService: 本地化服务已禁用
- [2023.09.15-08.29.33:237][ 0]TimingProfiler: Initialize
- [2023.09.15-08.29.33:237][ 0]TimingProfiler: OnSessionChanged
- [2023.09.15-08.29.33:237][ 0]LoadingProfiler: Initialize
- [2023.09.15-08.29.33:237][ 0]LoadingProfiler: OnSessionChanged
- [2023.09.15-08.29.33:237][ 0]NetworkingProfiler: Initialize
- [2023.09.15-08.29.33:237][ 0]NetworkingProfiler: OnSessionChanged
- [2023.09.15-08.29.33:237][ 0]MemoryProfiler: Initialize
- [2023.09.15-08.29.33:237][ 0]MemoryProfiler: OnSessionChanged
- [2023.09.15-08.29.33:413][ 0]LogFileCache: Scanning file cache for directory 'E:/Work/ueProjects/Cooperate/Content/' took 0.00s
- [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.
- To clear this message, resave packages that use the deleted class, or load its module earlier than the packages that use it are referenced.
- [2023.09.15-08.29.33:510][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized.
- [2023.09.15-08.29.33:729][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
- [2023.09.15-08.29.33:730][ 0]SourceControl: 源码管理已禁用
- [2023.09.15-08.29.33:730][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 7.162
- [2023.09.15-08.29.33:730][ 0]Cmd: MAP LOAD FILE="../../../Engine/Content/Maps/Templates/OpenWorld.umap" TEMPLATE=1 SHOWPROGRESS=1 FEATURELEVEL=4
- [2023.09.15-08.29.33:731][ 0]LightingResults: New page: 光照构建
- [2023.09.15-08.29.33:733][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.29.33:733][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.29.33:734][ 0]MapCheck: New page: 地图检测
- [2023.09.15-08.29.33:734][ 0]LightingResults: New page: 光照构建
- [2023.09.15-08.29.33:740][ 0]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.29.33:743][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.29.33:747][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled_1'.
- [2023.09.15-08.29.33:747][ 0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.29.33:747][ 0]LogAIModule: Creating AISystem for world Untitled_1
- [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)
- [2023.09.15-08.29.33:747][ 0]LogWorldPartition: Display: WorldPartition initialize started...
- [2023.09.15-08.29.33:747][ 0]LogWorldPartition: UWorldPartition::Initialize(Asset=Untitled_1, IsEditor=1, bPIEWorldTravel=0 IsGame=0, IsCooking=0)
- [2023.09.15-08.29.34:037][ 0]LogContentBundle: [Container: Untitled_1] Creating new contrainer.
- [2023.09.15-08.29.34:038][ 0]LogWorldPartition: Display: WorldPartition initialize took 290 ms
- [2023.09.15-08.29.34:428][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.29.34:531][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.29.34:531][ 0]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.29.34:542][ 0]MapCheck: 地图检测完成:0个错误、0个警告、完成用时10.962毫秒。
- [2023.09.15-08.29.34:542][ 0]LogFileHelpers: Loading map 'OpenWorld' took 0.812
- [2023.09.15-08.29.34:549][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 7.982
- [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: ================================================
- [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: === FShaderJobCache stats ===
- [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: Total job queries 0, among them cache hits 0 (0.00%)
- [2023.09.15-08.29.34:549][ 0]LogShaderCompilers: Display: Tracking 0 distinct input hashes that result in 0 distinct outputs (0.00%)
- [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%
- [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: === Shader Compilation stats ===
- [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: Shaders Compiled: 0
- [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: Jobs assigned 0, completed 0 (0.00%)
- [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
- [2023.09.15-08.29.34:550][ 0]LogShaderCompilers: Display: ================================================
- [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.
- [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.
- [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.
- [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.
- [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.
- [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.
- [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.
- [2023.09.15-08.29.34:742][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
- [2023.09.15-08.29.34:747][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
- [2023.09.15-08.29.34:751][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
- [2023.09.15-08.29.34:755][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
- [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.
- [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.
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [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:/'
- [2023.09.15-08.29.34:868][ 0]LogTurnkeySupport: Turnkey Device: Win64@BF-202302201105: (Name=BF-202302201105, Type=Computer, Status=Valid, , Flags="Device_InstallSoftwareValid")
- [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)
- [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)
- [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)
- [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)
- [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)
- [2023.09.15-08.29.34:929][ 0]LogViewport: Scene viewport resized to 1136x902, mode Windowed.
- [2023.09.15-08.29.35:366][ 0]LogStall: Startup...
- [2023.09.15-08.29.35:367][ 0]LogStall: Startup complete.
- [2023.09.15-08.29.35:394][ 0]LogLoad: (Engine Initialization) Total time: 8.83 seconds
- [2023.09.15-08.29.35:394][ 0]LogLoad: (Engine Initialization) Total Blueprint compile time: 0.00 seconds
- [2023.09.15-08.29.35:454][ 0]LogAssetRegistry: Asset discovery search completed in 6.2693 seconds
- [2023.09.15-08.29.35:485][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000004 seconds (updated 0 objects)
- [2023.09.15-08.29.35:485][ 0]LogContentStreaming: Texture pool size now 1000 MB
- [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)
- [2023.09.15-08.29.40:557][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.29.40:650][504]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/tiyuguan.tiyuguan
- [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
- [2023.09.15-08.29.40:650][504]LightingResults: New page: 光照构建
- [2023.09.15-08.29.40:650][504]LoadErrors: New page: 正在加载地图:tiyuguan.umap
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [2023.09.15-08.29.40:732][504]LogWorld: UWorld::CleanupWorld for Untitled_1, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.29.40:732][504]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.29.40:739][504]LogContentBundle: [Container: Untitled_1] Deleting container.
- [2023.09.15-08.29.40:739][504]MapCheck: New page: 地图检测
- [2023.09.15-08.29.40:739][504]LightingResults: New page: 光照构建
- [2023.09.15-08.29.40:750][504]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.29.40:763][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.54ms
- [2023.09.15-08.29.40:796][504]LogTexture: Display: 正在等待纹理就绪4/18(/Game/HHXY_TYG_JZ/Textures/HHXp020_2_2_Tex)……
- [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
- [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
- [2023.09.15-08.29.40:859][504]LogStaticMesh: Display: 正在构建静态网格体Tube005……
- [2023.09.15-08.29.40:863][504]LogTexture: Display: 正在等待纹理就绪12/18(/Game/HHXY_TYG_JZ/Textures/ppp4_2_2_Tex)……
- [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
- [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
- [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
- [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
- [2023.09.15-08.29.41:279][504]LogStaticMesh: Display: 正在等待静态网格体就绪0/1(/Game/HHXY_TYG_JZ/Geometries/Tube005)……
- [2023.09.15-08.29.42:605][504]LogStaticMesh: Built static mesh [1.77s] /Game/HHXY_TYG_JZ/Geometries/Tube005.Tube005
- [2023.09.15-08.29.42:655][504]LogStall: Stall detector 'UAssetEditorSubsystem::OpenEditorForAsset' exceeded budget of 2.000000s, reporting...
- [2023.09.15-08.29.43:400][504]LogStall: Stall detector 'UAssetEditorSubsystem::OpenEditorForAsset' report submitted, and took 0.049944s
- [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
- [2023.09.15-08.29.47:295][504]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.29.47:295][504]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.29.47:304][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
- [2023.09.15-08.29.47:311][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
- [2023.09.15-08.29.47:313][504]LogAudio: Display: Audio Device (ID: 1) registered with world 'tiyuguan'.
- [2023.09.15-08.29.47:313][504]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.29.47:313][504]LogAIModule: Creating AISystem for world tiyuguan
- [2023.09.15-08.29.47:351][504]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.29.47:361][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.29.47:364][504]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.29.47:364][504]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.057毫秒。
- [2023.09.15-08.29.47:364][504]LogFileHelpers: Loading map 'tiyuguan' took 6.714
- [2023.09.15-08.29.47:366][504]LogStall: Stall detector 'UAssetEditorSubsystem::OpenEditorForAsset' complete in 0.005311s (4.016059s overbudget)
- [2023.09.15-08.29.52:993][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.20ms
- [2023.09.15-08.29.53:060][106]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Map.Map
- [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
- [2023.09.15-08.29.53:060][106]LightingResults: New page: 光照构建
- [2023.09.15-08.29.53:060][106]LoadErrors: New page: 正在加载地图:Map.umap
- [2023.09.15-08.29.53:100][106]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.29.53:100][106]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.29.53:100][106]MapCheck: New page: 地图检测
- [2023.09.15-08.29.53:100][106]LightingResults: New page: 光照构建
- [2023.09.15-08.29.53:106][106]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.29.53:107][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.44ms
- [2023.09.15-08.29.53:109][106]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.29.53:109][106]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.29.53:116][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.58ms
- [2023.09.15-08.29.53:123][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms
- [2023.09.15-08.29.53:125][106]LogAudio: Display: Audio Device (ID: 1) registered with world 'Map'.
- [2023.09.15-08.29.53:125][106]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.29.53:125][106]LogAIModule: Creating AISystem for world Map
- [2023.09.15-08.29.53:140][106]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.29.53:148][106]LogUObjectHash: Compacting FUObjectHashTables data took 0.45ms
- [2023.09.15-08.29.53:151][106]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.29.53:151][106]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.05毫秒。
- [2023.09.15-08.29.53:151][106]LogFileHelpers: Loading map 'Map' took 0.091
- [2023.09.15-08.30.22:478][355]LogSlate: Window '关卡' being destroyed
- [2023.09.15-08.30.22:483][355]LogSlate: Window '关卡' being destroyed
- [2023.09.15-08.30.35:886][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.30.39:303][837]LogSlate: Window '保存内容' being destroyed
- [2023.09.15-08.30.39:311][837]LogFileHelpers: InternalPromptForCheckoutAndSave started...
- [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
- [2023.09.15-08.30.39:365][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.20ms
- [2023.09.15-08.30.39:371][837]LogPackageLocalizationCache: Processed 45 localized package path(s) for 2 prioritized culture(s) in 0.005435 seconds
- [2023.09.15-08.30.39:372][837]LogSerialization: UsePackageTrailer: 'true'
- [2023.09.15-08.30.39:373][837]LogSavePackage: Moving output files for package: /Game/Maps/Map
- [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'
- [2023.09.15-08.30.39:377][837]LogFileHelpers: Saving map 'Map' took 0.018
- [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
- [2023.09.15-08.30.39:384][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.26ms
- [2023.09.15-08.30.39:386][837]LogSavePackage: Moving output files for package: /Game/Maps/tiyuguan
- [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'
- [2023.09.15-08.30.39:387][837]LogFileHelpers: Saving map 'tiyuguan' took 0.010
- [2023.09.15-08.30.39:394][837]LogFileHelpers: InternalPromptForCheckoutAndSave took 82 ms
- [2023.09.15-08.30.39:394][837]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/tiyuguan.tiyuguan
- [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
- [2023.09.15-08.30.39:394][837]LightingResults: New page: 光照构建
- [2023.09.15-08.30.39:394][837]LoadErrors: New page: 正在加载地图:tiyuguan.umap
- [2023.09.15-08.30.39:397][837]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.30.39:397][837]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.30.39:397][837]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.30.39:397][837]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.30.39:397][837]MapCheck: New page: 地图检测
- [2023.09.15-08.30.39:397][837]LightingResults: New page: 光照构建
- [2023.09.15-08.30.39:404][837]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.30.39:404][837]LogWorld: Warning: UWorld::FinishDestroy called after InitWorld without calling CleanupWorld first.
- [2023.09.15-08.30.39:405][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms
- [2023.09.15-08.30.39:407][837]LogAudio: Display: Audio Device (ID: 1) registered with world 'tiyuguan'.
- [2023.09.15-08.30.39:407][837]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.30.39:407][837]LogAIModule: Creating AISystem for world tiyuguan
- [2023.09.15-08.30.39:421][837]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.30.39:430][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.30.39:433][837]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.30.39:433][837]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.056毫秒。
- [2023.09.15-08.30.39:433][837]LogFileHelpers: Loading map 'tiyuguan' took 0.039
- [2023.09.15-08.30.39:437][837]AssetCheck: New page: 资产保存:多个资产
- [2023.09.15-08.30.39:437][837]LogContentValidation: Display: 正在验证/Script/Engine.World /Game/Maps/tiyuguan.tiyuguan
- [2023.09.15-08.30.39:446][837]LogUObjectHash: Compacting FUObjectHashTables data took 0.23ms
- [2023.09.15-08.30.46:151][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.35ms
- [2023.09.15-08.30.46:208][611]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Map.Map
- [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
- [2023.09.15-08.30.46:208][611]LightingResults: New page: 光照构建
- [2023.09.15-08.30.46:208][611]LoadErrors: New page: 正在加载地图:Map.umap
- [2023.09.15-08.30.46:209][611]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.30.46:209][611]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.30.46:210][611]MapCheck: New page: 地图检测
- [2023.09.15-08.30.46:210][611]LightingResults: New page: 光照构建
- [2023.09.15-08.30.46:216][611]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.30.46:217][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
- [2023.09.15-08.30.46:218][611]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.30.46:218][611]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.30.46:225][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.30.46:233][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.50ms
- [2023.09.15-08.30.46:234][611]LogAudio: Display: Audio Device (ID: 1) registered with world 'Map'.
- [2023.09.15-08.30.46:234][611]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.30.46:235][611]LogAIModule: Creating AISystem for world Map
- [2023.09.15-08.30.46:260][611]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/tiyuguan) is flushing async loading
- [2023.09.15-08.30.46:262][611]LogStreaming: Display: FlushAsyncLoading(-1): 1 QueuedPackages, 0 AsyncPackages
- [2023.09.15-08.30.46:308][611]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.30.46:317][611]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms
- [2023.09.15-08.30.46:320][611]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.30.46:320][611]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.079毫秒。
- [2023.09.15-08.30.46:320][611]LogFileHelpers: Loading map 'Map' took 0.112
- [2023.09.15-08.30.51:092][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.21ms
- [2023.09.15-08.30.51:093][174]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/tiyuguan.tiyuguan
- [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
- [2023.09.15-08.30.51:093][174]LightingResults: New page: 光照构建
- [2023.09.15-08.30.51:093][174]LoadErrors: New page: 正在加载地图:tiyuguan.umap
- [2023.09.15-08.30.51:131][174]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.30.51:131][174]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.30.51:131][174]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.30.51:131][174]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.30.51:131][174]MapCheck: New page: 地图检测
- [2023.09.15-08.30.51:131][174]LightingResults: New page: 光照构建
- [2023.09.15-08.30.51:138][174]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.30.51:139][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
- [2023.09.15-08.30.51:139][174]LogAudio: Display: Audio Device (ID: 1) registered with world 'tiyuguan'.
- [2023.09.15-08.30.51:139][174]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.30.51:140][174]LogAIModule: Creating AISystem for world tiyuguan
- [2023.09.15-08.30.51:155][174]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.30.51:163][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms
- [2023.09.15-08.30.51:166][174]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.30.51:166][174]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.052毫秒。
- [2023.09.15-08.30.51:166][174]LogFileHelpers: Loading map 'tiyuguan' took 0.073
- [2023.09.15-08.30.51:177][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.20ms
- [2023.09.15-08.31.01:622][408]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
- [2023.09.15-08.31.01:623][408]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
- [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
- [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
- [2023.09.15-08.31.02:045][441]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
- [2023.09.15-08.31.02:045][441]LogActorFactory: Actor Factory attempting to spawn Class /Script/Engine.DirectionalLight
- [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
- [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
- [2023.09.15-08.31.05:794][883]LogFileHelpers: InternalPromptForCheckoutAndSave started...
- [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
- [2023.09.15-08.31.05:866][883]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms
- [2023.09.15-08.31.05:869][883]LogSavePackage: Moving output files for package: /Game/Maps/tiyuguan
- [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'
- [2023.09.15-08.31.05:872][883]LogFileHelpers: Saving map 'tiyuguan' took 0.014
- [2023.09.15-08.31.05:879][883]LogFileHelpers: InternalPromptForCheckoutAndSave took 84 ms (total: 167 ms)
- [2023.09.15-08.31.05:881][883]AssetCheck: New page: 资产保存:tiyuguan
- [2023.09.15-08.31.05:881][883]LogContentValidation: Display: 正在验证/Script/Engine.World /Game/Maps/tiyuguan.tiyuguan
- [2023.09.15-08.31.08:252][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.23ms
- [2023.09.15-08.31.08:309][159]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Map.Map
- [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
- [2023.09.15-08.31.08:309][159]LightingResults: New page: 光照构建
- [2023.09.15-08.31.08:309][159]LoadErrors: New page: 正在加载地图:Map.umap
- [2023.09.15-08.31.08:339][159]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.31.08:339][159]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.31.08:340][159]MapCheck: New page: 地图检测
- [2023.09.15-08.31.08:340][159]LightingResults: New page: 光照构建
- [2023.09.15-08.31.08:346][159]LogAudio: Display: Audio Device unregistered from world 'None'.
- [2023.09.15-08.31.08:347][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms
- [2023.09.15-08.31.08:348][159]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.31.08:348][159]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.31.08:356][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms
- [2023.09.15-08.31.08:363][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms
- [2023.09.15-08.31.08:364][159]LogAudio: Display: Audio Device (ID: 1) registered with world 'Map'.
- [2023.09.15-08.31.08:364][159]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.31.08:365][159]LogAIModule: Creating AISystem for world Map
- [2023.09.15-08.31.08:365][159]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/tiyuguan) is flushing async loading
- [2023.09.15-08.31.08:365][159]LogStreaming: Display: FlushAsyncLoading(-1): 1 QueuedPackages, 0 AsyncPackages
- [2023.09.15-08.31.08:389][159]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
- [2023.09.15-08.31.08:398][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms
- [2023.09.15-08.31.08:400][159]Cmd: MAP CHECKDEP NOCLEARLOG
- [2023.09.15-08.31.08:400][159]MapCheck: 地图检测完成:0个错误、0个警告、完成用时0.075毫秒。
- [2023.09.15-08.31.08:400][159]LogFileHelpers: Loading map 'Map' took 0.092
- [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)
- [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.
- [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.
- [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.
- [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.
- [2023.09.15-08.31.33:444][737]LogSlate: Window '选取父类' being destroyed
- [2023.09.15-08.31.33:454][737]LogContentBrowser: Deferred new asset file creation: NewBlueprint
- [2023.09.15-08.31.33:458][737]LogContentBrowser: Creating deferred item: NewBlueprint
- [2023.09.15-08.31.33:467][738]LogContentBrowser: Renaming the item being created (Deferred Item: NewBlueprint).
- [2023.09.15-08.31.34:422][833]LogContentBrowser: Attempting asset rename: NewBlueprint -> NewBlueprint
- [2023.09.15-08.31.34:455][833]LogContentBrowser: End creating deferred item NewBlueprint
- [2023.09.15-08.31.35:141][903]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
- [2023.09.15-08.31.35:141][903]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
- [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
- [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
- [2023.09.15-08.31.35:145][903]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance
- [2023.09.15-08.31.35:725][971]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
- [2023.09.15-08.31.35:725][971]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/NewBlueprint.NewBlueprint_C
- [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
- [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
- [2023.09.15-08.31.43:593][899]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/NewBlueprint.NewBlueprint
- [2023.09.15-08.31.43:593][899]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
- [2023.09.15-08.31.45:494][899]LogViewport: Scene viewport resized to 1277x683, mode Windowed.
- [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)
- [2023.09.15-08.32.03:620][750]BlueprintLog: New page: 编译NewBlueprint
- [2023.09.15-08.32.03:697][750]LogUObjectHash: Compacting FUObjectHashTables data took 0.97ms
- [2023.09.15-08.32.04:212][803]LogFileHelpers: InternalPromptForCheckoutAndSave started...
- [2023.09.15-08.32.04:275][803]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/NewBlueprint" FILE="E:/Work/ueProjects/Cooperate/Content/NewBlueprint.uasset" SILENT=true
- [2023.09.15-08.32.04:291][803]LogSavePackage: Moving output files for package: /Game/NewBlueprint
- [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'
- [2023.09.15-08.32.04:298][803]LogFileHelpers: InternalPromptForCheckoutAndSave took 85 ms (total: 253 ms)
- [2023.09.15-08.32.04:303][803]AssetCheck: New page: 资产保存:NewBlueprint
- [2023.09.15-08.32.04:303][803]LogContentValidation: Display: 正在验证/Script/Engine.Blueprint /Game/NewBlueprint.NewBlueprint
- [2023.09.15-08.32.08:351][270]LogSlate: Window 'NewBlueprint' being destroyed
- [2023.09.15-08.32.08:358][270]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.32.08:358][270]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.32.17:649][375]LogEditorViewport: Clicking Background
- [2023.09.15-08.32.18:068][423]LogFileHelpers: InternalPromptForCheckoutAndSave started...
- [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
- [2023.09.15-08.32.18:149][423]LogUObjectHash: Compacting FUObjectHashTables data took 0.98ms
- [2023.09.15-08.32.18:153][423]LogSavePackage: Moving output files for package: /Game/Maps/Map
- [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'
- [2023.09.15-08.32.18:156][423]LogFileHelpers: Saving map 'Map' took 0.032
- [2023.09.15-08.32.18:162][423]LogFileHelpers: InternalPromptForCheckoutAndSave took 93 ms (total: 347 ms)
- [2023.09.15-08.32.18:167][423]AssetCheck: New page: 资产保存:Map
- [2023.09.15-08.32.18:167][423]LogContentValidation: Display: 正在验证/Script/Engine.World /Game/Maps/Map.Map
- [2023.09.15-08.32.18:935][515]LogEditorViewport: Clicking Background
- [2023.09.15-08.46.29:412][522]LogUObjectHash: Compacting FUObjectHashTables data took 1.09ms
- [2023.09.15-08.46.29:413][522]LogStall: Shutdown...
- [2023.09.15-08.46.29:418][522]LogStall: Shutdown complete.
- [2023.09.15-08.46.29:436][522]LogSlate: Window 'Cooperate - 虚幻编辑器' being destroyed
- [2023.09.15-08.46.29:469][523]Cmd: QUIT_EDITOR
- [2023.09.15-08.46.29:469][523]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor())
- [2023.09.15-08.46.29:471][523]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
- [2023.09.15-08.46.29:471][523]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown
- [2023.09.15-08.46.29:471][523]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown
- [2023.09.15-08.46.29:471][523]LogWorld: UWorld::CleanupWorld for Map, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.46.29:471][523]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.46.29:471][523]LogWorld: UWorld::CleanupWorld for tiyuguan, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.46.29:471][523]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated
- [2023.09.15-08.46.29:471][523]LogStylusInput: Shutting down StylusInput subsystem.
- [2023.09.15-08.46.29:471][523]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized.
- [2023.09.15-08.46.29:548][523]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
- [2023.09.15-08.46.29:548][523]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
- [2023.09.15-08.46.29:549][523]LogAudio: Display: Audio Device unregistered from world 'Map'.
- [2023.09.15-08.46.29:549][523]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
- [2023.09.15-08.46.29:550][523]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
- [2023.09.15-08.46.29:571][523]LogAudio: Display: Audio Device Manager Shutdown
- [2023.09.15-08.46.29:573][523]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0
- [2023.09.15-08.46.29:573][523]LogExit: Preparing to exit.
- [2023.09.15-08.46.29:599][523]LogUObjectHash: Compacting FUObjectHashTables data took 1.00ms
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [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!
- [2023.09.15-08.46.30:040][523]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.46.30:042][523]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true
- [2023.09.15-08.46.30:091][523]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
- [2023.09.15-08.46.30:097][523]LogExit: Editor shut down
- [2023.09.15-08.46.30:098][523]LogExit: Transaction tracking system shut down
- [2023.09.15-08.46.30:193][523]LogExit: Object subsystem successfully closed.
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: ================================================
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: === FShaderJobCache stats ===
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Total job queries 100, among them cache hits 2 (2.00%)
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Tracking 98 distinct input hashes that result in 82 distinct outputs (83.67%)
- [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%
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: === Shader Compilation stats ===
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Shaders Compiled: 25
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Jobs assigned 25, completed 25 (100.00%)
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Average time worker was idle: 16.50 s
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Time job spent in pending queue: average 0.34 s, longest 1.00 s
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Job execution time: average 0.75 s, max 0.95 s
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Job life time (pending + execution): average 1.09 s, max 1.82
- [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
- [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
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Average processing rate: 6.66 jobs/sec
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Total thread time: 13.99 s
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Total thread preprocess time: 0.81 s
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Percentage time preprocessing: 5.77%
- [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
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Top 5 most expensive shader types by average time:
- [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)
- [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)
- [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)
- [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)
- [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)
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: Top 5 shader types by total compile time:
- [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)
- [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)
- [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)
- [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)
- [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)
- [2023.09.15-08.46.30:198][523]LogShaderCompilers: Display: ================================================
- [2023.09.15-08.46.30:234][523]LogShaderCompilers: Display: Shaders left to compile 0
- [2023.09.15-08.46.30:241][523]LogVirtualization: UE::Virtualization was shutdown
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module BlueprintGraph (1021)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module HierarchicalLODOutliner (1017)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module UnsavedAssetsTracker (1015)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AddContentDialog (1013)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WidgetCarousel (1012)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SubobjectEditor (1009)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SceneOutliner (1007)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module StatusBar (1005)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module GameProjectGeneration (1003)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module StatsViewer (1001)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SequenceRecorderSections (999)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AutomationWorker (997)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WaveTableEditor (995)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module ResonanceAudioEditor (993)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module GooglePADEditor (991)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AudioCaptureEditor (989)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AndroidFileServerEditor (987)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (985)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WmfMediaEditor (983)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (981)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WebMMediaEditor (979)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module WebMMedia (977)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module MediaPlayerEditor (975)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (973)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (971)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module ImgMediaEditor (969)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module MediaCompositingEditor (967)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SequenceRecorder (966)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (963)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AvfMediaEditor (961)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AndroidMediaFactory (959)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module AndroidMediaEditor (957)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module TextureAlignMode (955)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module BspMode (953)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module GeometryMode (951)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module SmartSnapping (949)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module PlanarCut (947)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module CharacterAI (945)
- [2023.09.15-08.46.30:272][523]LogModuleManager: Shutting down and abandoning module DatasmithFBXTranslator (943)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module DatasmithDeltaGenTranslator (941)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module DatasmithVREDTranslator (939)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module TemplateSequenceEditor (937)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module LevelSequenceEditor (935)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ActorSequenceEditor (933)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module CameraShakePreviewer (931)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module IKRigEditor (929)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ControlRigEditor (927)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module SessionServices (925)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module MeshPaint (923)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module VirtualTexturingEditor (921)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module PlacementMode (920)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module FoliageEdit (917)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module LandscapeEditor (915)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module SceneDepthPickerMode (913)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ActorPickerMode (911)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ViewportSnapping (909)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ViewportInteraction (907)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module ClothPainter (905)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module SkeletalMeshEditor (904)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module LogVisualizer (901)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module IOSPlatformEditor (899)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module AndroidPlatformEditor (897)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module PIEPreviewDeviceProfileSelector (896)
- [2023.09.15-08.46.30:282][523]LogModuleManager: Shutting down and abandoning module AndroidDeviceDetection (894)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module WindowsPlatformEditor (891)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module HoloLensPlatformEditor (889)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module IOSRuntimeSettings (887)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AndroidRuntimeSettings (885)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AnimationSettings (883)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module VirtualizationEditor (881)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module CSVtoSVG (879)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DerivedDataEditor (877)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorConfig (875)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module WorldPartitionEditor (873)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorFramework (871)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module StaticMeshEditor (869)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module TraceInsights (867)
- [2023.09.15-08.46.31:091][523]MemoryProfiler: Shutdown
- [2023.09.15-08.46.31:091][523]NetworkingProfiler: Shutdown
- [2023.09.15-08.46.31:091][523]LoadingProfiler: Shutdown
- [2023.09.15-08.46.31:091][523]TimingProfiler: Shutdown
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module TraceServices (866)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorInteractiveToolsFramework (863)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module InteractiveToolsFramework (862)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module InputBindingEditor (859)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module MergeActors (857)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module LocalizationDashboard (855)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module LocalizationService (854)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module HardwareTargeting (851)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DeviceProfileEditor (849)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module UndoHistory (847)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module XmlParser (845)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module Blutility (843)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProjectSettingsViewer (841)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProjectTargetPlatformEditor (840)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module EditorSettingsViewer (837)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module InternationalizationSettings (836)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module SettingsEditor (833)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProjectLauncher (831)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module SessionFrontend (829)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ProfilerClient (827)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DeviceManager (825)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AutomationController (823)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module AutomationWindow (821)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module Layers (819)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module ComponentVisualizers (817)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module DetailCustomizations (815)
- [2023.09.15-08.46.31:091][523]LogModuleManager: Shutting down and abandoning module PackagesDialog (813)
- [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module AnimationBlueprintEditor (811)
- [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module Persona (809)
- [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module AdvancedPreviewScene (808)
- [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module AnimGraph (806)
- [2023.09.15-08.46.31:092][523]LogModuleManager: Shutting down and abandoning module Kismet (803)
- [2023.09.15-08.46.31:096][523]LogModuleManager: Shutting down and abandoning module KismetWidgets (802)
- [2023.09.15-08.46.31:096][523]LogModuleManager: Shutting down and abandoning module GraphEditor (799)
- [2023.09.15-08.46.31:097][523]LogModuleManager: Shutting down and abandoning module StructViewer (797)
- [2023.09.15-08.46.31:097][523]LogModuleManager: Shutting down and abandoning module ClassViewer (795)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module NaniteTools (793)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module UncontrolledChangelists (791)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module SourceControlWindowExtender (789)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module SourceControlWindows (787)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module OutputLog (785)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module Documentation (783)
- [2023.09.15-08.46.31:098][523]LogModuleManager: Shutting down and abandoning module LiveCoding (781)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (779)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module MovieScene (777)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (775)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (773)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (771)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AudioMixer (770)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AudioMixerCore (769)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module LauncherPlatform (765)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AnalyticsET (763)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module PortalServices (761)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module PortalRpc (759)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module MessagingRpc (757)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AIModule (755)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module GameplayDebugger (754)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module AITestSuite (752)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module NavigationSystem (750)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module DataLayerEditor (747)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module EditorWidgets (746)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module LevelInstanceEditor (743)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (741)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module TypedElementFramework (739)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (737)
- [2023.09.15-08.46.31:108][523]LogModuleManager: Shutting down and abandoning module ProfilerService (735)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TaskGraph (733)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaEditor (731)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TakeRecorderSources (729)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TakeTrackRecorders (727)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module TakesCore (725)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module MegascansPlugin (723)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module Bridge (721)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module LightMixer (719)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ObjectMixerEditor (717)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ContentBrowserFileDataSource (715)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ContentBrowserClassDataSource (713)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module ContentBrowserAssetDataSource (711)
- [2023.09.15-08.46.31:202][523]LogModuleManager: Shutting down and abandoning module CollectionManager (710)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module SynthesisEditor (707)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ResonanceAudio (705)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponentEditor (703)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (701)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingOperatorsEditorOnly (699)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingOperators (697)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingComponentsEditorOnly (695)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingComponents (693)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFramework (692)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingToolsEditorOnly (689)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingTools (687)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InputDebugging (685)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GooglePAD (683)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DynamicMesh (681)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (679)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (677)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCacheStreamer (675)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCacheSequencer (673)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AudioCapture (671)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AudioCaptureRtAudio (670)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AssetTags (667)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (665)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AppleImageUtilsBlueprintSupport (663)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AppleImageUtils (661)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AndroidPermission (659)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ActorLayerUtilitiesEditor (657)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (655)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MediaPlateEditor (653)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MediaPlate (651)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ImgMedia (649)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MediaCompositing (647)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module StylusInput (645)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module WorldPartitionHLODUtilities (643)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module SequencerAnimTools (641)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingToolsEditorMode (639)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module PluginBrowser (637)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module SpeedTreeImporter (635)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MaterialAnalyzer (633)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MobileLauncherProfileWizard (631)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFImporter (629)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFCore (627)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module EditorScriptingUtilities (625)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module CurveEditorTools (623)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module EditorDebugTools (621)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module CryptoKeysOpenSSL (619)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module CryptoKeys (617)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module BlueprintHeaderView (615)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module PaperTiledImporter (613)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module PaperSpriteSheetImporter (611)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module Paper2DEditor (609)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeFbxParser (607)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (605)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (603)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangePipelines (601)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeExport (599)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeMessages (597)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeImport (595)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (593)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeNodes (591)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeEditorUtilities (589)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeResultsBrowser (587)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeEditorPipelines (585)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeEditor (583)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeTestEditor (581)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module InterchangeTests (579)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module UVEditorToolsEditorOnly (577)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module UVEditorTools (575)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module UVEditor (573)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (571)
- [2023.09.15-08.46.31:203][523]LogOpenImageDenoise: OIDN shutting down
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ModelingEditorUI (569)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryProcessingAdapters (567)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingToolsEditorOnlyExp (565)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshModelingToolsExp (563)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module MeshLODToolset (561)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module Iris (559)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFlowMeshProcessingEditor (557)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFlowMeshProcessing (555)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryFlowCore (553)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (551)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (549)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionEngine (548)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionSequencer (546)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GeometryCollectionEditor (543)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataflowNodes (541)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataflowEditor (539)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosNiagara (537)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (535)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosSolverEditor (533)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module FractureEditor (531)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ChaosClothEditor (529)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module BackChannel (527)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AutomationUtilsEditor (525)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module AutomationUtils (523)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module VariantManager (521)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module VariantManagerContentEditor (520)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFMaterialBaking (517)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module GLTFMaterialAnalyzer (515)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DirectLinkTest (513)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DirectLinkExtensionEditor (511)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithNativeTranslator (509)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithTranslator (507)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithImporter (505)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithContentEditor (504)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DatasmithExternalSource (501)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DirectLinkExtension (500)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module ExternalSource (499)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepEditorScriptingUtilities (495)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepLibraries (493)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepCore (491)
- [2023.09.15-08.46.31:203][523]LogModuleManager: Shutting down and abandoning module DataprepEditor (489)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TemplateSequence (485)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SequencerScriptingEditor (483)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SequencerScripting (481)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (479)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TakeSequencer (477)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TakeMovieScene (475)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SubversionSourceControl (473)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module VisualStudioSourceCodeAccess (471)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module VisualStudioCodeSourceCodeAccess (469)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module UObjectPlugin (467)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module RiderSourceCodeAccess (465)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PluginUtils (463)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module DumpGPUServices (461)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PlasticSourceControl (459)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GitSourceControl (457)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module CLionSourceCodeAccess (455)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AnimationSharingEd (453)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module NiagaraEditorWidgets (451)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ControlRigSpline (449)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module BlendSpaceMotionAnalysis (447)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AnimationModifierLibrary (445)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AlembicImporter (443)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AlembicLibrary (442)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GeometryCache (441)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GeometryCacheEd (440)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module EditorTraceUtilities (435)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TraceUtilities (433)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MeshPaintingToolset (431)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MeshPaintEditorMode (429)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module InputEditor (427)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SoundFields (425)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module Synthesis (423)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module SignificanceManager (421)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PropertyAccessEditor (419)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (417)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundEditor (415)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioWidgets (414)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (413)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (409)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundEngine (407)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module WaveTable (406)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (404)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (401)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (399)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (397)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (395)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (393)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (391)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module CableComponent (389)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (387)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (386)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (383)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (381)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module GameplayTagsEditor (379)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module FacialAnimationEditor (377)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module FacialAnimation (375)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module DataValidation (373)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module AssetManagerEditor (371)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TreeMap (370)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module Paper2D (367)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PythonScriptPlugin (365)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module PBIK (363)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module FullBodyIK (361)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module ChaosCachingEditor (359)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module TakeRecorder (358)
- [2023.09.15-08.46.31:211][523]LogModuleManager: Shutting down and abandoning module LevelEditor (356)
- [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module PixelInspectorModule (355)
- [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module LevelAssetEditor (353)
- [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module CommonMenuExtensions (351)
- [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module MainFrame (349)
- [2023.09.15-08.46.31:212][523]LogModuleManager: Shutting down and abandoning module HotReload (348)
- [2023.09.15-08.46.31:213][523]LogModuleManager: Shutting down and abandoning module ChaosCaching (343)
- [2023.09.15-08.46.31:213][523]LogModuleManager: Shutting down and abandoning module ActorSequence (341)
- [2023.09.15-08.46.31:213][523]LogModuleManager: Shutting down and abandoning module TcpMessaging (339)
- [2023.09.15-08.46.31:314][523]LogModuleManager: Shutting down and abandoning module UdpMessaging (337)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module TraceDataFiltering (335)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module PropertyAccessNode (333)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module AnimationSharing (331)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module GameplayCameras (329)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module IKRigDeveloper (327)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module IKRig (325)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module EnvironmentQueryEditor (323)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (321)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module Niagara (319)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module SignalProcessing (318)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NiagaraEditor (316)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ContentBrowser (315)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ToolMenus (314)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ContentBrowserData (312)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NiagaraCore (307)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ControlRigDeveloper (305)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ControlRig (303)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module LevelSequence (302)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module InputBlueprintNodes (299)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module EnhancedInput (297)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (295)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (293)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module AndroidFileServer (291)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (289)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module PacketHandler (287)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module TimeManagement (285)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module AnimationDataController (283)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ClothingSystemEditor (281)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (279)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module MediaAssets (277)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module Overlay (275)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module OverlayEditor (274)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module VREditor (271)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module StringTableEditor (269)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module GameplayTasksEditor (267)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module BehaviorTreeEditor (265)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module FunctionalTesting (263)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module CollisionAnalyzer (261)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module WorkspaceMenuStructure (260)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module UMG (257)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module UMGEditor (256)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module EditorStyle (251)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module SlateReflector (249)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module Slate (247)
- [2023.09.15-08.46.31:415][523]LogModuleManager: Shutting down and abandoning module SlateCore (245)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module SubobjectDataInterface (243)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module LandscapeEditorUtilities (241)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module UnrealEd (239)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MRMesh (237)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Messaging (235)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module SourceCodeAccess (233)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (231)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Networking (229)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Core (227)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MaterialEditor (225)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MovieSceneTools (223)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module CurveEditor (222)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module Sequencer (220)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module KismetCompiler (217)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module MeshBuilder (215)
- [2023.09.15-08.46.31:416][523]LogModuleManager: Shutting down and abandoning module NaniteBuilder (213)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshUtilities (211)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshMergeUtilities (210)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshReductionInterface (209)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MeshBoneReduction (208)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module SkeletalMeshReduction (206)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module ProxyLODMeshReduction (204)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module QuadricMeshReduction (202)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module MaterialBaking (198)
- [2023.09.15-08.46.31:417][523]LogModuleManager: Shutting down and abandoning module TargetDeviceServices (195)
- [2023.09.15-08.46.31:428][523]LogModuleManager: Shutting down and abandoning module NullInstallBundleManager (191)
- [2023.09.15-08.46.31:428][523]LogModuleManager: Shutting down and abandoning module DerivedDataCache (189)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TargetPlatform (187)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ShaderFormatVectorVM (186)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module MetalShaderFormat (184)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module VulkanShaderFormat (182)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ShaderFormatOpenGL (180)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ShaderFormatD3D (178)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatBink (176)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatADPCM (173)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatOGG (171)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AudioFormatOPUS (169)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WindowsTargetPlatform (167)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TVOSTargetPlatform (165)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module LinuxArm64TargetPlatform (163)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module LinuxTargetPlatform (161)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module IOSTargetPlatform (159)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module HoloLensTargetPlatform (157)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AndroidTargetPlatform (155)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormat (153)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ImageWrapper (152)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatOodle (150)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatUncompressed (148)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatIntelISPCTexComp (146)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatETC2 (144)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatDXT (142)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TextureFormatASTC (140)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module TurnkeySupport (137)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module InputCore (134)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module Settings (132)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module DirectoryWatcher (130)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (128)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (127)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module Chaos (124)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module GeometryCore (123)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (120)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (119)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module AVEncoder (118)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module D3D12RHI (114)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (112)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (110)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module ChunkDownloader (108)
- [2023.09.15-08.46.31:430][523]LogModuleManager: Shutting down and abandoning module WmfMedia (106)
- [2023.09.15-08.46.31:431][523]LogModuleManager: Shutting down and abandoning module Media (105)
- [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (102)
- [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (100)
- [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module ChaosCloth (98)
- [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module VariantManagerContent (96)
- [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module GLTFExporter (94)
- [2023.09.15-08.46.31:432][523]LogModuleManager: Shutting down and abandoning module DatasmithContent (92)
- [2023.09.15-08.46.31:433][523]LogModuleManager: Shutting down and abandoning module OnlineBlueprintSupport (90)
- [2023.09.15-08.46.31:433][523]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (88)
- [2023.09.15-08.46.31:433][523]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (86)
- [2023.09.15-08.46.31:434][523]LogModuleManager: Shutting down and abandoning module XMPP (81)
- [2023.09.15-08.46.31:434][523]LogModuleManager: Shutting down and abandoning module WebSockets (80)
- [2023.09.15-08.46.31:468][523]LogModuleManager: Shutting down and abandoning module HTTP (77)
- [2023.09.15-08.46.31:468][523]LogHttp: Warning: [FHttpManager::Flush] FlushReason was Shutdown. Unbinding delegates for 1 outstanding Http Requests:
- [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
- [2023.09.15-08.46.31:471][523]LogModuleManager: Shutting down and abandoning module SSL (76)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (72)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (70)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (68)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PixWinPlugin (66)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module AISupportModule (64)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (62)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module NiagaraShader (60)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module DesktopPlatform (58)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (56)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (54)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (52)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PlatformCrypto (50)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module PerforceSourceControl (48)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module SourceControl (47)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module XGEController (44)
- [2023.09.15-08.46.31:472][523]LogXGEController: Cleaning working directory: C:/Users/Administrator/AppData/Local/Temp/UnrealXGEWorkingDir/
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module FastBuildController (42)
- [2023.09.15-08.46.31:472][523]LogModuleManager: Shutting down and abandoning module AnimationModifiers (40)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module AudioEditor (38)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module PropertyEditor (37)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module Virtualization (34)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module MessageLog (33)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module TextureCompressor (30)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module RenderCore (28)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module Landscape (26)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
- [2023.09.15-08.46.31:473][523]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module Renderer (20)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module Engine (18)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module PakFile (12)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module RSA (11)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
- [2023.09.15-08.46.31:474][523]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
- [2023.09.15-08.46.31:580][523]LogD3D12RHI: ~FD3D12DynamicRHI
- [2023.09.15-08.46.31:640][523]LogExit: Exiting.
- [2023.09.15-08.46.31:659][523]Log file closed, 09/15/23 16:46:31
|