Advertisement
Diabetech

Untitled

Oct 23rd, 2019
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. [Core.System]
  2. Paths=../../../Engine/Content
  3. Paths=%GAMEDIR%Content
  4. Paths=../../../CodeVein/Plugins/NetCommon/Content
  5. Paths=../../../CodeVein/Plugins/Wwise/Content
  6. Paths=../../../Engine/Plugins/Runtime/CriWare/CriWare/Content
  7. Paths=../../../CodeVein/Plugins/SpriteStudio5/Content
  8. Paths=../../../Engine/Plugins/2D/Paper2D/Content
  9. Paths=../../../Engine/Plugins/Media/MediaCompositing/Content
  10. Paths=../../../Engine/Plugins/Runtime/AppleARKit/Content
  11.  
  12. [SystemSettings]
  13. ;Settings make the game run better
  14. r.Streaming.PoolSize=0 ; first make streaming pool size unlimited, game default = 3000
  15. r.Streaming.LimitPoolSizeToVRAM=1 ; and then limit pool size to VRAM size, game default = 0
  16. r.Streaming.MaxTempMemoryAllowed=128 ; game default = 50, lets increase it a little
  17. ;Remove distortion / chromatic aberration from the low hp shit
  18. r.SceneColorFringe.Max=0
  19. r.SceneColorFringeQuality=0
  20. ;Removing fog / volumetric fog / motion blur / bloom because I think it's shit too
  21. r.Fog=0
  22. r.VolumetricFog=0
  23. r.DefaultFeature.MotionBlur=False
  24. r.DefaultFeature.MotionBlur=0
  25. r.MotionBlur.Max=0
  26. r.MotionBlurQuality=0
  27. r.BloomQuality=0
  28. r.LensFlareQuality=0
  29. r.DefaultFeature.LensFlare=0
  30. r.Tonemapper.GrainQuantization=0
  31. ;I don't like depth of field
  32. r.DepthOfFieldQuality=0
  33. ;Uses better textures for things
  34. r.Streaming.UseAllMips=1 ; remove any resolution requirements for mips, game default = 0
  35. r.Streaming.MipBias=-15 ; always use best mips, default = 0
  36. r.MipMapLodBias=-15 ; always use best mips, default = 0
  37. ;Random shit
  38. r.MSAA.CompositingSampleCount=0 ; MSAA doesn't work in this game, so disable it, game default = 4
  39. r.Filter.SizeScale=2 ; double sample count for bloom/DoF, game default = 1
  40. r.LightFunctionQuality=3 ; use highest light function quality, game default = 1
  41. r.SSS.HalfRes=0 ; use full resolution for SSR, default = 1
  42. r.Tonemapper.Sharpen=.75 ; sharpens the image slightly (try 1 for even sharper image and see which you prefer), game default = 0
  43. r.SceneColorFormat=4 ; better color format for scene, default = 3
  44. r.EmitterSpawnRateScale=2 ; increase emitter (fog/smoke) spawn rate, default = 1, was 2
  45. r.ScreenPercentage=104 ; Slight natural AA, game default = 100
  46. r.Streaming.HiddenPrimitiveScale=1 ; keep assets at full resolution even when out of view, game default = 0.5
  47. ;Uses better texturizer
  48. r.TonemapperFilm=1 ; game default = 0
  49. r.DefaultFeature.Bloom=0
  50. r.Tonemapper.Quality=0
  51. ;Makes game not change the brightness on me so I can adjust settings better
  52. r.EyeAdaptionQuality=0
  53. r.EyeAdaptationQuality=0
  54. ;Better shading
  55. r.Shadow.MaxCSMResolution=4096 ; double shadow resolution, game default = 2048
  56. r.Shadow.MaxResolution=4096 ; double shadow resolution, game default = 2048
  57. r.Shadow.MaxSoftKernelSize=80 ; double size of soft kernel, game default = 40
  58. r.Shadow.TexelsPerPixel=16 ; increase shadow texels per screen pixel, game default = 1.27324
  59. ;Brightens the game up a tad
  60. r.Color.Mid=.45
  61.  
  62. [/script/engine.engine]
  63. ;More brightness
  64. DisplayGamma=5
  65.  
  66. [WinDrv.WindowsClient]
  67. ;Less contrast so darker colors aren't as prominent
  68. Contrast=0.700000
  69.  
  70. [WindowsApplication.Accessibility]
  71. StickyKeysHotkey=True
  72. ToggleKeysHotkey=True
  73. FilterKeysHotkey=True
  74. StickyKeysConfirmation=True
  75. ToggleKeysConfirmation=True
  76. FilterKeysConfirmation=True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement