Index: binaries/data/mods/public/gui/options/options.json =================================================================== --- binaries/data/mods/public/gui/options/options.json +++ binaries/data/mods/public/gui/options/options.json @@ -205,6 +205,48 @@ }, { "type": "boolean", + "label": "Smooth vision", + "tooltip": "Lift darkness and fog-of-war smoothly.", + "config": "smoothlos", + "function": "Renderer_SetSmoothLOSEnabled" + }, + { + "type": "boolean", + "label": "Show sky", + "tooltip": "Render Sky.", + "config": "showsky", + "function": "Renderer_SetShowSkyEnabled" + }, + { + "type": "boolean", + "label": "VSync", + "tooltip": "Run vertical sync to fix screen tearing. REQUIRES GAME RESTART", + "config": "vsync" + }, + { + "type": "slider", + "label": "FPS throttling in menus", + "tooltip": "To save CPU workload, throttle render frequency in all menus. Set to maximum to disable throttling.", + "config": "adaptivefps.menu", + "min": 20, + "max": 100 + }, + { + "type": "slider", + "label": "FPS throttling in games", + "tooltip": "To save CPU workload, throttle render frequency in running games. Set to maximum to disable throttling.", + "config": "adaptivefps.session", + "min": 20, + "max": 100 + } + ] + }, + { + "label": "Water effects", + "options": + [ + { + "type": "boolean", "label": "Water effects", "tooltip": "When OFF, use the lowest settings possible to render water. This makes other settings irrelevant.", "config": "watereffects", @@ -249,42 +291,6 @@ "dependencies": ["watereffects"], "config": "shadowsonwater", "function": "Renderer_SetWaterShadowsEnabled" - }, - { - "type": "boolean", - "label": "Smooth vision", - "tooltip": "Lift darkness and fog-of-war smoothly.", - "config": "smoothlos", - "function": "Renderer_SetSmoothLOSEnabled" - }, - { - "type": "boolean", - "label": "Show sky", - "tooltip": "Render Sky.", - "config": "showsky", - "function": "Renderer_SetShowSkyEnabled" - }, - { - "type": "boolean", - "label": "VSync", - "tooltip": "Run vertical sync to fix screen tearing. REQUIRES GAME RESTART", - "config": "vsync" - }, - { - "type": "slider", - "label": "FPS throttling in menus", - "tooltip": "To save CPU workload, throttle render frequency in all menus. Set to maximum to disable throttling.", - "config": "adaptivefps.menu", - "min": 20, - "max": 100 - }, - { - "type": "slider", - "label": "FPS throttling in games", - "tooltip": "To save CPU workload, throttle render frequency in running games. Set to maximum to disable throttling.", - "config": "adaptivefps.session", - "min": 20, - "max": 100 } ] },