mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 07:28:21 +08:00
Fix: [JP] Location of HP bar and ship level
This commit is contained in:
@@ -70,6 +70,11 @@ class HPBalancer(ModuleBase):
|
|||||||
# Location of six HP bar.
|
# Location of six HP bar.
|
||||||
return ButtonGrid(origin=(35, 190), delta=(0, 100), button_shape=(66, 4), grid_shape=(1, 6))
|
return ButtonGrid(origin=(35, 190), delta=(0, 100), button_shape=(66, 4), grid_shape=(1, 6))
|
||||||
|
|
||||||
|
@Config.when(SERVER='jp')
|
||||||
|
def _hp_grid(self):
|
||||||
|
# Location of six HP bar.
|
||||||
|
return ButtonGrid(origin=(35, 205), delta=(0, 100), button_shape=(66, 4), grid_shape=(1, 6))
|
||||||
|
|
||||||
@Config.when(SERVER=None)
|
@Config.when(SERVER=None)
|
||||||
def _hp_grid(self):
|
def _hp_grid(self):
|
||||||
# Location of six HP bar.
|
# Location of six HP bar.
|
||||||
|
|||||||
@@ -39,6 +39,10 @@ class Level(ModuleBase):
|
|||||||
def _lv_grid(self):
|
def _lv_grid(self):
|
||||||
return ButtonGrid(origin=(58, 113), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
return ButtonGrid(origin=(58, 113), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
||||||
|
|
||||||
|
@Config.when(SERVER='jp')
|
||||||
|
def _lv_grid(self):
|
||||||
|
return ButtonGrid(origin=(58, 128), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
||||||
|
|
||||||
@Config.when(SERVER=None)
|
@Config.when(SERVER=None)
|
||||||
def _lv_grid(self):
|
def _lv_grid(self):
|
||||||
return ButtonGrid(origin=(58, 129), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
return ButtonGrid(origin=(58, 129), delta=(0, 100), button_shape=(46, 19), grid_shape=(1, 6))
|
||||||
|
|||||||
Reference in New Issue
Block a user