fix restarting/exiting bugs in dan mode

This commit is contained in:
Anthony Samms
2025-10-31 15:29:35 -04:00
parent deb4e84e58
commit 157b79440f
5 changed files with 45 additions and 24 deletions

View File

@@ -11,11 +11,11 @@ class Transition:
subtitle: str - The subtitle of the chart.
is_second: bool - Whether this is the second half of the transition."""
self.is_finished = False
self.rainbow_up = global_tex.get_animation(0)
self.mini_up = global_tex.get_animation(1)
self.chara_down = global_tex.get_animation(2)
self.song_info_fade = global_tex.get_animation(3)
self.song_info_fade_out = global_tex.get_animation(4)
self.rainbow_up = global_tex.get_animation(0, is_copy=True)
self.mini_up = global_tex.get_animation(1, is_copy=True)
self.chara_down = global_tex.get_animation(2, is_copy=True)
self.song_info_fade = global_tex.get_animation(3, is_copy=True)
self.song_info_fade_out = global_tex.get_animation(4, is_copy=True)
if title == '' and subtitle == '':
self.title = ''
self.subtitle = ''