aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-07-18 11:13:45 +0200
committernokoe <nokoe@mailbox.org>2024-07-18 11:13:45 +0200
commitc6e90b3326cb35c7cd1dab520180a1d331b6e312 (patch)
treef776240879dbe599901d950045a8862f08450995 /client/global.gd
parentc457871aac886b9b015f4716c8ae69c20407a104 (diff)
downloadhurrycurry-c6e90b3326cb35c7cd1dab520180a1d331b6e312.tar
hurrycurry-c6e90b3326cb35c7cd1dab520180a1d331b6e312.tar.bz2
hurrycurry-c6e90b3326cb35c7cd1dab520180a1d331b6e312.tar.zst
add glow setting
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 e3fe9000..8fd9e399 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -55,6 +55,7 @@ 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),
"shadows": ToggleSetting.new(tr("Enable shadows"), true),
+ "glow": ToggleSetting.new(tr("Enable glow"), 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),