diff options
Diffstat (limited to 'client/settings.gd')
-rw-r--r-- | client/settings.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/settings.gd b/client/settings.gd index 269d58af..dec3ef2e 100644 --- a/client/settings.gd +++ b/client/settings.gd @@ -34,8 +34,8 @@ static func get_root(): SettingsCategory.new("graphics", [ PresetRow.new("preset", { "low": {"ui_blur": true, "aa": "disabled", "ssao": false, "taa": false, "shadows": false, "glow": false, "grass_amount": 0, "lq_trees": true}, - "medium": {"ui_blur": true, "aa": "fx", "ssao": false, "taa": false, "shadows": true, "glow": false, "grass_amount": 0, "lq_trees": false}, - "high": {"ui_blur": true, "aa": "ms2x", "ssao": true, "taa": false, "shadows": true, "glow": true, "grass_amount": 16, "lq_trees": false} + "medium": {"ui_blur": true, "aa": "fx", "ssao": false, "taa": false, "shadows": true, "glow": false, "grass_amount": 16, "lq_trees": false}, + "high": {"ui_blur": true, "aa": "ms2x", "ssao": true, "taa": false, "shadows": true, "glow": true, "grass_amount": 24, "lq_trees": false} }), DropdownSetting.new("fullscreen", "keep", ["keep", "always", "never"]), DropdownSetting.new("aa", "ms2x" if Global.on_high_end() else "disabled", ["disabled", "fx", "ms2x", "ms4x"]), @@ -44,7 +44,7 @@ static func get_root(): DropdownSetting.new("gi", "disabled", ["disabled", "sdfgi", "voxelgi"]), ToggleSetting.new("shadows", true if Global.on_high_end() else false), ToggleSetting.new("glow", true if Global.on_high_end() else false), - RangeSetting.new("grass_amount", 16 if Global.on_high_end() else 0, 0, 32, false), + RangeSetting.new("grass_amount", 24 if Global.on_high_end() else 0, 0, 32, false), ToggleSetting.new("lq_trees", false if Global.on_high_end() else true), ToggleSetting.new("debug_info", false), ToggleSetting.new("ui_blur", true) |