Kenshi: Best settings.cfg for Loading Zone Speed Fix

To truly fix the loading stutters, we need to adjust how much the game tries to keep in memory and how aggressively it culls distant objects. While the in-game “Fast Zone Hopping” helps if you have multiple squads, it can actually slow down travel for a single squad by keeping irrelevant areas loaded.

File Path

The settings.cfg is located in the root folder of your Kenshi installation.

  • Steam Path: C:\Program Files (x86)\Steam\steamapps\common\Kenshi\settings.cfg
  • Direct Install: C:\Games\Kenshi\settings.cfg

Technical Note: Unlike other titles, Kenshi usually respects edits even without the “Read-only” flag. However, if you change settings in-game, it will overwrite your manual tweaks.

Optimized Loading & Performance Block

Open settings.cfg with a text editor and update these specific variables. These are tuned to reduce the VRAM and CPU overhead that causes the “Loading” hang.

ParameterRecommended ValueTechnical Purpose
terrain_detail1Reduces the complexity of the ground mesh, speeding up cell generation.
view_distance3000Limits how many distant chunks the engine tries to pre-load.
fast_zone_switching0Disables keeping old zones in RAM; vital for single-squad travel speed.
num_texture_units2Simplifies the rendering pipeline for the Ogre Engine.
generate_distant_terrain0Disables the low-poly far mesh which often causes stutter when updated.
terrain_detail=1
view_distance=3000.000000
foliage_range=1500.000000
fast_zone_switching=0
generate_distant_terrain=0
num_texture_units=2

HowTo: Engineering an Instant-Load Kenshi Experience

Beyond the config file, GameEngineer.net recommends these 2026 “Essential Engineering” steps to eliminate stutters:

  1. The “Compressed Textures” Mod: This is the #1 performance fix. It replaces 4K/2K textures with optimized versions that look identical but load $50\%$ faster.
  2. RAMDisk (The Nuclear Option): If you have $32GB+$ of RAM, move the entire Kenshi folder to a RAMDisk. This makes the “Loading” message vanish almost instantly, as the Ogre Engine no longer waits on drive I/O.
  3. V-Sync & Triple Buffering: In your GPU control panel, force V-Sync ON and Triple Buffering ON, then disable V-Sync in the Kenshi menu. This stabilizes the frame-time and prevents “camera hitching” during zone transitions.
  4. Clean and Speed Mod: Use a “Foliage/Stone Total Rework” mod. Removing thousands of tiny, non-interactive pebbles reduces the number of “entries” the game has to load per cell.
  5. Threaded Optimization: In NVIDIA/AMD settings, set Threaded Optimization to OFF. Kenshi is single-core; forcing the driver to manage multiple threads often confuses the engine, leading to longer load times.

Technical Explanation: Chunk Streaming and the Ogre Engine

Kenshi divides its world into Cells. As your character moves, the engine performs a “Neighbor Check.” If you are close to the edge of a cell, it begins a background thread to load the next three cells in that direction.

Setting fast_zone_switching=0 ensures that the engine’s memory buffer (RAM) is cleared of old cells immediately. If this is on, the engine tries to juggle the cells of your current squad and the cells of your base at the same time. On a single-threaded architecture, this creates a “traffic jam” on the CPU, resulting in the dreaded 10-second “Loading…” pause. By stripping the terrain_detail and foliage range, we ensure each cell is “lightweight” enough to be streamed in under $1$ second.

Leave a Comment