some alt skins for said dancers

This commit is contained in:
Anthony Samms
2025-09-06 17:06:32 -04:00
parent 62fb669004
commit 657ee2d2db
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ class Background:
self.bg_fever = BGFever.create(self.tex_wrapper, random.randint(0, 3)) self.bg_fever = BGFever.create(self.tex_wrapper, random.randint(0, 3))
self.footer = Footer(self.tex_wrapper, random.randint(0, 2)) self.footer = Footer(self.tex_wrapper, random.randint(0, 2))
self.fever = Fever.create(self.tex_wrapper, random.randint(0, 3), bpm) self.fever = Fever.create(self.tex_wrapper, random.randint(0, 3), bpm)
self.dancer = Dancer.create(self.tex_wrapper, 0, bpm) self.dancer = Dancer.create(self.tex_wrapper, random.randint(0, 2), bpm)
self.is_clear = False self.is_clear = False
self.is_rainbow = False self.is_rainbow = False
self.last_milestone = 0 self.last_milestone = 0

View File

@@ -7,7 +7,7 @@ class Dancer:
@staticmethod @staticmethod
def create(tex: TextureWrapper, index: int, bpm: float): def create(tex: TextureWrapper, index: int, bpm: float):
map = [DancerGroup0] map = [DancerGroup0, DancerGroup0, DancerGroup0]
selected_obj = map[index] selected_obj = map[index]
return selected_obj(tex, index, bpm) return selected_obj(tex, index, bpm)