diff options
| author | metamuffin <metamuffin@noreply.codeberg.org> | 2024-09-07 13:37:23 +0000 |
|---|---|---|
| committer | metamuffin <metamuffin@noreply.codeberg.org> | 2024-09-07 13:37:23 +0000 |
| commit | 091f8ff9acf04cedf14765e9db5540c876fd7375 (patch) | |
| tree | 4c115d6cb14df5d68bc72785f1020ed4ad2fb8e2 /client/player/controllable_player.gd | |
| parent | af108805c8fd87a9d20a8df02072f224d2cd3417 (diff) | |
| parent | 3ef379fb07df126ea09cb112801a0bef371f8811 (diff) | |
| download | hurrycurry-091f8ff9acf04cedf14765e9db5540c876fd7375.tar hurrycurry-091f8ff9acf04cedf14765e9db5540c876fd7375.tar.bz2 hurrycurry-091f8ff9acf04cedf14765e9db5540c876fd7375.tar.zst | |
Merge pull request 'Refactor settings system and localization' (#123) from new-settings into master
Reviewed-on: https://codeberg.org/hurrycurry/hurrycurry/pulls/123
Diffstat (limited to 'client/player/controllable_player.gd')
| -rw-r--r-- | client/player/controllable_player.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index 81315630..142d5f47 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -60,7 +60,7 @@ func _process(delta): func _process_movement(delta): var input = Input.get_vector("left", "right", "forwards", "backwards") if is_input_enabled() else Vector2.ZERO - var boost = Input.is_action_pressed("boost") or (Global.get_setting("latch_boost") and boosting) + var boost = Input.is_action_pressed("boost") or (Global.get_setting("gameplay.latch_boost") and boosting) input = input.rotated( - game.camera.angle_target) if Input.is_action_pressed("interact") or Input.is_action_just_released("interact"): input *= 0 |