aboutsummaryrefslogtreecommitdiff
path: root/client/player/onscreen_controls/controls.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-12-23 16:41:57 +0100
committermetamuffin <metamuffin@disroot.org>2024-12-23 16:41:57 +0100
commitcec07a36025d12a0344f19d1ca4c8e51f007b796 (patch)
tree1d96b7018b88157a16ea80623a7eaf62e43b35ec /client/player/onscreen_controls/controls.gd
parent1a9f7e9a20bff0fbc854454f131d4bc546e73e72 (diff)
downloadhurrycurry-cec07a36025d12a0344f19d1ca4c8e51f007b796.tar
hurrycurry-cec07a36025d12a0344f19d1ca4c8e51f007b796.tar.bz2
hurrycurry-cec07a36025d12a0344f19d1ca4c8e51f007b796.tar.zst
two-handed mostly works
Diffstat (limited to 'client/player/onscreen_controls/controls.gd')
-rw-r--r--client/player/onscreen_controls/controls.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/player/onscreen_controls/controls.gd b/client/player/onscreen_controls/controls.gd
index 0d240ddb..06efb82e 100644
--- a/client/player/onscreen_controls/controls.gd
+++ b/client/player/onscreen_controls/controls.gd
@@ -42,11 +42,11 @@ func _on_boost_released():
boost.modulate = Color.WHITE
func _on_interact_pressed():
- Input.action_press("interact")
+ Input.action_press("interact_left")
interact.modulate = modulate_color
func _on_interact_released():
- Input.action_release("interact")
+ Input.action_release("interact_left")
interact.modulate = Color.WHITE
func _on_pause_pressed():