Death Stranding 2: Best settings.cfg for Decima Engine Update

The settings.cfg file in the sequel is significantly more detailed than the first game, now including specific flags for Fluid Dynamic Simulation and Nanite-equivalent geometry streaming (Decima’s proprietary version).

File Path & Setup

  1. Navigate to: %LocalAppData%\KojimaProductions\DeathStranding2\profile\
  2. Locate: settings.cfg
  3. Pro Tip: If you encounter resolution resets, set your desktop resolution to match the game’s target before launching, as Decima 2026 still relies heavily on the desktop’s primary handle.

Optimized “Porter-Pro” Configuration Table

ParameterRecommended ValueTechnical Purpose
TerrainQuality4Enables the highest mesh density for rocky terrains.
FluidDynamics2The Water Fix. High-quality river mixing and viscosity effects.
StreamingMemoryUltraMandatory. Prevents “low-res” texture pop-in during fast travel.
DirectStorage1Offloads asset decompression to the GPU for near-zero loading.
VariableRateShadingAutoDynamically reduces shading on the screen edges (UI areas) to save FPS.
[Graphics]
QualityPreset=Custom
ResolutionScale=1.0
DLSS_Mode=Quality
RayReconstruction=1
StreamingMemoryLimit=Ultra
DirectStorageEnabled=true

[Decima_Next]
TerrainDetail=4
FoliageCollision=true
FluidSimulationQuality=2
AtmosphericFogHighRes=true

HowTo: Engineering the Ultimate Connection

Follow these GameEngineer.net technical steps to optimize the Decima Engine’s latest iteration:

  1. The Foliage Collision Trap: Death Stranding 2 features “Active Foliage” that reacts to Sam. While immersive, this can hit the CPU hard in dense forests. If you experience micro-stutters, set FoliageCollision=false in the cfg. The grass will still sway, but it won’t “bend” around Sam, saving significant calculation cycles.
  2. Water Viscosity & Mixing: The new Decima update allows clean and dirty water to mix realistically. To see this effect without a $10\text{ms}$ frame-time penalty, keep FluidSimulationQuality=2 (High) but avoid “Ultra,” as Ultra calculates fluid particles even when they are off-screen.
  3. VRAM Management (8GB Cards): If you are on an 8GB card, do not set StreamingMemory to Ultra. This will cause “Memory Swapping” with your system RAM, leading to massive hitches. Use “High” to keep the texture pool within your VRAM limit.
  4. Nixxes FrameGen Integration: In the 2026 build, DLSS 4 / FSR 4 Frame Generation is natively supported. If you have an RTX 40/50 series card, ensure FrameGen=true is in your config. Because Death Stranding 2 is a “slower” game, the latency penalty of Frame Gen is practically unnoticeable compared to the 2x FPS boost.
  5. DirectStorage 1.1: This is the first Decima PC game to fully utilize DirectStorage. Ensure your game is installed on an NVMe Gen4 SSD. If it is on a SATA SSD or HDD, disable DirectStorageEnabled in the config, or you will face frequent crashes during region transitions.

Technical Explanation: Decima’s Geometry Streaming

Unlike UE5’s Nanite, the Decima Engine uses a proprietary “Virtual Geometry” system.

When you set TerrainDetail=4, the engine breaks the landscape into millions of tiny “patches.” Instead of the CPU sending these patches one-by-one, the engine uses GPU-Driven Culling. The GPU checks your camera’s FOV and only streams the “patches” that are visible. This is why StreamingMemory is so important; if the buffer is too small, the GPU cannot store enough high-res patches for your peripheral vision, leading to the “blurry rock” syndrome. By maximizing the memory pool, you ensure the terrain looks sharp from Sam’s boots all the way to the distant horizon.

Leave a Comment