From 15cf0fa9fd15f0dab31faa78a3ee8fe5500e0210 Mon Sep 17 00:00:00 2001 From: Nick Dyer Date: Sat, 12 Jun 2021 22:18:49 -0400 Subject: [PATCH] cleaned up some straggling unused code --- pocket_friends/game_files/game.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pocket_friends/game_files/game.py b/pocket_friends/game_files/game.py index 1031c75..ad0c925 100644 --- a/pocket_friends/game_files/game.py +++ b/pocket_friends/game_files/game.py @@ -13,8 +13,6 @@ from ..hardware.gpio_handler import Constants, GPIOHandler # FPS for the entire game to run at. game_fps = 16 -# FPS that animations run at -animation_fps = 2 # The resolution the game is rendered at. game_res = 80 @@ -209,7 +207,6 @@ class SelectionEgg(pygame.sprite.Sprite): with open(script_dir + '/resources/data/bloop_info/{0}.json'.format(egg_color), 'r') as save_file: json_file = json.load(save_file) save_file.close() - image_directory = script_dir + '/resources/images/bloops/{0}/egg_images'.format(egg_color) # Gets the description off the egg from the JSON file. self.description = json_file.get('description')