fake-bpy-module 20240507__py3-none-any.whl → 20240509__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/import_anim/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def bvh(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -22,7 +24,7 @@ def bvh(
|
|
|
22
24
|
):
|
|
23
25
|
"""Load a BVH motion capture file
|
|
24
26
|
|
|
25
|
-
:type override_context: typing.Optional[typing.Union[
|
|
27
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
26
28
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
27
29
|
:type undo: typing.Optional[bool]
|
|
28
30
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def svg(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -12,7 +14,7 @@ def svg(
|
|
|
12
14
|
):
|
|
13
15
|
"""Load a SVG file
|
|
14
16
|
|
|
15
|
-
:type override_context: typing.Optional[typing.Union[
|
|
17
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
18
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
17
19
|
:type undo: typing.Optional[bool]
|
|
18
20
|
:param filepath: File Path, Filepath used for importing the file
|
bpy/ops/import_mesh/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def stl(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -21,7 +23,7 @@ def stl(
|
|
|
21
23
|
):
|
|
22
24
|
"""Load STL triangle mesh data
|
|
23
25
|
|
|
24
|
-
:type override_context: typing.Optional[typing.Union[
|
|
26
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
25
27
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
26
28
|
:type undo: typing.Optional[bool]
|
|
27
29
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def fbx(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -40,7 +42,7 @@ def fbx(
|
|
|
40
42
|
):
|
|
41
43
|
"""Load a FBX file
|
|
42
44
|
|
|
43
|
-
:type override_context: typing.Optional[typing.Union[
|
|
45
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
44
46
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
45
47
|
:type undo: typing.Optional[bool]
|
|
46
48
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -115,7 +117,9 @@ def fbx(
|
|
|
115
117
|
...
|
|
116
118
|
|
|
117
119
|
def gltf(
|
|
118
|
-
override_context: typing.Optional[
|
|
120
|
+
override_context: typing.Optional[
|
|
121
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
122
|
+
] = None,
|
|
119
123
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
120
124
|
undo: typing.Optional[bool] = None,
|
|
121
125
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -134,7 +138,7 @@ def gltf(
|
|
|
134
138
|
):
|
|
135
139
|
"""Load a glTF 2.0 file
|
|
136
140
|
|
|
137
|
-
:type override_context: typing.Optional[typing.Union[
|
|
141
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
138
142
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
139
143
|
:type undo: typing.Optional[bool]
|
|
140
144
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -182,7 +186,9 @@ def gltf(
|
|
|
182
186
|
...
|
|
183
187
|
|
|
184
188
|
def x3d(
|
|
185
|
-
override_context: typing.Optional[
|
|
189
|
+
override_context: typing.Optional[
|
|
190
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
191
|
+
] = None,
|
|
186
192
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
187
193
|
undo: typing.Optional[bool] = None,
|
|
188
194
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -192,7 +198,7 @@ def x3d(
|
|
|
192
198
|
):
|
|
193
199
|
"""Import an X3D or VRML2 file
|
|
194
200
|
|
|
195
|
-
:type override_context: typing.Optional[typing.Union[
|
|
201
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
196
202
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
197
203
|
:type undo: typing.Optional[bool]
|
|
198
204
|
:param filepath: File Path, Filepath used for importing the file
|
bpy/ops/info/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def report_copy(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Copy selected reports to clipboard
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,13 +20,15 @@ def report_copy(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def report_delete(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
):
|
|
25
29
|
"""Delete selected reports
|
|
26
30
|
|
|
27
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
28
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
29
33
|
:type undo: typing.Optional[bool]
|
|
30
34
|
"""
|
|
@@ -32,13 +36,15 @@ def report_delete(
|
|
|
32
36
|
...
|
|
33
37
|
|
|
34
38
|
def report_replay(
|
|
35
|
-
override_context: typing.Optional[
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
36
42
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
37
43
|
undo: typing.Optional[bool] = None,
|
|
38
44
|
):
|
|
39
45
|
"""Replay selected reports
|
|
40
46
|
|
|
41
|
-
:type override_context: typing.Optional[typing.Union[
|
|
47
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
42
48
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
43
49
|
:type undo: typing.Optional[bool]
|
|
44
50
|
"""
|
|
@@ -46,13 +52,15 @@ def report_replay(
|
|
|
46
52
|
...
|
|
47
53
|
|
|
48
54
|
def reports_display_update(
|
|
49
|
-
override_context: typing.Optional[
|
|
55
|
+
override_context: typing.Optional[
|
|
56
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
57
|
+
] = None,
|
|
50
58
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
59
|
undo: typing.Optional[bool] = None,
|
|
52
60
|
):
|
|
53
61
|
"""Update the display of reports in Blender UI (internal use)
|
|
54
62
|
|
|
55
|
-
:type override_context: typing.Optional[typing.Union[
|
|
63
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
56
64
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
57
65
|
:type undo: typing.Optional[bool]
|
|
58
66
|
"""
|
|
@@ -60,14 +68,16 @@ def reports_display_update(
|
|
|
60
68
|
...
|
|
61
69
|
|
|
62
70
|
def select_all(
|
|
63
|
-
override_context: typing.Optional[
|
|
71
|
+
override_context: typing.Optional[
|
|
72
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
73
|
+
] = None,
|
|
64
74
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
65
75
|
undo: typing.Optional[bool] = None,
|
|
66
76
|
action: typing.Optional[typing.Any] = "SELECT",
|
|
67
77
|
):
|
|
68
78
|
"""Change selection of all visible reports
|
|
69
79
|
|
|
70
|
-
:type override_context: typing.Optional[typing.Union[
|
|
80
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
71
81
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
72
82
|
:type undo: typing.Optional[bool]
|
|
73
83
|
:param action: Action, Selection action to execute
|
|
@@ -89,7 +99,9 @@ def select_all(
|
|
|
89
99
|
...
|
|
90
100
|
|
|
91
101
|
def select_box(
|
|
92
|
-
override_context: typing.Optional[
|
|
102
|
+
override_context: typing.Optional[
|
|
103
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
104
|
+
] = None,
|
|
93
105
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
94
106
|
undo: typing.Optional[bool] = None,
|
|
95
107
|
xmin: typing.Optional[typing.Any] = 0,
|
|
@@ -101,7 +113,7 @@ def select_box(
|
|
|
101
113
|
):
|
|
102
114
|
"""Toggle box selection
|
|
103
115
|
|
|
104
|
-
:type override_context: typing.Optional[typing.Union[
|
|
116
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
105
117
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
106
118
|
:type undo: typing.Optional[bool]
|
|
107
119
|
:param xmin: X Min
|
|
@@ -130,7 +142,9 @@ def select_box(
|
|
|
130
142
|
...
|
|
131
143
|
|
|
132
144
|
def select_pick(
|
|
133
|
-
override_context: typing.Optional[
|
|
145
|
+
override_context: typing.Optional[
|
|
146
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
147
|
+
] = None,
|
|
134
148
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
135
149
|
undo: typing.Optional[bool] = None,
|
|
136
150
|
report_index: typing.Optional[typing.Any] = 0,
|
|
@@ -138,7 +152,7 @@ def select_pick(
|
|
|
138
152
|
):
|
|
139
153
|
"""Select reports by index
|
|
140
154
|
|
|
141
|
-
:type override_context: typing.Optional[typing.Union[
|
|
155
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
142
156
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
143
157
|
:type undo: typing.Optional[bool]
|
|
144
158
|
:param report_index: Report, Index of the report
|
bpy/ops/lattice/__init__.pyi
CHANGED
|
@@ -4,14 +4,16 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def flip(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
axis: typing.Optional[typing.Any] = "U",
|
|
11
13
|
):
|
|
12
14
|
"""Mirror all control points without inverting the lattice deform
|
|
13
15
|
|
|
14
|
-
:type override_context: typing.Optional[typing.Union[
|
|
16
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
15
17
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
16
18
|
:type undo: typing.Optional[bool]
|
|
17
19
|
:param axis: Flip Axis, Coordinates along this axis get flipped
|
|
@@ -21,13 +23,15 @@ def flip(
|
|
|
21
23
|
...
|
|
22
24
|
|
|
23
25
|
def make_regular(
|
|
24
|
-
override_context: typing.Optional[
|
|
26
|
+
override_context: typing.Optional[
|
|
27
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
28
|
+
] = None,
|
|
25
29
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
26
30
|
undo: typing.Optional[bool] = None,
|
|
27
31
|
):
|
|
28
32
|
"""Set UVW control points a uniform distance apart
|
|
29
33
|
|
|
30
|
-
:type override_context: typing.Optional[typing.Union[
|
|
34
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
31
35
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
32
36
|
:type undo: typing.Optional[bool]
|
|
33
37
|
"""
|
|
@@ -35,14 +39,16 @@ def make_regular(
|
|
|
35
39
|
...
|
|
36
40
|
|
|
37
41
|
def select_all(
|
|
38
|
-
override_context: typing.Optional[
|
|
42
|
+
override_context: typing.Optional[
|
|
43
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
44
|
+
] = None,
|
|
39
45
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
40
46
|
undo: typing.Optional[bool] = None,
|
|
41
47
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
42
48
|
):
|
|
43
49
|
"""Change selection of all UVW control points
|
|
44
50
|
|
|
45
|
-
:type override_context: typing.Optional[typing.Union[
|
|
51
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
46
52
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
47
53
|
:type undo: typing.Optional[bool]
|
|
48
54
|
:param action: Action, Selection action to execute
|
|
@@ -64,13 +70,15 @@ def select_all(
|
|
|
64
70
|
...
|
|
65
71
|
|
|
66
72
|
def select_less(
|
|
67
|
-
override_context: typing.Optional[
|
|
73
|
+
override_context: typing.Optional[
|
|
74
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
75
|
+
] = None,
|
|
68
76
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
69
77
|
undo: typing.Optional[bool] = None,
|
|
70
78
|
):
|
|
71
79
|
"""Deselect vertices at the boundary of each selection region
|
|
72
80
|
|
|
73
|
-
:type override_context: typing.Optional[typing.Union[
|
|
81
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
74
82
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
75
83
|
:type undo: typing.Optional[bool]
|
|
76
84
|
"""
|
|
@@ -78,7 +86,9 @@ def select_less(
|
|
|
78
86
|
...
|
|
79
87
|
|
|
80
88
|
def select_mirror(
|
|
81
|
-
override_context: typing.Optional[
|
|
89
|
+
override_context: typing.Optional[
|
|
90
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
91
|
+
] = None,
|
|
82
92
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
83
93
|
undo: typing.Optional[bool] = None,
|
|
84
94
|
axis: typing.Optional[typing.Any] = {'"X"'},
|
|
@@ -86,7 +96,7 @@ def select_mirror(
|
|
|
86
96
|
):
|
|
87
97
|
"""Select mirrored lattice points
|
|
88
98
|
|
|
89
|
-
:type override_context: typing.Optional[typing.Union[
|
|
99
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
90
100
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
91
101
|
:type undo: typing.Optional[bool]
|
|
92
102
|
:param axis: Axis
|
|
@@ -98,13 +108,15 @@ def select_mirror(
|
|
|
98
108
|
...
|
|
99
109
|
|
|
100
110
|
def select_more(
|
|
101
|
-
override_context: typing.Optional[
|
|
111
|
+
override_context: typing.Optional[
|
|
112
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
113
|
+
] = None,
|
|
102
114
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
103
115
|
undo: typing.Optional[bool] = None,
|
|
104
116
|
):
|
|
105
117
|
"""Select vertex directly linked to already selected ones
|
|
106
118
|
|
|
107
|
-
:type override_context: typing.Optional[typing.Union[
|
|
119
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
108
120
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
109
121
|
:type undo: typing.Optional[bool]
|
|
110
122
|
"""
|
|
@@ -112,7 +124,9 @@ def select_more(
|
|
|
112
124
|
...
|
|
113
125
|
|
|
114
126
|
def select_random(
|
|
115
|
-
override_context: typing.Optional[
|
|
127
|
+
override_context: typing.Optional[
|
|
128
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
129
|
+
] = None,
|
|
116
130
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
117
131
|
undo: typing.Optional[bool] = None,
|
|
118
132
|
ratio: typing.Optional[typing.Any] = 0.5,
|
|
@@ -121,7 +135,7 @@ def select_random(
|
|
|
121
135
|
):
|
|
122
136
|
"""Randomly select UVW control points
|
|
123
137
|
|
|
124
|
-
:type override_context: typing.Optional[typing.Union[
|
|
138
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
125
139
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
126
140
|
:type undo: typing.Optional[bool]
|
|
127
141
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -141,14 +155,16 @@ def select_random(
|
|
|
141
155
|
...
|
|
142
156
|
|
|
143
157
|
def select_ungrouped(
|
|
144
|
-
override_context: typing.Optional[
|
|
158
|
+
override_context: typing.Optional[
|
|
159
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
160
|
+
] = None,
|
|
145
161
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
146
162
|
undo: typing.Optional[bool] = None,
|
|
147
163
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
148
164
|
):
|
|
149
165
|
"""Select vertices without a group
|
|
150
166
|
|
|
151
|
-
:type override_context: typing.Optional[typing.Union[
|
|
167
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
152
168
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
153
169
|
:type undo: typing.Optional[bool]
|
|
154
170
|
:param extend: Extend, Extend the selection
|
bpy/ops/marker/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def add(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Add a new time marker
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,13 +20,15 @@ def add(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def camera_bind(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
):
|
|
25
29
|
"""Bind the selected camera to a marker on the current frame
|
|
26
30
|
|
|
27
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
28
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
29
33
|
:type undo: typing.Optional[bool]
|
|
30
34
|
"""
|
|
@@ -32,14 +36,16 @@ def camera_bind(
|
|
|
32
36
|
...
|
|
33
37
|
|
|
34
38
|
def delete(
|
|
35
|
-
override_context: typing.Optional[
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
36
42
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
37
43
|
undo: typing.Optional[bool] = None,
|
|
38
44
|
confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
39
45
|
):
|
|
40
46
|
"""Delete selected time marker(s)
|
|
41
47
|
|
|
42
|
-
:type override_context: typing.Optional[typing.Union[
|
|
48
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
43
49
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
44
50
|
:type undo: typing.Optional[bool]
|
|
45
51
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -49,14 +55,16 @@ def delete(
|
|
|
49
55
|
...
|
|
50
56
|
|
|
51
57
|
def duplicate(
|
|
52
|
-
override_context: typing.Optional[
|
|
58
|
+
override_context: typing.Optional[
|
|
59
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
60
|
+
] = None,
|
|
53
61
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
54
62
|
undo: typing.Optional[bool] = None,
|
|
55
63
|
frames: typing.Optional[typing.Any] = 0,
|
|
56
64
|
):
|
|
57
65
|
"""Duplicate selected time marker(s)
|
|
58
66
|
|
|
59
|
-
:type override_context: typing.Optional[typing.Union[
|
|
67
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
60
68
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
61
69
|
:type undo: typing.Optional[bool]
|
|
62
70
|
:param frames: Frames
|
|
@@ -66,14 +74,16 @@ def duplicate(
|
|
|
66
74
|
...
|
|
67
75
|
|
|
68
76
|
def make_links_scene(
|
|
69
|
-
override_context: typing.Optional[
|
|
77
|
+
override_context: typing.Optional[
|
|
78
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
79
|
+
] = None,
|
|
70
80
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
71
81
|
undo: typing.Optional[bool] = None,
|
|
72
82
|
scene: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
73
83
|
):
|
|
74
84
|
"""Copy selected markers to another scene
|
|
75
85
|
|
|
76
|
-
:type override_context: typing.Optional[typing.Union[
|
|
86
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
77
87
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
78
88
|
:type undo: typing.Optional[bool]
|
|
79
89
|
:param scene: Scene
|
|
@@ -83,7 +93,9 @@ def make_links_scene(
|
|
|
83
93
|
...
|
|
84
94
|
|
|
85
95
|
def move(
|
|
86
|
-
override_context: typing.Optional[
|
|
96
|
+
override_context: typing.Optional[
|
|
97
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
98
|
+
] = None,
|
|
87
99
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
88
100
|
undo: typing.Optional[bool] = None,
|
|
89
101
|
frames: typing.Optional[typing.Any] = 0,
|
|
@@ -91,7 +103,7 @@ def move(
|
|
|
91
103
|
):
|
|
92
104
|
"""Move selected time marker(s)
|
|
93
105
|
|
|
94
|
-
:type override_context: typing.Optional[typing.Union[
|
|
106
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
95
107
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
96
108
|
:type undo: typing.Optional[bool]
|
|
97
109
|
:param frames: Frames
|
|
@@ -103,14 +115,16 @@ def move(
|
|
|
103
115
|
...
|
|
104
116
|
|
|
105
117
|
def rename(
|
|
106
|
-
override_context: typing.Optional[
|
|
118
|
+
override_context: typing.Optional[
|
|
119
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
120
|
+
] = None,
|
|
107
121
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
108
122
|
undo: typing.Optional[bool] = None,
|
|
109
123
|
name: typing.Union[str, typing.Any] = "RenamedMarker",
|
|
110
124
|
):
|
|
111
125
|
"""Rename first selected time marker
|
|
112
126
|
|
|
113
|
-
:type override_context: typing.Optional[typing.Union[
|
|
127
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
114
128
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
115
129
|
:type undo: typing.Optional[bool]
|
|
116
130
|
:param name: Name, New name for marker
|
|
@@ -120,7 +134,9 @@ def rename(
|
|
|
120
134
|
...
|
|
121
135
|
|
|
122
136
|
def select(
|
|
123
|
-
override_context: typing.Optional[
|
|
137
|
+
override_context: typing.Optional[
|
|
138
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
139
|
+
] = None,
|
|
124
140
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
125
141
|
undo: typing.Optional[bool] = None,
|
|
126
142
|
wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -131,7 +147,7 @@ def select(
|
|
|
131
147
|
):
|
|
132
148
|
"""Select time marker(s)
|
|
133
149
|
|
|
134
|
-
:type override_context: typing.Optional[typing.Union[
|
|
150
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
135
151
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
136
152
|
:type undo: typing.Optional[bool]
|
|
137
153
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -149,14 +165,16 @@ def select(
|
|
|
149
165
|
...
|
|
150
166
|
|
|
151
167
|
def select_all(
|
|
152
|
-
override_context: typing.Optional[
|
|
168
|
+
override_context: typing.Optional[
|
|
169
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
170
|
+
] = None,
|
|
153
171
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
154
172
|
undo: typing.Optional[bool] = None,
|
|
155
173
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
156
174
|
):
|
|
157
175
|
"""Change selection of all time markers
|
|
158
176
|
|
|
159
|
-
:type override_context: typing.Optional[typing.Union[
|
|
177
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
160
178
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
161
179
|
:type undo: typing.Optional[bool]
|
|
162
180
|
:param action: Action, Selection action to execute
|
|
@@ -178,7 +196,9 @@ def select_all(
|
|
|
178
196
|
...
|
|
179
197
|
|
|
180
198
|
def select_box(
|
|
181
|
-
override_context: typing.Optional[
|
|
199
|
+
override_context: typing.Optional[
|
|
200
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
201
|
+
] = None,
|
|
182
202
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
183
203
|
undo: typing.Optional[bool] = None,
|
|
184
204
|
xmin: typing.Optional[typing.Any] = 0,
|
|
@@ -191,7 +211,7 @@ def select_box(
|
|
|
191
211
|
):
|
|
192
212
|
"""Select all time markers using box selection
|
|
193
213
|
|
|
194
|
-
:type override_context: typing.Optional[typing.Union[
|
|
214
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
195
215
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
196
216
|
:type undo: typing.Optional[bool]
|
|
197
217
|
:param xmin: X Min
|
|
@@ -222,7 +242,9 @@ def select_box(
|
|
|
222
242
|
...
|
|
223
243
|
|
|
224
244
|
def select_leftright(
|
|
225
|
-
override_context: typing.Optional[
|
|
245
|
+
override_context: typing.Optional[
|
|
246
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
247
|
+
] = None,
|
|
226
248
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
227
249
|
undo: typing.Optional[bool] = None,
|
|
228
250
|
mode: typing.Optional[typing.Any] = "LEFT",
|
|
@@ -230,7 +252,7 @@ def select_leftright(
|
|
|
230
252
|
):
|
|
231
253
|
"""Select markers on and left/right of the current frame
|
|
232
254
|
|
|
233
|
-
:type override_context: typing.Optional[typing.Union[
|
|
255
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
234
256
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
235
257
|
:type undo: typing.Optional[bool]
|
|
236
258
|
:param mode: Mode
|