From 02a5fa7bbbe9538120bc966820bd10d159c90fca Mon Sep 17 00:00:00 2001 From: tpart Date: Mon, 23 Sep 2024 22:39:23 +0200 Subject: Increase default grass amount per tile --- client/settings.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client') 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) -- cgit v1.2.3-70-g09d2