Fix: 修复SP进图

This commit is contained in:
LmeSzinc 2020-05-07 13:55:00 +08:00
parent ff25ff3d80
commit 1203585771
4 changed files with 2 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -95,3 +95,4 @@ class CampaignUI(UI):
elif chapter == 'sp':
self.ui_goto_sp()
self.campaign_ensure_chapter(index=chapter)

View File

@ -5,6 +5,7 @@ from module.base.template import Template
# Don't modified it manually.
BACK_ARROW = Button(area=(36, 53, 82, 55), color=(251, 251, 255), button=(33, 31, 81, 78), file='./assets/ui/BACK_ARROW.png')
CAMPAIGN_CHECK = Button(area=(173, 78, 194, 98), color=(165, 182, 221), button=(173, 78, 194, 98), file='./assets/ui/CAMPAIGN_CHECK.png')
CAMPAIGN_GOTO_DAILY = Button(area=(804, 648, 892, 703), color=(189, 145, 78), button=(804, 648, 892, 703), file='./assets/ui/CAMPAIGN_GOTO_DAILY.png')
CAMPAIGN_GOTO_EVENT = Button(area=(804, 648, 892, 703), color=(189, 145, 78), button=(1178, 171, 1230, 223), file='./assets/ui/CAMPAIGN_GOTO_EVENT.png')
CAMPAIGN_GOTO_EXERCISE = Button(area=(1166, 648, 1248, 703), color=(177, 136, 69), button=(1166, 648, 1248, 703), file='./assets/ui/CAMPAIGN_GOTO_EXERCISE.png')

View File

@ -3,7 +3,6 @@ import traceback
from module.ui.assets import *
MAIN_CHECK = MAIN_GOTO_CAMPAIGN
CAMPAIGN_CHECK = CAMPAIGN_GOTO_EXERCISE
class Page: