更新失败后跳转指向

This commit is contained in:
星外之神 2022-05-11 23:06:45 +08:00
parent abe10f33a5
commit 8eb99747ef
3 changed files with 3 additions and 3 deletions

View File

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

View File

@ -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'
# 地图相关内容

View File

@ -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
return c.LEVEL