The objective is to fix the erratic frame-time spikes that occur when moving between different zones by optimizing the engine’s memory allocation and shading path.
File Path & Access
File Path: [Installation Folder]\Wuthering Waves\Wuthering Waves Game\Client\Saved\Config\WindowsNoEditor\
Step-by-Step Instructions:
- Navigate to the directory above.
- Locate
Engine.ini. (Always create a backup namedEngine_Backup.inibefore editing). - Right-click and open with Notepad.
- Paste the configuration block below at the very end of the file.
- Save and set the file to Read-only to prevent the game from resetting your custom parameters.
Optimized “Traveler-Smooth” Configuration Block
[/Script/Engine.RendererSettings]
r.Streaming.PoolSize=4096
r.Streaming.LimitPoolSizeToVRAM=1
r.Streaming.Boost=1.5
r.Shaders.Optimize=1
r.GTSyncType=1
r.FinishCurrentFrame=0
r.SceneColorFringeQuality=0
r.DepthOfFieldQuality=0
r.MaxAnisotropy=16
[ConsoleVariables]
s.AsyncLoadingThreadEnabled=True
s.PriorityAsyncLoadingExtraTime=5.0
Parameter Details & Technical Purpose
| Parameter | Recommended Value | Technical Purpose |
r.Streaming.PoolSize | 4096 | Allocates a 4GB VRAM buffer for textures (set higher if you have 12GB+ VRAM) to stop “pop-in.” |
s.AsyncLoadingThreadEnabled | True | The Stutter Fix. Moves world loading to a background thread, preventing frame-time spikes. |
r.GTSyncType | 1 | Optimizes the synchronization between the CPU game logic and the GPU render thread. |
r.SceneColorFringeQuality | 0 | Disables Chromatic Aberration, significantly increasing the clarity of distant landscapes. |
r.Streaming.Boost | 1.5 | Increases the speed at which the engine requests high-res textures as you approach them. |
Best Practices for 2026 Solaris-3 Stability
To fully optimize your exploration of the new 2026 map expansions, follow these additional GameEngineer.net technical steps:
- Shadow Resolution Protocol: In the in-game settings, set Shadow Quality to Medium. In WuWa, “High” and “Ultra” shadows are extremely CPU-intensive because the engine constantly re-calculates shadow maps for foliage as you move.
- The “Volumetric” Drain: Disable Volumetric Fog and Volumetric Lighting if you are on a mid-range card. These settings contribute to ~15% of the GPU load in forest areas like the Dim Forest.
- 120 FPS Unlock: If you have a high-refresh-rate monitor, ensure you have enabled the 120 FPS option in the Graphics menu (added in later patches). If it’s locked, you can force it via the Registry, but the
Engine.initweaks above are more effective for stability. - DirectX 11 vs 12: If you experience frequent crashes or extreme stuttering, try switching to DX11 by adding
-dx11to your launcher arguments. While DX12 offers better average FPS, WuWa’s DX11 implementation is often more stable for “1% low” frame rates.