Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
1,550
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_ShadowGenGS = 1
  40. --r_ShadowsDepthBoundNV = 1
  41. r_ShadowsPCFiltering = 1
  42.  
  43. -- SSAO / SSDO
  44. r_ssao = 3
  45. r_ssdo = 0
  46.  
  47. -- Draw Distance
  48. e_ViewDistRatio = 500
  49. e_ViewDistRatioVegetation = 200
  50. e_ViewDistRatioDetail = 200
  51.  
  52. -- Merged Meshes (aka Flora)
  53. e_MergedMeshesInstanceDist = 32.0
  54. e_MergedMeshesViewDistRatio = 100
  55.  
  56. -- HDR
  57. r_HDRBrightLevel = 1.0
  58. r_HDRBloomRatio = 0.15
  59.  
  60. -- Level of Detail
  61. e_LodRatio = 200
  62. e_TerrainLodRatio = 200
  63.  
  64. -- Particles
  65. r_ParticlesSoftIsec = 1
  66. r_ParticlesRefraction = 1
  67. r_ParticlesTessellation = 1
  68. e_ParticlesForceSoftParticles = 1
  69. e_ParticlesObjectCollisions = 2
  70. e_ParticlesMotionBlur = 2
  71.  
  72. -- Water
  73. r_WaterReflectionsQuality = 3
  74. r_WaterVolumeCaustics = 1
  75.  
  76. -- DOF
  77. r_DepthOfField = 2
  78. r_DepthOfFieldBokeh = 3
  79.  
  80. -- Refraction
  81. r_Refraction = 1
  82.  
  83. -- Screen Space Indirect illumination (Does this work on AA's build?)
  84. r_SSII = 1
  85.  
  86. r_TerrainAO = 7
  87.  
  88. -- Sun Shafts
  89. r_sunshafts = 1
  90.  
  91. -- Light Beams
  92. r_Beams = 1 -- (3 default)
  93.  
  94. -- Engine Tesselation
  95. e_Tessellation = 1
  96.  
  97. -- Clouds
  98. e_Clouds = 1
  99. e_ShadowsClouds = 1
  100.  
  101. -- Weather
  102. --r_Rain = 2
  103.  
  104. -- Character Animation
  105. ca_thread = 1
  106. ca_cloth_air_resistance = 1
  107. ca_ApplyJointVelocitiesMode = 1
  108. ca_eyes_procedural = 1
  109. ca_UseLookIK = 1
  110.  
  111. -- Sound
  112. s_HDR = 1
  113. s_HRTF_DSP = 0
  114. s_ReverbDynamic = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement