-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
47 lines (38 loc) · 1.19 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from dataclasses import dataclass
from pyautogui import Point
@dataclass(frozen=True)
class ManyCamHotKeys:
activate: tuple[str, ...] = ("alt", "ctrl", "m")
clear_scene: tuple[str, ...] = ("shift", "backspace")
center_file_picker: tuple[str, ...] = ("win", "alt", "ctrl", "shift", "c")
@dataclass(frozen=True)
class ManyCamPoints:
add_image: Point = Point(x=50, y=210)
img_positions: tuple[Point, ...] = (
Point(x=220, y=-290),
Point(x=220, y=-270),
Point(x=220, y=-250),
Point(x=220, y=-230),
Point(x=220, y=-210),
)
open_image: Point = Point(x=340, y=50)
@dataclass(frozen=True)
class SwapfaceHotKeys:
activate: tuple[str, ...] = ("alt", "ctrl", "s")
@dataclass(frozen=True)
class SwapfacePoints:
add_more_positions: tuple[Point, ...] = (
Point(x=-766, y=320),
Point(x=-555, y=324),
Point(x=-358, y=327),
Point(x=-155, y=324),
Point(x=50, y=299),
)
img_positions: tuple[Point, ...] = (
Point(x=-357, y=-137),
Point(x=-216, y=-131),
Point(x=-76, y=-129),
Point(x=58, y=-124),
Point(x=197, y=-129),
)
start: Point = Point(x=709, y=196)