change kick to lmb

This commit is contained in:
Nikolay Fedorov
2026-04-23 15:36:17 +03:00
parent 8e7ff9ae83
commit 5d843f94f7
+1 -1
View File
@@ -89,7 +89,7 @@ func _physics_process(delta: float) -> void:
_handle_movement(delta)
_handle_kick(delta)
_handle_iframes(delta)
if Input.is_action_just_pressed("ui_accept") and kick_timer <= 0.0:
if Input.is_mouse_button_pressed(MOUSE_BUTTON_LEFT) and kick_timer <= 0.0:
_do_kick()
func _handle_movement(delta: float) -> void: