Shift Sprites about

This commit is contained in:
Mike A. Trethewey
2021-01-08 02:44:49 -08:00
parent 3d3b8c8985
commit a3553e7860
323 changed files with 2 additions and 8 deletions

View File

@@ -231,23 +231,19 @@ class SpriteSelector(object):
@property
def official_sprite_dir(self):
if is_bundled():
return output_path(os.path.join("sprites","official"))
return self.local_official_sprite_dir
@property
def local_official_sprite_dir(self):
return local_path(os.path.join("data","sprites","official"))
return local_path(os.path.join("resources","app","meta","sprites","official"))
@property
def unofficial_sprite_dir(self):
if is_bundled():
return output_path(os.path.join("sprites","unofficial"))
return self.local_unofficial_sprite_dir
@property
def local_unofficial_sprite_dir(self):
return local_path(os.path.join("data","sprites","unofficial"))
return local_path(os.path.join("resources","app","meta","sprites","unofficial"))
def get_image_for_sprite(sprite):