mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-19 23:33:33 +08:00
Fix: Lower threshold of SELECT_* assets
This commit is contained in:
@@ -130,7 +130,10 @@ class GlobeOperation(ActionPointHandler, MapEventHandler):
|
|||||||
Returns:
|
Returns:
|
||||||
list[Button]:
|
list[Button]:
|
||||||
"""
|
"""
|
||||||
return [select for select in ZONE_SELECT if self.appear(select, offset=self._zone_select_offset)]
|
# Lower threshold to 0.75
|
||||||
|
# Don't know why buy but fonts are different sometimes
|
||||||
|
return [select for select in ZONE_SELECT if
|
||||||
|
self.appear(select, offset=self._zone_select_offset, threshold=0.75)]
|
||||||
|
|
||||||
def is_in_zone_select(self):
|
def is_in_zone_select(self):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user