Resident Evil 9: Best re_config.ini for Horror Realism vs FPS

The re_config.ini in RE9 manages the heavy-lifting of the new AI-driven upscalers (DLSS 4.5 / FSR 4) and the path-tracing bounce limits. To achieve the “Horror Realism” look without the “muddy” TAA of the past, we focus on the Variable Rate Shading (VRS) and Ray Reconstruction flags.

File Path

  1. Navigate to the game’s root installation folder:C:\Program Files (x86)\Steam\steamapps\common\RESIDENT EVIL 9 Requiem\
  2. Locate: re_config.ini
  3. Pro Tip: If you have an RTX 50-series card, ensuring DLSS4_MultiFrameGen is enabled in the config is the only way to hit 240Hz at 4K.

Optimized “Bio-Hazard” Configuration Block

ParameterRecommended ValueTechnical Purpose
RayTracingPathTracing1Enables full path tracing for true-to-life lighting in Raccoon City.
DLSS_PresetPreset_LThe 2026 Standard. Optimized for 4K upscaling from lower resolutions.
VRS_Mode2Enables Content-Adaptive VRS, saving GPU power on dark/static areas.
MeshShader_Enabled1Utilizes modern GPU hardware to stream complex zombie geometries.
[Graphics]
Capability=DirectX12
TargetPlatform=PC
RayTracingPathTracing=1
RayTracingBounceCount=2
DLSS_Enabled=1
DLSS_Mode=Quality
DLSS_Preset=Preset_L
DLSS4_MultiFrameGen=1
VRS_Mode=2
MeshShader_Enabled=1
TextureDetail=High
ShadowQuality=High

HowTo: Engineering Cinematic Dread at 120+ FPS

Follow these GameEngineer.net technical steps to master the RE neXt engine:

  1. Path Tracing vs. FPS: For the ultimate “Horror Realism,” keep RayTracingPathTracing=1 but set RayTracingBounceCount=1. This provides the iconic “inky blacks” and realistic light bleed in corridors without the $15\text{ms}$ latency penalty of multiple light bounces.
  2. The “Sweat Detail” Fix: Capcom hyped the high-fidelity skin and sweat droplets. To see these clearly without blur, set Sharpness=0.7 and disable Film Grain entirely in the config. Film grain in RE9 interferes with the Ray Reconstruction denoiser, leading to “smearing” on character faces.
  3. VRS Level 2 (Adaptive): Setting VRS_Mode=2 allows the engine to reduce shading rate in the pitch-black corners of the environment where detail isn’t visible. This can boost your FPS by 12–15% with zero perceived loss in horror atmosphere.
  4. CPU Bottlenecking (DRM Fix): Digital Foundry reported that RE9’s newest DRM can hit CPU throughput by 40% in intro scenes. To mitigate this, ensure MeshShader_Enabled=1 is active; this offloads some of the scene-assembly work from the CPU to the GPU’s primitive engines.
  5. PSSR / FSR 4 for Mid-Range: If you are on an older GPU (like a 3060 or 4060), use the new FSR 4 “Native AA” mode. It provides better edge stability than the default TAA and keeps the “cinematic” look of Raccoon City sharp even at 1080p.

Technical Explanation: Path Tracing and the Denoiser Gap

In Resident Evil 9, the move to Path Tracing ($PT$) replaces the “faked” screen-space reflections ($SSR$) and ambient occlusion ($SSAO$).

Because path tracing is mathematically expensive, the engine only samples a few rays per pixel ($spp$). This results in a noisy image that must be “cleaned” by a Denoiser. By using DLSS_Preset=Preset_L (or the FSR 4 equivalent), you are utilizing an AI model that understands the “temporal history” of the scene. It fills in the gaps between the rays to create “spine-chilling realism.” If you disable upscaling, you lose this AI-driven denoising, and the path-traced shadows will appear to “jitter” or “crawl,” breaking the immersion of the horror experience.

Leave a Comment