Silent Hill 2 Remake: Best Engine.ini for Volumetric Lighting Fix

The secret to fixing the fog lies in the VolumetricFog grid settings. By default, UE5 uses a low-resolution grid to save performance, but this causes the “blocky” or “laggy” look when light shafts (god rays) pierce through the mist.

File Path & Setup

  1. Navigate to: %LocalAppData%\SilentHill2\Saved\Config\Windows\
  2. Locate: Engine.ini
  3. Pro Tip: After pasting the code, right-click the file, select Properties, and check Read-Only. This prevents the game from resetting your “GridPixelSize” to the blurry default.

Optimized “Fog Stability” Configuration Table

ParameterRecommended ValueTechnical Purpose
r.VolumetricFog.GridPixelSize4The Clarity King. Halves the pixel grid size for ultra-sharp fog detail.
r.VolumetricFog.GridSizeZ256Doubles the depth slices, making light shafts look solid rather than layered.
r.VolumetricFog.HistoryWeight0.65Fixes Ghosting. Speeds up fog updates so it doesn’t “trail” behind moving objects.
r.Lumen.Reflections.Temporal0Removes shimmering from wet surfaces and puddles in the fog.
[SystemSettings]
; Volumetric Fog Fixes
r.VolumetricFog=1
r.VolumetricFog.GridPixelSize=4
r.VolumetricFog.GridSizeZ=256
r.VolumetricFog.HistoryWeight=0.65
r.VolumetricFog.LightFunctionQueries=1

; Lighting & Ghosting Fixes
r.Lumen.ScreenProbeGather.TracingOctahedronResolution=16
r.Lumen.Reflections.BilateralFilter=1
r.Lumen.Reflections.ScreenSpaceReconstruction=1
r.Lumen.Reflections.Temporal=0

; Post-Process Cleanup
r.SceneColorFringeQuality=0
r.MaxAnisotropy=16

HowTo: Engineering the Perfect Fog Density

Follow these GameEngineer.net technical steps to achieve the ultimate 2026 remaster look:

  1. Eliminating the “Fog Trail”: If you see a dark silhouette trailing James as he runs through the town, your HistoryWeight is too high. Setting it to 0.65 forces the engine to rely more on the current frame’s data. Note: This may introduce slight “flicker” in the distance, but it completely removes the immersion-breaking ghosting.
  2. The “Lighthouse” Ray Fix: In scenes with intense volumetric rays, the fog can look “banded.” Setting r.VolumetricFog.GridSizeZ=256 increases the number of Z-axis slices. This makes the transition between light and shadow within the fog perfectly smooth.
  3. Lumen Sparkle Reduction: Silent Hill 2’s dark interiors often have “white pixels” or sparkles on walls. We’ve included r.Lumen.ScreenProbeGather.TracingOctahedronResolution=16 to increase the accuracy of the light probes, cleaning up the “noise” in the darkness.
  4. Disabling Chromatic Aberration: The default “color fringing” makes the fog look muddy. Setting r.SceneColorFringeQuality=0 removes this artificial lens blur, making the 2026 4K textures pop through the mist.
  5. Ray Tracing vs. Fog: In early 2026 builds, enabling Hardware Ray Tracing can sometimes “thin out” the volumetric fog. If you lose that classic thickness, stay with Software Lumen and use our .ini tweaks to maintain the “oppressive” density.

Technical Explanation: Grid Pixel Size ($G_{px}$)

In Unreal Engine 5, volumetric fog is calculated in a 3D volume grid (Frustum Voxel Grid). The r.VolumetricFog.GridPixelSize determines the XY resolution of this grid.

A default value of 8 means the fog is calculated at $1/8\text{th}$ of your screen resolution. By changing this to 4, you are effectively quadrupling the resolution of the fog simulation ($2 \times$ resolution in each axis). This allows the engine to capture the fine edges of light shafts and the “swirling” nature of the mist with much higher mathematical precision, eliminating the blocky artifacts seen at 1080p and 1440p.

Leave a Comment