forked from millionart/MACHIN3tools_zh-Hans
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitems.py
44 lines (31 loc) · 1.3 KB
/
items.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
axis_items = [("X", "X", ""),
("Y", "Y", ""),
("Z", "Z", "")]
uv_axis_items = [("U", "U", ""),
("V", "V", "")]
# OPERATORS
focus_method_items = [("VIEW_SELECTED", "View Selected", ""),
("LOCAL_VIEW", "Local View", "")]
focus_levels_items = [("SINGLE", "Single", ""),
("MULTIPLE", "Multiple", "")]
align_mode_items = [("VIEW", "View", ""),
("AXES", "Axes", "")]
align_type_items = [("MIN", "Min", ""),
("MAX", "Max", ""),
("MINMAX", "Min/Max", ""),
("ZERO", "Zero", ""),
("AVERAGE", "Average", ""),
("CURSOR", "Cursor", "")]
align_direction_items = [("LEFT", "Left", ""),
("RIGHT", "Right", ""),
("TOP", "Top", ""),
("BOTTOM", "Bottom", ""),
("HORIZONTAL", "Horizontal", ""),
("VERTICAL", "Vertical", "")]
align_axis_mapping_dict = {"X": 0, "Y": 1, "Z": 2}
uv_align_axis_mapping_dict = {"U": 0, "V": 1}
# PIES
eevee_preset_items = [("NONE", "None", ""),
("LOW", "Low", ""),
("HIGH", "High", ""),
("ULTRA", "Ultra", "")]