diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-03 17:26:20 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-03 17:26:20 +0200 |
commit | bb7e2bc3967779ab43cb87465e66f5bf6dcb1c56 (patch) | |
tree | 8f4cc6265029a5e2868e116339d7cf7a59801ced /client/global.gd | |
parent | a4c0ac371157bf31ea0693b55b01d39b8d20cfb5 (diff) | |
download | hurrycurry-bb7e2bc3967779ab43cb87465e66f5bf6dcb1c56.tar hurrycurry-bb7e2bc3967779ab43cb87465e66f5bf6dcb1c56.tar.bz2 hurrycurry-bb7e2bc3967779ab43cb87465e66f5bf6dcb1c56.tar.zst |
latch boost
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd index 30edbce5..9d0a376b 100644 --- a/client/global.gd +++ b/client/global.gd @@ -50,7 +50,8 @@ var default_settings := { "voxel_gi": ToggleSetting.new(tr("Use VoxelGI (Blocks the game on map update but is more accurate)"), false), "sdfgi": ToggleSetting.new(tr("Use SDFGI (Doesn't block the game but produces more artifacts)"), false), "grass_amount": RangeSetting.new(tr("3D grass amount per grass tile"), 16, 0, 32), - "setup_complete": ToggleSetting.new(tr("Initial setup complete. (Uncheck and restart to reenter)"), false) + "setup_complete": ToggleSetting.new(tr("Initial setup complete. (Uncheck and restart to reenter)"), false), + "latch_boost": ToggleSetting.new(tr("Always extend boost to maximum duration"), true) } var profile: Dictionary |