diff options
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 8bc119e1..f36296a9 100644 --- a/client/global.gd +++ b/client/global.gd @@ -67,7 +67,8 @@ var default_settings := { "lq_trees": ToggleSetting.new(tr("Low-poly trees"), false if on_high_end() else true), "setup_complete": ToggleSetting.new(tr("Initial setup complete. (Uncheck and restart to reenter)"), false), "tutorial_started": ToggleSetting.new(tr("Tutorial started"), false), - "latch_boost": ToggleSetting.new(tr("Always extend boost to maximum duration"), true) + "latch_boost": ToggleSetting.new(tr("Always extend boost to maximum duration"), true), + "ui_blur": ToggleSetting.new(tr("Enable UI blur"), true) } var profile: Dictionary |