mirror of
https://github.com/Yonokid/PyTaiko.git
synced 2026-02-04 03:30:13 +01:00
17 lines
468 B
Python
17 lines
468 B
Python
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
|