From 7ca8ff8c38d61fe876532335a2c1a2e23687fc58 Mon Sep 17 00:00:00 2001 From: Valerio Date: Fri, 26 Dec 2025 00:27:27 -0500 Subject: [PATCH] Added the ability to use the scroll wheel in the song select --- scenes/song_select.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scenes/song_select.py b/scenes/song_select.py index c42c2bb..254dfa0 100644 --- a/scenes/song_select.py +++ b/scenes/song_select.py @@ -480,13 +480,14 @@ class SongSelectPlayer: audio.play_sound('skip', 'sound') return "skip_right" + wheel = ray.get_mouse_wheel_move() # Navigate left - if is_l_kat_pressed(self.player_num): + if is_l_kat_pressed(self.player_num) or wheel > 0: audio.play_sound('kat', 'sound') return "navigate_left" # Navigate right - if is_r_kat_pressed(self.player_num): + if is_r_kat_pressed(self.player_num) or wheel < 0: audio.play_sound('kat', 'sound') return "navigate_right"