aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-07-04 10:05:04 +0200
committertpart <tpart120@proton.me>2024-07-04 10:05:04 +0200
commit3d2bae03a51f8f96f0983af11ff7bfe693e7dbd9 (patch)
tree1a1ab1733eeadf695cf87913399cd97b88405ace /client/global.gd
parent93583ac4d3b8ff2e0068b76582d3fffb426e0781 (diff)
downloadhurrycurry-3d2bae03a51f8f96f0983af11ff7bfe693e7dbd9.tar
hurrycurry-3d2bae03a51f8f96f0983af11ff7bfe693e7dbd9.tar.bz2
hurrycurry-3d2bae03a51f8f96f0983af11ff7bfe693e7dbd9.tar.zst
Add setting to disable shadows
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/global.gd b/client/global.gd
index db85a603..a8a34871 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -50,6 +50,7 @@ var default_settings := {
"taa": ToggleSetting.new(tr("Temporal Anti-Aliasing"), false),
"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),
+ "shadows": ToggleSetting.new(tr("Enable shadows"), true),
"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),