Engine.ini 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829
  1. [/Script/EngineSettings.GameMapsSettings]
  2. GameInstanceClass=/Script/Engine.GameInstance
  3. EditorStartupMap=/Game/Main.Main
  4. GameDefaultMap=/Game/Main.Main
  5. ServerDefaultMap=/Game/Main.Main
  6. GlobalDefaultGameMode=/Script/Engine.GameModeBase
  7. LocalMapOptions=
  8. TransitionMap=/Game/Main.Main
  9. [InstallBundleManager]
  10. ModuleName=NullInstallBundleManager
  11. EditorModuleName=NullInstallBundleManager
  12. [URL]
  13. Protocol=unreal
  14. Name=Player
  15. SaveExt=usa
  16. Port=7777
  17. [HTTP]
  18. HttpTimeout=180
  19. HttpConnectionTimeout=60
  20. HttpReceiveTimeout=30
  21. HttpSendTimeout=30
  22. FlushSoftTimeLimitDefault=2.0
  23. FlushHardTimeLimitDefault=4.0
  24. FlushSoftTimeLimitBackground=2.0
  25. FlushHardTimeLimitBackground=4.0
  26. FlushSoftTimeLimitShutdown=2.0
  27. FlushHardTimeLimitShutdown=4.0
  28. FlushSoftTimeLimitFullFlush=-1.0
  29. FlushHardTimeLimitFullFlush=-1.0
  30. HttpThreadActiveFrameTimeInSeconds=0.001
  31. HttpMaxConnectionsPerServer=40
  32. [HTTP.HttpThread]
  33. RunningThreadedRequestLimit=100
  34. [HTTP.Curl]
  35. bAllowSeekFunction=false
  36. [BackgroundHttp]
  37. MaxActiveDownloads=4
  38. TempFileTimeOutSeconds=259200
  39. DeleteTempFilesWithoutURLMappingEntries=true
  40. RemoveURLMappingEntriesWithoutPhysicalTempFiles=true
  41. [WebSockets]
  42. WebSocketsProtocols=ws
  43. WebSocketsProtocols=wss
  44. WebSocketsProtocols=v10.stomp
  45. WebSocketsProtocols=v11.stomp
  46. WebSocketsProtocols=v12.stomp
  47. WebSocketsProtocols=xmpp
  48. [WebSockets.LibWebSockets]
  49. ThreadStackSize=131072
  50. ThreadTargetFrameTimeInSeconds=0.0333
  51. ThreadMinimumSleepTimeInSeconds=0.0
  52. MaxHttpHeaderData=32768
  53. [Ping]
  54. StackSize=1048576
  55. MinPingSendWaitTimeMs=10.0
  56. [Voice]
  57. bEnabled=false
  58. bDuckingOptOut=true
  59. [SlateStyle]
  60. DefaultFontName=/Engine/EngineFonts/Roboto
  61. [PlatformMemoryBuckets]
  62. LargestMemoryBucket_MinGB=32
  63. LargerMemoryBucket_MinGB=12
  64. DefaultMemoryBucket_MinGB=8
  65. SmallerMemoryBucket_MinGB=6
  66. SmallestMemoryBucket_MinGB=0
  67. [CoreUObject.UninitializedScriptStructMembersCheck]
  68. EngineModuleReflectedUninitializedPropertyVerbosity=Error
  69. ProjectModuleReflectedUninitializedPropertyVerbosity=Error
  70. ObjectReferenceReflectedUninitializedPropertyVerbosity=Error
  71. [CoreUObject.ShortTypeNameInMetaDataCheck]
  72. MetaDataKeys=AllowedClasses
  73. MetaDataKeys=DisallowedClasses
  74. MetaDataKeys=BaseStruct
  75. MetaDataKeys=BaseClass
  76. MetaDataKeys=HasNativeMake
  77. MetaDataKeys=HasnativeBreak
  78. MetaDataKeys=RowType
  79. MetaDataKeys=BitmaskEnum
  80. MetaDataKeys=ActorClassToPoll
  81. MetaDataKeys=ComponentClass
  82. MetaDataKeys=MustImplement
  83. MetaDataKeys=MetaClass
  84. MetaDataKeys=MetaStruct
  85. MetaDataKeys=RequiredAssetDataTags
  86. [/Script/Engine.Engine]
  87. ConsoleClassName=/Script/Engine.Console
  88. GameViewportClientClassName=/Script/Engine.GameViewportClient
  89. LocalPlayerClassName=/Script/Engine.LocalPlayer
  90. WorldSettingsClassName=/Script/Engine.WorldSettings
  91. NavigationSystemClassName=/Script/NavigationSystem.NavigationSystemV1
  92. NavigationSystemConfigClassName=/Script/NavigationSystem.NavigationSystemModuleConfig
  93. AvoidanceManagerClassName=/Script/Engine.AvoidanceManager
  94. PhysicsCollisionHandlerClassName=/Script/Engine.PhysicsCollisionHandler
  95. LevelScriptActorClassName=/Script/Engine.LevelScriptActor
  96. DefaultBlueprintBaseClassName=/Script/Engine.Actor
  97. GameUserSettingsClassName=/Script/Engine.GameUserSettings
  98. AIControllerClassName=/Script/AIModule.AIController
  99. AssetManagerClassName=/Script/Engine.AssetManager
  100. bAllowMatureLanguage=false
  101. GameEngine=/Script/Engine.GameEngine
  102. EditorEngine=/Script/UnrealEd.EditorEngine
  103. UnrealEdEngine=/Script/UnrealEd.UnrealEdEngine
  104. WireframeMaterialName=/Engine/EngineDebugMaterials/WireframeMaterial.WireframeMaterial
  105. DefaultMaterialName=/Engine/EngineMaterials/WorldGridMaterial.WorldGridMaterial
  106. DefaultLightFunctionMaterialName=/Engine/EngineMaterials/DefaultLightFunctionMaterial.DefaultLightFunctionMaterial
  107. DefaultTextureName=/Engine/EngineResources/DefaultTexture.DefaultTexture
  108. DefaultDiffuseTextureName=/Engine/EngineMaterials/DefaultDiffuse.DefaultDiffuse
  109. DefaultBSPVertexTextureName=/Engine/EditorResources/BSPVertex.BSPVertex
  110. HighFrequencyNoiseTextureName=/Engine/EngineMaterials/Good64x64TilingNoiseHighFreq.Good64x64TilingNoiseHighFreq
  111. DefaultBokehTextureName=/Engine/EngineMaterials/DefaultBokeh.DefaultBokeh
  112. DefaultBloomKernelTextureName=/Engine/EngineMaterials/DefaultBloomKernel.DefaultBloomKernel
  113. DefaultFilmGrainTextureName=/Engine/EngineResources/FilmGrains/Marcie_Grain_v3_128_M2_000.Marcie_Grain_v3_128_M2_000
  114. GeomMaterialName=/Engine/EngineDebugMaterials/GeomMaterial.GeomMaterial
  115. DebugMeshMaterialName=/Engine/EngineDebugMaterials/DebugMeshMaterial.DebugMeshMaterial
  116. EmissiveMeshMaterialName=/Engine/EngineMaterials/EmissiveMeshMaterial.EmissiveMeshMaterial
  117. PreIntegratedSkinBRDFTextureName=/Engine/EngineMaterials/PreintegratedSkinBRDF.PreintegratedSkinBRDF
  118. BlueNoiseScalarTextureName=/Engine/EngineMaterials/STBlueNoise_scalar_128x128x64.STBlueNoise_scalar_128x128x64
  119. BlueNoiseVec2TextureName=/Engine/EngineMaterials/STBlueNoise_vec2_128x128x64.STBlueNoise_vec2_128x128x64
  120. MiniFontTextureName=/Engine/EngineMaterials/MiniFont.MiniFont
  121. WeightMapPlaceholderTextureName=/Engine/EngineMaterials/WeightMapPlaceholderTexture.WeightMapPlaceholderTexture
  122. LightMapDensityTextureName=/Engine/EngineMaterials/DefaultWhiteGrid.DefaultWhiteGrid
  123. LevelColorationLitMaterialName=/Engine/EngineDebugMaterials/LevelColorationLitMaterial.LevelColorationLitMaterial
  124. LevelColorationUnlitMaterialName=/Engine/EngineDebugMaterials/LevelColorationUnlitMaterial.LevelColorationUnlitMaterial
  125. LightingTexelDensityName=/Engine/EngineDebugMaterials/MAT_LevelColorationLitLightmapUV.MAT_LevelColorationLitLightmapUV
  126. ShadedLevelColorationUnlitMaterialName=/Engine/EngineDebugMaterials/ShadedLevelColorationUnlitMateri.ShadedLevelColorationUnlitMateri
  127. ShadedLevelColorationLitMaterialName=/Engine/EngineDebugMaterials/ShadedLevelColorationLitMaterial.ShadedLevelColorationLitMaterial
  128. RemoveSurfaceMaterialName=/Engine/EngineMaterials/RemoveSurfaceMaterial.RemoveSurfaceMaterial
  129. VertexColorMaterialName=/Engine/EngineDebugMaterials/VertexColorMaterial.VertexColorMaterial
  130. VertexColorViewModeMaterialName_ColorOnly=/Engine/EngineDebugMaterials/VertexColorViewMode_ColorOnly.VertexColorViewMode_ColorOnly
  131. VertexColorViewModeMaterialName_AlphaAsColor=/Engine/EngineDebugMaterials/VertexColorViewMode_AlphaAsColor.VertexColorViewMode_AlphaAsColor
  132. VertexColorViewModeMaterialName_RedOnly=/Engine/EngineDebugMaterials/VertexColorViewMode_RedOnly.VertexColorViewMode_RedOnly
  133. VertexColorViewModeMaterialName_GreenOnly=/Engine/EngineDebugMaterials/VertexColorViewMode_GreenOnly.VertexColorViewMode_GreenOnly
  134. VertexColorViewModeMaterialName_BlueOnly=/Engine/EngineDebugMaterials/VertexColorViewMode_BlueOnly.VertexColorViewMode_BlueOnly
  135. PhysicalMaterialMaskMaterialName=/Engine/EngineDebugMaterials/PhysicalMaterialMaskMaterial.PhysicalMaterialMaskMaterial
  136. BoneWeightMaterialName=/Engine/EngineDebugMaterials/BoneWeightMaterial.BoneWeightMaterial
  137. ClothPaintMaterialName=/Engine/EngineDebugMaterials/ClothMaterial.ClothMaterial
  138. ClothPaintMaterialWireframeName=/Engine/EngineDebugMaterials/ClothMaterial_WF.ClothMaterial_WF
  139. DebugEditorMaterialName=/Engine/EngineDebugMaterials/DebugEditorMaterial.DebugEditorMaterial
  140. InvalidLightmapSettingsMaterialName=/Engine/EngineMaterials/M_InvalidLightmapSettings.M_InvalidLightmapSettings
  141. PreviewShadowsIndicatorMaterialName=/Engine/EditorMaterials/PreviewShadowIndicatorMaterial.PreviewShadowIndicatorMaterial
  142. EditorBrushMaterialName=/Engine/EngineMaterials/EditorBrushMaterial.EditorBrushMaterial
  143. DefaultPhysMaterialName=/Engine/EngineMaterials/DefaultPhysicalMaterial.DefaultPhysicalMaterial
  144. DefaultDeferredDecalMaterialName=/Engine/EngineMaterials/DefaultDeferredDecalMaterial.DefaultDeferredDecalMaterial
  145. DefaultPostProcessMaterialName=/Engine/EngineMaterials/DefaultPostProcessMaterial.DefaultPostProcessMaterial
  146. DefaultFlattenMaterialName=/Engine/EngineMaterials/FlattenMaterial.FlattenMaterial
  147. DefaultHLODFlattenMaterialName=/Engine/EngineMaterials/FlattenMaterial_VT.FlattenMaterial_VT
  148. DefaultLandscapeFlattenMaterialName=/Engine/EngineMaterials/FlattenMaterial_WS_Normal_VT.FlattenMaterial_WS_Normal_VT
  149. TimecodeProviderClassName=None
  150. ArrowMaterialName=/Engine/EngineMaterials/GizmoMaterial.GizmoMaterial
  151. ParticleEventManagerClassPath=/Script/Engine.ParticleEventManager
  152. LightingOnlyBrightness=(R=0.3,G=0.3,B=0.3,A=1.0)
  153. ShaderComplexityColors=(R=0.0,G=1.0,B=0.127,A=1.0)
  154. ShaderComplexityColors=(R=0.0,G=1.0,B=0.0,A=1.0)
  155. ShaderComplexityColors=(R=0.046,G=0.52,B=0.0,A=1.0)
  156. ShaderComplexityColors=(R=0.215,G=0.215,B=0.0,A=1.0)
  157. ShaderComplexityColors=(R=0.52,G=0.046,B=0.0,A=1.0)
  158. ShaderComplexityColors=(R=0.7,G=0.0,B=0.0,A=1.0)
  159. ShaderComplexityColors=(R=1.0,G=0.0,B=0.0,A=1.0)
  160. ShaderComplexityColors=(R=1.0,G=0.0,B=0.5,A=1.0)
  161. ShaderComplexityColors=(R=1.0,G=0.9,B=0.9,A=1.0)
  162. QuadComplexityColors=(R=0.0,G=0.0,B=0.0,A=1.0)
  163. QuadComplexityColors=(R=0.0,G=0.0,B=0.4,A=1.0)
  164. QuadComplexityColors=(R=0.0,G=0.3,B=1.0,A=1.0)
  165. QuadComplexityColors=(R=0.0,G=0.7,B=0.4,A=1.0)
  166. QuadComplexityColors=(R=0.0,G=1.0,B=0.0,A=1.0)
  167. QuadComplexityColors=(R=0.8,G=0.8,B=0.0,A=1.0)
  168. QuadComplexityColors=(R=1.0,G=0.3,B=0.0,A=1.0)
  169. QuadComplexityColors=(R=0.7,G=0.0,B=0.0,A=1.0)
  170. QuadComplexityColors=(R=0.5,G=0.0,B=0.5,A=1.0)
  171. QuadComplexityColors=(R=0.7,G=0.3,B=0.7,A=1.0)
  172. QuadComplexityColors=(R=1.0,G=0.9,B=0.9,A=1.0)
  173. LightComplexityColors=(R=0.0,G=0.0,B=0.0,A=1.0)
  174. LightComplexityColors=(R=0.0,G=0.0,B=0.4,A=1.0)
  175. LightComplexityColors=(R=0.0,G=0.3,B=1.0,A=1.0)
  176. LightComplexityColors=(R=0.0,G=0.7,B=0.4,A=1.0)
  177. LightComplexityColors=(R=0.0,G=1.0,B=0.0,A=1.0)
  178. LightComplexityColors=(R=0.8,G=0.8,B=0.0,A=1.0)
  179. LightComplexityColors=(R=1.0,G=0.3,B=0.0,A=1.0)
  180. LightComplexityColors=(R=0.7,G=0.0,B=0.0,A=1.0)
  181. LightComplexityColors=(R=0.5,G=0.0,B=0.5,A=1.0)
  182. LightComplexityColors=(R=0.7,G=0.3,B=0.7,A=1.0)
  183. LightComplexityColors=(R=1.0,G=0.9,B=0.9,A=1.0)
  184. StationaryLightOverlapColors=(R=0.0,G=1.0,B=0.127,A=1.0)
  185. StationaryLightOverlapColors=(R=0.0,G=1.0,B=0.0,A=1.0)
  186. StationaryLightOverlapColors=(R=0.046,G=0.52,B=0.0,A=1.0)
  187. StationaryLightOverlapColors=(R=0.215,G=0.215,B=0.0,A=1.0)
  188. StationaryLightOverlapColors=(R=0.52,G=0.046,B=0.0,A=1.0)
  189. StationaryLightOverlapColors=(R=0.7,G=0.0,B=0.0,A=1.0)
  190. StationaryLightOverlapColors=(R=1.0,G=0.0,B=0.0,A=1.0)
  191. StationaryLightOverlapColors=(R=1.0,G=0.0,B=0.5,A=1.0)
  192. StationaryLightOverlapColors=(R=1.0,G=0.9,B=0.9,A=1.0)
  193. LODColorationColors=(R=1.0,G=1.0,B=1.0,A=1.0) ; white (LOD 0)
  194. LODColorationColors=(R=1.0,G=0.0,B=0.0,A=1.0) ; red (LOD 1)
  195. LODColorationColors=(R=0.0,G=1.0,B=0.0,A=1.0) ; green (etc...)
  196. LODColorationColors=(R=0.0,G=0.0,B=1.0,A=1.0) ; blue
  197. LODColorationColors=(R=1.0,G=1.0,B=0.0,A=1.0) ; yellow
  198. LODColorationColors=(R=1.0,G=0.0,B=1.0,A=1.0) ; fuchsia (bright purple)
  199. LODColorationColors=(R=0.0,G=1.0,B=1.0,A=1.0) ; cyan
  200. LODColorationColors=(R=0.5,G=0.0,B=0.5,A=1.0) ; purple
  201. StreamingAccuracyColors=(R=1.0,G=0.0,B=0.0,A=1.0)
  202. StreamingAccuracyColors=(R=0.8,G=0.5,B=0.0,A=1.0)
  203. StreamingAccuracyColors=(R=0.7,G=0.7,B=0.7,A=1.0)
  204. StreamingAccuracyColors=(R=0.0,G=0.8,B=0.5,A=1.0)
  205. StreamingAccuracyColors=(R=0.0,G=1.0,B=0.0,A=1.0)
  206. HLODColorationColors=(R=1.0,G=1.0,B=1.0,A=1.0) ; white (not part of HLOD)
  207. HLODColorationColors=(R=0.0,G=1.0,B=0.0,A=1.0) ; green (part of HLOD but being drawn outside of it)
  208. HLODColorationColors=(R=0.0,G=0.0,B=1.0,A=1.0) ; blue (HLOD level 0)
  209. HLODColorationColors=(R=1.0,G=1.0,B=0.0,A=1.0) ; yellow (HLOD level 1, etc...)
  210. HLODColorationColors=(R=1.0,G=0.0,B=1.0,A=1.0) ; purple
  211. HLODColorationColors=(R=0.0,G=1.0,B=1.0,A=1.0) ; cyan
  212. HLODColorationColors=(R=0.5,G=0.5,B=0.5,A=1.0) ; grey
  213. GPUSkinCacheVisualizationExcludedColor=(R=1.0,G=0.0,B=0.0,A=1.0) ; red (not use skin cache on sk mesh)
  214. GPUSkinCacheVisualizationIncludedColor=(R=0.0,G=1.0,B=0.0,A=1.0) ; green (use skin cache on sk mesh)
  215. GPUSkinCacheVisualizationRecomputeTangentsColor=(R=0.0,G=0.0,B=1.0,A=1.0) ; blue (use recompute tangents on sk mesh)
  216. GPUSkinCacheVisualizationLowMemoryThresholdInMB=2.0
  217. GPUSkinCacheVisualizationHighMemoryThresholdInMB=10.0
  218. GPUSkinCacheVisualizationLowMemoryColor=(R=0.0,G=1.0,B=0.0,A=1.0) ; green
  219. GPUSkinCacheVisualizationMidMemoryColor=(R=1.0,G=1.0,B=0.0,A=1.0) ; yellow
  220. GPUSkinCacheVisualizationHighMemoryColor=(R=1.0,G=0.0,B=0.0,A=1.0) ; red
  221. GPUSkinCacheVisualizationRayTracingLODOffsetColors=(R=1.0,G=1.0,B=0.0,A=1.0) ; yellow (RT_LOD == Raster_LOD)
  222. GPUSkinCacheVisualizationRayTracingLODOffsetColors=(R=1.0,G=0.0,B=0.0,A=1.0) ; red (RT_LOD == Raster_LOD + 1)
  223. GPUSkinCacheVisualizationRayTracingLODOffsetColors=(R=0.0,G=1.0,B=0.0,A=1.0) ; green (RT_LOD == Raster_LOD + 2)
  224. GPUSkinCacheVisualizationRayTracingLODOffsetColors=(R=0.0,G=0.0,B=1.0,A=1.0) ; blue (RT_LOD >= Raster_LOD + 3)
  225. MaxPixelShaderAdditiveComplexityCount=2000
  226. MaxES3PixelShaderAdditiveComplexityCount=800
  227. bSubtitlesEnabled=True
  228. bSubtitlesForcedOff=false
  229. MaximumLoopIterationCount=1000000
  230. bCanBlueprintsTickByDefault=true
  231. bOptimizeAnimBlueprintMemberVariableAccess=true
  232. CameraRotationThreshold=45.0
  233. CameraTranslationThreshold=10000
  234. PrimitiveProbablyVisibleTime=8.0
  235. MaxOcclusionPixelsFraction=0.1
  236. MinLightMapDensity=0.0
  237. IdealLightMapDensity=0.2
  238. MaxLightMapDensity=0.8
  239. RenderLightMapDensityGrayscaleScale=1.0
  240. RenderLightMapDensityColorScale=1.0
  241. bRenderLightMapDensityGrayscale=false
  242. LightMapDensityVertexMappedColor=(R=0.65,G=0.65,B=0.25,A=1.0)
  243. LightMapDensitySelectedColor=(R=1.0,G=0.2,B=1.0,A=1.0)
  244. bPauseOnLossOfFocus=false
  245. MaxParticleResize=0
  246. MaxParticleResizeWarn=0
  247. NetClientTicksPerSecond=200
  248. StatColorMappings=(StatName="AverageFPS",ColorMap=((In=15.0,Out=(R=255)),(In=30,Out=(R=255,G=255)),(In=45.0,Out=(G=255))))
  249. StatColorMappings=(StatName="Frametime",ColorMap=((In=1.0,Out=(G=255)),(In=25.0,Out=(G=255)),(In=29.0,Out=(R=255,G=255)),(In=33.0,Out=(R=255))))
  250. StatColorMappings=(StatName="Streaming fudge factor",ColorMap=((In=0.0,Out=(G=255)),(In=1.0,Out=(G=255)),(In=2.5,Out=(R=255,G=255)),(In=5.0,Out=(R=255)),(In=10.0,Out=(R=255))))
  251. DisplayGamma=2.2
  252. MinDesiredFrameRate=35.000000
  253. NetDriverDefinitions=(DefName="GameNetDriver",DriverClassName="/Script/OnlineSubsystemUtils.IpNetDriver",DriverClassNameFallback="/Script/OnlineSubsystemUtils.IpNetDriver")
  254. NetDriverDefinitions=(DefName="DemoNetDriver",DriverClassName="/Script/Engine.DemoNetDriver",DriverClassNameFallback="/Script/Engine.DemoNetDriver")
  255. NetErrorLogInterval=1.0
  256. SerializationOutOfBoundsErrorMessage=NSLOCTEXT("","SerializationOutOfBoundsErrorMessage","Corrupt data found, please verify your installation.")
  257. SerializationOutOfBoundsErrorMessageCaption=NSLOCTEXT("","SerializationOutOfBoundsErrorMessageCaption","Serialization Error : Action Needed")
  258. bSmoothFrameRate=false
  259. SmoothedFrameRateRange=(LowerBound=(Type="ERangeBoundTypes::Inclusive",Value=22),UpperBound=(Type="ERangeBoundTypes::Exclusive",Value=62))
  260. bCheckForMultiplePawnsSpawnedInAFrame=false
  261. NumPawnsAllowedToBeSpawnedInAFrame=2
  262. DefaultSelectedMaterialColor=(R=0.84,G=0.92,B=0.02,A=1.0)
  263. bEnableOnScreenDebugMessages=true
  264. DurationOfErrorsAndWarningsOnHUD=0
  265. NearClipPlane=10.0
  266. DefaultWorldPartitionHLODLayer=/Engine/Maps/Templates/HLODs/HLODLayer_Instanced.HLODLayer_Instanced
  267. ActiveGameNameRedirects=(OldGameName="TP_BlankBP",NewGameName="/Script/SteelFactory")
  268. ActiveGameNameRedirects=(OldGameName="/Script/TP_BlankBP",NewGameName="/Script/SteelFactory")
  269. [CoreRedirects]
  270. ClassRedirects=(OldName="AnimGraphNode_BlendSpace",NewName="/Script/AnimGraph.AnimGraphNode_BlendSpacePlayer")
  271. ClassRedirects=(OldName="AnimNotify_PlayParticleEffect_C",NewName="/Script/Engine.AnimNotify_PlayParticleEffect",OverrideClassName="/Script/CoreUObject.Class")
  272. ClassRedirects=(OldName="AnimNotify_PlaySound_C",NewName="/Script/Engine.AnimNotify_PlaySound",OverrideClassName="/Script/CoreUObject.Class")
  273. ClassRedirects=(OldName="MovieSceneMaterialParameterSection",NewName="/Script/MovieSceneTracks.MovieSceneParameterSection")
  274. PackageRedirects=(OldName="/Engine/EngineAnimNotifies/AnimNotify_PlayParticleEffect",Removed=True)
  275. PackageRedirects=(OldName="/Engine/EngineAnimNotifies/AnimNotify_PlaySound",Removed=True)
  276. StructRedirects=(OldName="AnimNode_ApplyAdditive",NewName="/Script/AnimGraphRuntime.AnimNode_ApplyAdditive")
  277. StructRedirects=(OldName="AnimNode_BlendListBase",NewName="/Script/AnimGraphRuntime.AnimNode_BlendListBase")
  278. StructRedirects=(OldName="AnimNode_BlendListByBool",NewName="/Script/AnimGraphRuntime.AnimNode_BlendListByBool")
  279. StructRedirects=(OldName="AnimNode_BlendListByEnum",NewName="/Script/AnimGraphRuntime.AnimNode_BlendListByEnum")
  280. StructRedirects=(OldName="AnimNode_BlendListByInt",NewName="/Script/AnimGraphRuntime.AnimNode_BlendListByInt")
  281. StructRedirects=(OldName="AnimNode_BlendSpace",NewName="/Script/AnimGraphRuntime.AnimNode_BlendSpacePlayer")
  282. StructRedirects=(OldName="AnimNode_BlendSpaceEvaluator",NewName="/Script/AnimGraphRuntime.AnimNode_BlendSpaceEvaluator")
  283. StructRedirects=(OldName="AnimNode_BlendSpacePlayer",NewName="/Script/AnimGraphRuntime.AnimNode_BlendSpacePlayer")
  284. StructRedirects=(OldName="AnimNode_LayeredBoneBlend",NewName="/Script/AnimGraphRuntime.AnimNode_LayeredBoneBlend")
  285. StructRedirects=(OldName="AnimNode_MeshSpaceRefPose",NewName="/Script/AnimGraphRuntime.AnimNode_MeshSpaceRefPose")
  286. StructRedirects=(OldName="AnimNode_RefPose",NewName="/Script/AnimGraphRuntime.AnimNode_RefPose")
  287. StructRedirects=(OldName="AnimNode_RotateRootBone",NewName="/Script/AnimGraphRuntime.AnimNode_RotateRootBone")
  288. StructRedirects=(OldName="AnimNode_RotationOffsetBlendSpace",NewName="/Script/AnimGraphRuntime.AnimNode_RotationOffsetBlendSpace")
  289. StructRedirects=(OldName="AnimNode_SequenceEvaluator",NewName="/Script/AnimGraphRuntime.AnimNode_SequenceEvaluator")
  290. StructRedirects=(OldName="AnimNode_Slot",NewName="/Script/AnimGraphRuntime.AnimNode_Slot")
  291. StructRedirects=(OldName="FormatTextArgument",NewName="/Script/Engine.FormatArgumentData")
  292. FunctionRedirects=(OldName="ConvertTransformToRelative",NewName="/Script/Engine.KismetMathLibrary.MakeRelativeTransform")
  293. PropertyRedirects=(OldName="KismetMathLibrary.MakeRelativeTransform.LocalTransform",NewName="A")
  294. PropertyRedirects=(OldName="KismetMathLibrary.MakeRelativeTransform.WorldTransform",NewName="RelativeTo")
  295. PropertyRedirects=(OldName="KismetMathLibrary.MakeRelativeTransform.ParentTransform",NewName="A")
  296. PropertyRedirects=(OldName="KismetMathLibrary.MakeRelativeTransform.Transform",NewName="RelativeTo")
  297. PropertyRedirects=(OldName="MaterialInstanceDynamic.K2_CopyMaterialInstanceParameters.SourceMaterialToCopyFrom",NewName="Source")
  298. PropertyRedirects=(OldName="MaterialInstanceDynamic.K2_InterpolateMaterialInstanceParams.MaterialA",NewName="SourceA")
  299. PropertyRedirects=(OldName="MaterialInstanceDynamic.K2_InterpolateMaterialInstanceParams.MaterialB",NewName="SourceB")
  300. PropertyRedirects=(OldName="MaterialInstanceDynamic.K2_InterpolateMaterialInstanceParams.MaterialInstanceA",NewName="SourceA")
  301. PropertyRedirects=(OldName="MaterialInstanceDynamic.K2_InterpolateMaterialInstanceParams.MaterialInstanceB",NewName="SourceB")
  302. PropertyRedirects=(OldName="AnimNode_Trail.TrailRelaxationCurve",NewName="AnimNode_Trail.TrailRelaxationSpeed")
  303. PropertyRedirects=(OldName="FormatArgumentData.TextValue",NewName="FormatArgumentData.ArgumentValue")
  304. PropertyRedirects=(OldName="LandscapeSplineMeshEntry.Offset",NewName="LandscapeSplineMeshEntry.CenterAdjust")
  305. PropertyRedirects=(OldName="MovieScenePossessable.ParentSpawnableGuid",NewName="MovieScenePossessable.ParentGuid")
  306. PropertyRedirects=(OldName="MultiLineEditableText.bAutoWrapText",NewName="MultiLineEditableText.AutoWrapText")
  307. PropertyRedirects=(OldName="MultiLineEditableTextBox.bAutoWrapText",NewName="MultiLineEditableTextBox.AutoWrapText")
  308. PropertyRedirects=(OldName="AnimNode_SequenceEvaluator.bShouldLoopWhenInSyncGroup",NewName="AnimNode_SequenceEvaluator.bShouldLoop")
  309. PropertyRedirects=(OldName="PoseSearchDatabase.Weights",NewName="PoseSearchDatabase.DefaultWeights")
  310. EnumRedirects=(OldName="EControllerHand",NewName="/Script/InputCore.EControllerHand")
  311. EnumRedirects=(OldName="AnimPhysConstraintType",NewName="/Script/AnimGraphRuntime.AnimPhysAngularConstraintType")
  312. EnumRedirects=(OldName="AnimPhysAxisType",NewName="/Script/AnimGraphRuntime.AnimPhysLinearConstraintType")
  313. EnumRedirects=(OldName="EEnvQueryParam",NewName="/Script/AIModule.EAIParamType")
  314. ClassRedirects=(OldName="CineCameraActor",NewName="/Script/CinematicCamera.CineCameraActor")
  315. ClassRedirects=(OldName="CineCameraComponent",NewName="/Script/CinematicCamera.CineCameraComponent")
  316. ClassRedirects=(OldName="MovieSceneShotSection",NewName="/Script/MovieSceneTracks.MovieSceneCameraCutSection")
  317. ClassRedirects=(OldName="MovieSceneShotTrack",NewName="/Script/MovieSceneTracks.MovieSceneCameraCutTrack")
  318. FunctionRedirects=(OldName="Actor.SetActorRotation",NewName="Actor.K2_SetActorRotation")
  319. FunctionRedirects=(OldName="KismetSystemLibrary.SetSupressViewportTransitionMessage",NewName="KismetSystemLibrary.SetSuppressViewportTransitionMessage")
  320. FunctionRedirects=(OldName="SteamVRFunctionLibrary.GetTrackingSpace",NewName="HeadMountedDisplayFunctionLibrary.GetTrackingOrigin")
  321. FunctionRedirects=(OldName="SteamVRFunctionLibrary.SetTrackingSpace",NewName="HeadMountedDisplayFunctionLibrary.SetTrackingOrigin")
  322. PropertyRedirects=(OldName="AudioEQEffect.HFFrequency",NewName="AudioEQEffect.FrequencyCenter2")
  323. PropertyRedirects=(OldName="AudioEQEffect.HFGain",NewName="AudioEQEffect.Gain2")
  324. PropertyRedirects=(OldName="AudioEQEffect.LFFrequency",NewName="AudioEQEffect.FrequencyCenter0")
  325. PropertyRedirects=(OldName="AudioEQEffect.LFGain",NewName="AudioEQEffect.Gain0")
  326. PropertyRedirects=(OldName="AudioEQEffect.MFBandwidth",NewName="AudioEQEffect.Bandwidth1")
  327. PropertyRedirects=(OldName="AudioEQEffect.MFCutoffFrequency",NewName="AudioEQEffect.FrequencyCenter1")
  328. PropertyRedirects=(OldName="AudioEQEffect.MFGain",NewName="AudioEQEffect.Gain1")
  329. PropertyRedirects=(OldName="BodyInstance.MassInKg",NewName="BodyInstance.MassInKgOverride")
  330. PropertyRedirects=(OldName="EnvQueryTest.SweetSpotValue",NewName="EnvQueryTest.ReferenceValue")
  331. PropertyRedirects=(OldName="EnvQueryTest.bDefineSweetSpot",NewName="EnvQueryTest.bDefineReferenceValue")
  332. PropertyRedirects=(OldName="MovieScene.ShotTrack",NewName="MovieScene.CameraCutTrack")
  333. PropertyRedirects=(OldName="MovieSceneShotSection.ShotNumber",NewName="MovieSceneShotSection.CameraCutNumber")
  334. ClassRedirects=(OldName="EdGraphPin",NewName="/Script/Engine.EdGraphPin_Deprecated")
  335. ClassRedirects=(OldName="HapticFeedbackEffect",NewName="/Script/Engine.HapticFeedbackEffect_Curve")
  336. ClassRedirects=(OldName="LandscapeProxy",NewName="/Script/Landscape.LandscapeStreamingProxy",InstanceOnly=True)
  337. StructRedirects=(OldName="HapticFeedbackDetails",NewName="/Script/Engine.HapticFeedbackDetails_Curve")
  338. StructRedirects=(OldName="AnimNode_SaveCachedPose",NewName="/Script/Engine.AnimNode_SaveCachedPose")
  339. FunctionRedirects=(OldName="SceneCaptureComponent2D.UpdateContent",NewName="SceneCaptureComponent2D.CaptureScene")
  340. FunctionRedirects=(OldName="SceneCaptureComponentCube.UpdateContent",NewName="SceneCaptureComponentCube.CaptureScene")
  341. PropertyRedirects=(OldName="Blueprint.PinWatches",NewName="Blueprint.DeprecatedPinWatches")
  342. PropertyRedirects=(OldName="Box2D.bIsValid",NewName="Box2D.IsValid")
  343. PropertyRedirects=(OldName="EdGraphNode.Pins",NewName="EdGraphNode.DeprecatedPins")
  344. PropertyRedirects=(OldName="PhysicsAsset.Profiles",NewName="PhysicsAsset.PhysicalAnimationProfiles")
  345. PropertyRedirects=(OldName="PrimitiveComponent.bReceiveCSMFromDynamicObjects",NewName="PrimitiveComponent.bReceiveCombinedCSMAndStaticShadowsFromStationaryLights")
  346. PropertyRedirects=(OldName="SplineComponent.bAlwaysRenderInEditor",NewName="SplineComponent.bDrawDebug")
  347. EnumRedirects=(OldName="ENoiseFunction",ValueChanges=(("NOISEFUNCTION_FastGradient","NOISEFUNCTION_GradientTex3D"), ("NOISEFUNCTION_Gradient","NOISEFUNCTION_ValueALU"), ("NOISEFUNCTION_Perlin","NOISEFUNCTION_GradientTex"), ("NOISEFUNCTION_Simplex","NOISEFUNCTION_SimplexTex")) )
  348. EnumRedirects=(OldName="EPathFollowingResult",ValueChanges=(("EPathFollowingResult::Skipped","EPathFollowingResult::Skipped_DEPRECATED")) )
  349. EnumRedirects=(OldName="EStereoLayerType",ValueChanges=(("EStereoLayerType::SLT_TorsoLocked","EStereoLayerType::SLT_TrackerLocked")) )
  350. ClassRedirects=(OldName="AnimGraphNode_OrientationDriver",NewName="/Script/AnimGraph.AnimGraphNode_PoseDriver")
  351. ClassRedirects=(OldName="K2Node_AIMoveTo",NewName="/Script/AIGraph.K2Node_AIMoveTo")
  352. StructRedirects=(OldName="AnimNode_OrientationDriver",NewName="/Script/AnimGraphRuntime.AnimNode_PoseDriver")
  353. FunctionRedirects=(OldName="KismetMathLibrary.GetDirectionVector",NewName="GetDirectionUnitVector")
  354. PropertyRedirects=(OldName="SCS_Node.VariableName",NewName="SCS_Node.InternalVariableName")
  355. EnumRedirects=(OldName="ESuggestProjVelocityTraceOption",ValueChanges=(("OnlyTraceWhileAsceding","OnlyTraceWhileAscending")) )
  356. ClassRedirects=(OldName="BackgroundBlurWidget",NewName="/Script/UMG.BackgroundBlur")
  357. ClassRedirects=(OldName="MovieSceneVisibilitySection",NewName="/Script/MovieScene.MovieSceneBoolSection")
  358. ClassRedirects=(OldName="SoundClassGraph",NewName="/Script/AudioEditor.SoundClassGraph")
  359. ClassRedirects=(OldName="SoundClassGraphNode",NewName="/Script/AudioEditor.SoundClassGraphNode")
  360. ClassRedirects=(OldName="SoundClassGraphSchema",NewName="/Script/AudioEditor.SoundClassGraphSchema")
  361. ClassRedirects=(OldName="SoundCueGraph",NewName="/Script/AudioEditor.SoundCueGraph")
  362. ClassRedirects=(OldName="SoundCueGraphNode",NewName="/Script/AudioEditor.SoundCueGraphNode")
  363. ClassRedirects=(OldName="SoundCueGraphNode_Base",NewName="/Script/AudioEditor.SoundCueGraphNode_Base")
  364. ClassRedirects=(OldName="SoundCueGraphNode_Root",NewName="/Script/AudioEditor.SoundCueGraphNode_Root")
  365. ClassRedirects=(OldName="SoundCueGraphSchema",NewName="/Script/AudioEditor.SoundCueGraphSchema")
  366. StructRedirects=(OldName="AnimationNode_TwoWayBlend",NewName="/Script/AnimGraphRuntime.AnimNode_TwoWayBlend")
  367. StructRedirects=(OldName="AttenuationSettings",NewName="/Script/Engine.SoundAttenuationSettings")
  368. StructRedirects=(OldName="LevelSequencePlaybackSettings",NewName="/Script/MovieScene.MovieSceneSequencePlaybackSettings")
  369. FunctionRedirects=(OldName="BlueprintGameplayTagLibrary.DoGameplayTagsMatch",NewName="BlueprintGameplayTagLibrary.MatchesTag")
  370. FunctionRedirects=(OldName="BlueprintGameplayTagLibrary.DoesContainerHaveTag",NewName="BlueprintGameplayTagLibrary.HasTag")
  371. FunctionRedirects=(OldName="BlueprintGameplayTagLibrary.DoesContainerMatchAllTagsInContainer",NewName="BlueprintGameplayTagLibrary.HasAllTags")
  372. FunctionRedirects=(OldName="BlueprintGameplayTagLibrary.DoesContainerMatchAnyTagsInContainer",NewName="BlueprintGameplayTagLibrary.HasAnyTags")
  373. PropertyRedirects=(OldName="BlueprintGameplayTagLibrary.IsGameplayTagValid.TagContainer",NewName="GameplayTag")
  374. FunctionRedirects=(OldName="BlueprintGameplayTagLibrary.AddGameplayTagToContainer",NewName="BlueprintGameplayTagLibrary.AddGameplayTag")
  375. PropertyRedirects=(OldName="BlueprintGameplayTagLibrary.AddGameplayTag.InOutTagContainer",NewName="TagContainer")
  376. FunctionRedirects=(OldName="GameplayStatics.PredictProjectilePath",NewName="GameplayStatics.Blueprint_PredictProjectilePath_ByObjectType")
  377. FunctionRedirects=(OldName="KismetSystemLibrary.BoxOverlapActors_NEW",NewName="KismetSystemLibrary.BoxOverlapActors")
  378. FunctionRedirects=(OldName="KismetSystemLibrary.BoxOverlapComponents_NEW",NewName="KismetSystemLibrary.BoxOverlapComponents")
  379. FunctionRedirects=(OldName="KismetSystemLibrary.CapsuleOverlapActors_NEW",NewName="KismetSystemLibrary.CapsuleOverlapActors")
  380. FunctionRedirects=(OldName="KismetSystemLibrary.CapsuleOverlapComponents_NEW",NewName="KismetSystemLibrary.CapsuleOverlapComponents")
  381. FunctionRedirects=(OldName="KismetSystemLibrary.CapsuleTraceMulti_NEW",NewName="KismetSystemLibrary.CapsuleTraceMulti")
  382. FunctionRedirects=(OldName="KismetSystemLibrary.CapsuleTraceSingle_NEW",NewName="KismetSystemLibrary.CapsuleTraceSingle")
  383. FunctionRedirects=(OldName="KismetSystemLibrary.ComponentOverlapActors_NEW",NewName="KismetSystemLibrary.ComponentOverlapActors")
  384. FunctionRedirects=(OldName="KismetSystemLibrary.ComponentOverlapComponents_NEW",NewName="KismetSystemLibrary.ComponentOverlapComponents")
  385. FunctionRedirects=(OldName="KismetSystemLibrary.LineTraceMulti_NEW",NewName="KismetSystemLibrary.LineTraceMulti")
  386. FunctionRedirects=(OldName="KismetSystemLibrary.LineTraceSingle_NEW",NewName="KismetSystemLibrary.LineTraceSingle")
  387. FunctionRedirects=(OldName="KismetSystemLibrary.SphereOverlapActors_NEW",NewName="KismetSystemLibrary.SphereOverlapActors")
  388. FunctionRedirects=(OldName="KismetSystemLibrary.SphereOverlapComponents_NEW",NewName="KismetSystemLibrary.SphereOverlapComponents")
  389. FunctionRedirects=(OldName="KismetSystemLibrary.SphereTraceMulti_NEW",NewName="KismetSystemLibrary.SphereTraceMulti")
  390. FunctionRedirects=(OldName="KismetSystemLibrary.SphereTraceSingle_NEW",NewName="KismetSystemLibrary.SphereTraceSingle")
  391. PropertyRedirects=(OldName="MediaPlayer.Seek.InTime",NewName="Time")
  392. PropertyRedirects=(OldName="MediaPlayer.SetLooping.InLooping",NewName="Looping")
  393. EnumRedirects=(OldName="EFontLoadingPolicy",ValueChanges=(("EFontLoadingPolicy::PreLoad","EFontLoadingPolicy::LazyLoad")) )
  394. EnumRedirects=(OldName="ESoundDistanceModel",NewName="/Script/Engine.EAttenuationDistanceModel",ValueChanges=(("ATTENUATION_Custom","EAttenuationDistanceModel::Custom"),("ATTENUATION_Inverse","EAttenuationDistanceModel::Inverse"),("ATTENUATION_Linear","EAttenuationDistanceModel::Linear"),("ATTENUATION_LogReverse","EAttenuationDistanceModel::LogReverse"),("ATTENUATION_Logarithmic","EAttenuationDistanceModel::Logarithmic"),("ATTENUATION_NaturalSound","EAttenuationDistanceModel::NaturalSound")) )
  395. StructRedirects=(OldName="ClothingAssetData",NewName="/Script/Engine.ClothingAssetData_Legacy")
  396. StructRedirects=(OldName="ClothPhysicsProperties",NewName="/Script/Engine.ClothPhysicsProperties_Legacy")
  397. StructRedirects=(OldName="MovieSceneObjectBindingPtr",NewName="/Script/MovieScene.MovieSceneObjectBindingID")
  398. PropertyRedirects=(OldName="Box2D.IsValid",NewName="bIsValid")
  399. PropertyRedirects=(OldName="StaticMesh.bRequiresAreaWeightedSampling",NewName="StaticMesh.bSupportUniformlyDistributedSampling")
  400. PropertyRedirects=(OldName="FPostProcessSettings.BloomConvolutionPreFilter", NewName="FPostProcessSettings.BloomConvolutionPreFilter_DEPRECATED")
  401. PropertyRedirects=(OldName="FPostProcessSettings.bOverride_BloomConvolutionPreFilter", NewName="FPostProcessSettings.bOverride_BloomConvolutionPreFilter_DEPRECATED")
  402. ClassRedirects=(OldName="ARBlueprintFunctionLibrary", NewName="/Script/AugmentedReality.ARBlueprintLibrary")
  403. ClassRedirects=(OldName="HeadMountedDisplayFunctionLibrary",NewName="/Script/HeadMountedDisplay.HeadMountedDisplayFunctionLibrary")
  404. EnumRedirects=(OldName="EWidgetClipping",ValueChanges=(("EWidgetClipping::No","EWidgetClipping::Inherit"),("EWidgetClipping::Yes","EWidgetClipping::ClipToBounds"),("EWidgetClipping::YesWithoutIntersecting","EWidgetClipping::ClipToBoundsWithoutIntersecting"),("EWidgetClipping::YesAlways","EWidgetClipping::ClipToBoundsAlways")) )
  405. EnumRedirects=(OldName="EOrientPositionSelector",NewName="/Script/HeadMountedDisplay.EOrientPositionSelector")
  406. EnumRedirects=(OldName="EHMDTrackingOrigin",NewName="/Script/HeadMountedDisplay.EHMDTrackingOrigin")
  407. EnumRedirects=(OldName="ESteamVRTrackingSpace",NewName="/Script/HeadMountedDisplay.EHMDTrackingOrigin")
  408. EnumRedirects=(OldName="EHMDWornState",NewName="/Script/HeadMountedDisplay.EHMDWornState")
  409. EnumRedirects=(OldName="ESocialScreenModes",NewName="/Script/HeadMountedDisplay.ESpectatorScreenMode",ValueChanges=(("SystemMirror","ESpectatorScreenMode::SingleEyeCroppedToFill"),("SeparateTest","ESpectatorScreenMode::Undistorted"),("SeparateTexture","ESpectatorScreenMode::Texture"),("SeparateSoftwareMirror","ESpectatorScreenMode::Undistorted")) )
  410. FunctionRedirects=(OldName="SetSocialScreenMode",NewName="/Script/HeadMountedDisplay.HeadMountedDisplayFunctionLibrary.SetSpectatorScreenMode")
  411. FunctionRedirects=(OldName="SetSocialScreenTexture",NewName="/Script/HeadMountedDisplay.HeadMountedDisplayFunctionLibrary.SetSpectatorScreenTexture")
  412. PropertyRedirects=(OldName="Widget.ClipToBounds",NewName="Clipping")
  413. StructRedirects=(OldName="TargetReference",NewName="/Script/Engine.BoneSocketTarget")
  414. StructRedirects=(OldName="StringAssetReference",NewName="/Script/CoreUObject.SoftObjectPath")
  415. StructRedirects=(OldName="StringClassReference",NewName="/Script/CoreUObject.SoftClassPath")
  416. ClassRedirects=(OldName="AssetObjectProperty",NewName="/Script/CoreUObject.SoftObjectProperty")
  417. ClassRedirects=(OldName="AssetClassProperty",NewName="/Script/CoreUObject.SoftClassProperty")
  418. FunctionRedirects=(OldName="MakeStringAssetReference",NewName="/Script/Engine.KismetSystemLibrary.MakeSoftObjectPath")
  419. PropertyRedirects=(OldName="MakeSoftObjectPath.AssetLongPathname",NewName="PathString")
  420. FunctionRedirects=(OldName="SetAssetPropertyByName",NewName="/Script/Engine.KismetSystemLibrary.SetSoftObjectPropertyByName")
  421. FunctionRedirects=(OldName="SetAssetClassPropertyByName",NewName="/Script/Engine.KismetSystemLibrary.SetSoftClassPropertyByName")
  422. FunctionRedirects=(OldName="RandomUnitVectorInCone",NewName="/Script/Engine.KismetMathLibrary.RandomUnitVectorInConeInRadians")
  423. FunctionRedirects=(OldName="RandomUnitVectorInConeWithYawAndPitch",NewName="/Script/Engine.KismetMathLibrary.RandomUnitVectorInEllipticalConeInDegrees")
  424. PropertyRedirects=(OldName="KismetMathLibrary.RandomUnitVectorInConeInRadians.ConeHalfAngle",NewName="ConeHalfAngleInRadians")
  425. PropertyRedirects=(OldName="KismetMathLibrary.RandomPointInBoundingBox.Origin",NewName="Center")
  426. PropertyRedirects=(OldName="KismetMathLibrary.RandomPointInBoundingBox.BoxExtent",NewName="HalfSize")
  427. PropertyRedirects=(OldName="Widget.Visiblity",NewName="Widget.Visibility")
  428. PropertyRedirects=(OldName="WidgetBlueprintLibrary.SetInputMode_UIOnlyEx.Target",NewName="PlayerController")
  429. PropertyRedirects=(OldName="WidgetBlueprintLibrary.SetInputMode_GameAndUIEx.Target",NewName="PlayerController")
  430. PropertyRedirects=(OldName="WidgetBlueprintLibrary.SetInputMode_GameOnly.Target",NewName="PlayerController")
  431. PropertyRedirects=(OldName="FScalarParameterValue.ParameterName", NewName="FScalarParameterValue.ParameterName_DEPRECATED")
  432. PropertyRedirects=(OldName="FVectorParameterValue.ParameterName", NewName="FVectorParameterValue.ParameterName_DEPRECATED")
  433. PropertyRedirects=(OldName="FTextureParameterValue.ParameterName", NewName="FTextureParameterValue.ParameterName_DEPRECATED")
  434. PropertyRedirects=(OldName="FFontParameterValue.ParameterName", NewName="FFontParameterValue.ParameterName_DEPRECATED")
  435. ClassRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneSubTrack",NewName="/Script/MovieScene.MovieSceneSubTrack")
  436. ClassRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneSubSection",NewName="/Script/MovieScene.MovieSceneSubSection")
  437. FunctionRedirects=(OldName="InverseLerp",NewName="/Script/Engine.KismetMathLibrary.NormalizeToRange")
  438. PropertyRedirects=(OldName="NormalizeToRange.A",NewName="RangeMin")
  439. PropertyRedirects=(OldName="NormalizeToRange.B",NewName="RangeMax")
  440. ClassRedirects=(OldName="WebBrowserTexture",NewName="/Script/WebBrowserTexture.WebBrowserTexture")
  441. PropertyRedirects=(OldName="Widget.Opacity", NewName="Widget.RenderOpacity")
  442. FunctionRedirects=(OldName="Widget.GetOpacity", NewName="Widget.GetRenderOpacity")
  443. FunctionRedirects=(OldName="Widget.SetOpacity", NewName="Widget.SetRenderOpacity")
  444. EnumRedirects=(OldName="ENetDormancy",ValueChanges=(("DORN_MAX","DORM_MAX"))
  445. PackageRedirects=(OldName="/Script/EditorScriptingUtilitiesEditor", NewName="/Script/AssetScriptingUtilitiesEditor")
  446. PropertyRedirects=(OldName="PrimitiveComponent.GetOverlappingComponents.InOverlappingComponents",NewName="OutOverlappingComponents")
  447. ClassRedirects=(OldName="USkeletalMeshReductionSettings",NewName="/Script/Engine.SkeletalMeshLODSettings")
  448. PropertyRedirects=(OldName="SkeletalMeshLODGroupSettings.OptimizationSettings", NewName="ReductionSettings")
  449. PropertyRedirects=(OldName="SkeletalMeshLODSettings.Settings", NewName="LODGroups")
  450. FunctionRedirects=(OldName="/Script/HeadMountedDisplay.HeadMountedDisplayFunctionLibrary.AddDeviceVisualizationComponent",NewName="/Script/HeadMountedDisplay.XRAssetFunctionLibrary.AddDeviceVisualizationComponentBlocking")
  451. FunctionRedirects=(OldName="/Script/HeadMountedDisplay.HeadMountedDisplayFunctionLibrary.AddNamedDeviceVisualizationComponent",NewName="/Script/HeadMountedDisplay.XRAssetFunctionLibrary.AddNamedDeviceVisualizationComponentBlocking")
  452. EnumRedirects=(OldName="ESimulationSpace",ValueChanges=(("RootBoneSpace", "BaseBoneSpace")))
  453. EnumRedirects=(OldName="EColorVisionDeficiency", NewName="/Script/SlateCore.EColorVisionDeficiency", ValueChanges=(("CVD_NormalVision", "NormalVision"), ("CVD_Deuteranomly", "NormalVision"), ("CVD_Deuteranopia", "Deuteranope"), ("CVD_Protanomly", "NormalVision"), ("CVD_Protanopia", "Protanope"), ("CVD_Tritanomaly", "NormalVision"), ("CVD_Tritanopia", "Tritanope"), ("CVD_Achromatopsia", "NormalVision"))
  454. ClassRedirects=(OldName="NavigationSystem",NewName="/Script/NavigationSystem.NavigationSystemV1")
  455. ClassRedirects=(OldName="NavMeshBoundsVolume",NewName="/Script/NavigationSystem.NavMeshBoundsVolume")
  456. ClassRedirects=(OldName="NavArea",NewName="/Script/NavigationSystem.NavArea")
  457. ClassRedirects=(OldName="NavAreaMeta",NewName="/Script/NavigationSystem.NavAreaMeta")
  458. ClassRedirects=(OldName="NavArea_Default",NewName="/Script/NavigationSystem.NavArea_Default")
  459. ClassRedirects=(OldName="NavArea_LowHeight",NewName="/Script/NavigationSystem.NavArea_LowHeight")
  460. ClassRedirects=(OldName="NavArea_Null",NewName="/Script/NavigationSystem.NavArea_Null")
  461. ClassRedirects=(OldName="NavArea_Obstacle",NewName="/Script/NavigationSystem.NavArea_Obstacle")
  462. ClassRedirects=(OldName="NavAreaMeta_SwitchByAgent",NewName="/Script/NavigationSystem.NavAreaMeta_SwitchByAgent")
  463. ClassRedirects=(OldName="NavigationQueryFilter",NewName="/Script/NavigationSystem.NavigationQueryFilter")
  464. ClassRedirects=(OldName="NavMeshRenderingComponent",NewName="/Script/NavigationSystem.NavMeshRenderingComponent")
  465. ClassRedirects=(OldName="RecastNavMesh",NewName="/Script/NavigationSystem.RecastNavMesh")
  466. ClassRedirects=(OldName="RecastNavMeshDataChunk",NewName="/Script/NavigationSystem.RecastNavMeshDataChunk")
  467. ClassRedirects=(OldName="AbstractNavData",NewName="/Script/NavigationSystem.AbstractNavData")
  468. ClassRedirects=(OldName="CrowdManagerBase",NewName="/Script/NavigationSystem.CrowdManagerBase")
  469. ClassRedirects=(OldName="NavCollision",NewName="/Script/NavigationSystem.NavCollision")
  470. ClassRedirects=(OldName="NavigationData",NewName="/Script/NavigationSystem.NavigationData")
  471. ClassRedirects=(OldName="NavigationInvokerComponent",NewName="/Script/NavigationSystem.NavigationInvokerComponent")
  472. ClassRedirects=(OldName="NavigationPath",NewName="/Script/NavigationSystem.NavigationPath")
  473. ClassRedirects=(OldName="NavigationTestingActor",NewName="/Script/NavigationSystem.NavigationTestingActor")
  474. ClassRedirects=(OldName="NavLinkComponent",NewName="/Script/NavigationSystem.NavLinkComponent")
  475. ClassRedirects=(OldName="NavLinkCustomComponent",NewName="/Script/NavigationSystem.NavLinkCustomComponent")
  476. ClassRedirects=(OldName="NavLinkRenderingComponent",NewName="/Script/NavigationSystem.NavLinkRenderingComponent")
  477. ClassRedirects=(OldName="NavLinkTrivial",NewName="/Script/NavigationSystem.NavLinkTrivial")
  478. ClassRedirects=(OldName="NavModifierComponent",NewName="/Script/NavigationSystem.NavModifierComponent")
  479. ClassRedirects=(OldName="NavModifierVolume",NewName="/Script/NavigationSystem.NavModifierVolume")
  480. ClassRedirects=(OldName="NavRelevantComponent",NewName="/Script/NavigationSystem.NavRelevantComponent")
  481. ClassRedirects=(OldName="RecastFilter_UseDefaultArea",NewName="/Script/NavigationSystem.RecastFilter_UseDefaultArea")
  482. ClassRedirects=(OldName="NavigationGraph",NewName="/Script/NavigationSystem.NavigationGraph")
  483. ClassRedirects=(OldName="NavigationGraphNode",NewName="/Script/NavigationSystem.NavigationGraphNode")
  484. ClassRedirects=(OldName="NavigationGraphNodeComponent",NewName="/Script/NavigationSystem.NavigationGraphNodeComponent")
  485. ClassRedirects=(OldName="NavigationPathGenerator",NewName="/Script/NavigationSystem.NavigationPathGenerator")
  486. ClassRedirects=(OldName="NavLinkCustomInterface",NewName="/Script/NavigationSystem.NavLinkCustomInterface")
  487. ClassRedirects=(OldName="NavLinkHostInterface",NewName="/Script/NavigationSystem.NavLinkHostInterface")
  488. ClassRedirects=(OldName="NavNodeInterface",NewName="/Script/NavigationSystem.NavNodeInterface")
  489. ClassRedirects=(OldName="NavLinkProxy",NewName="/Script/AIModule.NavLinkProxy")
  490. StructRedirects=(OldName="NavigationFilterArea",NewName="/Script/NavigationSystem.NavigationFilterArea")
  491. StructRedirects=(OldName="NavigationFilterFlags",NewName="/Script/NavigationSystem.NavigationFilterFlags")
  492. StructRedirects=(OldName="NavGraphEdge",NewName="/Script/NavigationSystem.NavGraphEdge")
  493. StructRedirects=(OldName="NavGraphNode",NewName="/Script/NavigationSystem.NavGraphNode")
  494. StructRedirects=(OldName="NavCollisionCylinder",NewName="/Script/NavigationSystem.NavCollisionCylinder")
  495. StructRedirects=(OldName="NavCollisionBox",NewName="/Script/NavigationSystem.NavCollisionBox")
  496. StructRedirects=(OldName="SupportedAreaData",NewName="/Script/NavigationSystem.SupportedAreaData")
  497. FunctionRedirects=(OldName="NavigationSystemV1.SimpleMoveToActor",NewName="AIBlueprintHelperLibrary.SimpleMoveToActor")
  498. FunctionRedirects=(OldName="NavigationSystemV1.SimpleMoveToLocation",NewName="AIBlueprintHelperLibrary.SimpleMoveToLocation")
  499. PropertyRedirects=(OldName="UserWidget.bCanEverTick", NewName="bHasScriptImplementedTick")
  500. PropertyRedirects=(OldName="UserWidget.bCanEverPaint", NewName="bHasScriptImplementedPaint")
  501. PropertyRedirects=(OldName="MovieScene.FrameResolution",NewName="TickResolution")
  502. PropertyRedirects=(OldName="MovieScene.PlayRate",NewName="DisplayRate")
  503. ClassRedirects=(OldName="/Script/MovieSceneCapture.AutomatedLevelSequenceCapture", NewName="/Script/MovieSceneTools.AutomatedLevelSequenceCapture")
  504. PackageRedirects=(OldName="/Script/AssetScriptingUtilitiesEditor", NewName="/Script/EditorScriptingUtilities")
  505. ClassRedirects=(OldName="/Script/AssetScriptingUtilities.StaticMeshUtilitiesLibrary", NewName="/Script/EditorScriptingUtilities.EditorStaticMeshLibrary")
  506. ClassRedirects=(OldName="/Script/AssetScriptingUtilities.SkeletalMeshUtilitiesLibrary", NewName="/Script/EditorScriptingUtilities.EditorSkeletalMeshLibrary")
  507. FunctionRedirects=(OldName="StaticMeshUtilitiesLibrary.GetLODScreenSizes",NewName="EditorStaticMeshLibrary.GetLodScreenSizes")
  508. ClassRedirects=(OldName="AppleARKitFaceMeshComponent",NewName="/Script/AppleARKitFaceSupport.AppleARKitFaceMeshComponent")
  509. StructRedirects=(OldName="FrameNumber",NewName="/Script/CoreUObject.FrameNumber")
  510. StructRedirects=(OldName="FrameRate",NewName="/Script/CoreUObject.FrameRate")
  511. StructRedirects=(OldName="FrameTime",NewName="/Script/CoreUObject.FrameTime")
  512. StructRedirects=(OldName="QualifiedFrameTime",NewName="/Script/CoreUObject.QualifiedFrameTime")
  513. StructRedirects=(OldName="Timecode",NewName="/Script/CoreUObject.Timecode")
  514. EnumRedirects=(OldName="EMeshComponentUpdateFlag",NewName="/Script/Engine.EVisibilityBasedAnimTickOption")
  515. PropertyRedirects=(OldName="SkinnedMeshComponent.MeshComponentUpdateFlag", NewName="VisibilityBasedAnimTickOption")
  516. ClassRedirects=(OldName="LevelStreamingKismet",NewName="/Script/Engine.LevelStreamingDynamic")
  517. PackageRedirects=(OldName="/Script/ImmediatePhysicsEditor", NewName="/Script/AnimGraph")
  518. PackageRedirects=(OldName="/Script/ImmediatePhysics", NewName="/Script/AnimGraphRuntime")
  519. ClassRedirects=(OldName="/Script/ImmediatePhysicsEditor.AnimGraphNode_RigidBody",NewName="/Script/AnimGraph.AnimGraphNode_RigidBody")
  520. ClassRedirects=(OldName="AnimGraphNode_Ragdoll",NewName="/Script/AnimGraph.AnimGraphNode_RigidBody")
  521. StructRedirects=(OldName="/Script/ImmediatePhysics.AnimNode_RigidBody",NewName="/Script/AnimGraphRuntime.AnimNode_RigidBody")
  522. StructRedirects=(OldName="AnimNode_Ragdoll",NewName="/Script/AnimGraphRuntime.AnimNode_RigidBody")
  523. EnumRedirects=(OldName="/Script/Engine.ESceneTextureId",ValueChanges=(("PPI_ShadingModel","PPI_ShadingModelColor"),("PPI_LightingModel","PPI_ShadingModelColor")))
  524. ClassRedirects=(OldName="LevelSequenceDirectorBlueprint",NewName="/Script/LevelSequence.LegacyLevelSequenceDirectorBlueprint")
  525. ClassRedirects=(OldName="LevelSequenceDirectorGeneratedClass",NewName="/Script/Engine.BlueprintGeneratedClass")
  526. FunctionRedirects=(OldName="UserWidget.PlayAnimationTo",NewName="UserWidget.PlayAnimationTimeRange")
  527. FunctionRedirects=(OldName="UserWidget.PlayAnimationAtTime",NewName="UserWidget.PlayAnimation")
  528. FunctionRedirects=(OldName="AddChildWrapBox", NewName="AddChildToWrapBox")
  529. PropertyRedirects=(OldName="GameplayStatics.CreatePlayer.bSpawnPawn",NewName="bSpawnPlayerController")
  530. FunctionRedirects=(OldName="SkeletalMeshComponent.SetAnimInstanceClass",NewName="SkeletalMeshComponent.SetAnimClass")
  531. FunctionRedirects=(OldName="SkeletalMeshComponent.K2_SetAnimInstanceClass",NewName="SkeletalMeshComponent.SetAnimClass")
  532. ClassRedirects=(OldName="/Script/GeometryCollectionCore.GeometryCollection",NewName="/Script/GeometryCollectionEngine.GeometryCollection")
  533. ClassRedirects=(OldName="/Script/GeometryCollectionCore.GeometryCollectionCache",NewName="/Script/GeometryCollectionEngine.GeometryCollectionCache")
  534. FunctionRedirects=(OldName="Controller.OnPossess",NewName="Controller.ReceivePossess")
  535. FunctionRedirects=(OldName="Controller.OnUnPossess",NewName="Controller.ReceiveUnPossess")
  536. FunctionRedirects=(OldName="PlayerController.ClientPlayForceFeedback",NewName="PlayerController.K2_ClientPlayForceFeedback")
  537. FunctionRedirects=(OldName="EditorUtilityWidget.OnDefaultActionClicked",NewName="EditorUtilityWidget.Run")
  538. FunctionRedirects=(OldName="SkeletalMeshComponent.GetSubInstanceByName",NewName="KismetSystemLibrary.GetSubInstanceByTag")
  539. StructRedirects=(OldName="/Script/AnimGraphRuntime.AnimNode_Root",NewName="/Script/Engine.AnimNode_Root")
  540. FunctionRedirects=(OldName="Widget.SetRenderAngle", NewName="Widget.SetRenderTransformAngle")
  541. ClassRedirects=(OldName="/Script/CoreUObject.MulticastDelegateProperty",NewName="/Script/CoreUObject.MulticastInlineDelegateProperty")
  542. ClassRedirects=(OldName="EditorAutomationActor",NewName="/Script/Blutility.EditorUtilityActor")
  543. ClassRedirects=(OldName="EditorAutomationActorComponent",NewName="/Script/Blutility.EditorUtilityActorComponent")
  544. ClassRedirects=(OldName="EditorAutomationObject",NewName="/Script/Blutility.EditorUtilityObject")
  545. ClassRedirects=(OldName="LandscapeBlueprintCustomBrush",NewName="/Script/LandscapeEditorUtilities.LandscapeBlueprintBrush")
  546. PropertyRedirects=(OldName="LandscapeLayerBrush.BPCustomBrush",NewName="LandscapeLayerBrush.BlueprintBrush")
  547. PropertyRedirects=(OldName="StructVariableDescription.bDontEditoOnInstance",NewName="bDontEditOnInstance")
  548. PropertyRedirects=(OldName="KismetMathLibrary.DegAtan2.A",NewName="Y")
  549. PropertyRedirects=(OldName="KismetMathLibrary.DegAtan2.B",NewName="X")
  550. PropertyRedirects=(OldName="KismetMathLibrary.Atan2.A",NewName="Y")
  551. PropertyRedirects=(OldName="KismetMathLibrary.Atan2.B",NewName="X")
  552. FunctionRedirects=(OldName="NativeUserListEntry.IsListItemSelected", NewName="UserListEntryLibrary.IsListItemSelected")
  553. FunctionRedirects=(OldName="NativeUserListEntry.IsListItemExpanded", NewName="UserListEntryLibrary.IsListItemExpanded")
  554. FunctionRedirects=(OldName="NativeUserListEntry.GetOwningListView", NewName="UserListEntryLibrary.GetOwningListView")
  555. FunctionRedirects=(OldName="UserObjectListEntry.GetListItemObject", NewName="UserObjectListEntryLibrary.GetListItemObject")
  556. PropertyRedirects=(OldName="NavDataConfig.NavigationDataClassName", NewName="NavDataConfig.NavDataClass")
  557. FunctionRedirects=(OldName="Actor.GetComponentsByClass", NewName="Actor.K2_GetComponentsByClass")
  558. PackageRedirects=(OldName="/Script/ClothingSystemRuntime",NewName="/Script/ClothingSystemRuntimeNv")
  559. ClassRedirects=(OldName="/Script/ClothingSystemRuntime.ClothingSimulationFactoryNv",NewName="/Script/ClothingSystemRuntimeNv.ClothingSimulationFactoryNv")
  560. ClassRedirects=(OldName="/Script/ClothingSystemRuntime.ClothingSimulationInteractorNv",NewName="/Script/ClothingSystemRuntimeNv.ClothingSimulationInteractorNv")
  561. FunctionRedirects=(OldName="ClothingSystemRuntime.ClothingSimulationInteractorNv.SetAnimDriveSpringStiffness",NewName="ClothingSystemRuntimeNv.ClothingSimulationInteractorNv.SetAnimDriveSpringStiffness")
  562. FunctionRedirects=(OldName="ClothingSystemRuntime.ClothingSimulationInteractorNv.SetAnimDriveDamperStiffness",NewName="ClothingSystemRuntimeNv.ClothingSimulationInteractorNv.SetAnimDriveDamperStiffness")
  563. FunctionRedirects=(OldName="ClothingSystemRuntime.ClothingSimulationInteractorNv.EnableGravityOverride",NewName="ClothingSystemRuntimeNv.ClothingSimulationInteractorNv.EnableGravityOverride")
  564. FunctionRedirects=(OldName="ClothingSystemRuntime.ClothingSimulationInteractorNv.DisableGravityOverride",NewName="ClothingSystemRuntimeNv.ClothingSimulationInteractorNv.DisableGravityOverride")
  565. ClassRedirects=(OldName="ClothingAsset",NewName="/Script/ClothingSystemRuntimeCommon.ClothingAssetCommon")
  566. StructRedirects=(OldName="ClothLODData",NewName="/Script/ClothingSystemRuntimeCommon.ClothLODDataCommon")
  567. StructRedirects=(OldName="ClothConfig",NewName="/Script/ClothingSystemRuntimeCommon.ClothConfig_Legacy")
  568. StructRedirects=(OldName="ClothParameterMask_PhysMesh",NewName="/Script/ClothingSystemRuntimeCommon.ClothParameterMask_Legacy")
  569. StructRedirects=(OldName="ClothConstraintSetup",NewName="/Script/ClothingSystemRuntimeCommon.ClothConstraintSetup_Legacy")
  570. EnumRedirects=(OldName="EClothingWindMethod",NewName="/Script/ClothingSystemRuntimeCommon.EClothingWindMethod_Legacy")
  571. ClassRedirects=(OldName="/Script/ClothingSystemRuntimeNv.ClothingAssetNv",NewName="/Script/ClothingSystemRuntimeCommon.ClothingAssetCommon")
  572. ClassRedirects=(OldName="/Script/ClothingSystemRuntimeNv.ClothLODDataNv",NewName="/Script/ClothingSystemRuntimeCommon.ClothLODDataCommon_Legacy")
  573. EnumRedirects=(OldName="MaskTarget_PhysMesh",NewName="/Script/ClothingSystemRuntimeCommon.EWeightMapTargetCommon",ValueChanges=(("MaskTarget_PhysMesh::MaxDistance","EWeightMapTargetCommon::MaxDistance"),("MaskTarget_PhysMesh::BackstopDistance","EWeightMapTargetCommon::BackstopDistance"),("MaskTarget_PhysMesh::BackstopRadius","EWeightMapTargetCommon::BackstopRadius"),("MaskTarget_PhysMesh::AnimDriveMultiplier","EWeightMapTargetCommon::AnimDriveStiffness")))
  574. ClassRedirects=(OldName="/Script/ClothingSystemRuntimeCommon.ClothLODDataCommon",NewName="/Script/ClothingSystemRuntimeCommon.ClothLODDataCommon_Legacy")
  575. ClassRedirects=(OldName="/Script/ClothingSystemRuntimeInterface.ClothPhysicalMeshDataBase",NewName="/Script/ClothingSystemRuntimeInterface.ClothPhysicalMeshDataBase_Legacy")
  576. ClassRedirects=(OldName="/Script/ClothingSystemRuntimeNv.ClothPhysicalMeshDataNv",NewName="/Script/ClothingSystemRuntimeNv.ClothPhysicalMeshDataNv_Legacy")
  577. EnumRedirects=(OldName="/Script/ClothingSystemRuntimeCommon.EWeightMapTargetCommon",ValueChanges=(("EWeightMapTargetCommon::AnimDriveMultiplier","EWeightMapTargetCommon::AnimDriveStiffness")))
  578. EnumRedirects=(OldName="EChaosWeightMapTarget",ValueChanges=(("EChaosWeightMapTarget::AnimDriveMultiplier","EChaosWeightMapTarget::AnimDriveStiffness")))
  579. FunctionRedirects=(OldName="SkeletalMeshComponent.GetSubInstanceByTag",NewName="SkeletalMeshComponent.GetLinkedAnimGraphInstanceByTag")
  580. FunctionRedirects=(OldName="SkeletalMeshComponent.GetSubInstancesByTag",NewName="SkeletalMeshComponent.GetLinkedAnimGraphInstancesByTag")
  581. PropertyRedirects=(OldName="SkeletalMeshComponent.GetLinkedAnimGraphInstancesByTag.OutSubInstances",NewName="OutLinkedInstances")
  582. FunctionRedirects=(OldName="SkeletalMeshComponent.SetSubInstanceClassByTag",NewName="SkeletalMeshComponent.LinkAnimGraphByTag")
  583. FunctionRedirects=(OldName="SkeletalMeshComponent.SetLayerOverlay",NewName="SkeletalMeshComponent.LinkAnimClassLayers")
  584. FunctionRedirects=(OldName="SkeletalMeshComponent.ClearLayerOverlay",NewName="SkeletalMeshComponent.UnlinkAnimClassLayers")
  585. FunctionRedirects=(OldName="SkeletalMeshComponent.GetLayerSubInstanceByGroup",NewName="SkeletalMeshComponent.GetLinkedAnimLayerInstanceByGroup")
  586. FunctionRedirects=(OldName="SkeletalMeshComponent.GetLayerSubInstanceByClass",NewName="SkeletalMeshComponent.GetLinkedAnimLayerInstanceByClass")
  587. FunctionRedirects=(OldName="AnimInstance.GetSubInstanceByTag",NewName="AnimInstance.GetLinkedAnimGraphInstanceByTag")
  588. FunctionRedirects=(OldName="AnimInstance.GetSubInstancesByTag",NewName="AnimInstance.GetLinkedAnimGraphInstancesByTag")
  589. PropertyRedirects=(OldName="AnimInstance.GetLinkedAnimGraphInstancesByTag.OutSubInstances",NewName="OutLinkedInstances")
  590. FunctionRedirects=(OldName="AnimInstance.SetSubInstanceClassByTag",NewName="AnimInstance.LinkAnimGraphByTag")
  591. FunctionRedirects=(OldName="AnimInstance.SetLayerOverlay",NewName="AnimInstance.LinkAnimClassLayers")
  592. FunctionRedirects=(OldName="AnimInstance.ClearLayerOverlay",NewName="AnimInstance.UnlinkAnimClassLayers")
  593. FunctionRedirects=(OldName="AnimInstance.GetLayerSubInstanceByGroup",NewName="AnimInstance.GetLinkedAnimLayerInstanceByGroup")
  594. FunctionRedirects=(OldName="AnimInstance.GetLayerSubInstanceByClass",NewName="AnimInstance.GetLinkedAnimLayerInstanceByClass")
  595. StructRedirects=(OldName="AnimNode_SubInstance",NewName="/Script/Engine.AnimNode_LinkedAnimGraph")
  596. StructRedirects=(OldName="AnimNode_SubInput",NewName="/Script/Engine.AnimNode_LinkedInputPose")
  597. StructRedirects=(OldName="AnimNode_Layer",NewName="/Script/Engine.AnimNode_LinkedAnimLayer")
  598. ClassRedirects=(OldName="/Script/AnimGraph.AnimGraphNode_SubInstanceBase",NewName="/Script/AnimGraph.AnimGraphNode_LinkedAnimGraphBase")
  599. ClassRedirects=(OldName="/Script/AnimGraph.AnimGraphNode_SubInstance",NewName="/Script/AnimGraph.AnimGraphNode_LinkedAnimGraph")
  600. ClassRedirects=(OldName="/Script/AnimGraph.AnimGraphNode_SubInput",NewName="/Script/AnimGraph.AnimGraphNode_LinkedInputPose")
  601. ClassRedirects=(OldName="/Script/AnimGraph.AnimGraphNode_Layer",NewName="/Script/AnimGraph.AnimGraphNode_LinkedAnimLayer")
  602. PropertyRedirects=(OldName="PersonaPreviewSceneDescription.SubInstanceTag",NewName="LinkedAnimGraphTag")
  603. EnumRedirects=(OldName="/Script/Engine.EPreviewAnimationBlueprintApplicationMethod",NewName="/Script/Engine.EPreviewAnimationBlueprintApplicationMethod",ValueChanges=(("OverlayLayer", "LinkedLayers"), ("SubInstance", "LinkedAnimGraph"))
  604. PropertyRedirects=(OldName="AnimClassData.SubInstanceNodeProperties",NewName="LinkedAnimGraphNodeProperties")
  605. PropertyRedirects=(OldName="AnimClassData.LayerNodeProperties",NewName="LinkedAnimLayerNodeProperties")
  606. ClassRedirects=(OldName="/Script/MeshEditingToolset.BaseBrushTool",NewName="/Script/InteractiveToolsFramework.BaseBrushTool")
  607. ClassRedirects=(OldName="/Script/MeshEditingToolset.BrushBaseProperties",NewName="/Script/InteractiveToolsFramework.BrushBaseProperties")
  608. EnumRedirects=(OldName="ECurveBlendOption",ValueChanges=(("ECurveBlendOption::MaxWeight", "ECurveBlendOption::Override"))
  609. ClassRedirects=(OldName="/Script/OnlineBlueprintSupport.K2Node_LatentOnlineCall", NewName="/Script/BlueprintGraph.K2Node_AsyncAction")
  610. ClassRedirects=(OldName="/Script/Kismet.K2Node_AsyncAction", NewName="/Script/BlueprintGraph.K2Node_AsyncAction")
  611. ClassRedirects=(OldName="MovieSceneSpawnTrack",NewName="/Script/MovieScene.MovieSceneSpawnTrack")
  612. ClassRedirects=(OldName="MovieSceneSpawnSection",NewName="/Script/MovieScene.MovieSceneSpawnSection")
  613. ClassRedirects=(OldName="MovieSceneBoolSection",NewName="/Script/MovieScene.MovieSceneBoolSection")
  614. ClassRedirects=(OldName="PhysicalMaterialPropertyBase",NewName="/Script/PhysicsCore.PhysicalMaterialPropertyBase")
  615. ClassRedirects=(OldName="PhysicalMaterial",NewName="/Script/PhysicsCore.PhysicalMaterial")
  616. ClassRedirects=(OldName="ChaosPhysicalMaterial",NewName="/Script/PhysicsCore.ChaosPhysicalMaterial")
  617. ClassRedirects=(OldName="SubmixEffectReverbFastPreset",NewName="/Script/AudioMixer.SubmixEffectReverbPreset")
  618. EnumRedirects=(OldName="EPhysicalSurface",NewName="/Script/PhysicsCore.EPhysicalSurface")
  619. EnumRedirects=(OldName="ECollisionTraceFlag",NewName="/Script/PhysicsCore.ECollisionTraceFlag")
  620. EnumRedirects=(OldName="EPhysicsType",NewName="/Script/PhysicsCore.EPhysicsType",ValueChanges=(("PhysType_Fixed", "PhysType_Kinematic"), ("PhysType_Unfixed", "PhysType_Simulated")))
  621. EnumRedirects=(OldName="EBodyCollisionResponse",NewName="/Script/PhysicsCore.EBodyCollisionResponse")
  622. EnumRedirects=(OldName="EFrictionCombineMode",NewName="/Script/PhysicsCore.EFrictionCombineMode")
  623. EnumRedirects=(OldName="ELinearConstraintMotion",NewName="/Script/PhysicsCore.ELinearConstraintMotion")
  624. EnumRedirects=(OldName="ERadialImpulseFalloff",NewName="/Script/PhysicsCore.ERadialImpulseFalloff")
  625. EnumRedirects=(OldName="ESleepFamily",NewName="/Script/PhysicsCore.ESleepFamily")
  626. EnumRedirects=(OldName="EAngularConstraintMotion",NewName="/Script/PhysicsCore.EAngularConstraintMotion")
  627. EnumRedirects=(OldName="EConstraintFrame",NewName="/Script/PhysicsCore.EConstraintFrame")
  628. StructRedirects=(OldName="/Script/AssetRegistry.ARFilter",NewName="/Script/CoreUObject.ARFilter")
  629. StructRedirects=(OldName="/Script/AssetRegistry.AssetBundleData",NewName="/Script/CoreUObject.AssetBundleData")
  630. StructRedirects=(OldName="/Script/AssetRegistry.AssetBundleEntry",NewName="/Script/CoreUObject.AssetBundleEntry")
  631. StructRedirects=(OldName="/Script/AssetRegistry.AssetData",NewName="/Script/CoreUObject.AssetData")
  632. StructRedirects=(OldName="SubmixEffectReverbFastSettings",NewName="/Script/AudioMixer.SubmixEffectReverbSettings")
  633. FunctionRedirects=(OldName="KismetInputLibrary.Key_IsFloatAxis",NewName="KismetInputLibrary.Key_IsAxis1D")
  634. FunctionRedirects=(OldName="KismetMathLibrary.Conv_VectorToQuaterion",NewName="KismetMathLibrary.Conv_VectorToQuaternion")
  635. FunctionRedirects=(OldName="KismetMathLibrary.Conv_Vector4ToQuaterion",NewName="KismetMathLibrary.Conv_Vector4ToQuaternion")
  636. FunctionRedirects=(OldName="PinComponentToARPin",NewName="/Script/AugmentedReality.ARBlueprintLibrary.PinComponentToARPin")
  637. FunctionRedirects=(OldName="IsWMRAnchorStoreReady",NewName="/Script/AugmentedReality.ARBlueprintLibrary.IsARPinLocalStoreReady")
  638. FunctionRedirects=(OldName="RemoveAllARPinsFromWMRAnchorStore",NewName="/Script/AugmentedReality.ARBlueprintLibrary.RemoveAllARPinsFromLocalStore")
  639. FunctionRedirects=(OldName="AzureSpatialAnchorsLibrary.CreateCloudAnchor",NewName="AzureSpatialAnchorsLibrary.ConstructCloudAnchor")
  640. PackageRedirects=(OldName="/Script/FieldSystemCore",NewName="/Script/Chaos")
  641. PackageRedirects=(OldName="/Script/GeometryCollectionSimulationCore",NewName="/Script/Chaos")
  642. ClassRedirects=(OldName="/VirtualCamera/VirtualCameraGameMode.VirtualCameraGameMode",NewName="/VirtualCamera/Deprecated/Deprecated_VirtualCameraGameMode.Deprecated_VirtualCameraGameMode")
  643. ClassRedirects=(OldName="/VirtualCamera/VirtualCameraPawn.VirtualCameraPawn",NewName="/VirtualCamera/Deprecated/Deprecated_VirtualCameraPawn.Deprecated_VirtualCameraPawn")
  644. ClassRedirects=(OldName="/VirtualCamera/VirtualCameraPlayerController.VirtualCameraPlayerController",NewName="/VirtualCamera/Deprecated/Deprecated_VirtualCameraPlayerController.Deprecated_VirtualCameraPlayerController")
  645. ClassRedirects=(OldName="/VirtualCamera/Widgets/VirtualCameraJoysticks.VirtualCameraJoysticks",NewName="/VirtualCamera/Deprecated/Widgets/Deprecated_VirtualCameraJoysticks.Deprecated_VirtualCameraJoysticks")
  646. PackageRedirects=(OldName="/VirtualCamera/Widgets/SequenceButton",NewName="/VirtualCamera/Deprecated/Widgets/SequenceButton")
  647. PackageRedirects=(OldName="/VirtualCamera/Widgets/SequenceMenu",NewName="/VirtualCamera/Deprecated/Widgets/SequenceMenu")
  648. PackageRedirects=(OldName="/VirtualCamera/Textures/VPLeftJoystick",NewName="/VirtualCamera/Deprecated/Textures/VPLeftJoystick")
  649. PackageRedirects=(OldName="/VirtualCamera/Textures/VPLeftJoystickBG",NewName="/VirtualCamera/Deprecated/Textures/VPLeftJoystickBG")
  650. PackageRedirects=(OldName="/VirtualCamera/Textures/VPRightJoystick",NewName="/VirtualCamera/Deprecated/Textures/VPRightJoystick")
  651. PackageRedirects=(OldName="/VirtualCamera/Textures/VPRightJoystickBG",NewName="/VirtualCamera/Deprecated/Textures/VPRightJoystickBG")
  652. PackageRedirects=(OldName="/VCamCore/Assets/VCam_EmptyVisibleUMG",NewName="/VirtualCamera/VCamCore/Assets/VCam_EmptyVisibleUMG")
  653. PackageRedirects=(OldName="/Game/VirtualCamera/Blueprints/Modifiers/SinModifier", NewName="/VirtualCamera/VCamCore/Blueprints/Modifiers/SinModifier")
  654. PackageRedirects=(OldName="/Game/VirtualCamera/Blueprints/Modifiers/FollowModifier", NewName="/VirtualCamera/VCamCore/Blueprints/Modifiers/FollowModifier")
  655. PackageRedirects=(OldName="/Game/VirtualCamera/Blueprints/Modifiers/GamepadModifier", NewName="/VirtualCamera/VCamCore/Blueprints/Modifiers/GamepadModifier")
  656. PackageRedirects=(OldName="/Game/VirtualCamera/Blueprints/TestAJA", NewName="/VirtualCamera/VCamCore/Blueprints/TestAJA")
  657. PackageRedirects=(OldName="/Game/VirtualCamera/Assets/TestComposureMaterial_AOverB", NewName="/VirtualCamera/VCamCore/Assets/TestComposureMaterial_AOverB")
  658. PackageRedirects=(OldName="/Game/VirtualCamera/Assets/TestComposureRenderTargetOutput", NewName="/VirtualCamera/VCamCore/Assets/TestComposureRenderTargetOutput")
  659. PackageRedirects=(OldName="/Game/VirtualCamera/Assets/VCamSample_AOverBComposureMaterial", NewName="/VirtualCamera/VCamCore/Assets/VCamSample_AOverBComposureMaterial")
  660. PackageRedirects=(OldName="/Game/VirtualCamera/Assets/VCamSample_ComposureRenderTargetOutput", NewName="/VirtualCamera/VCamCore/Assets/VCamSample_ComposureRenderTargetOutput")
  661. EnumRedirects=(OldName="EOscillatorWaveform",NewName="/Script/GameplayCameras.EOscillatorWaveform")
  662. EnumRedirects=(OldName="EInitialOscillatorOffset",NewName="/Script/GameplayCameras.EInitialOscillatorOffset")
  663. StructRedirects=(OldName="FOscillator",NewName="/Script/GameplayCameras.FOscillator")
  664. StructRedirects=(OldName="ROscillator",NewName="/Script/GameplayCameras.ROscillator")
  665. StructRedirects=(OldName="VOscillator",NewName="/Script/GameplayCameras.VOscillator")
  666. EnumRedirects=(OldName="ECameraAnimPlaySpace",NewName="/Script/Engine.ECameraShakePlaySpace")
  667. FunctionRedirects=(OldName="PlayerController.ClientPlayCameraShake",NewName="ClientStartCameraShake")
  668. FunctionRedirects=(OldName="PlayerController.ClientPlayCameraShakeFromSource",NewName="ClientStartCameraShakeFromSource")
  669. FunctionRedirects=(OldName="PlayerCameraManager.PlayCameraShake",NewName="StartCameraShake")
  670. FunctionRedirects=(OldName="PlayerCameraManager.PlayCameraShakeFromSource",NewName="StartCameraShakeFromSource")
  671. FunctionRedirects=(OldName="PlayerCameraManager.StartMatineeCameraShake",NewName="StartCameraShake")
  672. FunctionRedirects=(OldName="PlayerCameraManager.StartMatineeCameraShakeFromSource",NewName="StartCameraShakeFromSource")
  673. FunctionRedirects=(OldName="CameraShakeSourceComponent.Play",NewName="Start")
  674. FunctionRedirects=(OldName="CameraShakeSourceComponent.PlayCameraShake",NewName="StartCameraShake")
  675. PropertyRedirects=(OldName="CameraShakeSourceComponent.bAutoPlay",NewName="bAutoStart")
  676. PropertyRedirects=(OldName="FieldSystemComponent.IsChaosField",NewName="bIsChaosField")
  677. PropertyRedirects=(OldName="FieldSystemComponent.IsGlobalField",NewName="bIsWorldField")
  678. EnumRedirects=(OldName="TextureCompressionSettings",ValueChanges=(("TC_ReflectionCapture","TC_EncodedReflectionCapture")))
  679. EnumRedirects=(OldName="EEnvQueryTrace",ValueChanges=(("Geometry","GeometryByChannel")))
  680. EnumRedirects=(OldName="/Script/Engine.ENetworkFailure",NewName="/Script/NetCore.ENetworkFailure")
  681. ClassRedirects=(OldName="WaterMeshActor",NewName="/Script/Water.WaterZone")
  682. StructRedirects=(OldName="/Script/ControlRig.RigUnit_SpringInterpQuaternion",NewName="/Script/ControlRig.RigUnit_SpringInterpQuaternionV2")
  683. ClassRedirects=(OldName="RigVMStructNode",NewName="/Script/RigVMDeveloper.RigVMUnitNode")
  684. EnumRedirects=(OldName="/Script/Slate.ETextTransformPolicy", NewName="/Script/SlateCore.ETextTransformPolicy")
  685. PropertyRedirects=(OldName="BlendProfile.BlendProfileMode", NewName="Mode")
  686. PropertyRedirects=(OldName="RigVMInjectionInfo.StructNode", NewName="UnitNode")
  687. ClassRedirects=(OldName="/Script/UnrealEd.ProjectPackagingSettings", NewName="/Script/DeveloperToolSettings.ProjectPackagingSettings")
  688. ClassRedirects=(OldName="/Script/UnrealEd.CookerSettings", NewName="/Script/DeveloperToolSettings.CookerSettings")
  689. ClassRedirects=(OldName="/Script/MeshDescription.MeshDescriptionBulkDataWrapper",NewName="/Script/Engine.StaticMeshDescriptionBulkData")
  690. StructRedirects=(OldName="/Script/Engine.FilePath",NewName="/Script/CoreUObject.FilePath")
  691. StructRedirects=(OldName="/Script/Engine.DirectoryPath",NewName="/Script/CoreUObject.DirectoryPath")
  692. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetNumFrames.AnimationSequence",NewName="AnimationSequenceBase")
  693. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetNumKeys.AnimationSequence",NewName="AnimationSequenceBase")
  694. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetAnimationTrackNames.AnimationSequence",NewName="AnimationSequenceBase")
  695. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetRawTrackPositionData.AnimationSequence",NewName="AnimationSequenceBase")
  696. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetRawTrackRotationData.AnimationSequence",NewName="AnimationSequenceBase")
  697. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetRawTrackScaleData.AnimationSequence",NewName="AnimationSequenceBase")
  698. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetRawTrackData.AnimationSequence",NewName="AnimationSequenceBase")
  699. PropertyRedirects=(OldName="AnimationBlueprintLibrary.IsValidRawAnimationTrackName.AnimationSequence",NewName="AnimationSequenceBase")
  700. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetAnimationNotifyEvents.AnimationSequence",NewName="AnimationSequenceBase")
  701. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetAnimationNotifyEventNames.AnimationSequence",NewName="AnimationSequenceBase")
  702. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddAnimationNotifyEvent.AnimationSequence",NewName="AnimationSequenceBase")
  703. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddAnimationNotifyStateEvent.AnimationSequence",NewName="AnimationSequenceBase")
  704. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddAnimationNotifyEventObject.AnimationSequence",NewName="AnimationSequenceBase")
  705. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddAnimationNotifyStateEventObject.AnimationSequence",NewName="AnimationSequenceBase")
  706. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveAnimationNotifyEventsByName.AnimationSequence",NewName="AnimationSequenceBase")
  707. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveAnimationNotifyEventsByTrack.AnimationSequence",NewName="AnimationSequenceBase")
  708. PropertyRedirects=(OldName="AnimationBlueprintLibrary.ReplaceAnimNotifyStates.AnimationSequence",NewName="AnimationSequenceBase")
  709. PropertyRedirects=(OldName="AnimationBlueprintLibrary.ReplaceAnimNotifies.AnimationSequence",NewName="AnimationSequenceBase")
  710. PropertyRedirects=(OldName="AnimationBlueprintLibrary.CopyAnimNotifiesFromSequence.SrcAnimSequence",NewName="SourceAnimationSequenceBase")
  711. PropertyRedirects=(OldName="AnimationBlueprintLibrary.CopyAnimNotifiesFromSequence.DestAnimSequence",NewName="DestinationAnimationSequenceBase")
  712. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetAnimationNotifyTrackNames.AnimationSequence",NewName="AnimationSequenceBase")
  713. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddAnimationNotifyTrack.AnimationSequence",NewName="AnimationSequenceBase")
  714. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveAnimationNotifyTrack.AnimationSequence",NewName="AnimationSequenceBase")
  715. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveAllAnimationNotifyTracks.AnimationSequence",NewName="AnimationSequenceBase")
  716. PropertyRedirects=(OldName="AnimationBlueprintLibrary.IsValidAnimNotifyTrackName.AnimationSequence",NewName="AnimationSequenceBase")
  717. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetAnimationNotifyEventsForTrack.AnimationSequence",NewName="AnimationSequenceBase")
  718. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddMetaData.AnimationSequence",NewName="AnimationAsset")
  719. PropertyRedirects=(OldName="AnimationBlueprintLibrary.AddMetaDataObject.AnimationSequence",NewName="AnimationAsset")
  720. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveAllMetaData.AnimationSequence",NewName="AnimationAsset")
  721. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveMetaData.AnimationSequence",NewName="AnimationAsset")
  722. PropertyRedirects=(OldName="AnimationBlueprintLibrary.RemoveMetaDataOfClass.AnimationSequence",NewName="AnimationAsset")
  723. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetMetaData.AnimationSequence",NewName="AnimationAsset")
  724. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetMetaDataOfClass.AnimationSequence",NewName="AnimationAsset")
  725. PropertyRedirects=(OldName="AnimationBlueprintLibrary.ContainsMetaDataOfClass.AnimationSequence",NewName="AnimationAsset")
  726. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetBonePoseForTime.AnimationSequence",NewName="AnimationSequenceBase")
  727. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetBonePoseForFrame.AnimationSequence",NewName="AnimationSequenceBase")
  728. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetBonePosesForTime.AnimationSequence",NewName="AnimationSequenceBase")
  729. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetBonePosesForFrame.AnimationSequence",NewName="AnimationSequenceBase")
  730. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetSequenceLength.AnimationSequence",NewName="AnimationSequenceBase")
  731. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetRateScale.AnimationSequence",NewName="AnimationSequenceBase")
  732. PropertyRedirects=(OldName="AnimationBlueprintLibrary.SetRateScale.AnimationSequence",NewName="AnimationSequenceBase")
  733. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetFrameAtTime.AnimationSequence",NewName="AnimationSequenceBase")
  734. PropertyRedirects=(OldName="AnimationBlueprintLibrary.GetTimeAtFrame.AnimationSequence",NewName="AnimationSequenceBase")
  735. PropertyRedirects=(OldName="AnimationBlueprintLibrary.IsValidTime.AnimationSequence",NewName="AnimationSequenceBase")
  736. PropertyRedirects=(OldName="AnimationBlueprintLibrary.FindBonePathToRoot.AnimationSequence",NewName="AnimationSequenceBase")
  737. PropertyRedirects=(OldName="AssetRegistry.ScanPathsSynchronous.bIgnoreBlackListScanFilters",NewName="bIgnoreDenyListScanFilters")
  738. PropertyRedirects=(OldName="LandscapeComponent.LayerWhitelist", NewName="LayerAllowList")
  739. EnumRedirects=(OldName="ELandscapeLayerPaintingRestriction",ValueChanges=(("UseComponentWhitelist","UseComponentAllowList")) )
  740. PropertyRedirects=(OldName="DataLayer.bIsDynamicallyLoaded", NewName="DataLayer.bIsRuntime")
  741. PropertyRedirects=(OldName="DataLayer.InitialState", NewName="DataLayer.InitialRuntimeState")
  742. PropertyRedirects=(OldName="DataLayerSubsystem.OnDataLayerStateChanged", NewName="DataLayerSubsystem.OnDataLayerRuntimeStateChanged")
  743. FunctionRedirects=(OldName="WorldDataLayers.OnDataLayerStateChanged", NewName="WorldDataLayers.OnDataLayerRuntimeStateChanged")
  744. ClassRedirects=(OldName="/Script/Engine.BlendSpaceBase",NewName="/Script/Engine.BlendSpace")
  745. FunctionRedirects=(OldName="Image.SetBrushSize",NewName="SetDesiredSizeOverride")
  746. ClassRedirects=(OldName="/Script/PropertyAccess.AnimBlueprintClassSubsystem_PropertyAccess",NewName="/Script/Engine.AnimBlueprintClassSubsystem_PropertyAccess")
  747. PackageRedirects=(OldName="/Script/PropertyAccess", Removed=true)
  748. StructRedirects=(OldName="AnimInstanceSubsystemData",NewName="/Script/Engine.AnimSubsystemInstance")
  749. ClassRedirects=(OldName="/Script/AnimationModifiers.AnimationBlueprintLibrary",NewName="/Script/AnimationBlueprintLibrary.AnimationBlueprintLibrary")
  750. PropertyRedirects=(OldName="GeometryCollectionComponent.Simulating", NewName="SimulatePhysics")
  751. PropertyRedirects=(OldName="GeometryCollectionComponent.ApplyExternalStrain.Index", NewName="GeometryCollectionComponent.ApplyExternalStrain.ItemIndex")
  752. PropertyRedirects=(OldName="GeometryCollectionComponent.CrumbleCluster.Index", NewName="GeometryCollectionComponent.CrumbleCluster.ItemIndex")
  753. PropertyRedirects=(OldName="ControlRigComponent.OnPreUpdateDelegate", NewName="OnPreForwardsSolveDelegate")
  754. PropertyRedirects=(OldName="ControlRigComponent.OnPostUpdateDelegate", NewName="OnPostForwardsSolveDelegate")
  755. PropertyRedirects=(OldName="AnimNode_Mirror.BlendTimeOnMirrorStateChange",NewName="AnimNode_Mirror.BlendTime")
  756. PropertyRedirects=(OldName="AnimNode_Mirror.bResetChildOnMirrorStateChange",NewName="AnimNode_Mirror.bResetChild")
  757. PropertyRedirects=(OldName="PlayerState.Ping",NewName="CompressedPing")
  758. ClassRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneVectorSection",NewName="/Script/MovieSceneTracks.MovieSceneFloatVectorSection")
  759. ClassRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneVectorTrack",NewName="/Script/MovieSceneTracks.MovieSceneFloatVectorTrack")
  760. ClassRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneVectorTrackExtensions",NewName="/Script/SequencerScripting.MovieSceneFloatVectorTrackExtensions")
  761. StructRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneVectorKeyStructBase",NewName="/Script/MovieSceneTracks.MovieSceneFloatVectorKeyStructBase")
  762. StructRedirects=(OldName="/Script/MovieSceneTracks.MovieSceneVectorKeyStruct",NewName="/Script/MovieSceneTracks.MovieSceneVector3fKeyStruct")
  763. StructRedirects=(OldName="AudioComponentParam", NewName="/Script/AudioExtensions.AudioParameter")
  764. PropertyRedirects=(OldName="AudioParameter.SoundWaveParam", NewName="AudioParameter.ObjectParam")
  765. FunctionRedirects=(OldName="AudioComponent.SetBoolParameter", NewName="AudioParameterControllerInterface.SetBoolParameter")
  766. FunctionRedirects=(OldName="AudioComponent.SetFloatParameter", NewName="AudioParameterControllerInterface.SetFloatParameter")
  767. FunctionRedirects=(OldName="AudioComponent.SetIntParameter", NewName="AudioParameterControllerInterface.SetIntParameter")
  768. PropertyRedirects=(OldName="AudioComponent.InstanceParameters", NewName="AudioComponent.DefaultParameters")
  769. FunctionRedirects=(OldName="SoundGeneratorParameterInterface.SetBoolParameter", NewName="AudioParameterControllerInterface.SetBoolParameter")
  770. FunctionRedirects=(OldName="SoundGeneratorParameterInterface.SetFloatParameter", NewName="AudioParameterControllerInterface.SetFloatParameter")
  771. FunctionRedirects=(OldName="SoundGeneratorParameterInterface.SetIntParameter", NewName="AudioParameterControllerInterface.SetIntParameter")
  772. ClassRedirects=(OldName="/Script/AudioExtensions.AudioParameterInterface", NewName="/Script/AudioExtensions.AudioParameterControllerInterface")
  773. EnumRedirects=(OldName="ESoundwaveSampleRateSettings",ValueChanges=(("ESoundwaveSampleRateSettings::MatchDevice","ESoundwaveSampleRateSettings::Max")) )
  774. PropertyRedirects=(OldName="GameplayCueNotify_SoundInfo.SoundCue",NewName="GameplayCueNotify_SoundInfo.Sound")
  775. ClassRedirects=(OldName="/Script/LiveLink.LiveLinkRetargetAsset", NewName="/Script/LiveLinkAnimationCore.LiveLinkRetargetAsset")
  776. ClassRedirects=(OldName="/Script/LiveLink.LiveLinkRemapAsset", NewName="/Script/LiveLinkAnimationCore.LiveLinkRemapAsset")
  777. ClassRedirects=(OldName="/Script/LiveLink.LiveLinkInstance", NewName="/Script/LiveLinkAnimationCore.LiveLinkInstance")
  778. StructRedirects=(OldName="/Script/LiveLink.AnimNode_LiveLinkPose", NewName="/Script/LiveLinkAnimationCore.AnimNode_LiveLinkPose")
  779. StructRedirects=(OldName="/Script/LiveLink.LiveLinkInstanceProxy", NewName="/Script/LiveLinkAnimationCore.LiveLinkInstanceProxy")
  780. EnumRedirects=(OldName="ELevelInstanceRuntimeBehavior",ValueChanges=(("Embedded","Partitioned")) )
  781. PackageRedirects=(OldName="/Engine/VT/LightmapVirtualTextureSpace_0_Compressed",Removed=True)
  782. ClassRedirects=(OldName="ComputeGraph", NewName="/Script/ComputeFramework.ComputeGraph")
  783. ClassRedirects=(OldName="ComputeGraphComponent", NewName="/Script/ComputeFramework.ComputeGraphComponent")
  784. ClassRedirects=(OldName="ComputeKernel", NewName="/Script/ComputeFramework.ComputeKernel")
  785. ClassRedirects=(OldName="ComputeKernelFromText", NewName="/Script/ComputeFramework.ComputeKernelFromText")
  786. ClassRedirects=(OldName="ComputeKernelSource", NewName="/Script/ComputeFramework.ComputeKernelSource")
  787. ClassRedirects=(OldName="PackedLevelInstance", NewName="/Script/Engine.PackedLevelActor")
  788. ClassRedirects=(OldName="EditorStyleSettings",NewName="/Script/UnrealEd.EditorStyleSettings")
  789. EnumRedirects=(OldName="EAssetEditorOpenLocation",NewName="/Script/UnrealEd.EAssetEditorOpenLocation")
  790. EnumRedirects=(OldName="ELogCategoryColorizationMode",NewName="/Script/OutputLog.ELogCategoryColorizationMode")
  791. EnumRedirects=(OldName="/Script/UnrealEd.ELogCategoryColorizationMode",NewName="/Script/OutputLog.ELogCategoryColorizationMode")
  792. PropertyRedirects=(OldName="PostProcessSettings.LocalExposureContrastReduction", NewName="PostProcessSettings.LocalExposureContrastScale")
  793. PropertyRedirects=(OldName="PostProcessSettings.bOverride_LocalExposureContrastReduction", NewName="PostProcessSettings.bOverride_LocalExposureContrastScale")
  794. FunctionRedirects=(OldName="KismetStringLibrary.Conv_FloatToString", NewName="Conv_DoubleToString")
  795. PropertyRedirects=(OldName="KismetStringLibrary.Conv_DoubleToString.InFloat", NewName="Conv_DoubleToString.InDouble")
  796. FunctionRedirects=(OldName="KismetStringLibrary.Conv_StringToFloat", NewName="Conv_StringToDouble")
  797. FunctionRedirects=(OldName="KismetStringLibrary.BuildString_Float", NewName="BuildString_Double")
  798. PropertyRedirects=(OldName="KismetStringLibrary.BuildString_Double.InFloat", NewName="BuildString_Double.InDouble")
  799. FunctionRedirects=(OldName="KismetMathLibrary.MakeVector_NetQuantize", NewName="MakeVector")
  800. FunctionRedirects=(OldName="KismetMathLibrary.MakeVector_NetQuantize10", NewName="MakeVector")
  801. FunctionRedirects=(OldName="KismetMathLibrary.MakeVector_NetQuantize100", NewName="MakeVector")
  802. FunctionRedirects=(OldName="KismetMathLibrary.MakeVector_NetQuantizeNormal", NewName="MakeVector")
  803. FunctionRedirects=(OldName="KismetMathLibrary.BreakVector_NetQuantize", NewName="BreakVector")
  804. FunctionRedirects=(OldName="KismetMathLibrary.BreakVector_NetQuantize10", NewName="BreakVector")
  805. FunctionRedirects=(OldName="KismetMathLibrary.BreakVector_NetQuantize100", NewName="BreakVector")
  806. FunctionRedirects=(OldName="KismetMathLibrary.BreakVector_NetQuantizeNormal", NewName="BreakVector")
  807. FunctionRedirects=(OldName="KismetMathLibrary.Multiply_FloatFloat", NewName="Multiply_DoubleDouble")
  808. FunctionRedirects=(OldName="KismetMathLibrary.Divide_FloatFloat", NewName="Divide_DoubleDouble")
  809. FunctionRedirects=(OldName="KismetMathLibrary.Add_FloatFloat", NewName="Add_DoubleDouble")
  810. FunctionRedirects=(OldName="KismetMathLibrary.Subtract_FloatFloat", NewName="Subtract_DoubleDouble")
  811. FunctionRedirects=(OldName="KismetMathLibrary.Less_FloatFloat", NewName="Less_DoubleDouble")
  812. FunctionRedirects=(OldName="KismetMathLibrary.Greater_FloatFloat", NewName="Greater_DoubleDouble")
  813. FunctionRedirects=(OldName="KismetMathLibrary.LessEqual_FloatFloat", NewName="LessEqual_DoubleDouble")
  814. FunctionRedirects=(OldName="KismetMathLibrary.GreaterEqual_FloatFloat", NewName="GreaterEqual_DoubleDouble")
  815. FunctionRedirects=(OldName="KismetMathLibrary.EqualEqual_FloatFloat", NewName="EqualEqual_DoubleDouble")
  816. FunctionRedirects=(OldName="KismetMathLibrary.NotEqual_FloatFloat", NewName="NotEqual_DoubleDouble")
  817. StructRedirects=(OldName="/Script/Engine.ActorComponentDuplicatedObjectData", NewName="/Script/Engine.DataCacheDuplicatedObjectData")
  818. ClassRedirects=(OldName="RigVMTemplateNode", NewName="/Script/RigVMDeveloper.RigVMUnitNode")
  819. StructRedirects=(OldName="/Script/SequencerScripting.SequencerBindingProxy", NewName="/Script/MovieScene.MovieSceneBindingProxy")
  820. FunctionRedirects=(OldName="KismetSystemLibrary.MakeLiteralFloat", NewName="MakeLiteralDouble")
  821. FunctionRedirects=(OldName="KismetTextLibrary.Conv_FloatToText", NewName="Conv_DoubleToText")
  822. PropertyRedirects=(OldName="KismetTextLibrary.Conv_DoubleToText.InDouble", NewName="Conv_DoubleToText.Value")
  823. PropertyRedirects=(OldName="AITask_MoveTo.AIMoveTo.bUseContinuosGoalTracking", NewName="AITask_MoveTo.AIMoveTo.bUseContinuousGoalTracking")
  824. PropertyRedirects=(OldName="RectLightComponent.SetSourceTexture.bNewValue", NewName="NewValue")
  825. PropertyRedirects=(OldName="RectLightComponent.SetSourceWidth.bNewValue", NewName="NewValue")
  826. PropertyRedirects=(OldName="RecastNavMeshTileGenerationDebug.bHeightfieldSolidPostRadiusFiltering", NewName="bHeightfieldSolidPostInclusionBoundsFiltering")
  827. PropertyRedirects=(OldName="SimSpaceSettings.MasterAlpha", NewName="SimSpaceSettings.WorldAlpha")
  828. PropertyRedirects=(OldName="SkinnedMeshComponent.MasterPoseComponent", NewName="LeaderPoseComponent")
  829. PropertyRedirects=(OldName="SkinnedMeshComponent.bUseBoundsFromMasterPoseComponent", NewName="bUseBoundsFromLeaderPoseComponent")
  830. PropertyRedirects=(OldName="SkinnedMeshComponent.bIgnoreMasterPoseComponentLOD", NewName="bIgnoreLeaderPoseComponentLOD")
  831. FunctionRedirects=(OldName="SkinnedMeshComponent.SetMasterPoseComponent", NewName="SetLeaderPoseComponent")
  832. PropertyRedirects=(OldName="SkinnedMeshComponent.SetLeaderPoseComponent.NewMasterBoneComponent",NewName="SkinnedMeshComponent.SetLeaderPoseComponent.NewLeaderBoneComponent")
  833. PropertyRedirects=(OldName="SkeletalMeshComponent.bPropagateCurvesToSlaves", NewName="bPropagateCurvesToFollowers")
  834. FunctionRedirects=(OldName="SkeletalMeshComponent.BindClothToMasterPoseComponent", NewName="BindClothToLeaderPoseComponent")
  835. FunctionRedirects=(OldName="SkeletalMeshComponent.UnbindClothFromMasterPoseComponent", NewName="UnbindClothFromLeaderPoseComponent")
  836. FunctionRedirects=(OldName="SkinnedMeshComponent.SetSkeletalMesh", NewName="SetSkinnedAssetAndUpdate")
  837. PropertyRedirects=(OldName="AGameplayAbilityWorldReticle.MasterPC", NewName="PrimaryPC")
  838. PropertyRedirects=(OldName="AGameplayAbilityTargetActor.MasterPC", NewName="PrimaryPC")
  839. ClassRedirects=(OldName="CameraShake",NewName="/Script/GameplayCameras.LegacyCameraShake")
  840. ClassRedirects=(OldName="MatineeCameraShake",NewName="/Script/GameplayCameras.LegacyCameraShake")
  841. ClassRedirects=(OldName="MatineeCameraShakePattern",NewName="/Script/GameplayCameras.LegacyCameraShakePattern")
  842. ClassRedirects=(OldName="MatineeCameraShakeFunctionLibrary", NewName="/Script/GameplayCameras.LegacyCameraShakeFunctionLibrary")
  843. FunctionRedirects=(OldName="LegacyCameraShake.StartMatineeCameraShake", NewName="LegacyCameraShake.StartLegacyCameraShake")
  844. FunctionRedirects=(OldName="LegacyCameraShake.StartMatineeCameraShakeFromSource", NewName="LegacyCameraShake.StartLegacyCameraShakeFromSource")
  845. FunctionRedirects=(OldName="LegacyCameraShakeFunctionLibrary.Conv_MatineeCameraShake", NewName="LegacyCameraShakeFunctionLibrary.Conv_LegacyCameraShake")
  846. PropertyRedirects=(OldName="AnimationSettings.BoneTimecodeCustomAttributeNameSettings",NewName="BoneTimecodeAnimationAttributeNameSettings")
  847. PropertyRedirects=(OldName="AnimationSettings.BoneCustomAttributesNames",NewName="BoneAnimationAttributesNames")
  848. PropertyRedirects=(OldName="AnimationSettings.BoneNamesWithCustomAttributes",NewName="BoneNamesWithAnimationAttributes")
  849. FunctionRedirects=(OldName="CesiumMetadataFeatureTableBlueprintLibrary.GetPropertiesForFeatureID",NewName="GetMetadataValuesForFeatureID")
  850. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformLongitudeLatitudeHeightToUe",NewName="InaccurateTransformLongitudeLatitudeHeightToUnreal")
  851. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformUeToLongitudeLatitudeHeight",NewName="InaccurateTransformUnrealToLongitudeLatitudeHeight")
  852. PropertyRedirects=(OldName="CesiumGeoreference.InaccurateTransformUnrealToLongitudeLatitudeHeight.Ue", NewName="Unreal")
  853. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformEcefToUe",NewName="InaccurateTransformEcefToUnreal")
  854. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformUeToEcef",NewName="InaccurateTransformUnrealToEcef")
  855. PropertyRedirects=(OldName="CesiumGeoreference.InaccurateTransformUnrealToEcef.Ue", NewName="Unreal")
  856. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorUeToEnu",NewName="InaccurateTransformRotatorUnrealToEastNorthUp")
  857. PropertyRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorUnrealToEastNorthUp.UeRotator", NewName="UnrealRotator")
  858. PropertyRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorUnrealToEastNorthUp.UeLocation", NewName="UnrealLocation")
  859. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorEnuToUe",NewName="InaccurateTransformRotatorEastNorthUpToUnreal")
  860. PropertyRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorEastNorthUpToUnreal.UeLocation", NewName="UnrealLocation")
  861. PropertyRedirects=(OldName="CesiumGeoreference.InaccurateComputeEastNorthUpToUnreal.Ue", NewName="Unreal")
  862. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateSetGeoreferenceOrigin",NewName="SetOriginLongitudeLatitudeHeight")
  863. ClassRedirects=(OldName="CesiumGeoreferenceComponent", NewName="CesiumGlobeAnchorComponent")
  864. ClassRedirects=(OldName="CesiumSunSky_C",NewName="/Script/CesiumRuntime.CesiumSunSky",OverrideClassName="/Script/CoreUObject.Class")
  865. PropertyRedirects=(OldName="CesiumSunSky.EnableMobileRendering",NewName="UseMobileRendering")
  866. FunctionRedirects=(OldName="CesiumSunSky.AdjustAtmosphereRadius",NewName="UpdateAtmosphereRadius")
  867. PropertyRedirects=(OldName="CesiumGeoreference.WorldOriginCamera",NewName="SubLevelCamera")
  868. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateGetGeoreferenceOriginLongitudeLatitudeHeight",NewName="GetOriginLongitudeLatitudeHeight")
  869. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateSetGeoreferenceOriginLongitudeLatitudeHeight",NewName="SetOriginLongitudeLatitudeHeight")
  870. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateSetGeoreferenceOriginEcef",NewName="SetOriginEarthCenteredEarthFixed")
  871. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformLongitudeLatitudeHeightToEcef",NewName="TransformLongitudeLatitudeHeightToEcef")
  872. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformEcefToLongitudeLatitudeHeight",NewName="TransformEcefToLongitudeLatitudeHeight")
  873. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformLongitudeLatitudeHeightToUnreal",NewName="TransformLongitudeLatitudeHeightPositionToUnreal")
  874. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformUnrealToLongitudeLatitudeHeight",NewName="TransformUnrealPositionToLongitudeLatitudeHeight")
  875. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformEcefToUnreal",NewName="TransformEarthCenteredEarthFixedPositionToUnreal")
  876. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformUnrealToEcef",NewName="TransformUnrealPositionToEarthCenteredEarthFixed")
  877. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorUnrealToEastNorthUp",NewName="TransformRotatorUnrealToEastNorthUp")
  878. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateTransformRotatorEastNorthUpToUnreal",NewName="TransformRotatorEastNorthUpToUnreal")
  879. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateComputeEastNorthUpToUnreal",NewName="ComputeEastNorthUpToUnreal")
  880. FunctionRedirects=(OldName="CesiumGeoreference.InaccurateComputeEastNorthUpToEcef",NewName="ComputeEastNorthUpToEcef")
  881. FunctionRedirects=(OldName="CesiumGlobeAnchorComponent.InaccurateGetECEF",NewName="GetEarthCenteredEarthFixedPosition")
  882. FunctionRedirects=(OldName="CesiumGlobeAnchorComponent.InaccurateMoveToECEF",NewName="MoveToEarthCenteredEarthFixedPosition")
  883. FunctionRedirects=(OldName="CesiumGlobeAnchorComponent.InaccurateGetLongitudeLatitudeHeight",NewName="GetLongitudeLatitudeHeight")
  884. FunctionRedirects=(OldName="CesiumGlobeAnchorComponent.InaccurateMoveToLongitudeLatitudeHeight",NewName="MoveToLongitudeLatitudeHeight")
  885. FunctionRedirects=(OldName="GlobeAwareDefaultPawn.InaccurateFlyToLocationECEF",NewName="FlyToLocationECEF")
  886. FunctionRedirects=(OldName="GlobeAwareDefaultPawn.InaccurateFlyToLocationLongitudeLatitudeHeight",NewName="FlyToLocationLongitudeLatitudeHeight")
  887. PropertyRedirects=(OldName="CesiumPolygonRasterOverlay.ExcludeTilesInside",NewName="ExcludeSelectedTiles")
  888. FunctionRedirects=(OldName="CesiumGeoreference.TransformUnrealToLongitudeLatitudeHeight",NewName="TransformUnrealPositionToLongitudeLatitudeHeight")
  889. PropertyRedirects=(OldName="CesiumGeoreference.TransformUnrealPositionToLongitudeLatitudeHeight.Unreal", NewName="UnrealPosition")
  890. FunctionRedirects=(OldName="CesiumGeoreference.TransformEcefToUnreal",NewName="TransformEarthCenteredEarthFixedPositionToUnreal")
  891. PropertyRedirects=(OldName="CesiumGeoreference.TransformEarthCenteredEarthFixedPositionToUnreal.Ecef", NewName="EarthCenteredEarthFixedPosition")
  892. FunctionRedirects=(OldName="CesiumGeoreference.TransformUnrealToEcef",NewName="TransformUnrealPositionToEarthCenteredEarthFixed")
  893. PropertyRedirects=(OldName="CesiumGeoreference.TransformUnrealPositionToEarthCenteredEarthFixed.Unreal", NewName="UnrealPosition")
  894. FunctionRedirects=(OldName="CesiumGeoreference.TransformLongitudeLatitudeHeightToUnreal",NewName="TransformLongitudeLatitudeHeightPositionToUnreal")
  895. FunctionRedirects=(OldName="CesiumGeoreference.TransformRotatorUnrealToEastSouthUp",NewName="TransformUnrealRotatorToEastSouthUp")
  896. FunctionRedirects=(OldName="CesiumGeoreference.TransformRotatorEastSouthUpToUnreal",NewName="TransformEastSouthUpRotatorToUnreal")
  897. PropertyRedirects=(OldName="CesiumGeoreference.TransformEastSouthUpRotatorToUnreal.EsuRotator", NewName="EastSouthUpRotator")
  898. FunctionRedirects=(OldName="CesiumGeoreference.ComputeEastSouthUpToUnreal",NewName="ComputeEastSouthUpToUnrealTransformation")
  899. PropertyRedirects=(OldName="CesiumGeoreference.ComputeEastSouthUpToUnrealTransformation.Unreal", NewName="UnrealLocation")
  900. FunctionRedirects=(OldName="CesiumGeoreference.SetGeoreferenceOriginLongitudeLatitudeHeight",NewName="SetOriginLongitudeLatitudeHeight")
  901. FunctionRedirects=(OldName="CesiumGeoreference.GetGeoreferenceOriginLongitudeLatitudeHeight",NewName="GetOriginLongitudeLatitudeHeight")
  902. FunctionRedirects=(OldName="CesiumGeoreference.SetGeoreferenceOriginEcef",NewName="SetOriginEarthCenteredEarthFixed")
  903. PropertyRedirects=(OldName="CesiumGeoreference.SetOriginEarthCenteredEarthFixed.TargetEcef", NewName="TargetEarthCenteredEarthFixed")
  904. FunctionRedirects=(OldName="CesiumGlobeAnchorComponent.GetECEF",NewName="GetEarthCenteredEarthFixedPosition")
  905. FunctionRedirects=(OldName="CesiumGlobeAnchorComponent.MoveToECEF",NewName="MoveToEarthCenteredEarthFixedPosition")
  906. PropertyRedirects=(OldName="CesiumGlobeAnchorComponent.GetEarthCenteredEarthFixedPosition.TargetEcef", NewName="EarthCenteredEarthFixedPosition")
  907. PropertyRedirects=(OldName="CesiumGlobeAnchorComponent.MoveToLongitudeLatitudeHeight.TargetLongitudeLatitudeHeight", NewName="LongitudeLatitudeHeight")
  908. EnumRedirects=(OldName="ECesiumMetadataTrueType", NewName="ECesiumMetadataTrueType_DEPRECATED", ValueChanges=(("None","None_DEPRECATED"),("Int8","Int8_DEPRECATED"),("Uint8","Uint8_DEPRECATED"),("Int16","Int16_DEPRECATED"),("Uint16","Uint16_DEPRECATED"),("Int32","Int32_DEPRECATED"),("Uint32","Uint32_DEPRECATED"),("Int64","Int64_DEPRECATED"),("Uint64","Uint64_DEPRECATED"),("Float32","Float32_DEPRECATED"),("Float64","Float64_DEPRECATED"),("Boolean","Boolean_DEPRECATED"),("Enum","Enum_DEPRECATED"),("String","String_DEPRECATED"),("Array","Array_DEPRECATED")))
  909. StructRedirects=(OldName="CesiumMetadataGenericValue", NewName="CesiumMetadataValue")
  910. ClassRedirects=(OldName="CesiumMetadataGenericValueBlueprintLibrary", NewName="CesiumMetadataValueBlueprintLibrary")
  911. FunctionRedirects=(OldName="CesiumMetadataValueBlueprintLibrary.GetBlueprintComponentType",NewName="CesiumMetadataValueBlueprintLibrary.GetArrayElementBlueprintType")
  912. StructRedirects=(OldName="CesiumMetadataArray", NewName="CesiumPropertyArray")
  913. ClassRedirects=(OldName="CesiumMetadataArrayBlueprintLibrary", NewName="CesiumPropertyArrayBlueprintLibrary")
  914. FunctionRedirects=(OldName="CesiumPropertyArrayBlueprintLibrary.GetBlueprintComponentType",NewName="CesiumPropertyArrayBlueprintLibrary.GetElementBlueprintType")
  915. FunctionRedirects=(OldName="CesiumPropertyArrayBlueprintLibrary.GetSize", NewName="CesiumPropertyArrayBlueprintLibrary.GetArraySize")
  916. StructRedirects=(OldName="CesiumFeatureTable", NewName="CesiumPropertyTable")
  917. ClassRedirects=(OldName="CesiumFeatureTableBlueprintLibrary", NewName="CesiumPropertyTableBlueprintLibrary")
  918. FunctionRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetNumberOfFeatures", NewName="GetPropertyTableCount")
  919. PropertyRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetPropertyTableCount.FeatureTable", NewName="PropertyTable")
  920. FunctionRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetMetadataValuesForFeatureID", NewName="GetMetadataValuesForFeature")
  921. PropertyRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetMetadataValuesForFeature.FeatureTable", NewName="PropertyTable")
  922. FunctionRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetMetadataValuesAsStringForFeatureID", NewName="GetMetadataValuesForFeatureAsStrings")
  923. PropertyRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetMetadataValuesForFeatureAsStrings.FeatureTable", NewName="PropertyTable")
  924. PropertyRedirects=(OldName="CesiumPropertyTableBlueprintLibrary.GetProperties.FeatureTable", NewName="PropertyTable")
  925. StructRedirects=(OldName="CesiumMetadataProperty", NewName="CesiumPropertyTableProperty")
  926. ClassRedirects=(OldName="CesiumMetadataPropertyBlueprintLibrary", NewName="CesiumPropertyTablePropertyBlueprintLibrary")
  927. FunctionRedirects=(OldName="CesiumPropertyTablePropertyBlueprintLibrary.GetBlueprintComponentType", NewName="CesiumPropertyTablePropertyBlueprintLibrary.GetArrayElementBlueprintType")
  928. FunctionRedirects=(OldName="CesiumPropertyTablePropertyBlueprintLibrary.GetGenericValue", NewName="CesiumPropertyTablePropertyBlueprintLibrary.GetValue")
  929. FunctionRedirects=(OldName="CesiumPropertyTablePropertyBlueprintLibrary.GetNumberOfFeatures", NewName="CesiumPropertyTablePropertyBlueprintLibrary.GetPropertySize")
  930. FunctionRedirects=(OldName="CesiumPropertyTablePropertyBlueprintLibrary.GetComponentCount", NewName="CesiumPropertyTablePropertyBlueprintLibrary.GetArraySize")
  931. StructRedirects=(OldName="CesiumFeatureTexture", NewName="CesiumPropertyTexture")
  932. StructRedirects=(OldName="CesiumFeatureTextureProperty", NewName="CesiumPropertyTextureProperty")
  933. FunctionRedirects=(OldName="CesiumPropertyTexturePropertyBlueprintLibrary.GetPropertyKeys", NewName="CesiumPropertyTexturePropertyBlueprintLibrary.GetPropertyNames")
  934. FunctionRedirects=(OldName="CesiumPropertyTexturePropertyBlueprintLibrary.GetTextureCoordinateIndex", NewName="CesiumPropertyTexturePropertyBlueprintLibrary.GetUnrealUVChannel")
  935. StructRedirects=(OldName="CesiumMetadataModel", NewName="CesiumModelMetadata")
  936. ClassRedirects=(OldName="CesiumMetadataModelBlueprintLibrary", NewName="CesiumModelMetadataBlueprintLibrary")
  937. PropertyRedirects=(OldName="CesiumModelMetadataBlueprintLibrary.GetFeatureTables.MetadataModel", NewName="ModelMetadata")
  938. PropertyRedirects=(OldName="CesiumModelMetadataBlueprintLibrary.GetFeatureTextures.MetadataModel", NewName="ModelMetadata")
  939. FunctionRedirects=(OldName="CesiumMetadataUtilityBlueprintLibrary.GetMetadataModel", NewName="CesiumModelMetadataBlueprintLibrary.GetModelMetadata")
  940. EnumRedirects=(OldName="ECesiumPropertyComponentType", NewName="ECesiumPropertyComponentType_DEPRECATED", ValueChanges=(("Uint8","Uint8_DEPRECATED"),("Float","Float_DEPRECATED")))
  941. EnumRedirects=(OldName="ECesiumPropertyType", NewName="ECesiumPropertyType_DEPRECATED", ValueChanges=(("Scalar","Scalar_DEPRECATED"),("Vec2","Vec2_DEPRECATED"),("Vec3","Vec3_DEPRECATED"),("Vec4","Vec4_DEPRECATED")))
  942. EnumRedirects=(OldName="ECesiumFeatureTableAccessType", NewName="ECesiumFeatureTableAccessType_DEPRECATED", ValueChanges=(("Unknown","Unknown_DEPRECATED"),("Texture","Texture_DEPRECATED"),("Attribute","Attribute_DEPRECATED"),("Mixed","Mixed_DEPRECATED")))
  943. EnumRedirects=(OldName="ECesiumMetadataPackedGpuType", NewName="ECesiumMetadataPackedGpuType_DEPRECATED", ValueChanges=(("None","Unknown_DEPRECATED"),("Uint8","Uint8_DEPRECATED"),("Float","Float_DEPRECATED")))
  944. FunctionRedirects=(OldName="CesiumFeatureIdTextureBlueprintLibrary.GetTextureCoordinateIndex", NewName="CesiumFeatureIdTextureBlueprintLibrary.GetUnrealUVChannel")
  945. [CoreUObject.Metadata]
  946. MetadataRedirects=(OldKey="K2Protected", NewKey="BlueprintProtected")
  947. MetadataRedirects=(OldKey="K2UnsafeForConstructionScripts", NewKey="UnsafeDuringActorConstruction")
  948. MetadataRedirects=(OldKey="KismetType", NewKey="BlueprintType")
  949. MetadataRedirects=(OldKey="KismetInternalUseOnly", NewKey="BlueprintInternalUseOnly")
  950. MetadataRedirects=(OldKey="KismetSpawnableComponent", NewKey="BlueprintSpawnableComponent")
  951. MetadataRedirects=(OldKey="K2ExposeToSpawn", NewKey="ExposeOnSpawn")
  952. MetadataRedirects=(OldKey="K2Category", NewKey="Category")
  953. MetadataRedirects=(OldKey="KismetDeprecated", NewKey="DeprecatedFunction")
  954. MetadataRedirects=(OldKey="K2CompactNode", NewKey="CompactNodeTitle")
  955. MetadataRedirects=(OldKey="MenuCategory", NewKey="Category")
  956. MetadataRedirects=(OldKey="ArrayPointerParm", NewKey="TargetArrayParm")
  957. MetadataRedirects=(OldKey="FriendlyName", NewKey="DisplayName")
  958. [EnumRemap]
  959. [PlatformInterface]
  960. CloudStorageInterfaceClassName=
  961. InGameAdManagerClassName=
  962. [/Script/Engine.UserInterfaceSettings]
  963. UIScaleRule=ShortestSide
  964. UIScaleCurve=(EditorCurveData=(Keys=((Time=480,Value=0.444),(Time=720,Value=0.666),(Time=1080,Value=1.0),(Time=8640,Value=8.0))),ExternalCurve=None)
  965. bLoadWidgetsOnDedicatedServer=True
  966. bAllowHighDPIInGameMode=False
  967. [/Script/Engine.GameEngine]
  968. MaxDeltaTime=0
  969. ServerFlushLogInterval=30
  970. [Engine.StartupPackages]
  971. Package=/Engine/EngineMaterials/BlinkingCaret
  972. Package=/Engine/EngineMaterials/DefaultBokeh
  973. Package=/Engine/EngineMaterials/DefaultBloomKernel
  974. Package=/Engine/EngineMaterials/DefaultDeferredDecalMaterial
  975. Package=/Engine/EngineMaterials/DefaultDiffuse
  976. Package=/Engine/EngineMaterials/DefaultLightFunctionMaterial
  977. Package=/Engine/EngineMaterials/WorldGridMaterial
  978. Package=/Engine/EngineMaterials/DefaultMaterial
  979. Package=/Engine/EngineMaterials/DefaultNormal
  980. Package=/Engine/EngineMaterials/DefaultPhysicalMaterial
  981. Package=/Engine/EngineMaterials/DefaultWhiteGrid
  982. Package=/Engine/EngineMaterials/EditorBrushMaterial
  983. Package=/Engine/EngineMaterials/EmissiveMeshMaterial
  984. Package=/Engine/EngineMaterials/Good64x64TilingNoiseHighFreq
  985. Package=/Engine/EngineMaterials/Grid
  986. Package=/Engine/EngineMaterials/Grid_N
  987. Package=/Engine/EngineMaterials/LandscapeHolePhysicalMaterial
  988. Package=/Engine/EngineMaterials/MiniFont
  989. Package=/Engine/EngineMaterials/PaperDiffuse
  990. Package=/Engine/EngineMaterials/PaperNormal
  991. Package=/Engine/EngineMaterials/PhysMat_Rubber
  992. Package=/Engine/EngineMaterials/PreintegratedSkinBRDF
  993. Package=/Engine/EngineMaterials/RemoveSurfaceMaterial
  994. Package=/Engine/EngineMaterials/WeightMapPlaceholderTexture
  995. Package=/Engine/EngineDebugMaterials/BoneWeightMaterial
  996. Package=/Engine/EngineDebugMaterials/DebugMeshMaterial
  997. Package=/Engine/EngineDebugMaterials/GeomMaterial
  998. Package=/Engine/EngineDebugMaterials/HeatmapGradient
  999. Package=/Engine/EngineDebugMaterials/LevelColorationLitMaterial
  1000. Package=/Engine/EngineDebugMaterials/LevelColorationUnlitMaterial
  1001. Package=/Engine/EngineDebugMaterials/MAT_LevelColorationLitLightmapUV
  1002. Package=/Engine/EngineDebugMaterials/ShadedLevelColorationLitMaterial
  1003. Package=/Engine/EngineDebugMaterials/ShadedLevelColorationUnlitMateri
  1004. Package=/Engine/EngineDebugMaterials/TangentColorMap
  1005. Package=/Engine/EngineDebugMaterials/VertexColorMaterial
  1006. Package=/Engine/EngineDebugMaterials/VertexColorViewMode_AlphaAsColor
  1007. Package=/Engine/EngineDebugMaterials/VertexColorViewMode_BlueOnly
  1008. Package=/Engine/EngineDebugMaterials/VertexColorViewMode_ColorOnly
  1009. Package=/Engine/EngineDebugMaterials/VertexColorViewMode_GreenOnly
  1010. Package=/Engine/EngineDebugMaterials/VertexColorViewMode_RedOnly
  1011. Package=/Engine/EngineDebugMaterials/WireframeMaterial
  1012. Package=/Engine/EngineSounds/WhiteNoise
  1013. Package=/Engine/EngineFonts/SmallFont
  1014. Package=/Engine/EngineFonts/TinyFont
  1015. Package=/Engine/EngineFonts/Roboto
  1016. Package=/Engine/EngineFonts/RobotoTiny
  1017. Package=/Engine/EngineMaterials/DefaultTextMaterialTranslucent
  1018. Package=/Engine/EngineFonts/RobotoDistanceField
  1019. [Core.Log]
  1020. [Core.System]
  1021. Paths=../../../Engine/Content
  1022. Paths=%GAMEDIR%Content
  1023. CutdownPaths=%GAMEDIR%CutdownPackages
  1024. ZeroEngineVersionWarning=True
  1025. UseStrictEngineVersioning=True
  1026. CanStripEditorOnlyExportsAndImports=True
  1027. CanSkipEditorReferencedPackagesWhenCooking=False
  1028. CanUseUnversionedPropertySerialization=True
  1029. TestUnversionedPropertySerializationWhenCooking=False
  1030. DetailedCallstacksInNonMonolithicBuilds=True
  1031. UseSeperateBulkDataFiles=False
  1032. GameThreadHeartBeatStartSuspended=False
  1033. GameThreadHeartBeatHitchDuration=-1.0
  1034. GameThreadHeartBeatStackWalk=false
  1035. IgnoreInlineBulkDataReloadEnsures=False
  1036. UsePackageTrailer=True
  1037. HangDuration=0.0
  1038. AssetLogShowsDiskPath=True
  1039. AssetLogShowsAbsolutePath=True
  1040. TaskThreadStackSize=393216
  1041. PoolThreadStackSize=131072
  1042. DefaultThreadStackSize=1048576
  1043. [Core.System.Experimental]
  1044. EnablePackageSidecarSaving=False
  1045. AllowVirtualizationOptOut=False
  1046. [Core.ContentVirtualization]
  1047. SystemName=None
  1048. LazyInit=False
  1049. [Core.VirtualizationModule]
  1050. EnablePayloadVirtualization=True
  1051. EnableCacheAfterPull=True
  1052. MinPayloadLength=0
  1053. BackendGraph=ContentVirtualizationBackendGraph_None
  1054. VirtualizationProcessTag=#virtualized
  1055. AllowSubmitIfVirtualizationFailed=false
  1056. FilterMode=OptOut
  1057. FilterEngineContent=True
  1058. FilterEnginePluginContent=True
  1059. FilterMapContent=True
  1060. LazyInitConnections=False
  1061. DisabledAsset=StaticMesh
  1062. DisabledAsset=SoundWave
  1063. [/Script/Virtualization.VirtualizationFilterSettings]
  1064. [ContentVirtualizationBackendGraph_None]
  1065. CacheStorageHierarchy=()
  1066. PersistentStorageHierarchy=()
  1067. [ContentVirtualizationBackendGraph_LocalCache]
  1068. CacheStorageHierarchy=(Entry=LocalFileCache)
  1069. PersistentStorageHierarchy=()
  1070. LocalFileCache=(Type=FileSystem, Path="%GAMESAVEDDIR%VirtualizedPayloads/")
  1071. [ContentVirtualizationBackendGraph_JupiterLocalHost]
  1072. CacheStorageHierarchy=(Entry=LocalFileCache)
  1073. PersistentStorageHierarchy=(JupiterCache)
  1074. LocalFileCache=(Type=FileSystem, Path="%GAMESAVEDDIR%VirtualizedPayloads/")
  1075. JupiterCache=(Type=Jupiter, Host="http://localhost", Namespace="ue.mirage", ChunkSize=524288)
  1076. [/Script/Engine.StreamingSettings]
  1077. s.MinBulkDataSizeForAsyncLoading=131072
  1078. s.AsyncLoadingThreadEnabled=True
  1079. s.EventDrivenLoaderEnabled=True
  1080. s.WarnIfTimeLimitExceeded=False
  1081. s.TimeLimitExceededMultiplier=1.5
  1082. s.TimeLimitExceededMinTime=0.005
  1083. s.UseBackgroundLevelStreaming=True
  1084. s.PriorityAsyncLoadingExtraTime=15.0
  1085. s.LevelStreamingActorsUpdateTimeLimit=5.0
  1086. s.PriorityLevelStreamingActorsUpdateExtraTime=5.0
  1087. s.LevelStreamingComponentsRegistrationGranularity=10
  1088. s.UnregisterComponentsTimeLimit=1.0
  1089. s.LevelStreamingComponentsUnregistrationGranularity=5
  1090. s.MaxPackageSummarySize=16384
  1091. s.FlushStreamingOnExit=True
  1092. FixedBootOrder=/Script/Engine/Default__SoundBase
  1093. FixedBootOrder=/Script/Engine/Default__MaterialInterface
  1094. FixedBootOrder=/Script/Engine/Default__DeviceProfileManager
  1095. [/Script/Engine.GarbageCollectionSettings]
  1096. gc.MaxObjectsNotConsideredByGC=1
  1097. gc.SizeOfPermanentObjectPool=0
  1098. gc.FlushStreamingOnGC=0
  1099. gc.NumRetriesBeforeForcingGC=10
  1100. gc.AllowParallelGC=True
  1101. gc.TimeBetweenPurgingPendingKillObjects=61.1
  1102. gc.MaxObjectsInEditor=25165824
  1103. gc.IncrementalBeginDestroyEnabled=True
  1104. gc.CreateGCClusters=True
  1105. gc.MinGCClusterSize=5
  1106. gc.AssetClustreringEnabled=False
  1107. gc.ActorClusteringEnabled=False
  1108. gc.BlueprintClusteringEnabled=False
  1109. gc.UseDisregardForGCOnDedicatedServers=False
  1110. gc.MultithreadedDestructionEnabled=True
  1111. gc.VerifyGCObjectNames=True
  1112. gc.VerifyUObjectsAreNotFGCObjects=False
  1113. gc.PendingKillEnabled=True
  1114. [Internationalization]
  1115. LocalizationPaths=../../../Engine/Content/Localization/Engine
  1116. CultureDisplayNameSubstitutes=Taiwan;Chinese Taipei
  1117. CultureDisplayNameSubstitutes=ja;台湾;チャイニーズタイペイ
  1118. CultureDisplayNameSubstitutes=台湾;中华台北
  1119. CultureDisplayNameSubstitutes=台灣;中華台北
  1120. CultureDisplayNameSubstitutes=대만;중화 타이베이
  1121. [Audio]
  1122. UnfocusedVolumeMultiplier=0.0
  1123. UseAudioThread=true
  1124. EnableAudioMixer=false
  1125. DeferStartupPrecache=false
  1126. AllWaveFormats=BINKA
  1127. AllWaveFormats=ADPCM
  1128. AllWaveFormats=PCM
  1129. AllWaveFormats=OPUS
  1130. AllWaveFormats=OGG
  1131. FormatModuleHints=AudioFormatOPUS
  1132. FormatModuleHints=AudioFormatOGG
  1133. FormatModuleHints=AudioFormatADPCM
  1134. FormatModuleHints=AudioFormatBINKA
  1135. AudioInfoModules=BinkAudioDecoder
  1136. FallbackFormat=BINKA
  1137. PlatformFormat=OGG
  1138. PlatformStreamingFormat=OGG
  1139. AudioCaptureModuleName=AudioCaptureRtAudio
  1140. AudioDeviceModuleName=XAudio2
  1141. AudioMixerModuleName=AudioMixerXAudio2
  1142. PlatformHeadroomDB=-3
  1143. UseAudioMixer=true
  1144. [AudioChannelAzimuthMap]
  1145. FrontLeft=330
  1146. FrontRight=30
  1147. FrontCenter=0
  1148. BackLeft=210
  1149. BackRight=150
  1150. FrontLeftOfCenter=15
  1151. FrontRightOfCenter=345
  1152. BackCenter=180
  1153. SideLeft=250
  1154. SideRight=110
  1155. [AudioDefaultChannelOrder]
  1156. FrontLeft=0
  1157. FrontRight=1
  1158. FrontCenter=2
  1159. LowFrequency=3
  1160. SideLeft=4
  1161. SideRight=5
  1162. BackLeft=6
  1163. BackRight=7
  1164. [/Script/Engine.AudioSettings]
  1165. DefaultSoundClassName=/Engine/EngineSounds/Master.Master
  1166. DefaultMediaSoundClassName=/Engine/EngineSounds/Master.Master
  1167. DefaultSoundSubmixName=/Engine/EngineSounds/MasterSubmix.MasterSubmix
  1168. MasterSubmix=/Engine/EngineSounds/Submixes/MasterSubmixDefault.MasterSubmixDefault
  1169. ReverbSubmix=/Engine/EngineSounds/Submixes/MasterReverbSubmixDefault.MasterReverbSubmixDefault
  1170. EQSubmix=/Engine/EngineSounds/Submixes/MasterEQSubmixDefault.MasterEQSubmixDefault
  1171. AmbisonicSubmix=/Engine/EngineSounds/Submixes/MasterAmbisonicSubmixDefault.MasterAmbisonicSubmixDefault
  1172. LowPassFilterResonance=0.9
  1173. MaximumConcurrentStreams=2
  1174. DialogueFilenameFormat="{DialogueGuid}_{ContextId}"
  1175. [/Script/Engine.SoundGroups]
  1176. SoundGroupProfiles=(SoundGroup=SOUNDGROUP_Default, bAlwaysDecompressOnLoad=false, DecompressedDuration=5)
  1177. SoundGroupProfiles=(SoundGroup=SOUNDGROUP_Effects, bAlwaysDecompressOnLoad=false, DecompressedDuration=5)
  1178. SoundGroupProfiles=(SoundGroup=SOUNDGROUP_UI, bAlwaysDecompressOnLoad=false, DecompressedDuration=5)
  1179. SoundGroupProfiles=(SoundGroup=SOUNDGROUP_Music, bAlwaysDecompressOnLoad=false, DecompressedDuration=0)
  1180. SoundGroupProfiles=(SoundGroup=SOUNDGROUP_Voice, bAlwaysDecompressOnLoad=false, DecompressedDuration=0)
  1181. [/Script/Engine.Player]
  1182. ConfiguredInternetSpeed=100000
  1183. ConfiguredLanSpeed=100000
  1184. [/Script/Engine.NetDriver]
  1185. ChannelDefinitions=(ChannelName=Control, ClassName=/Script/Engine.ControlChannel, StaticChannelIndex=0, bTickOnCreate=true, bServerOpen=false, bClientOpen=true, bInitialServer=false, bInitialClient=true)
  1186. ChannelDefinitions=(ChannelName=Voice, ClassName=/Script/Engine.VoiceChannel, StaticChannelIndex=1, bTickOnCreate=true, bServerOpen=true, bClientOpen=true, bInitialServer=true, bInitialClient=true)
  1187. ChannelDefinitions=(ChannelName=Actor, ClassName=/Script/Engine.ActorChannel, StaticChannelIndex=-1, bTickOnCreate=false, bServerOpen=true, bClientOpen=false, bInitialServer=false, bInitialClient=false)
  1188. [/Script/Engine.RendererSettings]
  1189. VisualizeCalibrationColorMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor
  1190. VisualizeCalibrationGrayscaleMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale
  1191. r.GPUCrashDebugging=false
  1192. MaxSkinBones=(Default=65536,PerPlatform=(("Mobile", 256)))
  1193. r.GenerateMeshDistanceFields=True
  1194. r.DynamicGlobalIlluminationMethod=1
  1195. r.ReflectionMethod=1
  1196. r.Shadow.Virtual.Enable=1
  1197. r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
  1198. [/Script/OnlineSubsystemUtils.IpNetDriver]
  1199. AllowPeerConnections=False
  1200. AllowPeerVoice=False
  1201. ConnectionTimeout=60.0
  1202. InitialConnectTimeout=60.0
  1203. RecentlyDisconnectedTrackingTime=120
  1204. TimeoutMultiplierForUnoptimizedBuilds=1
  1205. KeepAliveTime=0.2
  1206. MaxClientRate=100000
  1207. MaxInternetClientRate=100000
  1208. RelevantTimeout=5.0
  1209. SpawnPrioritySeconds=1.0
  1210. ServerTravelPause=4.0
  1211. NetServerMaxTickRate=30
  1212. MaxNetTickRate=120
  1213. NetConnectionClassName=/Script/OnlineSubsystemUtils.IpConnection
  1214. MaxPortCountToTry=512
  1215. ResolutionConnectionTimeout=20.0
  1216. [DDoSDetection]
  1217. bDDoSDetection=false
  1218. bDDoSAnalytics=false
  1219. DDoSLogSpamLimit=64
  1220. HitchTimeQuotaMS=500
  1221. HitchFrameTolerance=3
  1222. DetectionSeverity=Burst
  1223. DetectionSeverity=PersistentBurst
  1224. DetectionSeverity=DDoS
  1225. DetectionSeverity=ExpensiveDDoS
  1226. DetectionSeverity=DebilitatingDDoS
  1227. [DDoSDetection.Burst]
  1228. bSendEscalateAnalytics=false
  1229. EscalateQuotaPacketsPerSec=800
  1230. EscalateQuotaDisconnPacketsPerSec=3200
  1231. EscalateQuotaBadPacketsPerSec=400
  1232. [DDoSDetection.PersistentBurst]
  1233. bSendEscalateAnalytics=false
  1234. EscalateQuotaPacketsPerSec=1600
  1235. EscalateQuotaDisconnPacketsPerSec=3200
  1236. EscalateQuotaBadPacketsPerSec=800
  1237. EscalateTimeQuotaMSPerFrame=10
  1238. CooloffTime=10
  1239. [DDoSDetection.DDoS]
  1240. bSendEscalateAnalytics=false
  1241. EscalateTimeQuotaMSPerFrame=50
  1242. PacketLimitPerFrame=1000
  1243. PacketTimeLimitMSPerFrame=16
  1244. CooloffTime=10
  1245. [DDoSDetection.ExpensiveDDoS]
  1246. bSendEscalateAnalytics=true
  1247. EscalateTimeQuotaMSPerFrame=66
  1248. PacketLimitPerFrame=100
  1249. PacketTimeLimitMSPerFrame=2
  1250. CooloffTime=10
  1251. [DDoSDetection.DebilitatingDDoS]
  1252. bSendEscalateAnalytics=true
  1253. PacketLimitPerFrame=0
  1254. NetConnPacketTimeLimitMSPerFrame=100
  1255. CooloffTime=10
  1256. [GameNetDriver RPCDoSDetection]
  1257. bRPCDoSDetection=false
  1258. bRPCDoSAnalytics=false
  1259. HitchTimeQuotaMS=1000
  1260. HitchSuspendDetectionTimeMS=1000
  1261. InitialConnectToleranceMS=2000
  1262. RPCBlockWhitelist=ServerMovePacked
  1263. DetectionSeverity=Normal
  1264. DetectionSeverity=Hitch
  1265. DetectionSeverity=Burst
  1266. DetectionSeverity=PersistentBurst
  1267. DetectionSeverity=DoS
  1268. DetectionSeverity=ExpensiveDoS
  1269. DetectionSeverity=Kick
  1270. [BeaconNetDriver RPCDoSDetection]
  1271. bRPCDoSDetection=false
  1272. bRPCDoSAnalytics=false
  1273. HitchTimeQuotaMS=1000
  1274. HitchSuspendDetectionTimeMS=1000
  1275. InitialConnectToleranceMS=2000
  1276. DetectionSeverity=Normal
  1277. DetectionSeverity=Hitch
  1278. DetectionSeverity=Burst
  1279. DetectionSeverity=PersistentBurst
  1280. DetectionSeverity=DoS
  1281. DetectionSeverity=ExpensiveDoS
  1282. DetectionSeverity=Kick
  1283. [RPCDoSDetection.Normal]
  1284. EscalateQuotaRPCsPerFrame=256
  1285. EscalateTimeQuotaMSPerFrame=10
  1286. [RPCDoSDetection.Hitch]
  1287. EscalateQuotaRPCsPerPeriod=512
  1288. EscalateTimeQuotaMSPerPeriod=50
  1289. EscalateQuotaTimePeriod=2
  1290. CooloffTime=5
  1291. AutoEscalateTime=10
  1292. [RPCDoSDetection.Burst]
  1293. EscalateQuotaRPCsPerPeriod=1024
  1294. EscalateTimeQuotaMSPerPeriod=512
  1295. EscalateQuotaTimePeriod=8
  1296. CooloffTime=5
  1297. AutoEscalateTime=8
  1298. [RPCDoSDetection.PersistentBurst]
  1299. bLogEscalate=true
  1300. bSendEscalateAnalytics=true
  1301. bTrackRecentRPCs=true
  1302. EscalateQuotaRPCsPerPeriod=2048
  1303. EscalateTimeQuotaMSPerPeriod=1024
  1304. EscalateQuotaTimePeriod=8
  1305. EscalationCountTolerance=15
  1306. EscalationTimeToleranceMS=8000
  1307. CooloffTime=5
  1308. AutoEscalateTime=8
  1309. [RPCDoSDetection.DoS]
  1310. bLogEscalate=true
  1311. bSendEscalateAnalytics=true
  1312. bTrackRecentRPCs=true
  1313. EscalateQuotaRPCsPerPeriod=4096
  1314. EscalateTimeQuotaMSPerPeriod=2048
  1315. EscalateQuotaTimePeriod=8
  1316. EscalationCountTolerance=10
  1317. EscalationTimeToleranceMS=8000
  1318. RPCRepeatLimitPerPeriod=512
  1319. RPCRepeatLimitMSPerPeriod=1024
  1320. RPCRepeatLimitTimePeriod=4
  1321. CooloffTime=10
  1322. AutoEscalateTime=11
  1323. [RPCDoSDetection.ExpensiveDoS]
  1324. bLogEscalate=true
  1325. bSendEscalateAnalytics=true
  1326. bTrackRecentRPCs=true
  1327. EscalateQuotaRPCsPerPeriod=32768
  1328. EscalateTimeQuotaMSPerPeriod=8192
  1329. EscalateQuotaTimePeriod=16
  1330. EscalationCountTolerance=5
  1331. EscalationTimeToleranceMS=8000
  1332. RPCRepeatLimitPerPeriod=512
  1333. RPCRepeatLimitMSPerPeriod=1024
  1334. RPCRepeatLimitTimePeriod=4
  1335. CooloffTime=10
  1336. [RPCDoSDetection.Kick]
  1337. bLogEscalate=true
  1338. bSendEscalateAnalytics=true
  1339. bKickPlayer=true
  1340. [/Script/Engine.DemoNetDriver]
  1341. NetConnectionClassName=/Script/Engine.DemoNetConnection
  1342. DemoSpectatorClass=Engine.PlayerController
  1343. SpawnPrioritySeconds=60.0
  1344. ChannelDefinitions=(ChannelName=Control, ClassName=/Script/Engine.ControlChannel, StaticChannelIndex=0, bTickOnCreate=true, bServerOpen=false, bClientOpen=true, bInitialServer=false, bInitialClient=true)
  1345. ChannelDefinitions=(ChannelName=Actor, ClassName=/Script/Engine.ActorChannel, StaticChannelIndex=-1, bTickOnCreate=false, bServerOpen=true, bClientOpen=false, bInitialServer=false, bInitialClient=false)
  1346. [TextureStreaming]
  1347. NeverStreamOutRenderAssets=False
  1348. MinTextureResidentMipCount=7
  1349. PoolSize=160
  1350. MemoryMargin=5
  1351. MinFudgeFactor=1
  1352. LoadMapTimeLimit=20.0
  1353. LightmapStreamingFactor=0.2
  1354. ShadowmapStreamingFactor=0.2
  1355. MaxLightmapRadius=10000.0
  1356. AllowStreamingLightmaps=True
  1357. UseDynamicStreaming=True
  1358. BoostPlayerTextures=3.0
  1359. PoolSizeVRAMPercentage=70
  1360. [/Script/UnrealEd.EditorEngine]
  1361. LocalPlayerClassName=/Script/Engine.LocalPlayer
  1362. GameCommandLine=-log
  1363. FOVAngle=90.000000
  1364. GodMode=True
  1365. UseAxisIndicator=True
  1366. HeightMapExportClassName=TerrainHeightMapExporterTextT3D
  1367. bCustomCameraAlignEmitter=true
  1368. CustomCameraAlignEmitterDistance=100.0
  1369. bDrawSocketsInGMode=false
  1370. bSmoothFrameRate=false
  1371. SmoothedFrameRateRange=(LowerBound=(Type="ERangeBoundTypes::Inclusive",Value=5),UpperBound=(Type="ERangeBoundTypes::Inclusive",Value=120))
  1372. UseOldStyleMICEditorGroups=true
  1373. InEditorGameURLOptions=
  1374. [/Script/UnrealEd.UnrealEdEngine]
  1375. AutoSaveIndex=0
  1376. TemplateMapInfos=(Thumbnail="/Engine/Maps/Templates/Thumbnails/OpenWorld.OpenWorld",Map="/Engine/Maps/Templates/OpenWorld",DisplayName="Open World",Category="OpenWorld")
  1377. TemplateMapInfos=(Thumbnail="/Engine/Maps/Templates/Thumbnails/Basic.Basic",Map="/Engine/Maps/Templates/Template_Default",DisplayName="Basic")
  1378. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/Cross
  1379. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/Cross_Mat
  1380. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/PhAT_BoneSelectedMaterial
  1381. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/PhAT_ElemSelectedMaterial
  1382. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/PhAT_JointLimitMaterial
  1383. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/PhAT_NoCollisionMaterial
  1384. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/PhAT_UnselectedMaterial
  1385. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/TargetIcon
  1386. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/Tick
  1387. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/Tick_Mat
  1388. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetGridVertexColorMaterial
  1389. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetGridVertexColorMaterial_Ma
  1390. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetMaterial
  1391. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetMaterial_Current
  1392. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetMaterial_X
  1393. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetMaterial_Y
  1394. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetMaterial_Z
  1395. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/WidgetVertexColorMaterial
  1396. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/LevelGridMaterial
  1397. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/TilingAAGrid
  1398. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/TilingAALineBoxFiltered
  1399. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/TilingAALineIntegral
  1400. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/ParticleSystems/PSysThumbnail_NoImage
  1401. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/ParticleSystems/PSysThumbnail_OOD
  1402. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/Thumbnails/FloorPlaneMaterial
  1403. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMaterials/Thumbnails/SkySphereMaterial
  1404. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMeshes/EditorCube
  1405. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMeshes/EditorCylinder
  1406. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMeshes/EditorPlane
  1407. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMeshes/EditorSkySphere
  1408. PackagesToBeFullyLoadedAtStartup=/Engine/EditorMeshes/EditorSphere
  1409. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/Bad
  1410. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/Bkgnd
  1411. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/BkgndHi
  1412. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/BSPVertex
  1413. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/MatInstActSprite
  1414. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/SceneManager
  1415. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/SmallFont
  1416. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_Actor
  1417. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_TextRenderActorIcon
  1418. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_Emitter
  1419. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_ExpoHeightFog
  1420. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_KBSJoint
  1421. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_KHinge
  1422. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_KPrismatic
  1423. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_LevelSequence
  1424. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_NavP
  1425. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_Note
  1426. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_Player
  1427. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_RadForce
  1428. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_ReflActorIcon
  1429. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_Thruster
  1430. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_Trigger
  1431. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/S_VectorFieldVol
  1432. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/AI/S_NavLink
  1433. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightDirectional
  1434. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightDirectionalMove
  1435. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightError
  1436. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightPoint
  1437. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightPointMove
  1438. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightSpot
  1439. PackagesToBeFullyLoadedAtStartup=/Engine/EditorResources/LightIcons/S_LightSpotMove
  1440. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/BlinkingCaret
  1441. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultBokeh
  1442. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultBloomKernel
  1443. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultDeferredDecalMaterial
  1444. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultDiffuse
  1445. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultLightFunctionMaterial
  1446. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultMaterial
  1447. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/WorldGridMaterial
  1448. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultNormal
  1449. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultPhysicalMaterial
  1450. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/DefaultWhiteGrid
  1451. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/EditorBrushMaterial
  1452. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/Good64x64TilingNoiseHighFreq
  1453. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/Grid
  1454. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/Grid_N
  1455. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/HighResScreenshot
  1456. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/HighResScreenshotMask
  1457. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/HighResScreenshotCaptureRegion
  1458. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/LandscapeHolePhysicalMaterial
  1459. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/MiniFont
  1460. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/PaperDiffuse
  1461. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/PaperNormal
  1462. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/PhysMat_Rubber
  1463. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/PreintegratedSkinBRDF
  1464. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/RemoveSurfaceMaterial
  1465. PackagesToBeFullyLoadedAtStartup=/Engine/EngineMaterials/WeightMapPlaceholderTexture
  1466. PackagesToBeFullyLoadedAtStartup=/Engine/EngineFonts/SmallFont
  1467. PackagesToBeFullyLoadedAtStartup=/Engine/EngineFonts/TinyFont
  1468. PackagesToBeFullyLoadedAtStartup=/Engine/EngineFonts/Roboto
  1469. PackagesToBeFullyLoadedAtStartup=/Engine/EngineFonts/RobotoTiny
  1470. PackagesToBeFullyLoadedAtStartup=/Engine/EngineResources/Black
  1471. PackagesToBeFullyLoadedAtStartup=/Engine/EngineResources/DefaultTexture
  1472. PackagesToBeFullyLoadedAtStartup=/Engine/EngineResources/DefaultTextureCube
  1473. PackagesToBeFullyLoadedAtStartup=/Engine/EngineResources/M_StreamingPause
  1474. PackagesToBeFullyLoadedAtStartup=/Engine/EngineResources/WhiteSquareTexture
  1475. PackagesToBeFullyLoadedAtStartup=/Engine/EngineResources/GradientTexture0
  1476. [DevOptions.Shaders]
  1477. bAllowCompilingThroughWorkers=True
  1478. bAllowAsynchronousShaderCompiling=True
  1479. NumUnusedShaderCompilingThreads=3
  1480. NumUnusedShaderCompilingThreadsDuringGame=4
  1481. ShaderCompilerCoreCountThreshold=12
  1482. PercentageUnusedShaderCompilingThreads=50
  1483. MaxShaderJobBatchSize=10
  1484. bPromptToRetryFailedShaderCompiles=False
  1485. bLogJobCompletionTimes=False
  1486. ProcessGameThreadTargetTime=.01
  1487. WorkerTimeToLive=20
  1488. BuildWorkerTimeToLive=1200
  1489. WorkerProcessPriority=-1
  1490. bUseVirtualCores=False
  1491. bForceUseSCWMemoryPressureLimits=False
  1492. bDoNotChunkPSOCache=True
  1493. [ShaderCompiler]
  1494. r.Shaders.Symbols=0
  1495. r.Shaders.GenerateSymbols=0
  1496. r.Shaders.WriteSymbols=0
  1497. r.Shaders.WriteSymbols.Zip=0
  1498. r.Shaders.SymbolPathOverride=
  1499. r.Shaders.AllowUniqueSymbols=0
  1500. [ShaderCompiler_BuildMachine]
  1501. r.Shaders.Symbols=0
  1502. r.Shaders.GenerateSymbols=0
  1503. r.Shaders.WriteSymbols=0
  1504. r.Shaders.WriteSymbols.Zip=0
  1505. r.Shaders.SymbolPathOverride=
  1506. r.Shaders.AllowUniqueSymbols=0
  1507. [Rendering.AutoScreenPercentage]
  1508. MinDisplayResolution=720
  1509. MinRenderingResolution=720
  1510. MidDisplayResolution=2160
  1511. MidRenderingResolution=1080
  1512. MaxDisplayResolution=4320
  1513. MaxRenderingResolution=1440
  1514. [LogFiles]
  1515. PurgeLogsDays=5
  1516. MaxLogFilesOnDisk=10
  1517. LogTimes=True
  1518. [Kismet]
  1519. AllowDerivedBlueprints=true
  1520. CompileDisplaysBinaryBackend=false
  1521. CompileDisplaysAnimBlueprintBackend=false
  1522. bTurnOffEditorConstructionScript=false
  1523. bLogPrintStringSource=true
  1524. PrintStringDuration=2.0
  1525. bUseLocalGraphVariables=false
  1526. bPersistentUberGraphFrame=true
  1527. bReinstanceOnlyWhenNecessary=true
  1528. bChangeDefaultValueWithoutReinstancing=true
  1529. bDisplaysLayout=false
  1530. bOptimizeExecutionFlowStack=true
  1531. bOptimizeAdjacentStates=true
  1532. bEnableInheritableComponents=true
  1533. bDeferDependencyLoads=true
  1534. bForceDisableCookedDependencyDeferring=false
  1535. bExecutionAfterReturn=false
  1536. bCanSuppressAccessViolation=false
  1537. bIgnoreCompileOnLoadErrorsOnBuildMachine=false
  1538. bAllowNativeComponentClassOverrides=true
  1539. bUseLegacyAnimBlueprintThreadSafetyChecks=true
  1540. bThreadSafetyStrictPrivateMemberChecks=false
  1541. [/Script/Engine.Blueprint]
  1542. bRecompileOnLoad=true
  1543. [/Script/Engine.LevelScriptBlueprint]
  1544. bRecompileOnLoad=true
  1545. [/Script/Engine.AnimBlueprint]
  1546. bRecompileOnLoad=true
  1547. [CustomStats]
  1548. LD=Streaming fudge factor
  1549. LD=FrameTime
  1550. LD=Terrain Smooth Time
  1551. LD=Terrain Render Time
  1552. LD=Terrain Triangles
  1553. LD=Static Mesh Tris
  1554. LD=Skel Mesh Tris
  1555. LD=Skel Verts CPU Skin
  1556. LD=Skel Verts GPU Skin
  1557. LD=30+ FPS
  1558. LD=Total CPU rendering time
  1559. LD=Total GPU rendering time
  1560. LD=Occluded primitives
  1561. LD=Projected shadows
  1562. LD=Visible static mesh elements
  1563. LD=Visible dynamic primitives
  1564. LD=Texture Pool Size
  1565. LD=Physical Memory Used
  1566. LD=Virtual Memory Used
  1567. LD=Audio Memory Used
  1568. LD=Texture Memory Used
  1569. LD=360 Texture Memory Used
  1570. LD=Animation Memory
  1571. LD=Navigation Memory
  1572. LD=Vertex Lighting Memory
  1573. LD=StaticMesh Vertex Memory
  1574. LD=StaticMesh Index Memory
  1575. LD=SkeletalMesh Vertex Memory
  1576. LD=SkeletalMesh Index Memory
  1577. MEMLEAN=Virtual Memory Used
  1578. MEMLEAN=Audio Memory Used
  1579. MEMLEAN=Animation Memory
  1580. MEMLEAN=Vertex Lighting Memory
  1581. MEMLEAN=StaticMesh Vertex Memory
  1582. MEMLEAN=StaticMesh Index Memory
  1583. MEMLEAN=SkeletalMesh Vertex Memory
  1584. MEMLEAN=SkeletalMesh Index Memory
  1585. MEMLEAN=VertexShader Memory
  1586. MEMLEAN=PixelShader Memory
  1587. MEMLEAN=Navigation Memory
  1588. GameThread=Async Loading Time
  1589. GameThread=Audio Update Time
  1590. GameThread=FrameTime
  1591. GameThread=HUD Time
  1592. GameThread=Input Time
  1593. GameThread=Kismet Time
  1594. GameThread=Move Actor Time
  1595. GameThread=RHI Game Tick
  1596. GameThread=RedrawViewports
  1597. GameThread=Script time
  1598. GameThread=Tick Time
  1599. GameThread=Update Components Time
  1600. GameThread=World Tick Time
  1601. GameThread=Async Work Wait
  1602. GameThread=PerFrameCapture
  1603. GameThread=DynamicLightEnvComp Tick
  1604. Mobile=ES2 Draw Calls
  1605. Mobile=ES2 Draw Calls (UP)
  1606. Mobile=ES2 Triangles Drawn
  1607. Mobile=ES2 Triangles Drawn (UP)
  1608. Mobile=ES2 Program Count
  1609. Mobile=ES2 Program Count (PP)
  1610. Mobile=ES2 Program Changes
  1611. Mobile=ES2 Uniform Updates (Bytes)
  1612. Mobile=ES2 Base Texture Binds
  1613. Mobile=ES2 Detail Texture Binds
  1614. Mobile=ES2 Lightmap Texture Binds
  1615. Mobile=ES2 Environment Texture Binds
  1616. Mobile=ES2 Bump Offset Texture Binds
  1617. Mobile=Frustum Culled primitives
  1618. Mobile=Statically occluded primitives
  1619. SplitScreen=Processed primitives
  1620. SplitScreen=Mesh draw calls
  1621. SplitScreen=Mesh Particles
  1622. SplitScreen=Particle Draw Calls
  1623. [MemReportCommands]
  1624. Cmd=Mem FromReport
  1625. Cmd=LogCountedInstances
  1626. Cmd=obj list -resourcesizesort
  1627. Cmd=rhi.DumpMemory
  1628. Cmd=rhi.DumpResourceMemory
  1629. Cmd=rhi.dumpresourcememory summary name=Lumen
  1630. Cmd=rhi.dumpresourcememory summary name=Nanite
  1631. Cmd=rhi.dumpresourcememory summary name=Shadow
  1632. Cmd=rhi.dumpresourcememory summary name=DistanceFields
  1633. Cmd=rhi.dumpresourcememory summary name=GPUScene
  1634. Cmd=rhi.dumpresourcememory summary name=SkinCache
  1635. Cmd=rhi.dumpresourcememory summary name=TangentsRHIBuffer
  1636. Cmd=rhi.dumpresourcememory summary name=IndexBuffer
  1637. Cmd=rhi.dumpresourcememory summary name=VertexBuffer
  1638. Cmd=rhi.dumpresourcememory summary name=TexCoordRHIBuffer
  1639. Cmd=rhi.dumpresourcememory summary name=None
  1640. Cmd=rhi.dumpresourcememory summary Type=TextureCube
  1641. Cmd=rhi.dumpresourcememory summary name=CaptureCube
  1642. Cmd=rhi.dumpresourcememory summary name=MorphDeltasVB
  1643. Cmd=rhi.dumpresourcememory summary name=VertexIndicesVB
  1644. Cmd=rhi.dumpresourcememory summary name=VirtualTexture
  1645. Cmd=rhi.dumpresourcememory summary name=VirtualPhysicalTexture
  1646. Cmd=rhi.dumpresourcememory summary name=VolumetricFog
  1647. Cmd=rhi.dumpresourcememory summary name=Hair
  1648. Cmd=rhi.dumpresourcememory summary name=Subsurface
  1649. Cmd=obj list class=SkeletalMesh -resourcesizesort
  1650. Cmd=obj list class=StaticMesh -resourcesizesort
  1651. Cmd=listtextures nonvt
  1652. Cmd=listtextures uncompressed
  1653. Cmd=LogOutStatLevels
  1654. Cmd=ListSpawnedActors
  1655. Cmd=wp.DumpDataLayers
  1656. Cmd=wp.DumpStreamingSources
  1657. [MemReportFullCommands]
  1658. Cmd=DumpParticleMem
  1659. Cmd=ConfigMem
  1660. Cmd=r.DumpRenderTargetPoolMemory
  1661. Cmd=ListTextures
  1662. Cmd=ListParticleSystems -alphasort
  1663. Cmd=obj list class=SoundWave -alphasort
  1664. Cmd=obj list class=SkeletalMesh -alphasort
  1665. Cmd=obj list class=StaticMesh -alphasort
  1666. Cmd=obj list class=Level -alphasort
  1667. Cmd=obj list class=StaticMeshComponent -alphasort
  1668. [MemoryPools]
  1669. FLightPrimitiveInteractionInitialBlockSize=512
  1670. [ProcessLimits]
  1671. VirtualMemoryLimitInKB=0
  1672. [SystemSettings]
  1673. con.DebugEarlyDefault=True
  1674. con.DebugEarlyCheat=True
  1675. con.DebugLateDefault=True
  1676. con.DebugLateCheat=True
  1677. LogNamedEventFilters=Frame *
  1678. r.setres=1280x720
  1679. framepro.ScopeMinTimeMicroseconds=10
  1680. fx.NiagaraAllowRuntimeScalabilityChanges=1
  1681. QualityLevelMapping=high
  1682. r.Occlusion.SingleRHIThreadStall=1
  1683. r.Shadow.DetectVertexShaderLayerAtRuntime=1
  1684. [SystemSettingsEditor]
  1685. r.VSync=0
  1686. r.RHICmdBypass=0
  1687. [SystemSettingsSplitScreen2]
  1688. [OnlineSubsystem]
  1689. bHasVoiceEnabled=true
  1690. VoiceNotificationDelta=0.33
  1691. MaxLocalTalkers=1
  1692. MaxRemoteTalkers=16
  1693. PollingIntervalInMs=20
  1694. bUseBuildIdOverride=false
  1695. BuildIdOverride=0
  1696. AdditionalModulesToLoad=HTTP
  1697. AdditionalModulesToLoad=XMPP
  1698. LocalPlatformName=WIN
  1699. [OnlineSubsystemSteam]
  1700. bEnabled=false
  1701. SteamDevAppId=0
  1702. GameServerQueryPort=27015
  1703. bInitServerOnClient=false
  1704. bRelaunchInSteam=false
  1705. GameVersion=1.0.0.0
  1706. bVACEnabled=1
  1707. bAllowP2PPacketRelay=true
  1708. P2PConnectionTimeout=90
  1709. [/Script/OnlineSubsystemSteam.SteamNetDriver]
  1710. NetConnectionClassName=/Script/OnlineSubsystemSteam.SteamNetConnection
  1711. [/Script/SteamSockets.SteamSocketsNetDriver]
  1712. NetConnectionClassName=/Script/SteamSockets.SteamSocketsNetConnection
  1713. ConnectionTimeout=80.0
  1714. InitialConnectTimeout=120.0
  1715. NetServerMaxTickRate=30
  1716. MaxNetTickRate=120
  1717. KeepAliveTime=0.2
  1718. MaxClientRate=100000
  1719. MaxInternetClientRate=100000
  1720. RelevantTimeout=5.0
  1721. SpawnPrioritySeconds=1.0
  1722. ServerTravelPause=4.0
  1723. [OnlineSubsystemAmazon]
  1724. bEnabled=false
  1725. [OnlineSubsystemGoogle]
  1726. bEnabled=false
  1727. [OnlineSubsystemGoogle.OnlineIdentityGoogle]
  1728. LoginRedirectUrl="http://127.0.0.1"
  1729. LoginDomains=.google.com
  1730. RedirectPort=9001
  1731. [OnlineSubsystemFacebook]
  1732. bEnabled=false
  1733. APIVer=v2.12
  1734. [OnlineSubsystemFacebook.OnlineIdentityFacebook]
  1735. LoginUrl="https://www.facebook.com/`ver/dialog/oauth"
  1736. LoginRedirectUrl="https://www.facebook.com/connect/login_success.html"
  1737. MeURL="https://graph.facebook.com/`ver/me?access_token=`token"
  1738. LoginDomains=.facebook.com
  1739. bUsePopup=false
  1740. ProfileFields=locale
  1741. ProfileFields=link
  1742. ProfileFields=gender
  1743. [OnlineSubsystemFacebook.OnlineSharingFacebook]
  1744. PermissionsURL="https://graph.facebook.com/`ver/me/permissions?access_token=`token"
  1745. [OnlineSubsystemFacebook.OnlineFriendsFacebook]
  1746. FriendsUrl="https://graph.facebook.com/`ver/me/friends?fields=`fields&access_token=`token"
  1747. FriendsFields=locale
  1748. FriendsFields=link
  1749. FriendsFields=gender
  1750. [OnlineSubsystemSamsung]
  1751. bEnabled=true
  1752. [OnlineSubsystemSamsung.OnlinePurchaseSamsung]
  1753. QueryReceiptsResumeFailDelaySeconds=2.0
  1754. CheckoutResumeFailDelaySeconds=2.0
  1755. bIncludeSamsungLocText=true
  1756. [OnlineSubsystemApple]
  1757. bEnabled=false
  1758. [OnlineSubsystemNull]
  1759. bEnabled=true
  1760. bAutoLoginAtStartup=true
  1761. bRequireLoginCredentials=false
  1762. bAddUserNumToNullId=false
  1763. bForceStableNullId=false
  1764. bForceOfflineMode=false
  1765. Achievement_0_Id=null-ach-0
  1766. Achievement_0_bIsHidden=false
  1767. Achievement_0_Title=Achievement 0
  1768. Achievement_0_LockedDesc=Achieve achievement 0
  1769. Achievement_0_UnlockedDesc=Achievement 0 achieved
  1770. Achievement_1_Id=null-ach-1
  1771. Achievement_1_bIsHidden=false
  1772. Achievement_1_Title=Achievement 1
  1773. Achievement_1_LockedDesc=Achieve achievement 1
  1774. Achievement_1_UnlockedDesc=Achievement 1 achieved
  1775. Achievement_2_Id=null-ach-2
  1776. Achievement_2_bIsHidden=false
  1777. Achievement_2_Title=Achievement 2
  1778. Achievement_2_LockedDesc=Achieve achievement 2
  1779. Achievement_2_UnlockedDesc=Achievement 2 achieved
  1780. Achievement_3_Id=null-ach-3
  1781. Achievement_3_bIsHidden=false
  1782. Achievement_3_Title=Achievement 3
  1783. Achievement_3_LockedDesc=Achieve achievement 3
  1784. Achievement_3_UnlockedDesc=Achievement 3 achieved
  1785. Achievement_4_Id=null-ach-4
  1786. Achievement_4_bIsHidden=false
  1787. Achievement_4_Title=Achievement 4
  1788. Achievement_4_LockedDesc=Achieve achievement 4
  1789. Achievement_4_UnlockedDesc=Achievement 4 achieved
  1790. Achievement_5_Id=null-ach-5
  1791. Achievement_5_bIsHidden=false
  1792. Achievement_5_Title=Achievement 5
  1793. Achievement_5_LockedDesc=Achieve achievement 5
  1794. Achievement_5_UnlockedDesc=Achievement 5 achieved
  1795. Achievement_6_Id=null-ach-6
  1796. Achievement_6_bIsHidden=false
  1797. Achievement_6_Title=Achievement 6
  1798. Achievement_6_LockedDesc=Achieve achievement 6
  1799. Achievement_6_UnlockedDesc=Achievement 6 achieved
  1800. Achievement_7_Id=null-ach-7
  1801. Achievement_7_bIsHidden=false
  1802. Achievement_7_Title=Achievement 7
  1803. Achievement_7_LockedDesc=Achieve achievement 7
  1804. Achievement_7_UnlockedDesc=Achievement 7 achieved
  1805. Achievement_8_Id=null-ach-8
  1806. Achievement_8_bIsHidden=false
  1807. Achievement_8_Title=Achievement 8
  1808. Achievement_8_LockedDesc=Achieve achievement 8
  1809. Achievement_8_UnlockedDesc=Achievement 8 achieved
  1810. Achievement_9_Id=null-ach-9
  1811. Achievement_9_bIsHidden=false
  1812. Achievement_9_Title=Achievement 9
  1813. Achievement_9_LockedDesc=Achieve achievement 9
  1814. Achievement_9_UnlockedDesc=Achievement 9 achieved
  1815. [/Script/OnlineSubsystemUtils.OnlineBeacon]
  1816. BeaconConnectionInitialTimeout=5.0
  1817. BeaconConnectionTimeout=45.0
  1818. [/Script/OnlineSubsystemUtils.OnlineBeaconHost]
  1819. ListenPort=15000
  1820. [/Script/OnlineSubsystemUtils.PartyBeaconHost]
  1821. bLogoutOnSessionTimeout=true
  1822. SessionTimeoutSecs=10
  1823. TravelSessionTimeoutSecs=45
  1824. [/Script/OnlineSubsystemUtils.SpectatorBeaconHost]
  1825. bLogoutOnSessionTimeout=true
  1826. SessionTimeoutSecs=10
  1827. TravelSessionTimeoutSecs=45
  1828. [/Script/Lobby.LobbyBeaconClient]
  1829. BeaconConnectionInitialTimeout=90.0
  1830. BeaconConnectionTimeout=45.0
  1831. [OnlineServices.Lobbies]
  1832. SchemaDescriptors=(Id="LobbyBase", CategoryIds=("Lobby", "LobbyMember"))
  1833. SchemaCategoryDescriptors=(Id="Lobby", ServiceDescriptorId="Lobby")
  1834. SchemaCategoryDescriptors=(Id="LobbyMember", ServiceDescriptorId="LobbyMember")
  1835. SchemaCategoryAttributeDescriptors=(SchemaId="LobbyBase", CategoryId="Lobby", AttributeIds=("SchemaCompatibilityId"))
  1836. SchemaCategoryAttributeDescriptors=(SchemaId="LobbyBase", CategoryId="LobbyMember")
  1837. SchemaAttributeDescriptors=(Id="SchemaCompatibilityId", Type="Int64", Flags=("Public", "SchemaCompatibilityId"))
  1838. [StaticMeshLODSettings]
  1839. LevelArchitecture=(NumLODs=4,MaxNumStreamedLODs=0,bSupportLODStreaming=0,LightMapResolution=32,LODPercentTriangles=50,PixelError=12,SilhouetteImportance=4,Name=LOCTEXT("LevelArchitectureLOD","Level Architecture"))
  1840. SmallProp=(NumLODs=4,MaxNumStreamedLODs=0,bSupportLODStreaming=0,LODPercentTriangles=50,PixelError=10,Name=LOCTEXT("SmallPropLOD","Small Prop"))
  1841. LargeProp=(NumLODs=4,MaxNumStreamedLODs=0,bSupportLODStreaming=0,LODPercentTriangles=50,PixelError=10,Name=LOCTEXT("LargePropLOD","Large Prop"))
  1842. Deco=(NumLODs=4,MaxNumStreamedLODs=0,bSupportLODStreaming=0,LODPercentTriangles=50,PixelError=10,Name=LOCTEXT("DecoLOD","Deco"))
  1843. Vista=(NumLODs=1,MaxNumStreamedLODs=0,bSupportLODStreaming=0,Name=LOCTEXT("VistaLOD","Vista"))
  1844. Foliage=(NumLODs=1,MaxNumStreamedLODs=0,bSupportLODStreaming=0,Name=LOCTEXT("FoliageLOD","Foliage"))
  1845. HighDetail=(NumLODs=6,MaxNumStreamedLODs=0,bSupportLODStreaming=0,LODPercentTriangles=50,PixelError=6,Name=LOCTEXT("HighDetailLOD","High Detail"))
  1846. [TextureTracking]
  1847. [RuntimeAssetCache]
  1848. BucketConfigs=(Name="DefaultBucket", Size=10000000)
  1849. PathToRAC=RuntimeAssetCache
  1850. [Zen]
  1851. AutoLaunch=true
  1852. [Zen.AutoLaunch]
  1853. DataPath=%APPSETTINGSDIR%Zen/Data
  1854. LocalDataCachePathEnvOverride=UE-LocalDataCachePath
  1855. LocalDataCachePathEditorOverrideSetting=LocalDerivedDataCache
  1856. ExtraArgs=--http asio --gc-cache-duration-seconds 2937600 --gc-interval-seconds 21600
  1857. [Zen.ConnectExisting]
  1858. HostName=localhost
  1859. Port=1337
  1860. [DerivedDataBackendGraph]
  1861. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1862. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1863. Hierarchy=(Type=Hierarchical, Inner=Pak, Inner=EnginePak, Inner=Local, Inner=Shared)
  1864. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, PromptIfMissing=true, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache, CommandLineOverride=LocalDataCachePath)
  1865. Shared=(Type=FileSystem, UnusedFileAge=10, FoldersToClean=10, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1866. Pak=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1867. EnginePak=(Type=ReadPak, Filename="%ENGINEDIR%DerivedDataCache/DDC.ddp")
  1868. [InstalledDerivedDataBackendGraph]
  1869. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1870. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1871. Hierarchy=(Type=Hierarchical, Inner=Pak, Inner=CompressedPak, Inner=EnginePak, Inner=EnterprisePak, Inner=Local, Inner=Shared)
  1872. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path="%ENGINEVERSIONAGNOSTICUSERDIR%DerivedDataCache", EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1873. Shared=(Type=FileSystem, UnusedFileAge=10, FoldersToClean=10, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1874. Pak=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1875. CompressedPak=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/Compressed.ddp", Compressed=true)
  1876. EnginePak=(Type=ReadPak, Filename=../../../Engine/DerivedDataCache/Compressed.ddp, Compressed=true)
  1877. EnterprisePak=(Type=ReadPak, Filename=../../../Enterprise/DerivedDataCache/Compressed.ddp, Compressed=true)
  1878. [ZenOnlyDDC]
  1879. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1880. AsyncPut=(Type=AsyncPut, Inner=Zen)
  1881. Zen=(Type=Zen, Namespace="ue4.ddc", StructuredNamespace="ue.ddc")
  1882. [ZenDDC]
  1883. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1884. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1885. Hierarchy=(Type=Hierarchical, Inner=Pak, Inner=EnginePak, Inner=Zen, Inner=Shared)
  1886. Zen=(Type=Zen, Namespace="ue4.ddc", StructuredNamespace="ue.ddc")
  1887. Shared=(Type=FileSystem, UnusedFileAge=10, FoldersToClean=10, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1888. Pak=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1889. EnginePak=(Type=ReadPak, Filename="%ENGINEDIR%DerivedDataCache/DDC.ddp")
  1890. [DerivedDataBackendGraph_Fill_Seattle]
  1891. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1892. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1893. Hierarchy=(Type=Hierarchical, Inner=Pak, Inner=EnginePak, Inner=Local, Inner=Seattle)
  1894. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1895. Seattle=(Type=FileSystem, UnusedFileAge=23, FoldersToClean=10, Path=?EpicSeaDDC, EnvPathOverride=UE-SharedDataCachePath_Seattle)
  1896. Pak=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1897. EnginePak=(Type=ReadPak, Filename="%ENGINEDIR%DerivedDataCache/DDC.ddp")
  1898. [NoShared]
  1899. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1900. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1901. Hierarchy=(Type=Hierarchical, Inner=Pak, Inner=Local)
  1902. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1903. Pak=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1904. [Cold]
  1905. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1906. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1907. Hierarchy=(Type=Hierarchical, Inner=Local)
  1908. Local=(Type=FileSystem, Flush=true, PurgeTransient=true, UnusedFileAge=1, Path="%GAMEDIR%ColdDerivedDataCache")
  1909. [Warm]
  1910. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1911. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1912. Hierarchy=(Type=Hierarchical, Inner=Local)
  1913. Local=(Type=FileSystem, Clean=true, PurgeTransient=true, UnusedFileAge=1, Path="%GAMEDIR%ColdDerivedDataCache")
  1914. [CreatePak]
  1915. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1916. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1917. Hierarchy=(Type=Hierarchical, Inner=PakWrite, Inner=PakRead, Inner=Local, Inner=Shared)
  1918. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1919. Shared=(Type=FileSystem, DeleteUnused=false, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1920. PakRead=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1921. PakWrite=(Type=WritePak, Filename="%GAMEDIR%DerivedDataCache/DDC.ddp")
  1922. [CreateInstalledProjectPak]
  1923. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1924. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1925. Hierarchy=(Type=Hierarchical, Inner=EnginePak, Inner=PakWrite, Inner=PakRead, Inner=Local, Inner=Shared)
  1926. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1927. Shared=(Type=FileSystem, DeleteUnused=false, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1928. EnginePak=(Type=ReadPak, Filename=../../../Engine/DerivedDataCache/Compressed.ddp, Compressed=true)
  1929. PakRead=(Type=ReadPak, Filename="%GAMEDIR%DerivedDataCache/Compressed.ddp", Compressed=true)
  1930. PakWrite=(Type=WritePak, Filename="%GAMEDIR%DerivedDataCache/Compressed.ddp", Compressed=true)
  1931. [CreateInstalledEnginePak]
  1932. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1933. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1934. Hierarchy=(Type=Hierarchical, Inner=PakWrite, Inner=Local, Inner=Shared)
  1935. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1936. Shared=(Type=FileSystem, DeleteUnused=false, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1937. PakWrite=(Type=WritePak, Filename="%ENGINEDIR%DerivedDataCache/Compressed.ddp", Compressed=true)
  1938. [CreateInstalledEnterprisePak]
  1939. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1940. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1941. Hierarchy=(Type=Hierarchical, Inner=PakWrite, Inner=Local, Inner=Shared)
  1942. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1943. Shared=(Type=FileSystem, DeleteUnused=false, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1944. PakWrite=(Type=WritePak, Filename=../../../Enterprise/DerivedDataCache/Compressed.ddp, Compressed=true)
  1945. [CreateProjectCache]
  1946. Root=(Type=KeyLength, Length=120, Inner=AsyncPut)
  1947. AsyncPut=(Type=AsyncPut, Inner=Hierarchy)
  1948. Hierarchy=(Type=Hierarchical, Inner=Local, Inner=Project, Inner=Shared)
  1949. Local=(Type=FileSystem, PurgeTransient=true, UnusedFileAge=34, Path=%ENGINEDIR%DerivedDataCache, EnvPathOverride=UE-LocalDataCachePath, EditorOverrideSetting=LocalDerivedDataCache)
  1950. Project=(Type=FileSystem, Flush=true, PurgeTransient=true, UnusedFileAge=34, Path=%GAMEDIR%ProjectDerivedData)
  1951. Shared=(Type=FileSystem, DeleteUnused=false, ConsiderSlowAt=70, Path=?EpicDDC, EnvPathOverride=UE-SharedDataCachePath, EditorOverrideSetting=SharedDerivedDataCache, CommandLineOverride=SharedDataCachePath)
  1952. [VirtualTextureChunkDDCCache]
  1953. UnusedFileAge=34
  1954. MaxFileChecksPerSec=-1 ;no limit
  1955. Path=%GAMEDIR%DerivedDataCache/VT
  1956. [DDCCleanup]
  1957. TimeToWaitAfterInit=120
  1958. MaxFileChecksPerSec=1000
  1959. [/Script/Engine.LocalPlayer]
  1960. AspectRatioAxisConstraint=AspectRatio_MaintainXFOV
  1961. [ContentComparisonReferenceTypes]
  1962. Class=AnimSet
  1963. Class=SkeletalMesh
  1964. Class=SoundCue
  1965. Class=StaticMesh
  1966. Class=ParticleSystem
  1967. Class=Texture2D
  1968. [AssetRegistry]
  1969. CookedTagsBlacklist=(Class=/Script/Engine.Blueprint,Tag=FiB)
  1970. CookedTagsBlacklist=(Class=/Script/Engine.Blueprint,Tag=FiBData)
  1971. CookedTagsBlacklist=(Class=*,Tag=AssetImportData)
  1972. bUseAssetRegistryTagsWhitelistInsteadOfBlacklist=false
  1973. CookedTagsWhitelist=(Class=/Script/Engine.Blueprint,Tag=ParentClass)
  1974. CookedTagsWhitelist=(Class=/Script/Engine.Blueprint,Tag=GeneratedClass)
  1975. CookedTagsWhitelist=(Class=/Script/Engine.Blueprint,Tag=GameplayCueName)
  1976. CookedTagsWhitelist=(Class=*,Tag=AssetBundleData)
  1977. CookedTagsWhitelist=(Class=*,Tag=PrimaryAssetType)
  1978. CookedTagsWhitelist=(Class=*,Tag=PrimaryAssetName)
  1979. CookedTagsWhitelist=(Class=/Script/Engine.World,Tag=Tests)
  1980. CookedTagsWhitelist=(Class=/Script/Engine.World,Tag=TestNames)
  1981. CookedTagsAsFName=PrimaryAssetType
  1982. CookedTagsAsFName=PrimaryAssetName
  1983. CookedTagsAsPathName=GeneratedClass
  1984. CookedTagsAsPathName=ParentClass
  1985. bSerializeAssetRegistry=true
  1986. bSerializeDependencies=false
  1987. bSerializeSearchableNameDependencies=false
  1988. bSerializeManageDependencies=false
  1989. bSerializePackageData=false
  1990. bFilterAssetDataWithNoTags=false
  1991. bFilterDependenciesWithNoTags=false
  1992. bFilterSearchableNames=true
  1993. [AutomationTesting]
  1994. ImportTestPath=Content/EditorAutomation/
  1995. ImportTestPackagePath=/Engine/Content/EditorAutomation
  1996. bForceSmokeTests=false
  1997. [AutomationTesting.FbxImport]
  1998. FbxImportTestPath=Content/FbxEditorAutomation/
  1999. FbxImportEditorTestPath=../../../Engine/Content/FbxEditorAutomation/
  2000. FbxImportTestPackagePath=/Engine/FbxEditorAutomationOut
  2001. [AutomationTesting.Blueprint]
  2002. TestAllBlueprints=false
  2003. InstanceTestMaps=../../../Engine/Content/Maps/Automation/BlueprintInstanceTest.umap
  2004. ReparentTest.ChildrenPackagePaths=/Game/ReparentingTestAssets/Children
  2005. ReparentTest.ParentsPackagePaths=/Game/ReparentingTestAssets/Parents
  2006. [/Script/Engine.AutomationTestSettings]
  2007. EditorTestModules=StaticMeshEditor
  2008. EditorTestModules=LandscapeEditor
  2009. EditorTestModules=GameProjectGeneration
  2010. EditorTestModules=Cascade
  2011. TestLevelFolders=TestMaps
  2012. MaterialEditorPromotionTest=(DefaultMaterialAsset=(FilePath="../../Content/EditorMeshes/ColorCalibrator/M_ColorGrid.uasset"),DefaultDiffuseTexture=(FilePath="../../Content/EngineMaterials/DefaultDiffuse.uasset"),DefaultNormalTexture=(FilePath="../../Content/EngineMaterials/DefaultNormal.uasset"))
  2013. [AutomationTesting.StaticMeshEditorTest]
  2014. EditorViewButtons=Wireframe
  2015. EditorViewButtons=Verts
  2016. EditorViewButtons=Grid
  2017. EditorViewButtons=Bounds
  2018. EditorViewButtons=Collision
  2019. EditorViewButtons=Show Pivot
  2020. EditorViewButtons=Normals
  2021. EditorViewButtons=Tangents
  2022. EditorViewButtons=Binormals
  2023. EditorViewButtons=UV
  2024. EditorViewButtonsObject=EditorCylinder
  2025. DefaultInteractiveFramerate=5
  2026. DefaultInteractiveFramerateWaitTime=600
  2027. DefaultInteractiveFramerateDuration=5
  2028. [/Script/NavigationSystem.NavigationSystemV1]
  2029. bAutoCreateNavigationData=true
  2030. bAddPlayersToGenerationSeeds=true
  2031. [/Script/NavigationSystem.NavigationData]
  2032. RuntimeGeneration=Static
  2033. [/Script/NavigationSystem.RecastNavMesh]
  2034. TileSetUpdateInterval=1.0
  2035. MaxTileGridWidth=256
  2036. MaxTileGridHeight=256
  2037. DefaultDrawDistance=5000.0
  2038. TileSizeUU=1000.f
  2039. CellSize=19.f
  2040. CellHeight=10.f
  2041. AgentRadius=34.f
  2042. AgentHeight=144.f
  2043. AgentMaxHeight=160.f
  2044. AgentMaxStepHeight=35.f
  2045. AgentMaxSlope=44.f
  2046. MinRegionArea=0.f
  2047. MergeRegionSize=400.f
  2048. bUseBetterOffsetsFromCorners=true
  2049. [/Script/NavigationSystem.NavArea_Null]
  2050. DrawColor=(R=38,G=38,B=38,A=64)
  2051. [/Script/NavigationSystem.NavArea_Default]
  2052. DrawColor=(R=140,G=255,B=0,A=164)
  2053. [Trace.ChannelPresets]
  2054. Rendering=gpu,cpu,frame,log,bookmark
  2055. [RemoteConfiguration]
  2056. Enabled=false
  2057. ConfigPathPrefix=\\epicgames.net\root\Home
  2058. ConfigPathSuffix=UECloud
  2059. Timeout=1.0f
  2060. IniToLoad=EditorPerProjectUserSettings
  2061. IniToLoad=EditorKeyBindings
  2062. [Engine.ErrorHandling]
  2063. bPromptForRemoteDebugging=false
  2064. bPromptForRemoteDebugOnEnsure=false
  2065. [Niagara]
  2066. EnableNiagara=false
  2067. [/Script/Engine.Actor]
  2068. DefaultUpdateOverlapsMethodDuringLevelStreaming=OnlyUpdateMovable
  2069. [/Script/Engine.TriggerVolume]
  2070. DefaultUpdateOverlapsMethodDuringLevelStreaming=AlwaysUpdate
  2071. [/Script/Engine.CollisionProfile]
  2072. OldProfiles=(Name="BlockingVolume",CollisionEnabled=QueryAndPhysics,ObjectTypeName=WorldStatic,CustomResponses=((Channel=Visibility, Response=ECR_Ignore)))
  2073. OldProfiles=(Name="InterpActor",CollisionEnabled=QueryOnly,ObjectTypeName=WorldStatic,CustomResponses=((Channel=Pawn, Response=ECR_Ignore)))
  2074. OldProfiles=(Name="StaticMeshComponent",CollisionEnabled=QueryAndPhysics,ObjectTypeName=WorldStatic)
  2075. OldProfiles=(Name="SkeletalMeshActor",CollisionEnabled=QueryAndPhysics,ObjectTypeName=PhysicsBody,CustomResponses=((Channel=Visibility, Response=ECR_Block)))
  2076. OldProfiles=(Name="InvisibleActor", CollisionEnabled=QueryAndPhysics, ObjectTypeName=WorldDynamic, CustomResponses=((Channel=Visibility, Response=ECR_Ignore)))
  2077. Profiles=(Name="NoCollision",CollisionEnabled=NoCollision,bCanModify=False,ObjectTypeName="WorldStatic",CustomResponses=((Channel="Visibility",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore)),HelpMessage="No collision")
  2078. Profiles=(Name="BlockAll",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="WorldStatic",CustomResponses=,HelpMessage="WorldStatic object that blocks all actors by default. All new custom channels will use its own default response. ")
  2079. Profiles=(Name="OverlapAll",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldStatic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Overlap),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldStatic object that overlaps all actors by default. All new custom channels will use its own default response. ")
  2080. Profiles=(Name="BlockAllDynamic",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=,HelpMessage="WorldDynamic object that blocks all actors by default. All new custom channels will use its own default response. ")
  2081. Profiles=(Name="OverlapAllDynamic",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Overlap),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldDynamic object that overlaps all actors by default. All new custom channels will use its own default response. ")
  2082. Profiles=(Name="IgnoreOnlyPawn",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="Pawn",Response=ECR_Ignore),(Channel="Vehicle",Response=ECR_Ignore)),HelpMessage="WorldDynamic object that ignores Pawn and Vehicle. All other channels will be set to default.")
  2083. Profiles=(Name="OverlapOnlyPawn",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="Pawn",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Ignore)),HelpMessage="WorldDynamic object that overlaps Pawn, Camera, and Vehicle. All other channels will be set to default. ")
  2084. Profiles=(Name="Pawn",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Pawn",CustomResponses=((Channel="Visibility",Response=ECR_Ignore)),HelpMessage="Pawn object. Can be used for capsule of any playerable character or AI. ")
  2085. Profiles=(Name="Spectator",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="Pawn",CustomResponses=((Channel="WorldStatic"),(Channel="Pawn",Response=ECR_Ignore),(Channel="Visibility",Response=ECR_Ignore),(Channel="WorldDynamic",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore),(Channel="PhysicsBody",Response=ECR_Ignore),(Channel="Vehicle",Response=ECR_Ignore),(Channel="Destructible",Response=ECR_Ignore)),HelpMessage="Pawn object that ignores all other actors except WorldStatic.")
  2086. Profiles=(Name="CharacterMesh",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="Pawn",CustomResponses=((Channel="Pawn",Response=ECR_Ignore),(Channel="Vehicle",Response=ECR_Ignore),(Channel="Visibility",Response=ECR_Ignore)),HelpMessage="Pawn object that is used for Character Mesh. All other channels will be set to default.")
  2087. Profiles=(Name="PhysicsActor",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="PhysicsBody",CustomResponses=,HelpMessage="Simulating actors")
  2088. Profiles=(Name="Destructible",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Destructible",CustomResponses=,HelpMessage="Destructible actors")
  2089. Profiles=(Name="InvisibleWall",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="WorldStatic",CustomResponses=((Channel="Visibility",Response=ECR_Ignore)),HelpMessage="WorldStatic object that is invisible.")
  2090. Profiles=(Name="InvisibleWallDynamic",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="Visibility",Response=ECR_Ignore)),HelpMessage="WorldDynamic object that is invisible.")
  2091. Profiles=(Name="Trigger",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Ignore),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldDynamic object that is used for trigger. All other channels will be set to default.")
  2092. Profiles=(Name="Ragdoll",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="PhysicsBody",CustomResponses=((Channel="Pawn",Response=ECR_Ignore),(Channel="Visibility",Response=ECR_Ignore)),HelpMessage="Simulating Skeletal Mesh Component. All other channels will be set to default.")
  2093. Profiles=(Name="Vehicle",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Vehicle",CustomResponses=,HelpMessage="Vehicle object that blocks Vehicle, WorldStatic, and WorldDynamic. All other channels will be set to default.")
  2094. Profiles=(Name="UI",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility"),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldStatic object that overlaps all actors by default. All new custom channels will use its own default response. ")
  2095. Profiles=(Name="WaterBodyCollision",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="",CustomResponses=((Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="Default Water Collision Profile (Created by Water Plugin)")
  2096. ProfileRedirects=(OldName="BlockingVolume",NewName="InvisibleWall")
  2097. ProfileRedirects=(OldName="InterpActor",NewName="IgnoreOnlyPawn")
  2098. ProfileRedirects=(OldName="StaticMeshComponent",NewName="BlockAllDynamic")
  2099. ProfileRedirects=(OldName="SkeletalMeshActor",NewName="PhysicsActor")
  2100. ProfileRedirects=(OldName="InvisibleActor",NewName="InvisibleWallDynamic")
  2101. CollisionChannelRedirects=(OldName="Static",NewName="WorldStatic")
  2102. CollisionChannelRedirects=(OldName="Dynamic",NewName="WorldDynamic")
  2103. CollisionChannelRedirects=(OldName="VehicleMovement",NewName="Vehicle")
  2104. CollisionChannelRedirects=(OldName="PawnMovement",NewName="Pawn")
  2105. [Engine.BufferVisualizationMaterials]
  2106. BaseColor=(Material="/Engine/BufferVisualization/BaseColor.BaseColor", Name=LOCTEXT("BaseColorMat", "Base Color"))
  2107. CustomDepth=(Material="/Engine/BufferVisualization/CustomDepth.CustomDepth", Name=LOCTEXT("BaseCustomDepthMat", "Custom Depth"))
  2108. CustomStencil=(Material="/Engine/BufferVisualization/CustomStencil.CustomStencil", Name=LOCTEXT("BaseCustomStencilMat", "Custom Stencil"))
  2109. FinalImage=(Material="/Engine/BufferVisualization/FinalImage.FinalImage", Name=LOCTEXT("BaseFinalImageMat", "Final Image"))
  2110. ShadingModel=(Material="/Engine/BufferVisualization/LightingModel.LightingModel", Name=LOCTEXT("BaseShadingModelMat", "Shading Model"))
  2111. MaterialAO=(Material="/Engine/BufferVisualization/MaterialAO.MaterialAO", Name=LOCTEXT("BaseMaterialAOMat", "Material Ambient Occlusion"))
  2112. Metallic=(Material="/Engine/BufferVisualization/Metallic.Metallic", Name=LOCTEXT("BaseMetallicMat", "Metallic"))
  2113. Opacity=(Material="/Engine/BufferVisualization/Opacity.Opacity", Name=LOCTEXT("BaseOpacityMat", "Opacity"))
  2114. Roughness=(Material="/Engine/BufferVisualization/Roughness.Roughness", Name=LOCTEXT("BaseRoughnessMat", "Roughness"))
  2115. Anisotropy=(Material="/Engine/BufferVisualization/Anisotropy.Anisotropy", Name=LOCTEXT("BaseAnisotropyMat", "Anisotropy"))
  2116. SceneColor=(Material="/Engine/BufferVisualization/SceneColor.SceneColor", Name=LOCTEXT("BaseSceneColorMat", "Scene Color"))
  2117. SceneDepth=(Material="/Engine/BufferVisualization/SceneDepth.SceneDepth", Name=LOCTEXT("BaseSceneDepthMat", "Scene Depth"))
  2118. SeparateTranslucencyRGB=(Material="/Engine/BufferVisualization/SeparateTranslucencyRGB.SeparateTranslucencyRGB", Name=LOCTEXT("BaseSeparateTranslucencyRGBMat", "Separate Translucency RGB"))
  2119. SeparateTranslucencyA=(Material="/Engine/BufferVisualization/SeparateTranslucencyA.SeparateTranslucencyA", Name=LOCTEXT("BaseSeparateTranslucencyAMat", "Separate Translucency Alpha"))
  2120. Specular=(Material="/Engine/BufferVisualization/Specular.Specular", Name=LOCTEXT("BaseSpecularMat", "Specular"))
  2121. SubsurfaceColor=(Material="/Engine/BufferVisualization/SubsurfaceColor.SubsurfaceColor", Name=LOCTEXT("BaseSubsurfaceColorMat", "Subsurface Color"))
  2122. WorldNormal=(Material="/Engine/BufferVisualization/WorldNormal.WorldNormal", Name=LOCTEXT("BaseWorldNormalMat", "World Normal"))
  2123. WorldTangent=(Material="/Engine/BufferVisualization/WorldTangent.WorldTangent", Name=LOCTEXT("BaseWorldTangentMat", "World Tangent"))
  2124. AmbientOcclusion=(Material="/Engine/BufferVisualization/AmbientOcclusion.AmbientOcclusion", Name=LOCTEXT("BaseAmbientOcclusionMat", "Ambient Occlusion"))
  2125. CustomDepthWorldUnits=(Material="/Engine/BufferVisualization/CustomDepthWorldUnits.CustomDepthWorldUnits", Name=LOCTEXT("BaseCustomDepthWorldUnitsMat", "Custom Depth World Units"))
  2126. SceneDepthWorldUnits=(Material="/Engine/BufferVisualization/SceneDepthWorldUnits.SceneDepthWorldUnits", Name=LOCTEXT("BaseSceneDepthWorldUnitsMat", "Scene Depth World Units"))
  2127. Velocity=(Material="/Engine/BufferVisualization/Velocity.Velocity", Name=LOCTEXT("Velocity", "Velocity"))
  2128. PreTonemapHDRColor=(Material="/Engine/BufferVisualization/PreTonemapHDRColor.PreTonemapHDRColor", Name=LOCTEXT("PreTonemapHDRColor", "Pre Tonemap HDR Color"))
  2129. PostTonemapHDRColor=(Material="/Engine/BufferVisualization/PostTonemapHDRColor.PostTonemapHDRColor", Name=LOCTEXT("PostTonemapHDRColor", "Post Tonemap HDR Color"))
  2130. [DeviceProfileManager]
  2131. DeviceProfileSelectionModule=WindowsDeviceProfileSelector
  2132. [SlateRenderer]
  2133. TextureAtlasSize=1024
  2134. GrayscaleFontAtlasSize=1024
  2135. ColorFontAtlasSize=512
  2136. NumPreallocatedVertices=50000
  2137. [MobileSlateUI]
  2138. bTouchFallbackToMouse=true
  2139. [Pak]
  2140. bDoUseOodleDespiteNoPluginCompression=true
  2141. ExtensionsToNotUsePluginCompression=uplugin
  2142. ExtensionsToNotUsePluginCompression=upluginmanifest
  2143. ExtensionsToNotUsePluginCompression=uproject
  2144. ExtensionsToNotUsePluginCompression=ini
  2145. ExtensionsToNotUsePluginCompression=icu
  2146. ExtensionsToNotUsePluginCompression=res
  2147. FileNamesToNotUsePluginCompression=AssetRegistry.bin
  2148. DirectoryIndexKeepFiles=*/Config/Tags/*
  2149. DirectoryIndexKeepFiles=*/Content/Localization/*
  2150. DirectoryIndexKeepFiles=*/Content/Internationalization/*
  2151. DirectoryIndexKeepFiles=*/Content/Movies/*
  2152. DirectoryIndexKeepFiles=*/Plugins/*.uplugin*
  2153. DirectoryIndexKeepFiles=*/*.ini*
  2154. DirectoryIndexKeepFiles=*/*.upipelinecache*
  2155. DirectoryIndexKeepEmptyDirectories=*/Plugins/*
  2156. DirectoryIndexKeepEmptyDirectories=*/PipelineCaches/*
  2157. IndexValidationIgnore=*/Saved/Logs/*
  2158. [/Script/GameplayDebugger.GameplayDebuggingReplicator]
  2159. MaxEQSQueries=5
  2160. DebugComponentClassName=/Script/GameplayDebugger.GameplayDebuggingComponent
  2161. DebugComponentHUDClassName=/Script/GameplayDebugger.GameplayDebuggingHUDComponent
  2162. DebugComponentControllerClassName=/Script/GameplayDebugger.GameplayDebuggingControllerComponent
  2163. [/Script/GameplayDebugger.GameplayDebuggingHUDComponent]
  2164. MenuStartX=10.0
  2165. MenuStartY=10.0
  2166. DebugInfoStartX=20.0
  2167. DebugInfoStartY=60.0
  2168. [/Script/IOSRuntimeSettings.IOSRuntimeSettings]
  2169. bEnableGameCenterSupport=False
  2170. bSupportsPortraitOrientation=False
  2171. bSupportsITunesFileSharing=False
  2172. bSupportsUpsideDownOrientation=False
  2173. bSupportsLandscapeLeftOrientation=True
  2174. bSupportsLandscapeRightOrientation=True
  2175. PreferredLandscapeOrientation=LandscapeLeft
  2176. bSupportsMetal=True
  2177. bSupportsMetalMRT=False
  2178. bShipForBitcode=True
  2179. bGameSupportsMultipleActiveControllers=False
  2180. bAllowRemoteRotation=True
  2181. bUseAbsoluteDpadValues=False
  2182. bAllowControllers=True
  2183. bBuildAsFramework=False
  2184. bGenerateFrameworkWrapperProject=True
  2185. bGeneratedSYMFile=False
  2186. bDisableHTTPS=false
  2187. bUseRSync=True
  2188. BundleDisplayName=[PROJECT_NAME]
  2189. BundleName=[PROJECT_NAME]
  2190. BundleIdentifier=com.YourCompany.[PROJECT_NAME]
  2191. DevCodeSigningIdentity=iPhone Developer:;Apple Development:
  2192. DistroCodeSigningIdentity=iPhone Distribution:;Apple Distribution:
  2193. VersionInfo=1.0
  2194. FrameRateLock=PUFRL_30
  2195. bEnableDynamicMaxFPS=False
  2196. MinimumiOSVersion=IOS_15
  2197. bSupportsIPad=True
  2198. bSupportsIPhone=True
  2199. AdditionalPlistData=
  2200. RemoteServerName=
  2201. RemoteServerOverrideBuildPath=
  2202. RSyncUsername=
  2203. SSHPrivateKeyOverridePath=
  2204. bEnableRemoteNotificationsSupport=False
  2205. bEnableCloudKitSupport=False
  2206. bRunAsCurrentUser=False
  2207. IOSCloudKitSyncStrategy=None
  2208. bGenerateCrashReportSymbols=false
  2209. bAutomaticSigning=false
  2210. UseFastIntrinsics=False
  2211. ForceFloats=True
  2212. EnableMathOptimisations=True
  2213. MetalLanguageVersion=0
  2214. bDisableMotionData=False
  2215. bEnableAdvertisingIdentifier=True
  2216. [XcodeConfiguration]
  2217. bUseModernXcode=false
  2218. bUseModernCodeSigning=true
  2219. ModernSigningTeam=
  2220. ModernBundleIdentifier=com.YourCompany.[PROJECT_NAME]
  2221. [/Script/AndroidRuntimeSettings.AndroidRuntimeSettings]
  2222. SDKAPILevelOverride=
  2223. NDKAPILevelOverride=
  2224. BuildToolsOverride=
  2225. bEnableGooglePlaySupport=false
  2226. bSupportAdMob=true
  2227. bBuildForArm64=true
  2228. bBuildForX8664=false
  2229. bBuildForES31=true
  2230. bSupportsVulkan=true
  2231. bSupportsVulkanSM5=false
  2232. bDetectVulkanByDefault=true
  2233. bSplitIntoSeparateApks=false
  2234. bPackageDataInsideApk=false
  2235. bUseExternalFilesDir=false
  2236. bPublicLogFiles=true
  2237. bCreateAllPlatformsInstall=false
  2238. Orientation=SensorLandscape
  2239. InstallLocation=InternalOnly
  2240. DepthBufferPreference=Default
  2241. PackageName=com.YourCompany.[PROJECT]
  2242. StoreVersion=1
  2243. StoreVersionOffsetArmV7=0
  2244. StoreVersionOffsetArm64=0
  2245. StoreVersionOffsetX86=0
  2246. StoreVersionOffsetX8664=0
  2247. VersionDisplayName=1.0
  2248. MinSDKVersion=26
  2249. TargetSDKVersion=28
  2250. bEnableLint=false
  2251. bShowLaunchImage=true
  2252. bValidateTextureFormats=true
  2253. bMultiTargetFormat_ETC2=true
  2254. bMultiTargetFormat_DXT=true
  2255. bMultiTargetFormat_ASTC=true
  2256. TextureFormatPriority_ETC2=0.2
  2257. TextureFormatPriority_DXT=0.6
  2258. TextureFormatPriority_ASTC=0.9
  2259. bEnableNewKeyboard=True
  2260. bAndroidVoiceEnabled=false
  2261. bBuildWithHiddenSymbolVisibility=True
  2262. bSaveSymbols=false
  2263. bAllowControllers=True
  2264. bAllowIMU=False
  2265. bUseDisplayCutout=False
  2266. bEnableSnapshots=False
  2267. bRestoreNotificationsOnReboot=False
  2268. bEnableBundle=False
  2269. bEnableUniversalAPK=True
  2270. bBundleABISplit=True
  2271. bBundleLanguageSplit=True
  2272. bBundleDensitySplit=True
  2273. bFullScreen=True
  2274. bStripShaderReflection=True
  2275. bForceSmallOBBFiles=False
  2276. bAllowLargeOBBFiles=False
  2277. bAllowPatchOBBFile=False
  2278. bAllowOverflowOBBFiles=False
  2279. bExtractNativeLibs=true
  2280. bEnableDomStorage=False
  2281. bSkipLibCpp=False
  2282. bDisableLibCppSharedDependencyValidation=False
  2283. bDisableFunctionDataSections=False
  2284. bEnableAdvancedBinaryCompression=False
  2285. bDisableStackProtector=False
  2286. [/Script/AndroidPlatformEditor.AndroidSDKSettings]
  2287. SDKAPILevel=latest
  2288. NDKAPILevel=android-26
  2289. [/Script/UnrealEd.CookerSettings]
  2290. DefaultPVRTCQuality=1
  2291. DefaultASTCQualityBySpeed=1
  2292. DefaultASTCQualityBySize=3
  2293. ClassesExcludedOnDedicatedServer=WidgetBlueprint
  2294. ClassesExcludedOnDedicatedServer=GroupActor
  2295. ClassesExcludedOnDedicatedServer=MetaData
  2296. ClassesExcludedOnDedicatedServer=ObjectRedirector
  2297. ClassesExcludedOnDedicatedServer=NavMeshRenderingComponent
  2298. ClassesExcludedOnDedicatedServer=ReflectionCaptureComponent
  2299. ClassesExcludedOnDedicatedServer=TextRenderComponent
  2300. ClassesExcludedOnDedicatedServer=Font
  2301. ClassesExcludedOnDedicatedServer=InterpCurveEdSetup
  2302. ClassesExcludedOnDedicatedServer=MaterialExpression
  2303. ClassesExcludedOnDedicatedServer=NiagaraEmitter
  2304. ClassesExcludedOnDedicatedServer=NiagaraScript
  2305. ClassesExcludedOnDedicatedServer=ParticleEmitter
  2306. ClassesExcludedOnDedicatedServer=ParticleLODLevel
  2307. ClassesExcludedOnDedicatedServer=ParticleModule
  2308. ClassesExcludedOnDedicatedServer=SubUVAnimation
  2309. ClassesExcludedOnDedicatedServer=SoundNode
  2310. ClassesExcludedOnDedicatedServer=GameplayEffectUIData
  2311. ClassesExcludedOnDedicatedClient=WidgetBlueprint
  2312. ClassesExcludedOnDedicatedClient=GroupActor
  2313. ClassesExcludedOnDedicatedClient=MetaData
  2314. ClassesExcludedOnDedicatedClient=ObjectRedirector
  2315. ClassesExcludedOnDedicatedClient=InterpCurveEdSetup
  2316. VersionedIntRValues=r.AllowStaticLighting
  2317. VersionedIntRValues=r.GBuffer
  2318. VersionedIntRValues=r.VelocityOutputPass
  2319. VersionedIntRValues=r.SelectiveBasePassOutputs
  2320. VersionedIntRValues=r.DBuffer
  2321. VersionedIntRValues=r.Shaders.Symbols
  2322. VersionedIntRValues=r.Shaders.GenerateSymbols
  2323. VersionedIntRValues=r.Shaders.WriteSymbols
  2324. VersionedIntRValues=r.Shaders.AllowUniqueSymbols
  2325. VersionedIntRValues=r.Shaders.ExtraData
  2326. VersionedIntRValues=r.Shaders.Optimize
  2327. VersionedIntRValues=r.CompileShadersForDevelopment
  2328. VersionedIntRValues=r.MobileHDR
  2329. VersionedIntRValues=r.UsePreExposure
  2330. [/Script/UnrealEd.ChunkDependencyInfo]
  2331. [/Script/Engine.PhysicsSettings]
  2332. DefaultGravityZ=-980.0
  2333. bEnable2DPhysics=false
  2334. [/Script/WindowsTargetPlatform.WindowsTargetSettings]
  2335. bEnableDistanceFields=true
  2336. bEnableRayTracing=true
  2337. bTarget32Bit=false
  2338. DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
  2339. D3D12TargetedShaderFormats=PCD3D_SM6
  2340. D3D11TargetedShaderFormats=PCD3D_SM5
  2341. Compiler=Default
  2342. AudioSampleRate=48000
  2343. AudioCallbackBufferFrameSize=1024
  2344. AudioNumBuffersToEnqueue=1
  2345. AudioMaxChannels=0
  2346. AudioNumSourceWorkers=4
  2347. SpatializationPlugin=
  2348. SourceDataOverridePlugin=
  2349. ReverbPlugin=
  2350. OcclusionPlugin=
  2351. CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0)
  2352. CacheSizeKB=65536
  2353. MaxChunkSizeOverrideKB=0
  2354. bResampleForDevice=False
  2355. MaxSampleRate=48000.000000
  2356. HighSampleRate=32000.000000
  2357. MedSampleRate=24000.000000
  2358. LowSampleRate=12000.000000
  2359. MinSampleRate=8000.000000
  2360. CompressionQualityModifier=1.000000
  2361. AutoStreamingThreshold=0.000000
  2362. SoundCueCookQualityIndex=-1
  2363. [/Script/LinuxTargetPlatform.LinuxTargetSettings]
  2364. TargetedRHIs=SF_VULKAN_SM5
  2365. bEnableRayTracing=true
  2366. [/Script/MacTargetPlatform.MacTargetSettings]
  2367. MetalLanguageVersion=0
  2368. TargetedRHIs=SF_METAL_SM5
  2369. UseFastIntrinsics=False
  2370. EnableMathOptimisations=True
  2371. TargetArchitecture=MacTargetArchitectureUniversal
  2372. EditorTargetArchitecture=MacTargetArchitectureUniversal
  2373. [HMDPluginPriority]
  2374. OculusHMD=40
  2375. SteamVR=30
  2376. OpenXRHMD=20
  2377. [/Script/OculusHMD.OculusHMDRuntimeSettings]
  2378. XrApi=NativeOpenXR
  2379. [/Script/Engine.AISystemBase]
  2380. AISystemModuleName=AIModule
  2381. AISystemClassName=/Script/AIModule.AISystem
  2382. [/Script/AIModule.AISystem]
  2383. PerceptionSystemClassName=/Script/AIModule.AIPerceptionSystem
  2384. [AutomationController.History]
  2385. bTrackHistory=false
  2386. NumberOfHistoryItemsTracked=5
  2387. [VisualLogger]
  2388. FrameCacheLenght=1.0f ;in seconds, to batch log data between file serializations
  2389. UseCompression=false ;works only with binary files
  2390. [GameplayDebuggerSettings]
  2391. OverHead=True
  2392. Basic=True
  2393. BehaviorTree=False
  2394. EQS=False
  2395. EnableEQSOnHUD=true
  2396. Perception=False
  2397. GameView1=False
  2398. GameView2=False
  2399. GameView3=False
  2400. GameView4=False
  2401. GameView5=False
  2402. NameForGameView1=GameView1
  2403. NameForGameView2=GameView2
  2404. NameForGameView3=GameView3
  2405. NameForGameView4=GameView4
  2406. NameForGameView5=GameView5
  2407. [Browser]
  2408. bForceMessageLoop=true
  2409. [PacketSimulationProfile.Off]
  2410. PktLoss=0
  2411. PktIncomingLoss=0
  2412. PktLagMin=0
  2413. PktLagMax=0
  2414. PktIncomingLagMin=0
  2415. PktIncomingLagMax=0
  2416. [PacketSimulationProfile.Average]
  2417. PktLoss=1
  2418. PktIncomingLoss=1
  2419. PktLagMin=30
  2420. PktLagMax=60
  2421. PktIncomingLagMin=30
  2422. PktIncomingLagMax=60
  2423. [PacketSimulationProfile.Bad]
  2424. PktLoss=5
  2425. PktIncomingLoss=5
  2426. PktLagMin=100
  2427. PktLagMax=200
  2428. PktIncomingLagMin=100
  2429. PktIncomingLagMax=200
  2430. [/Script/Engine.NetworkSettings]
  2431. NetworkEmulationProfiles=(ProfileName="Average",ToolTip="Simulates average internet conditions")
  2432. NetworkEmulationProfiles=(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")
  2433. [PacketHandlerComponents]
  2434. [/Script/GameplayDebugger.GameplayDebuggingControllerComponent]
  2435. CategoryZeroBind=(Key=NumPadZero,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2436. CategoryOneBind=(Key=NumPadOne,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2437. CategoryTwoBind=(Key=NumPadTwo,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2438. CategoryThreeBind=(Key=NumPadThree,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2439. CategoryFourBind=(Key=NumPadFour,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2440. CategoryFiveBind=(Key=NumPadFive,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2441. CategorySixBind=(Key=NumPadSix,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2442. CategorySevenBind=(Key=NumPadSeven,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2443. CategoryEightBind=(Key=NumPadEight,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2444. CategoryNineBind=(Key=NumPadNine,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2445. CycleDetailsViewBind=(Key=Add,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2446. DebugCameraBind=(Key=Tab,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
  2447. OnScreenDebugMessagesBind=(Key=Tab,bShift=False,bCtrl=True,bAlt=False,bCmd=False)
  2448. GameHUDBind=(Key=Tilde,bShift=False,bCtrl=True,bAlt=False,bCmd=False)
  2449. [/Script/Engine.SkeletalMeshLODSettings]
  2450. LODGroups=(ScreenSize=(Default=1.0,PerPlatform=()),ReductionSettings=(NumOfTrianglesPercentage=.5))
  2451. LODGroups=(ScreenSize=(Default=.3,PerPlatform=()),ReductionSettings=(NumOfTrianglesPercentage=.25))
  2452. LODGroups=(ScreenSize=(Default=.15,PerPlatform=()),ReductionSettings=(NumOfTrianglesPercentage=.125))
  2453. LODGroups=(ScreenSize=(Default=.1,PerPlatform=()),ReductionSettings=(NumOfTrianglesPercentage=.06))
  2454. [/Script/Engine.PlayerCameraManager]
  2455. ServerUpdateCameraTimeout=2.0
  2456. [/Script/CinematicCamera.CineCameraSettings]
  2457. FilmbackPresets=(Name="16:9 Film",FilmbackSettings=(SensorWidth=24.00,SensorHeight=13.5))
  2458. FilmbackPresets=(Name="16:9 Digital Film",FilmbackSettings=(SensorWidth=23.76,SensorHeight=13.365))
  2459. FilmbackPresets=(Name="16:9 DSLR",FilmbackSettings=(SensorWidth=36,SensorHeight=20.25))
  2460. FilmbackPresets=(Name="Super 8mm",FilmbackSettings=(SensorWidth=5.79,SensorHeight=4.01))
  2461. FilmbackPresets=(Name="Super 16mm",FilmbackSettings=(SensorWidth=12.52,SensorHeight=7.58))
  2462. FilmbackPresets=(Name="Super 35mm",FilmbackSettings=(SensorWidth=24.89,SensorHeight=18.66))
  2463. FilmbackPresets=(Name="35mm Academy",FilmbackSettings=(SensorWidth=21.946,SensorHeight=16.002))
  2464. FilmbackPresets=(Name="35mm Full Aperture",FilmbackSettings=(SensorWidth=24.892,SensorHeight=18.9121))
  2465. FilmbackPresets=(Name="35mm VistaVision",FilmbackSettings=(SensorWidth=37.719,SensorHeight=25.146))
  2466. FilmbackPresets=(Name="IMAX 70mm",FilmbackSettings=(SensorWidth=70.41,SensorHeight=56.63))
  2467. FilmbackPresets=(Name="APS-C (Canon)",FilmbackSettings=(SensorWidth=22.2,SensorHeight=14.8))
  2468. FilmbackPresets=(Name="Full Frame DSLR",FilmbackSettings=(SensorWidth=36,SensorHeight=24))
  2469. FilmbackPresets=(Name="Micro Four Thirds",FilmbackSettings=(SensorWidth=17.3,SensorHeight=13))
  2470. DefaultFilmbackPreset=16:9 Digital Film
  2471. LensPresets=(Name="12mm Prime f/2.8",LensSettings=(MinFocalLength=12,MaxFocalLength=12,MinFStop=2.8,MaxFStop=22,DiaphragmBladeCount=7))
  2472. LensPresets=(Name="30mm Prime f/1.4",LensSettings=(MinFocalLength=30,MaxFocalLength=30,MinFStop=1.4,MaxFStop=22,DiaphragmBladeCount=7))
  2473. LensPresets=(Name="50mm Prime f/1.8",LensSettings=(MinFocalLength=50,MaxFocalLength=50,MinFStop=1.8,MaxFStop=22,DiaphragmBladeCount=7))
  2474. LensPresets=(Name="85mm Prime f/1.8",LensSettings=(MinFocalLength=85,MaxFocalLength=85,MinFStop=1.8,MaxFStop=22,DiaphragmBladeCount=7))
  2475. LensPresets=(Name="105mm Prime f/2",LensSettings=(MinFocalLength=105,MaxFocalLength=105,MinFStop=2,MaxFStop=22,DiaphragmBladeCount=7))
  2476. LensPresets=(Name="200mm Prime f/2",LensSettings=(MinFocalLength=200,MaxFocalLength=200,MinFStop=2,MaxFStop=22,DiaphragmBladeCount=7))
  2477. LensPresets=(Name="24-70mm Zoom f/2.8",LensSettings=(MinFocalLength=24,MaxFocalLength=70,MinFStop=2.8,MaxFStop=22,DiaphragmBladeCount=7))
  2478. LensPresets=(Name="70-200mm Zoom f/2.8",LensSettings=(MinFocalLength=70,MaxFocalLength=200,MinFStop=2.8,MaxFStop=22,DiaphragmBladeCount=7))
  2479. LensPresets=(Name="Universal Zoom",LensSettings=(MinFocalLength=4,MaxFocalLength=1000,MinFStop=1.2,MaxFStop=22,DiaphragmBladeCount=7))
  2480. DefaultLensPresetName=Universal Zoom
  2481. CropPresets=(Name="No Crop",CropSettings=(AspectRatio=0))
  2482. CropPresets=(Name="1.33 (4:3)",CropSettings=(AspectRatio=1.333333))
  2483. CropPresets=(Name="1.77 (16:9)",CropSettings=(AspectRatio=1.777778))
  2484. CropPresets=(Name="2.39",CropSettings=(AspectRatio=2.39))
  2485. DefaultCropPresetName=No Crop
  2486. DefaultLensFocalLength=35
  2487. DefaultLensFStop=2.8
  2488. [/Script/TcpMessaging.TcpMessagingSettings]
  2489. EnableTransport=True
  2490. ListenEndpoint=
  2491. ConnectionRetryDelay=2
  2492. [CrashReportClient]
  2493. bHideLogFilesOption=false
  2494. bIsAllowedToCloseWithoutSending=true
  2495. CrashConfigPurgeDays=2
  2496. [SteamVR.Settings]
  2497. HMDWornMovementThreshold=50.0
  2498. [/Script/Engine.AnimationSettings]
  2499. bStripAnimationDataOnDedicatedServer=False
  2500. BoneTimecodeCustomAttributeNameSettings=(HourAttributeName="TCHour",MinuteAttributeName="TCMinute",SecondAttributeName="TCSecond",FrameAttributeName="TCFrame",SubframeAttributeName="TCSubframe",RateAttributeName="TCRate",TakenameAttributeName="Takename")
  2501. [Animation.DefaultObjectSettings]
  2502. BoneCompressionSettings=/Engine/Animation/DefaultAnimBoneCompressionSettings
  2503. AnimationRecorderBoneCompressionSettings=/Engine/Animation/DefaultRecorderBoneCompression
  2504. CurveCompressionSettings=/Engine/Animation/DefaultAnimCurveCompressionSettings
  2505. [/Script/Engine.MeshSimplificationSettings]
  2506. r.MeshReductionModule=QuadricMeshReduction
  2507. [/Script/ClassViewer.ClassViewerProjectSettings]
  2508. InternalOnlyPaths=(Path="/Engine/VREditor")
  2509. InternalOnlyPaths=(Path="/Engine/Sequencer")
  2510. InternalOnlyPaths=(Path="/Engine/NotForLicensees")
  2511. InternalOnlyClasses=/Script/VREditor.VREditorBaseUserWidget
  2512. InternalOnlyClasses=/Script/LevelSequence.LevelSequenceBurnIn
  2513. [/Script/ClassViewer.StructViewerProjectSettings]
  2514. InternalOnlyPaths=(Path="/Engine/VREditor")
  2515. InternalOnlyPaths=(Path="/Engine/Sequencer")
  2516. InternalOnlyPaths=(Path="/Engine/NotForLicensees")
  2517. [/Script/LevelSequence.LevelSequence]
  2518. DefaultCompletionMode=RestoreState
  2519. [/Script/TemplateSequence.TemplateSequence]
  2520. DefaultCompletionMode=RestoreState
  2521. [PlatformCrypto]
  2522. PlatformRequiresDataCrypto=True
  2523. PakSigningRequired=True
  2524. PakEncryptionRequired=True
  2525. [/Script/AppleARKit.AppleARKitSettings]
  2526. bEnableLiveLinkForFaceTracking=true
  2527. LiveLinkPublishingPort=11111
  2528. bRequireDeviceSupportsARKit=true
  2529. [Messaging]
  2530. bAllowDelayedMessaging=false
  2531. [/Script/ChaosSolverEngine.ChaosSolverSettings]
  2532. DefaultChaosSolverActorClass=/Script/ChaosSolverEngine.ChaosSolverActor
  2533. [/Script/Engine.VirtualTexturePoolConfig]
  2534. Pools=(SizeInMegabyte=64, bAllowSizeScale=False, bEnableResidencyMipMapBias=True)
  2535. [PlatformPaths]
  2536. UnrealBuildTool=Engine/Build/BatchFiles/Build.bat
  2537. [AlternateTextureCompression]
  2538. TextureCompressionFormat=TextureFormatOodle
  2539. [TextureFormatOodleSettings]
  2540. bForceAllBC23ToBC7=False
  2541. bDebugColor=False
  2542. DebugDumpFilter=
  2543. LogVerbosity=0
  2544. GlobalLambdaMultiplier=1.000000
  2545. [/Script/Engine.TextureEncodingProjectSettings]
  2546. bFinalUsesRDO=false
  2547. FinalRDOLambda=30
  2548. FinalEffortLevel=Normal
  2549. FinalUniversalTiling=Disabled
  2550. bFastUsesRDO=false
  2551. FastRDOLambda=30
  2552. FastEffortLevel=Normal
  2553. FastUniversalTiling=Disabled
  2554. CookUsesSpeed=Final
  2555. EditorUsesSpeed=FinalIfAvailable
  2556. [OodleDataCompressionFormat]
  2557. PreallocatedBufferCount=2
  2558. [Plugins]
  2559. ConfigFilesPluginsCannotOverride=EditorPerProjectUserSettings
  2560. [ClothSettings]
  2561. EnvironmentCollisionPadding=2.f
  2562. EnvironmentCollisionThickness=2.f
  2563. EnvironmentCollisionMaxShapes=32
  2564. [/Script/InterchangeEngine.InterchangeProjectSettings]
  2565. FilePickerClass=/Script/InterchangeEditorUtilities.InterchangeFilePickerGeneric
  2566. bStaticMeshUseSmoothEdgesIfSmoothingInformationIsMissing=True
  2567. ContentImportSettings=(DefaultPipelineStackOverride=((Materials, "Materials"),(Textures, "Textures")),ShowPipelineStacksConfigurationDialogOverride=((Textures, False)),PipelineStacks=(("Assets", (Pipelines=("/Interchange/Pipelines/DefaultAssetsPipeline.DefaultAssetsPipeline"))),("Materials", (Pipelines=("/Interchange/Pipelines/DefaultMaterialPipeline.DefaultMaterialPipeline"))),("Textures", (Pipelines=("/Interchange/Pipelines/DefaultTexturePipeline.DefaultTexturePipeline")))),DefaultPipelineStack="Assets",PipelineConfigurationDialogClass="/Script/InterchangeEditorPipelines.InterchangePipelineConfigurationGeneric",bShowPipelineStacksConfigurationDialog=True)
  2568. SceneImportSettings=(PipelineStacks=(("Scene", (Pipelines=("/Interchange/Pipelines/DefaultSceneAssetsPipeline.DefaultSceneAssetsPipeline","/Interchange/Pipelines/DefaultSceneLevelPipeline.DefaultSceneLevelPipeline")))),DefaultPipelineStack="Scene",PipelineConfigurationDialogClass="/Script/InterchangeEditorPipelines.InterchangePipelineConfigurationGeneric",bShowPipelineStacksConfigurationDialog=True)
  2569. GenericPipelineClass=/Script/InterchangePipelines.InterchangeGenericAssetsPipeline
  2570. [InstalledPlatforms]
  2571. HasInstalledPlatformInfo=true
  2572. InstalledPlatformConfigurations=(PlatformName="Win64", Configuration="Development", PlatformType="Editor", bCanBeDisplayed=False)
  2573. InstalledPlatformConfigurations=(PlatformName="Win64", Configuration="DebugGame", PlatformType="Editor", bCanBeDisplayed=False)
  2574. InstalledPlatformConfigurations=(PlatformName="Win64", Configuration="DebugGame", PlatformType="Game", RequiredFile="Engine\Binaries\Win64\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2575. InstalledPlatformConfigurations=(PlatformName="Win64", Configuration="Development", PlatformType="Game", RequiredFile="Engine\Binaries\Win64\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2576. InstalledPlatformConfigurations=(PlatformName="Win64", Configuration="Shipping", PlatformType="Game", RequiredFile="Engine\Binaries\Win64\UnrealGame-Win64-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2577. InstalledPlatformConfigurations=(PlatformName="Android", Configuration="DebugGame", PlatformType="Game", Architecture="-armv7", RequiredFile="Engine\Binaries\Android\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2578. InstalledPlatformConfigurations=(PlatformName="Android", Configuration="DebugGame", PlatformType="Game", Architecture="-arm64", RequiredFile="Engine\Binaries\Android\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2579. InstalledPlatformConfigurations=(PlatformName="Android", Configuration="Development", PlatformType="Game", Architecture="-armv7", RequiredFile="Engine\Binaries\Android\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2580. InstalledPlatformConfigurations=(PlatformName="Android", Configuration="Development", PlatformType="Game", Architecture="-arm64", RequiredFile="Engine\Binaries\Android\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2581. InstalledPlatformConfigurations=(PlatformName="Android", Configuration="Shipping", PlatformType="Game", Architecture="-armv7", RequiredFile="Engine\Binaries\Android\UnrealGame-Android-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2582. InstalledPlatformConfigurations=(PlatformName="Android", Configuration="Shipping", PlatformType="Game", Architecture="-arm64", RequiredFile="Engine\Binaries\Android\UnrealGame-Android-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2583. InstalledPlatformConfigurations=(PlatformName="IOS", Configuration="DebugGame", PlatformType="Game", RequiredFile="Engine\Binaries\IOS\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2584. InstalledPlatformConfigurations=(PlatformName="IOS", Configuration="Development", PlatformType="Game", RequiredFile="Engine\Binaries\IOS\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2585. InstalledPlatformConfigurations=(PlatformName="IOS", Configuration="Shipping", PlatformType="Game", RequiredFile="Engine\Binaries\IOS\UnrealGame-IOS-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2586. InstalledPlatformConfigurations=(PlatformName="TVOS", Configuration="DebugGame", PlatformType="Game", RequiredFile="Engine\Binaries\TVOS\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2587. InstalledPlatformConfigurations=(PlatformName="TVOS", Configuration="Development", PlatformType="Game", RequiredFile="Engine\Binaries\TVOS\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2588. InstalledPlatformConfigurations=(PlatformName="TVOS", Configuration="Shipping", PlatformType="Game", RequiredFile="Engine\Binaries\TVOS\UnrealGame-TVOS-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2589. InstalledPlatformConfigurations=(PlatformName="Linux", Configuration="DebugGame", PlatformType="Game", Architecture="x86_64-unknown-linux-gnu", RequiredFile="Engine\Binaries\Linux\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2590. InstalledPlatformConfigurations=(PlatformName="Linux", Configuration="Development", PlatformType="Game", Architecture="x86_64-unknown-linux-gnu", RequiredFile="Engine\Binaries\Linux\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2591. InstalledPlatformConfigurations=(PlatformName="Linux", Configuration="Shipping", PlatformType="Game", Architecture="x86_64-unknown-linux-gnu", RequiredFile="Engine\Binaries\Linux\UnrealGame-Linux-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2592. InstalledPlatformConfigurations=(PlatformName="LinuxArm64", Configuration="DebugGame", PlatformType="Game", Architecture="aarch64-unknown-linux-gnueabi", RequiredFile="Engine\Binaries\LinuxArm64\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2593. InstalledPlatformConfigurations=(PlatformName="LinuxArm64", Configuration="Development", PlatformType="Game", Architecture="aarch64-unknown-linux-gnueabi", RequiredFile="Engine\Binaries\LinuxArm64\UnrealGame.target", ProjectType="Any", bCanBeDisplayed=False)
  2594. InstalledPlatformConfigurations=(PlatformName="LinuxArm64", Configuration="Shipping", PlatformType="Game", Architecture="aarch64-unknown-linux-gnueabi", RequiredFile="Engine\Binaries\LinuxArm64\UnrealGame-LinuxArm64-Shipping.target", ProjectType="Any", bCanBeDisplayed=False)
  2595. InstalledPlatformConfigurations=(PlatformName="HoloLens", Configuration="DebugGame", PlatformType="Game", Architecture="x64", RequiredFile="Engine\Binaries\HoloLens\UnrealGame-HoloLens-Developmentx64.target", ProjectType="Any", bCanBeDisplayed=False)
  2596. InstalledPlatformConfigurations=(PlatformName="HoloLens", Configuration="DebugGame", PlatformType="Game", Architecture="arm64", RequiredFile="Engine\Binaries\HoloLens\UnrealGame-HoloLens-Developmentarm64.target", ProjectType="Any", bCanBeDisplayed=False)
  2597. InstalledPlatformConfigurations=(PlatformName="HoloLens", Configuration="Development", PlatformType="Game", Architecture="x64", RequiredFile="Engine\Binaries\HoloLens\UnrealGame-HoloLens-Developmentx64.target", ProjectType="Any", bCanBeDisplayed=False)
  2598. InstalledPlatformConfigurations=(PlatformName="HoloLens", Configuration="Development", PlatformType="Game", Architecture="arm64", RequiredFile="Engine\Binaries\HoloLens\UnrealGame-HoloLens-Developmentarm64.target", ProjectType="Any", bCanBeDisplayed=False)
  2599. InstalledPlatformConfigurations=(PlatformName="HoloLens", Configuration="Shipping", PlatformType="Game", Architecture="x64", RequiredFile="Engine\Binaries\HoloLens\UnrealGame-HoloLens-Shippingx64.target", ProjectType="Any", bCanBeDisplayed=False)
  2600. InstalledPlatformConfigurations=(PlatformName="HoloLens", Configuration="Shipping", PlatformType="Game", Architecture="arm64", RequiredFile="Engine\Binaries\HoloLens\UnrealGame-HoloLens-Shippingarm64.target", ProjectType="Any", bCanBeDisplayed=False)
  2601. [Analytics]
  2602. UE4TypeOverride=Rocket
  2603. [OnlineServices.EOS.Auth]
  2604. DefaultExternalCredentialTypeStr=Steam
  2605. [/Script/HardwareTargeting.HardwareTargetingSettings]
  2606. TargetedHardwareClass=Desktop
  2607. AppliedTargetedHardwareClass=Desktop
  2608. DefaultGraphicsPerformance=Maximum
  2609. AppliedDefaultGraphicsPerformance=Maximum
  2610. [/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
  2611. CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
  2612. [/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
  2613. bEnablePlugin=True
  2614. bAllowNetworkConnection=True
  2615. SecurityToken=42DADDDE45054E32042791A98FE3BB32
  2616. bIncludeInShipping=False
  2617. bAllowExternalStartInShipping=False
  2618. bCompileAFSProject=False
  2619. bUseCompression=False
  2620. bLogFiles=False
  2621. bReportStats=False
  2622. ConnectionType=USBOnly
  2623. bUseManualIPAddress=False
  2624. ManualIPAddress=