From f5a8e811fff26f3d203dd9cd99ce0ba07271fdd1 Mon Sep 17 00:00:00 2001 From: Bucket Of Chicken <122376377+realbucketofchicken@users.noreply.github.com> Date: Mon, 25 Aug 2025 02:39:35 +0200 Subject: [PATCH] fixed up and down keys not working --- Scripts/main.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/main.gd b/Scripts/main.gd index d37b33a..c52b3fc 100644 --- a/Scripts/main.gd +++ b/Scripts/main.gd @@ -540,9 +540,9 @@ func _process(_delta: float) -> void: #time_listening_song.text = str(music_player.get_playback_position()) - if Input.is_key_pressed(KEY_DOWN): + if Input.is_action_pressed("ui_down"): volume_slider.value -= 1*_delta *50 - if Input.is_key_pressed(KEY_UP): + if Input.is_action_pressed("ui_up"): volume_slider.value += 1*_delta *50 if CurrentLenght == 0: