The “Orbital Visuals” fix focuses on maintaining high Space Quality (which affects the ship-to-surface visual link) while aggressively optimizing Particle Shadow Casting. In standard settings, the game tries to calculate dynamic shadows for every spark of an orbital explosion, which is an unnecessary CPU tax.
File Path
The configuration file is located in your Roaming AppData folder. Ensure you close the game before making these edits.
%APPDATA%\Arrowhead\Helldivers2\user_settings.config
Technical Note: Unlike other titles, Helldivers 2 uses a .config format that is sensitive to syntax. If you make a mistake, the game will reset the file to defaults. We recommend keeping a backup of your original file.
Optimized “Orbital Spectacle” Configuration Block
Search for these specific variables. This configuration prioritizes the “glow” and “impact” of orbitals while stripping away the performance-killing shadow calculations.
| Parameter | Recommended Value | Technical Purpose |
particles_cast_shadows | false | Disables shadow calculation for sparks; saves 10% FPS during barrages. |
particles_local_lighting | true | Keep this true. It allows orbital beams to light up the terrain realistically. |
space_quality | 3 (High) | Ensures the destroyers in the sky and the “beams” look crisp and detailed. |
volumetric_fog_quality | 1 (Low) | Reduces fog density so you can actually see the orbital impact through the dust. |
bloom_enabled | true | Essential for the “blinding light” effect of orbital lasers and railcannons. |
# Locate these entries in user_settings.config:
particles_cast_shadows = false
particles_local_lighting = true
particles_tesselation = false
particles_receive_shadows = true
space_quality = 3
volumetric_fog_quality = 1
volumetric_cloud_quality = 0
lighting_quality = 2
HowTo: Engineering a Cinematic Helldive
Follow these GameEngineer.net steps to maximize your visual depth on the battlefield:
- DirectX 11 Mode: If you experience “stuttering” when an orbital strike lands, add
--use-d3d11to your Steam Launch Options. DX11 often handles the high particle count of Helldivers 2 better on older mid-range CPUs. - The “Particle” Compromise: In-game, set Particle Quality to Medium. Setting it to “Low” makes the orbital explosions look “blocky” and pixelated, while “Ultra” provides diminishing returns for a massive FPS cost.
- Depth of Field & Blur: Set Motion Blur to
0and Depth of Field to Off. These effects soften the image, making the sharp “streak” of an incoming orbital strike look muddy. - Anti-Aliasing: Always keep Anti-Aliasing ON if you are using any Render Scale below “Native.” Because Helldivers 2 lacks DLSS/FSR 3 in its current 2026 build, the shimmering on orbital beams is distracting without AA.
- Async Compute: If you have an NVIDIA RTX card or a modern AMD card, ensure
async_compute = trueis set in your config. This allows the GPU to process orbital lighting and game logic in parallel.
Technical Explanation: Particle Lighting vs. Shadowing
The engine behind Helldivers 2 uses a complex Global Illumination system. When an Orbital Laser fires, it acts as a “Local Light Source.” By setting particles_local_lighting = true, we ensure that the beam actually casts a blue/white glow on the trees and enemies around it.
However, particles_cast_shadows = false is the “secret sauce.” In a 380mm barrage, there are thousands of debris particles. If each particle casts its own shadow, the Draw Call count triples, leading to the “frame-drops” players complain about. Disabling the shadows while keeping the lighting allows for the “cinematic glow” without the mathematical overhead that kills your FPS.