summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/global.gd28
1 files changed, 26 insertions, 2 deletions
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
}
})
]