From 8eb99747ef345ea239542128165f85b1132554c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=9F=E5=A4=96=E4=B9=8B=E7=A5=9E?= Date: Wed, 11 May 2022 23:06:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=A4=B1=E8=B4=A5=E5=90=8E?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E6=8C=87=E5=90=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../graphics/Screen/{GameLoose.png => GameLose.png} | Bin source/constants.py | 2 +- source/state/screen.py | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename resources/graphics/Screen/{GameLoose.png => GameLose.png} (100%) diff --git a/resources/graphics/Screen/GameLoose.png b/resources/graphics/Screen/GameLose.png similarity index 100% rename from resources/graphics/Screen/GameLoose.png rename to resources/graphics/Screen/GameLose.png diff --git a/source/constants.py b/source/constants.py index e491261..33e1562 100755 --- a/source/constants.py +++ b/source/constants.py @@ -84,7 +84,7 @@ LEVEL = 'level' # 界面图片文件名 MAIN_MENU_IMAGE = 'MainMenu' OPTION_ADVENTURE = 'Adventure' -GAME_LOOSE_IMAGE = 'GameLoose' +GAME_LOSE_IMAGE = 'GameLose' GAME_VICTORY_IMAGE = 'GameVictory' # 地图相关内容 diff --git a/source/state/screen.py b/source/state/screen.py index d53f548..c76080b 100644 --- a/source/state/screen.py +++ b/source/state/screen.py @@ -51,7 +51,7 @@ class GameLoseScreen(Screen): Screen.__init__(self) def getImageName(self): - return c.GAME_LOOSE_IMAGE + return c.GAME_LOSE_IMAGE def set_next_state(self): - return c.MAIN_MENU \ No newline at end of file + return c.LEVEL \ No newline at end of file