mystery feature #50

This commit is contained in:
Anthony Samms
2025-11-10 11:31:37 -05:00
parent 244b66c0f3
commit 66b88ba480
7 changed files with 62 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
import logging
from scenes.song_select import SongSelectScreen
logger = logging.getLogger(__name__)
class PracticeSongSelectScreen(SongSelectScreen):
def on_screen_start(self):
super().on_screen_start()
def update_players(self, current_time) -> str:
self.player_1.update(current_time)
if self.text_fade_out.is_finished:
self.player_1.selected_song = True
next_screen = "GAME_PRACTICE"
return next_screen