diff options
author | tpart <tpart120@proton.me> | 2024-06-29 20:53:47 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-06-29 20:53:51 +0200 |
commit | 8f63c462dccfa321e33bf4436cb33d845bdca879 (patch) | |
tree | 4ac338e9ae6b29ddc6637158cdd6eeefc86db5ea /client/global.gd | |
parent | 52dbf26f1e598ad7a095af09cf638b263db7dab0 (diff) | |
download | hurrycurry-8f63c462dccfa321e33bf4436cb33d845bdca879.tar hurrycurry-8f63c462dccfa321e33bf4436cb33d845bdca879.tar.bz2 hurrycurry-8f63c462dccfa321e33bf4436cb33d845bdca879.tar.zst |
Fix apply value is entire dictionary instead of reference; Tweak default presets
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/global.gd b/client/global.gd index da1d8515..427809be 100644 --- a/client/global.gd +++ b/client/global.gd @@ -52,9 +52,9 @@ var default_settings := { "graphics_preset": { "type": "dropdown_preset", "options": [tr("Low"), tr("Medium"), tr("High"), tr("Ultra")], - "value":1, + "value": 1, "description": tr("Graphics preset"), - "apply": GRAPHICS_PRESETS + "apply": "GRAPHICS_PRESETS" }, "voxel_gi": { "type": "toggle", @@ -98,7 +98,7 @@ const GRAPHICS_PRESETS = [ { "voxel_gi": true, "sdfgi": false, - "grass_amount": 24 + "grass_amount": 16 } ] |