From 3b1f4a1cc3b9600ad72164cd08bba1a711b45738 Mon Sep 17 00:00:00 2001 From: tpart Date: Thu, 15 Aug 2024 00:05:29 +0200 Subject: Add more graphics presets --- client/global.gd | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) (limited to 'client') diff --git a/client/global.gd b/client/global.gd index ae98860d..e7f62091 100644 --- a/client/global.gd +++ b/client/global.gd @@ -76,10 +76,34 @@ var settings: Dictionary var presets: Array[Preset] = [ Preset.new(tr("Graphics"), { tr("Low"): { - "sdfgi": false + "ui_blur": false, + "aa": 0, + "ssao": false, + "taa": false, + "shadows": false, + "glow": false, + "grass_amount": 0, + "lq_trees": true + }, + tr("Medium"): { + "ui_blur": true, + "aa": 1, + "ssao": false, + "taa": false, + "shadows": true, + "glow": false, + "grass_amount": 0, + "lq_trees": false }, tr("High"): { - "sdfgi": true + "ui_blur": true, + "aa": 2, + "ssao": false, + "taa": false, + "shadows": true, + "glow": true, + "grass_amount": 16, + "lq_trees": false } }) ] -- cgit v1.2.3-70-g09d2