add animal kaiser collab

This commit is contained in:
Anthony Samms
2025-09-13 01:28:21 -04:00
parent 6b21206063
commit 513d6ffa39
7 changed files with 63 additions and 10 deletions

View File

@@ -8,10 +8,10 @@ from libs.bg_objects.don_bg import DonBGBase
from libs.bg_objects.renda import RendaController
from libs.texture import TextureWrapper
class A3:
def __init__(self, tex: TextureWrapper, bpm: float):
class Background:
def __init__(self, tex: TextureWrapper, player_num: int, bpm: float):
self.tex_wrapper = tex
path = 'background/collab/A3'
path = 'background/collab/a3'
self.max_dancers = 4
self.don_bg = DonBG(self.tex_wrapper, 0, 1, path)
self.bg_normal = BGNormal(self.tex_wrapper, 0, path)