diff options
author | tpart <tpart120@proton.me> | 2024-06-29 20:42:38 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-06-29 20:42:38 +0200 |
commit | c06d39a894906c17bd04be6281da9d2e2bb08838 (patch) | |
tree | 3194fa94a320ee15d77624e84347f56a38d250ea /client/global.gd | |
parent | 3fb89fbdaa05e411409f3107b856bd645fc0b58a (diff) | |
download | hurrycurry-c06d39a894906c17bd04be6281da9d2e2bb08838.tar hurrycurry-c06d39a894906c17bd04be6281da9d2e2bb08838.tar.bz2 hurrycurry-c06d39a894906c17bd04be6281da9d2e2bb08838.tar.zst |
Add graphics preset for grass amount; FIx typo in grass generation script
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/client/global.gd b/client/global.gd index b70f4894..da1d8515 100644 --- a/client/global.gd +++ b/client/global.gd @@ -79,22 +79,26 @@ const GRAPHICS_PRESETS = [ # Low: { "voxel_gi": false, - "sdfgi": false + "sdfgi": false, + "grass_amount": 0 }, # Medium: { "voxel_gi": false, - "sdfgi": false + "sdfgi": false, + "grass_amount": 16 }, # High: { "voxel_gi": false, - "sdfgi": true + "sdfgi": true, + "grass_amount": 16 }, # Ultra: { "voxel_gi": true, - "sdfgi": false + "sdfgi": false, + "grass_amount": 24 } ] |