Settings Manager

Allows the easy change of Frostbite Settings e.g WorldRenderSettings.
Search for valid Settings here: Frostbite API | VU Docs

Get Source here:

Settings example for “high level of detail (lod)”:

from Shared/Config.lua

local SETTINGS_CONFIG = {
    MeshSettings = {
        forceLod = 0,
        globalLodScale = 1000,
        shadowDistanceScale = 1000
    },
    WorldRenderSettings = {
        shadowmapResolution = 4096,
        shadowmapViewDistance = 500,
        shadowmapQuality = 0
    },
    VegetationSystemSettings = {
        maxActiveDistance = 4000,
        shadowMeshEnable = true
    }
}

Adjust those or add more Settings to your liking

2 Likes