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

Fix: Lots of problems

- Fix HOMO_EDGE_HOUGHLINES_THRESHOLD not used
- Fix get stuck if kill too fast in combat_executing
- Fix wrong swipe when camera out of map
- Fix walk_out_of_step not detected
- Opt relative_record now save temp images in sub folder
This commit is contained in:
LmeSzinc
2020-07-24 17:27:42 +08:00
parent 112babcb04
commit 3b811fca9c
7 changed files with 23 additions and 11 deletions

View File

@@ -93,7 +93,7 @@ class Camera(InfoHandler):
string = str(e)
logger.warning(string)
x, y = string.split('=')[1].strip('() ').split(',')
self._map_swipe((int(x.strip()), int(y.strip())))
self._map_swipe((-int(x.strip()), -int(y.strip())))
else:
raise e