mirror of
https://github.com/Yonokid/PyTaiko.git
synced 2026-02-04 11:40:13 +01:00
halfway through imas collab
This commit is contained in:
@@ -15,7 +15,7 @@ class Background:
|
||||
path = 'background/collab/buttoburst'
|
||||
self.max_dancers = 4
|
||||
self.don_bg = DonBG4(self.tex_wrapper, 4, player_num, 'background')
|
||||
self.bg_normal = BGNormal(self.tex_wrapper, 0, path)
|
||||
self.bg_normal = BGNormalBase(self.tex_wrapper, 0, path)
|
||||
self.bg_fever = BGFever(self.tex_wrapper, 0, path)
|
||||
self.footer = None
|
||||
self.fever = Fever3(self.tex_wrapper, 0, bpm, path)
|
||||
@@ -34,13 +34,6 @@ class DancerGroup(BaseDancerGroup):
|
||||
random.shuffle(self.dancers)
|
||||
self.add_dancer()
|
||||
|
||||
class BGNormal(BGNormalBase):
|
||||
def update(self, current_time_ms: float):
|
||||
pass
|
||||
|
||||
def draw(self, tex: TextureWrapper):
|
||||
tex.draw_texture(self.name, 'background')
|
||||
|
||||
class BGFever(BGFeverBase):
|
||||
def start(self):
|
||||
self.transitioned = True
|
||||
|
||||
Reference in New Issue
Block a user