Fix: Starting from planner result page

This commit is contained in:
LmeSzinc 2024-05-28 23:06:35 +08:00
parent 3350a3d3af
commit 5579118ce1
3 changed files with 14 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -377,6 +377,16 @@ MISSION_CHECK = ButtonWrapper(
button=(44, 33, 70, 55), button=(44, 33, 70, 55),
), ),
) )
PLANNER_CHECK = ButtonWrapper(
name='PLANNER_CHECK',
share=Button(
file='./assets/share/base/page/PLANNER_CHECK.png',
area=(39, 47, 74, 74),
search=(19, 27, 94, 94),
color=(148, 131, 98),
button=(39, 47, 74, 74),
),
)
ROGUE_CHECK = ButtonWrapper( ROGUE_CHECK = ButtonWrapper(
name='ROGUE_CHECK', name='ROGUE_CHECK',
share=Button( share=Button(

View File

@ -158,3 +158,7 @@ page_forgotten_hall.link(CLOSE, destination=page_main)
# Rogue, Simulated Universe # Rogue, Simulated Universe
page_rogue = Page(ROGUE_CHECK) page_rogue = Page(ROGUE_CHECK)
page_rogue.link(CLOSE, destination=page_main) page_rogue.link(CLOSE, destination=page_main)
# Planner result
page_planner = Page(PLANNER_CHECK)
page_planner.link(CLOSE, destination=page_menu)