1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 02:48:23 +08:00

Add: page_archives and route

Opt: Use ui_ensure for page transitions
This commit is contained in:
nEEtdo0d
2020-11-01 12:27:59 -05:00
parent 420c0feded
commit b4f3300e2b
12 changed files with 36 additions and 29 deletions

View File

@@ -64,6 +64,11 @@ page_sp.link(button=GOTO_MAIN, destination=page_main)
page_sp.link(button=BACK_ARROW, destination=page_campaign)
page_campaign.link(button=CAMPAIGN_GOTO_EVENT, destination=page_sp)
# War Archives
page_archives = Page(WAR_ARCHIVES_CHECK)
page_archives.link(button=WAR_ARCHIVES_GOTO_CAMPAIGN, destination=page_campaign)
page_campaign.link(button=CAMPAIGN_GOTO_WAR_ARCHIVES, destination=page_archives)
# Reward
page_reward = Page(REWARD_CHECK)
page_reward.link(button=REWARD_GOTO_MAIN, destination=page_main)
@@ -122,4 +127,4 @@ page_dorm.link(button=DORM_GOTO_MAIN, destination=page_main)
# Meowfficer
page_meowfficer = Page(MEOWFFICER_CHECK)
page_dormmenu.link(button=DORMMENU_GOTO_MEOWFFICER, destination=page_meowfficer)
page_meowfficer.link(button=MEOWFFICER_GOTO_DORM, destination=page_main)
page_meowfficer.link(button=MEOWFFICER_GOTO_DORM, destination=page_main)