diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-27 17:53:35 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-27 17:53:35 +0200 |
commit | 5011f5cb98020c7ddcabe2507b76c7656a1cee8b (patch) | |
tree | 0adcf109a5dd2426506e5450a6b5ab9eebcea705 /client/global.gd | |
parent | b6713492c6f571ba9897532f129924f438909a07 (diff) | |
parent | b284e05536ea0f7dcfc294c02f803386f373a3cf (diff) | |
download | hurrycurry-5011f5cb98020c7ddcabe2507b76c7656a1cee8b.tar hurrycurry-5011f5cb98020c7ddcabe2507b76c7656a1cee8b.tar.bz2 hurrycurry-5011f5cb98020c7ddcabe2507b76c7656a1cee8b.tar.zst |
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/client/global.gd b/client/global.gd index 49b5f72e..f25845a6 100644 --- a/client/global.gd +++ b/client/global.gd @@ -30,11 +30,19 @@ var default_settings := { }, "server_binary": { "value": "", - "description": tr("The path of the server binary (leave empty to search PATH)") + "description": tr("Server binary (leave empty to search PATH)") }, "server_data": { "value": "", - "description": tr("The path of the server data directory (leave empty to auto-detect)") + "description": tr("Server data directory (leave empty to auto-detect)") + }, + "voxel_gi": { + "value": false, + "description": tr("Use VoxelGI (Blocks the game on map update)") + }, + "sdfgi": { + "value": false, + "description": tr("Use SDFGI (Doesn't block the game but is more resource-hungry)") }, } |