diff options
author | tpart <tpart120@proton.me> | 2025-10-04 12:56:32 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-10-04 12:56:32 +0200 |
commit | 1ff014de21c6f37399c222ac16cd5ae9b4bce219 (patch) | |
tree | f759a8e797f66401fa83356416a75083cb44ce16 | |
parent | 55d426dd7bbbeb4bd05b2134d93f32a71f7222e9 (diff) | |
download | hurrycurry-1ff014de21c6f37399c222ac16cd5ae9b4bce219.tar hurrycurry-1ff014de21c6f37399c222ac16cd5ae9b4bce219.tar.bz2 hurrycurry-1ff014de21c6f37399c222ac16cd5ae9b4bce219.tar.zst |
Remove controls explanation settings hook (Closes #438)
-rw-r--r-- | client/system/settings.gd | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/client/system/settings.gd b/client/system/settings.gd index 1a257472..e7f3e2f7 100644 --- a/client/system/settings.gd +++ b/client/system/settings.gd @@ -149,7 +149,6 @@ static func launch_setup(): static var change_hooks = { "input": { "static": h_input }, - "gameplay.tutorial_disabled": { "static": h_tutorial_disabled }, "graphics.aa": { "static": h_aa }, "graphics.taa": { "static": h_taa }, "graphics.fullscreen": { "static": h_fullscreen }, @@ -196,8 +195,3 @@ static func h_fullscreen(mode: String): "always": DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN) "never": if DisplayServer.window_get_mode() == DisplayServer.WINDOW_MODE_FULLSCREEN: DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED) - -static func h_tutorial_disabled(val: bool): - for input_method: String in ["keyboard", "joypad"]: - for hand_count: String in ["one", "two"]: - Profile.write("controls_%s_%s_handed_explained" % [input_method, hand_count], val) |