Advertisement
Guest User

ArcheAge Big Bag of Tweaks

a guest
Apr 25th, 2014
897
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.92 KB | None | 0 0
  1. ---------------------
  2. -- Custom Settings
  3. -- CVar Details @ http://docs.cryengine.com/display/CRYAUTOGEN/Home
  4. ---------------------
  5.  
  6. -- General
  7. g_skipIntro = 1
  8.  
  9. -- Tests
  10. r_Scissor = 1
  11.  
  12. -- Render Sharpening
  13. r_Sharpening = 0.25
  14.  
  15. -- Color Grading
  16. r_ColorGrading = 2
  17.  
  18. -- Motion Blur
  19. r_motionblur = 2
  20.  
  21. -- Global Illumination
  22. e_GI = 1
  23.  
  24. -- Lighting
  25. r_FullDeferredShading = 2   -- Set me to 1 if you have a weaker system
  26. r_DeferredShadingSSS = 1
  27.  
  28. -- Screen Space Reflections
  29. r_SSReflections = 3
  30.  
  31. -- Fog
  32. r_FogShadows = 1
  33. r_fogShadowsWater = 1
  34.  
  35. -- Shadows
  36. e_ShadowsMaxTexRes = 2048
  37. e_ShadowsResScale = 40
  38. e_ShadowsPoolSize = 4096
  39. r_ShadowsPCFiltering = 1
  40.  
  41. -- SSAO / SSDO
  42. r_ssao = 3
  43. r_ssdo = 0
  44.  
  45. -- Draw Distance
  46. e_ViewDistRatio = 1200
  47. e_ViewDistRatioVegetation = 200
  48. e_ViewDistRatioDetail = 800
  49.  
  50. -- Merged Meshes (aka Flora)
  51. e_MergedMeshesInstanceDist = 32.0   -- Should be safe to set this value up to 96.0
  52. e_MergedMeshesViewDistRatio = 100
  53.  
  54. -- HDR
  55. r_HDRBrightLevel = 1.0
  56. r_HDRBloomRatio = 0.15
  57.  
  58. -- Level of Detail
  59. e_LodRatio = 800
  60. e_TerrainLodRatio = 800
  61.  
  62. -- Particles
  63. r_ParticlesSoftIsec = 1
  64. r_ParticlesRefraction = 1
  65. r_ParticlesTessellation = 1
  66. e_ParticlesForceSoftParticles = 1
  67. e_ParticlesObjectCollisions = 2
  68. e_ParticlesMotionBlur = 2
  69.  
  70. -- Water
  71. r_WaterReflectionsQuality = 3
  72. r_WaterVolumeCaustics = 1
  73.  
  74. -- DOF
  75. r_DepthOfField = 2
  76. r_DepthOfFieldBokeh = 3
  77.  
  78. -- Refraction
  79. r_Refraction = 1
  80.  
  81. -- Screen Space Indirect illumination (Does this work on AA's build?)
  82. r_SSII = 1
  83.  
  84. -- Terrain
  85. r_TerrainAO = 7
  86.  
  87. -- Sun Shafts
  88. r_sunshafts = 1
  89.  
  90. -- Light Beams
  91. r_Beams = 1 -- (3 default)
  92.  
  93. -- Engine Tesselation
  94. e_Tessellation = 1
  95.  
  96. -- Clouds
  97. e_Clouds = 1
  98. e_ShadowsClouds = 1
  99.  
  100. -- Weather
  101. r_Rain = 2
  102.  
  103. -- Character Animation
  104. ca_thread = 1
  105. ca_cloth_air_resistance = 1
  106. ca_ApplyJointVelocitiesMode = 1
  107. ca_eyes_procedural = 1
  108. ca_UseLookIK = 1
  109.  
  110. -- Sound
  111. s_HDR = 1
  112. s_HRTF_DSP = 0
  113. s_ReverbDynamic = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement