diff options
author | tpart <tpart120@proton.me> | 2024-07-03 18:02:15 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-03 18:02:41 +0200 |
commit | f92ac36cc36769b5ad5692ec82e5bbb1042ad557 (patch) | |
tree | 779bb4d95ed87a9a2b2c82ff95ca0309fdfc6c9a /client/global.gd | |
parent | bb7e2bc3967779ab43cb87465e66f5bf6dcb1c56 (diff) | |
download | hurrycurry-f92ac36cc36769b5ad5692ec82e5bbb1042ad557.tar hurrycurry-f92ac36cc36769b5ad5692ec82e5bbb1042ad557.tar.bz2 hurrycurry-f92ac36cc36769b5ad5692ec82e5bbb1042ad557.tar.zst |
Add debug info setting to show framerate in-game
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/global.gd b/client/global.gd index 9d0a376b..50a27c89 100644 --- a/client/global.gd +++ b/client/global.gd @@ -49,6 +49,7 @@ var default_settings := { "server_data": TextSetting.new(tr("Server data directory (leave empty to auto-detect)"), "", "Enter path"), "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), + "debug_info": ToggleSetting.new(tr("Display debug info (Framerate, etc.)"), 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), "latch_boost": ToggleSetting.new(tr("Always extend boost to maximum duration"), true) |