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

Fix: No orientation handle in MaaTouch

This commit is contained in:
LmeSzinc
2023-08-01 19:28:36 +08:00
parent c0dce237fd
commit 33bcd116a8
2 changed files with 12 additions and 3 deletions

View File

@@ -184,7 +184,7 @@ class CommandBuilder:
max_x = 1280
max_y = 720
def __init__(self, device):
def __init__(self, device, handle_orientation=True):
"""
Args:
device:
@@ -192,10 +192,18 @@ class CommandBuilder:
self.device = device
self.commands = []
self.delay = 0
self.handle_orientation = handle_orientation
@property
def orientation(self):
if self.handle_orientation:
return self.device.orientation
else:
return 0
def convert(self, x, y):
max_x, max_y = self.device.max_x, self.device.max_y
orientation = self.device.orientation
orientation = self.orientation
if orientation == 0:
pass