add clear/fc/fail animation

This commit is contained in:
Anthony Samms
2025-10-12 02:51:43 -04:00
parent 92b089b07c
commit 0999a2034b
6 changed files with 195 additions and 22 deletions

View File

@@ -99,7 +99,6 @@ class TextureWrapper:
def load_zip(self, screen_name: str, subset: str):
zip = (self.graphics_path / screen_name / subset).with_suffix('.zip')
if screen_name in self.textures and subset in self.textures[screen_name]:
print(screen_name, subset)
return
with zipfile.ZipFile(zip, 'r') as zip_ref:
if 'texture.json' not in zip_ref.namelist():