fake-bpy-module 20240508__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 +16 -10
- 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 +159 -81
- 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 +396 -28
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/view2d/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def edge_pan(
|
|
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
|
inside_padding: typing.Optional[typing.Any] = 1.0,
|
|
@@ -16,7 +18,7 @@ def edge_pan(
|
|
|
16
18
|
):
|
|
17
19
|
"""Pan the view when the mouse is held at an edge
|
|
18
20
|
|
|
19
|
-
:type override_context: typing.Optional[typing.Union[
|
|
21
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
20
22
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
21
23
|
:type undo: typing.Optional[bool]
|
|
22
24
|
:param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
|
|
@@ -36,13 +38,15 @@ def edge_pan(
|
|
|
36
38
|
...
|
|
37
39
|
|
|
38
40
|
def ndof(
|
|
39
|
-
override_context: typing.Optional[
|
|
41
|
+
override_context: typing.Optional[
|
|
42
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
43
|
+
] = None,
|
|
40
44
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
41
45
|
undo: typing.Optional[bool] = None,
|
|
42
46
|
):
|
|
43
47
|
"""Use a 3D mouse device to pan/zoom the view
|
|
44
48
|
|
|
45
|
-
:type override_context: typing.Optional[typing.Union[
|
|
49
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
46
50
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
47
51
|
:type undo: typing.Optional[bool]
|
|
48
52
|
"""
|
|
@@ -50,7 +54,9 @@ def ndof(
|
|
|
50
54
|
...
|
|
51
55
|
|
|
52
56
|
def pan(
|
|
53
|
-
override_context: typing.Optional[
|
|
57
|
+
override_context: typing.Optional[
|
|
58
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
59
|
+
] = None,
|
|
54
60
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
55
61
|
undo: typing.Optional[bool] = None,
|
|
56
62
|
deltax: typing.Optional[typing.Any] = 0,
|
|
@@ -58,7 +64,7 @@ def pan(
|
|
|
58
64
|
):
|
|
59
65
|
"""Pan the view
|
|
60
66
|
|
|
61
|
-
:type override_context: typing.Optional[typing.Union[
|
|
67
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
62
68
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
63
69
|
:type undo: typing.Optional[bool]
|
|
64
70
|
:param deltax: Delta X
|
|
@@ -70,13 +76,15 @@ def pan(
|
|
|
70
76
|
...
|
|
71
77
|
|
|
72
78
|
def reset(
|
|
73
|
-
override_context: typing.Optional[
|
|
79
|
+
override_context: typing.Optional[
|
|
80
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
81
|
+
] = None,
|
|
74
82
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
75
83
|
undo: typing.Optional[bool] = None,
|
|
76
84
|
):
|
|
77
85
|
"""Reset the view
|
|
78
86
|
|
|
79
|
-
:type override_context: typing.Optional[typing.Union[
|
|
87
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
80
88
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
81
89
|
:type undo: typing.Optional[bool]
|
|
82
90
|
"""
|
|
@@ -84,7 +92,9 @@ def reset(
|
|
|
84
92
|
...
|
|
85
93
|
|
|
86
94
|
def scroll_down(
|
|
87
|
-
override_context: typing.Optional[
|
|
95
|
+
override_context: typing.Optional[
|
|
96
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
97
|
+
] = None,
|
|
88
98
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
89
99
|
undo: typing.Optional[bool] = None,
|
|
90
100
|
deltax: typing.Optional[typing.Any] = 0,
|
|
@@ -93,7 +103,7 @@ def scroll_down(
|
|
|
93
103
|
):
|
|
94
104
|
"""Scroll the view down
|
|
95
105
|
|
|
96
|
-
:type override_context: typing.Optional[typing.Union[
|
|
106
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
97
107
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
98
108
|
:type undo: typing.Optional[bool]
|
|
99
109
|
:param deltax: Delta X
|
|
@@ -107,7 +117,9 @@ def scroll_down(
|
|
|
107
117
|
...
|
|
108
118
|
|
|
109
119
|
def scroll_left(
|
|
110
|
-
override_context: typing.Optional[
|
|
120
|
+
override_context: typing.Optional[
|
|
121
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
122
|
+
] = None,
|
|
111
123
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
112
124
|
undo: typing.Optional[bool] = None,
|
|
113
125
|
deltax: typing.Optional[typing.Any] = 0,
|
|
@@ -115,7 +127,7 @@ def scroll_left(
|
|
|
115
127
|
):
|
|
116
128
|
"""Scroll the view left
|
|
117
129
|
|
|
118
|
-
:type override_context: typing.Optional[typing.Union[
|
|
130
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
119
131
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
120
132
|
:type undo: typing.Optional[bool]
|
|
121
133
|
:param deltax: Delta X
|
|
@@ -127,7 +139,9 @@ def scroll_left(
|
|
|
127
139
|
...
|
|
128
140
|
|
|
129
141
|
def scroll_right(
|
|
130
|
-
override_context: typing.Optional[
|
|
142
|
+
override_context: typing.Optional[
|
|
143
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
144
|
+
] = None,
|
|
131
145
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
132
146
|
undo: typing.Optional[bool] = None,
|
|
133
147
|
deltax: typing.Optional[typing.Any] = 0,
|
|
@@ -135,7 +149,7 @@ def scroll_right(
|
|
|
135
149
|
):
|
|
136
150
|
"""Scroll the view right
|
|
137
151
|
|
|
138
|
-
:type override_context: typing.Optional[typing.Union[
|
|
152
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
139
153
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
140
154
|
:type undo: typing.Optional[bool]
|
|
141
155
|
:param deltax: Delta X
|
|
@@ -147,7 +161,9 @@ def scroll_right(
|
|
|
147
161
|
...
|
|
148
162
|
|
|
149
163
|
def scroll_up(
|
|
150
|
-
override_context: typing.Optional[
|
|
164
|
+
override_context: typing.Optional[
|
|
165
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
166
|
+
] = None,
|
|
151
167
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
152
168
|
undo: typing.Optional[bool] = None,
|
|
153
169
|
deltax: typing.Optional[typing.Any] = 0,
|
|
@@ -156,7 +172,7 @@ def scroll_up(
|
|
|
156
172
|
):
|
|
157
173
|
"""Scroll the view up
|
|
158
174
|
|
|
159
|
-
:type override_context: typing.Optional[typing.Union[
|
|
175
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
160
176
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
161
177
|
:type undo: typing.Optional[bool]
|
|
162
178
|
:param deltax: Delta X
|
|
@@ -170,13 +186,15 @@ def scroll_up(
|
|
|
170
186
|
...
|
|
171
187
|
|
|
172
188
|
def scroller_activate(
|
|
173
|
-
override_context: typing.Optional[
|
|
189
|
+
override_context: typing.Optional[
|
|
190
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
191
|
+
] = None,
|
|
174
192
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
175
193
|
undo: typing.Optional[bool] = None,
|
|
176
194
|
):
|
|
177
195
|
"""Scroll view by mouse click and drag
|
|
178
196
|
|
|
179
|
-
:type override_context: typing.Optional[typing.Union[
|
|
197
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
180
198
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
181
199
|
:type undo: typing.Optional[bool]
|
|
182
200
|
"""
|
|
@@ -184,7 +202,9 @@ def scroller_activate(
|
|
|
184
202
|
...
|
|
185
203
|
|
|
186
204
|
def smoothview(
|
|
187
|
-
override_context: typing.Optional[
|
|
205
|
+
override_context: typing.Optional[
|
|
206
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
207
|
+
] = None,
|
|
188
208
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
189
209
|
undo: typing.Optional[bool] = None,
|
|
190
210
|
xmin: typing.Optional[typing.Any] = 0,
|
|
@@ -195,7 +215,7 @@ def smoothview(
|
|
|
195
215
|
):
|
|
196
216
|
"""Undocumented, consider contributing.
|
|
197
217
|
|
|
198
|
-
:type override_context: typing.Optional[typing.Union[
|
|
218
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
199
219
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
200
220
|
:type undo: typing.Optional[bool]
|
|
201
221
|
:param xmin: X Min
|
|
@@ -213,7 +233,9 @@ def smoothview(
|
|
|
213
233
|
...
|
|
214
234
|
|
|
215
235
|
def zoom(
|
|
216
|
-
override_context: typing.Optional[
|
|
236
|
+
override_context: typing.Optional[
|
|
237
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
238
|
+
] = None,
|
|
217
239
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
218
240
|
undo: typing.Optional[bool] = None,
|
|
219
241
|
deltax: typing.Optional[typing.Any] = 0.0,
|
|
@@ -222,7 +244,7 @@ def zoom(
|
|
|
222
244
|
):
|
|
223
245
|
"""Zoom in/out the view
|
|
224
246
|
|
|
225
|
-
:type override_context: typing.Optional[typing.Union[
|
|
247
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
226
248
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
227
249
|
:type undo: typing.Optional[bool]
|
|
228
250
|
:param deltax: Delta X
|
|
@@ -236,7 +258,9 @@ def zoom(
|
|
|
236
258
|
...
|
|
237
259
|
|
|
238
260
|
def zoom_border(
|
|
239
|
-
override_context: typing.Optional[
|
|
261
|
+
override_context: typing.Optional[
|
|
262
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
263
|
+
] = None,
|
|
240
264
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
241
265
|
undo: typing.Optional[bool] = None,
|
|
242
266
|
xmin: typing.Optional[typing.Any] = 0,
|
|
@@ -248,7 +272,7 @@ def zoom_border(
|
|
|
248
272
|
):
|
|
249
273
|
"""Zoom in the view to the nearest item contained in the border
|
|
250
274
|
|
|
251
|
-
:type override_context: typing.Optional[typing.Union[
|
|
275
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
252
276
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
253
277
|
:type undo: typing.Optional[bool]
|
|
254
278
|
:param xmin: X Min
|
|
@@ -268,7 +292,9 @@ def zoom_border(
|
|
|
268
292
|
...
|
|
269
293
|
|
|
270
294
|
def zoom_in(
|
|
271
|
-
override_context: typing.Optional[
|
|
295
|
+
override_context: typing.Optional[
|
|
296
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
297
|
+
] = None,
|
|
272
298
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
273
299
|
undo: typing.Optional[bool] = None,
|
|
274
300
|
zoomfacx: typing.Optional[typing.Any] = 0.0,
|
|
@@ -276,7 +302,7 @@ def zoom_in(
|
|
|
276
302
|
):
|
|
277
303
|
"""Zoom in the view
|
|
278
304
|
|
|
279
|
-
:type override_context: typing.Optional[typing.Union[
|
|
305
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
280
306
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
281
307
|
:type undo: typing.Optional[bool]
|
|
282
308
|
:param zoomfacx: Zoom Factor X
|
|
@@ -288,7 +314,9 @@ def zoom_in(
|
|
|
288
314
|
...
|
|
289
315
|
|
|
290
316
|
def zoom_out(
|
|
291
|
-
override_context: typing.Optional[
|
|
317
|
+
override_context: typing.Optional[
|
|
318
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
319
|
+
] = None,
|
|
292
320
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
293
321
|
undo: typing.Optional[bool] = None,
|
|
294
322
|
zoomfacx: typing.Optional[typing.Any] = 0.0,
|
|
@@ -296,7 +324,7 @@ def zoom_out(
|
|
|
296
324
|
):
|
|
297
325
|
"""Zoom out the view
|
|
298
326
|
|
|
299
|
-
:type override_context: typing.Optional[typing.Union[
|
|
327
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
300
328
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
301
329
|
:type undo: typing.Optional[bool]
|
|
302
330
|
:param zoomfacx: Zoom Factor X
|