add custom background implementation and A3 collab

This commit is contained in:
Anthony Samms
2025-09-12 19:31:53 -04:00
parent 08dde9e65f
commit 6b21206063
14 changed files with 240 additions and 106 deletions

View File

@@ -12,7 +12,7 @@ class Fever:
class BaseFever:
def __init__(self, tex: TextureWrapper, index: int, bpm: float):
self.name = 'fever_' + str(index)
tex.load_zip('background', f'fever/{self.name}')
tex.load_zip('background/regular', f'fever/{self.name}')
self.bounce_up = Animation.create_move((60000 / bpm) / 2, total_distance=50, ease_out='quadratic')
self.bounce_down = Animation.create_move((60000 / bpm) / 2, total_distance=50, ease_in='quadratic', delay=self.bounce_up.duration)