Manor Lords: Best GameUserSettings.ini for Village Detail

By default, Manor Lords aggressive Level of Detail (LOD) systems will “downgrade” building models or remove grass at relatively short distances. For GameEngineer.net, we aim to push these boundaries so your sprawling Tier 3 settlements remain sharp even from the highest bird’s-eye view. This requires forcing the engine to keep high-resolution assets in memory longer.

File Path

Manor Lords uses standard Unreal Engine configuration paths. You will primarily modify GameUserSettings.ini for basic toggles and Engine.ini for advanced render distance tweaks.

  • Config Folder: %LOCALAPPDATA%\ManorLords\Saved\Config\WindowsNoEditor\
  • Linux/Steam Deck: .../compatdata/1363080/pfx/drive_c/users/steamuser/AppData/Local/ManorLords/Saved/Config/WindowsNoEditor/

Optimized Village Detail Configuration Block

Paste the following into your Engine.ini under the [SystemSettings] header to increase the distance at which buildings and foliage maintain their high-quality “Village Detail”:

ParameterRecommended ValueTechnical Purpose
r.ViewDistanceScale2.0Doubles the distance at which objects (villagers, props) are rendered.
r.StaticMeshLODDistanceScale0.5Lower is better; forces higher-quality building models at further distances.
r.Shadow.DistanceScale1.5Extends the reach of sharp shadows across your fields and roads.
r.SkeletalMeshLODBias-1Prevents villager models from turning into “low-poly” versions too early.
foliage.LODDistanceScale2.0Keeps trees and bushes lush from the “Viscount” zoom level.
[SystemSettings]
r.ViewDistanceScale=2.0
r.StaticMeshLODDistanceScale=0.5
r.Shadow.DistanceScale=1.5
r.SkeletalMeshLODBias=-1
foliage.LODDistanceScale=2.0
r.Tonemapper.Quality=1
r.MotionBlurQuality=0

HowTo: Achieving Cinematic Clarity in Large Settlements

To ensure these ini tweaks translate into a smooth experience on GameEngineer.net, follow these optimization steps:

  1. Anti-Aliasing Selection: Use DLSS Quality or FSR Quality. Avoid TAA if you find the village looks “shimmery” or “ghosty” when moving the camera.
  2. Shader Quality vs. Shadow Quality: Keep Shader Quality at Ultra to maintain the realistic look of thatch and timber. However, drop Shadow Quality to High; the visual difference from Ultra is minimal, but it recovers roughly 15% of your GPU headroom.
  3. Foliage Quality Warning: Do not set Foliage to “Cinematic” unless you have 16GB+ of VRAM. High-density villages combined with Cinematic foliage can cause VRAM overflows during the Autumn season when leaf textures change.
  4. Process Priority: For large towns (1000+ residents), open Task Manager while the game is running, go to Details, and set ManorLords-Win64-Shipping.exe to High Priority. This helps the CPU handle the pathfinding logic faster.
  5. Disable Vignette: The r.Tonemapper.Quality=1 line in the ini removes the dark corners of the screen, providing a cleaner, more “documentary” look at your village layout.

Technical Explanation: Draw Distance and Mesh LODs

Manor Lords utilizes a “Cascaded LOD” system. Every building has multiple versions, ranging from LOD0 (high detail) to LOD3 (a simple box). By adjusting r.StaticMeshLODDistanceScale to 0.5, you are telling the engine to wait until a building is 50% further away before switching to a lower-quality version.

In high-density villages where you have dozens of Tier 3 Burgage Plots, the Draw Call count is the primary enemy. These ini tweaks increase the workload on the GPU by forcing it to render more polygons, but they eliminate the “popping” effect where roofs suddenly change shape as you zoom. When paired with r.ViewDistanceScale, the result is a village that feels “alive” and detailed from the borders of the region to the marketplace.

Leave a Comment