summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-08-15 00:05:29 +0200
committertpart <tpart120@proton.me>2024-08-15 00:05:29 +0200
commit3b1f4a1cc3b9600ad72164cd08bba1a711b45738 (patch)
treeb48abd99d44f30f7880f76f4a9a5e25d9f802cb6
parent16bdd6964705a9995d1ccd9451264db59a4e8879 (diff)
downloadhurrycurry-3b1f4a1cc3b9600ad72164cd08bba1a711b45738.tar
hurrycurry-3b1f4a1cc3b9600ad72164cd08bba1a711b45738.tar.bz2
hurrycurry-3b1f4a1cc3b9600ad72164cd08bba1a711b45738.tar.zst
Add more graphics presets
-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
}
})
]