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/curves/__init__.pyi
CHANGED
|
@@ -5,7 +5,9 @@ import bpy.types
|
|
|
5
5
|
GenericType = typing.TypeVar("GenericType")
|
|
6
6
|
|
|
7
7
|
def add_bezier(
|
|
8
|
-
override_context: typing.Optional[
|
|
8
|
+
override_context: typing.Optional[
|
|
9
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
10
|
+
] = None,
|
|
9
11
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
10
12
|
undo: typing.Optional[bool] = None,
|
|
11
13
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -17,7 +19,7 @@ def add_bezier(
|
|
|
17
19
|
):
|
|
18
20
|
"""Add new bezier curve
|
|
19
21
|
|
|
20
|
-
:type override_context: typing.Optional[typing.Union[
|
|
22
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
21
23
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
22
24
|
:type undo: typing.Optional[bool]
|
|
23
25
|
:param radius: Radius
|
|
@@ -46,7 +48,9 @@ def add_bezier(
|
|
|
46
48
|
...
|
|
47
49
|
|
|
48
50
|
def add_circle(
|
|
49
|
-
override_context: typing.Optional[
|
|
51
|
+
override_context: typing.Optional[
|
|
52
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
53
|
+
] = None,
|
|
50
54
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
55
|
undo: typing.Optional[bool] = None,
|
|
52
56
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -58,7 +62,7 @@ def add_circle(
|
|
|
58
62
|
):
|
|
59
63
|
"""Add new circle curve
|
|
60
64
|
|
|
61
|
-
:type override_context: typing.Optional[typing.Union[
|
|
65
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
62
66
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
63
67
|
:type undo: typing.Optional[bool]
|
|
64
68
|
:param radius: Radius
|
|
@@ -87,7 +91,9 @@ def add_circle(
|
|
|
87
91
|
...
|
|
88
92
|
|
|
89
93
|
def attribute_set(
|
|
90
|
-
override_context: typing.Optional[
|
|
94
|
+
override_context: typing.Optional[
|
|
95
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
96
|
+
] = None,
|
|
91
97
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
92
98
|
undo: typing.Optional[bool] = None,
|
|
93
99
|
value_float: typing.Optional[typing.Any] = 0.0,
|
|
@@ -100,7 +106,7 @@ def attribute_set(
|
|
|
100
106
|
):
|
|
101
107
|
"""Set values of the active attribute for selected elements
|
|
102
108
|
|
|
103
|
-
:type override_context: typing.Optional[typing.Union[
|
|
109
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
104
110
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
105
111
|
:type undo: typing.Optional[bool]
|
|
106
112
|
:param value_float: Value
|
|
@@ -122,13 +128,15 @@ def attribute_set(
|
|
|
122
128
|
...
|
|
123
129
|
|
|
124
130
|
def convert_from_particle_system(
|
|
125
|
-
override_context: typing.Optional[
|
|
131
|
+
override_context: typing.Optional[
|
|
132
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
133
|
+
] = None,
|
|
126
134
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
127
135
|
undo: typing.Optional[bool] = None,
|
|
128
136
|
):
|
|
129
137
|
"""Add a new curves object based on the current state of the particle system
|
|
130
138
|
|
|
131
|
-
:type override_context: typing.Optional[typing.Union[
|
|
139
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
132
140
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
133
141
|
:type undo: typing.Optional[bool]
|
|
134
142
|
"""
|
|
@@ -136,13 +144,15 @@ def convert_from_particle_system(
|
|
|
136
144
|
...
|
|
137
145
|
|
|
138
146
|
def convert_to_particle_system(
|
|
139
|
-
override_context: typing.Optional[
|
|
147
|
+
override_context: typing.Optional[
|
|
148
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
149
|
+
] = None,
|
|
140
150
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
141
151
|
undo: typing.Optional[bool] = None,
|
|
142
152
|
):
|
|
143
153
|
"""Add a new or update an existing hair particle system on the surface object
|
|
144
154
|
|
|
145
|
-
:type override_context: typing.Optional[typing.Union[
|
|
155
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
146
156
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
147
157
|
:type undo: typing.Optional[bool]
|
|
148
158
|
"""
|
|
@@ -150,7 +160,9 @@ def convert_to_particle_system(
|
|
|
150
160
|
...
|
|
151
161
|
|
|
152
162
|
def curve_type_set(
|
|
153
|
-
override_context: typing.Optional[
|
|
163
|
+
override_context: typing.Optional[
|
|
164
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
165
|
+
] = None,
|
|
154
166
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
155
167
|
undo: typing.Optional[bool] = None,
|
|
156
168
|
type: typing.Optional[typing.Union[str, int]] = "POLY",
|
|
@@ -158,7 +170,7 @@ def curve_type_set(
|
|
|
158
170
|
):
|
|
159
171
|
"""Set type of selected curves
|
|
160
172
|
|
|
161
|
-
:type override_context: typing.Optional[typing.Union[
|
|
173
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
162
174
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
163
175
|
:type undo: typing.Optional[bool]
|
|
164
176
|
:param type: Type, Curve type
|
|
@@ -170,13 +182,15 @@ def curve_type_set(
|
|
|
170
182
|
...
|
|
171
183
|
|
|
172
184
|
def cyclic_toggle(
|
|
173
|
-
override_context: typing.Optional[
|
|
185
|
+
override_context: typing.Optional[
|
|
186
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
187
|
+
] = None,
|
|
174
188
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
175
189
|
undo: typing.Optional[bool] = None,
|
|
176
190
|
):
|
|
177
191
|
"""Make active curve closed/opened loop
|
|
178
192
|
|
|
179
|
-
:type override_context: typing.Optional[typing.Union[
|
|
193
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
180
194
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
181
195
|
:type undo: typing.Optional[bool]
|
|
182
196
|
"""
|
|
@@ -184,13 +198,15 @@ def cyclic_toggle(
|
|
|
184
198
|
...
|
|
185
199
|
|
|
186
200
|
def delete(
|
|
187
|
-
override_context: typing.Optional[
|
|
201
|
+
override_context: typing.Optional[
|
|
202
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
203
|
+
] = None,
|
|
188
204
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
189
205
|
undo: typing.Optional[bool] = None,
|
|
190
206
|
):
|
|
191
207
|
"""Remove selected control points or curves
|
|
192
208
|
|
|
193
|
-
:type override_context: typing.Optional[typing.Union[
|
|
209
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
194
210
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
195
211
|
:type undo: typing.Optional[bool]
|
|
196
212
|
"""
|
|
@@ -198,7 +214,9 @@ def delete(
|
|
|
198
214
|
...
|
|
199
215
|
|
|
200
216
|
def draw(
|
|
201
|
-
override_context: typing.Optional[
|
|
217
|
+
override_context: typing.Optional[
|
|
218
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
219
|
+
] = None,
|
|
202
220
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
203
221
|
undo: typing.Optional[bool] = None,
|
|
204
222
|
error_threshold: typing.Optional[typing.Any] = 0.0,
|
|
@@ -214,7 +232,7 @@ def draw(
|
|
|
214
232
|
):
|
|
215
233
|
"""Draw a freehand curve
|
|
216
234
|
|
|
217
|
-
:type override_context: typing.Optional[typing.Union[
|
|
235
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
218
236
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
219
237
|
:type undo: typing.Optional[bool]
|
|
220
238
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
@@ -238,13 +256,15 @@ def draw(
|
|
|
238
256
|
...
|
|
239
257
|
|
|
240
258
|
def duplicate(
|
|
241
|
-
override_context: typing.Optional[
|
|
259
|
+
override_context: typing.Optional[
|
|
260
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
261
|
+
] = None,
|
|
242
262
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
243
263
|
undo: typing.Optional[bool] = None,
|
|
244
264
|
):
|
|
245
265
|
"""Copy selected points or curves
|
|
246
266
|
|
|
247
|
-
:type override_context: typing.Optional[typing.Union[
|
|
267
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
248
268
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
249
269
|
:type undo: typing.Optional[bool]
|
|
250
270
|
"""
|
|
@@ -252,7 +272,9 @@ def duplicate(
|
|
|
252
272
|
...
|
|
253
273
|
|
|
254
274
|
def duplicate_move(
|
|
255
|
-
override_context: typing.Optional[
|
|
275
|
+
override_context: typing.Optional[
|
|
276
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
277
|
+
] = None,
|
|
256
278
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
257
279
|
undo: typing.Optional[bool] = None,
|
|
258
280
|
CURVES_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -260,7 +282,7 @@ def duplicate_move(
|
|
|
260
282
|
):
|
|
261
283
|
"""Make copies of selected elements and move them
|
|
262
284
|
|
|
263
|
-
:type override_context: typing.Optional[typing.Union[
|
|
285
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
264
286
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
265
287
|
:type undo: typing.Optional[bool]
|
|
266
288
|
:param CURVES_OT_duplicate: Duplicate, Copy selected points or curves
|
|
@@ -272,13 +294,15 @@ def duplicate_move(
|
|
|
272
294
|
...
|
|
273
295
|
|
|
274
296
|
def extrude(
|
|
275
|
-
override_context: typing.Optional[
|
|
297
|
+
override_context: typing.Optional[
|
|
298
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
299
|
+
] = None,
|
|
276
300
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
277
301
|
undo: typing.Optional[bool] = None,
|
|
278
302
|
):
|
|
279
303
|
"""Extrude selected control point(s)
|
|
280
304
|
|
|
281
|
-
:type override_context: typing.Optional[typing.Union[
|
|
305
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
282
306
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
283
307
|
:type undo: typing.Optional[bool]
|
|
284
308
|
"""
|
|
@@ -286,7 +310,9 @@ def extrude(
|
|
|
286
310
|
...
|
|
287
311
|
|
|
288
312
|
def extrude_move(
|
|
289
|
-
override_context: typing.Optional[
|
|
313
|
+
override_context: typing.Optional[
|
|
314
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
315
|
+
] = None,
|
|
290
316
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
291
317
|
undo: typing.Optional[bool] = None,
|
|
292
318
|
CURVES_OT_extrude: typing.Optional[extrude] = None,
|
|
@@ -294,7 +320,7 @@ def extrude_move(
|
|
|
294
320
|
):
|
|
295
321
|
"""Extrude curve and move result
|
|
296
322
|
|
|
297
|
-
:type override_context: typing.Optional[typing.Union[
|
|
323
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
298
324
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
299
325
|
:type undo: typing.Optional[bool]
|
|
300
326
|
:param CURVES_OT_extrude: Extrude, Extrude selected control point(s)
|
|
@@ -306,14 +332,16 @@ def extrude_move(
|
|
|
306
332
|
...
|
|
307
333
|
|
|
308
334
|
def handle_type_set(
|
|
309
|
-
override_context: typing.Optional[
|
|
335
|
+
override_context: typing.Optional[
|
|
336
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
337
|
+
] = None,
|
|
310
338
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
311
339
|
undo: typing.Optional[bool] = None,
|
|
312
340
|
type: typing.Optional[typing.Union[str, int]] = "AUTO",
|
|
313
341
|
):
|
|
314
342
|
"""Set the handle type for bezier curves
|
|
315
343
|
|
|
316
|
-
:type override_context: typing.Optional[typing.Union[
|
|
344
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
317
345
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
318
346
|
:type undo: typing.Optional[bool]
|
|
319
347
|
:param type: Type
|
|
@@ -323,13 +351,15 @@ def handle_type_set(
|
|
|
323
351
|
...
|
|
324
352
|
|
|
325
353
|
def sculptmode_toggle(
|
|
326
|
-
override_context: typing.Optional[
|
|
354
|
+
override_context: typing.Optional[
|
|
355
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
356
|
+
] = None,
|
|
327
357
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
328
358
|
undo: typing.Optional[bool] = None,
|
|
329
359
|
):
|
|
330
360
|
"""Enter/Exit sculpt mode for curves
|
|
331
361
|
|
|
332
|
-
:type override_context: typing.Optional[typing.Union[
|
|
362
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
333
363
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
334
364
|
:type undo: typing.Optional[bool]
|
|
335
365
|
"""
|
|
@@ -337,14 +367,16 @@ def sculptmode_toggle(
|
|
|
337
367
|
...
|
|
338
368
|
|
|
339
369
|
def select_all(
|
|
340
|
-
override_context: typing.Optional[
|
|
370
|
+
override_context: typing.Optional[
|
|
371
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
372
|
+
] = None,
|
|
341
373
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
342
374
|
undo: typing.Optional[bool] = None,
|
|
343
375
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
344
376
|
):
|
|
345
377
|
"""(De)select all control points
|
|
346
378
|
|
|
347
|
-
:type override_context: typing.Optional[typing.Union[
|
|
379
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
348
380
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
349
381
|
:type undo: typing.Optional[bool]
|
|
350
382
|
:param action: Action, Selection action to execute
|
|
@@ -366,7 +398,9 @@ def select_all(
|
|
|
366
398
|
...
|
|
367
399
|
|
|
368
400
|
def select_ends(
|
|
369
|
-
override_context: typing.Optional[
|
|
401
|
+
override_context: typing.Optional[
|
|
402
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
403
|
+
] = None,
|
|
370
404
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
371
405
|
undo: typing.Optional[bool] = None,
|
|
372
406
|
amount_start: typing.Optional[typing.Any] = 0,
|
|
@@ -374,7 +408,7 @@ def select_ends(
|
|
|
374
408
|
):
|
|
375
409
|
"""Select end points of curves
|
|
376
410
|
|
|
377
|
-
:type override_context: typing.Optional[typing.Union[
|
|
411
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
378
412
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
379
413
|
:type undo: typing.Optional[bool]
|
|
380
414
|
:param amount_start: Amount Front, Number of points to select from the front
|
|
@@ -386,13 +420,15 @@ def select_ends(
|
|
|
386
420
|
...
|
|
387
421
|
|
|
388
422
|
def select_less(
|
|
389
|
-
override_context: typing.Optional[
|
|
423
|
+
override_context: typing.Optional[
|
|
424
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
425
|
+
] = None,
|
|
390
426
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
391
427
|
undo: typing.Optional[bool] = None,
|
|
392
428
|
):
|
|
393
429
|
"""Shrink the selection by one point
|
|
394
430
|
|
|
395
|
-
:type override_context: typing.Optional[typing.Union[
|
|
431
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
396
432
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
397
433
|
:type undo: typing.Optional[bool]
|
|
398
434
|
"""
|
|
@@ -400,13 +436,15 @@ def select_less(
|
|
|
400
436
|
...
|
|
401
437
|
|
|
402
438
|
def select_linked(
|
|
403
|
-
override_context: typing.Optional[
|
|
439
|
+
override_context: typing.Optional[
|
|
440
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
441
|
+
] = None,
|
|
404
442
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
405
443
|
undo: typing.Optional[bool] = None,
|
|
406
444
|
):
|
|
407
445
|
"""Select all points in curves with any point selection
|
|
408
446
|
|
|
409
|
-
:type override_context: typing.Optional[typing.Union[
|
|
447
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
410
448
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
411
449
|
:type undo: typing.Optional[bool]
|
|
412
450
|
"""
|
|
@@ -414,13 +452,15 @@ def select_linked(
|
|
|
414
452
|
...
|
|
415
453
|
|
|
416
454
|
def select_more(
|
|
417
|
-
override_context: typing.Optional[
|
|
455
|
+
override_context: typing.Optional[
|
|
456
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
457
|
+
] = None,
|
|
418
458
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
419
459
|
undo: typing.Optional[bool] = None,
|
|
420
460
|
):
|
|
421
461
|
"""Grow the selection by one point
|
|
422
462
|
|
|
423
|
-
:type override_context: typing.Optional[typing.Union[
|
|
463
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
424
464
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
425
465
|
:type undo: typing.Optional[bool]
|
|
426
466
|
"""
|
|
@@ -428,7 +468,9 @@ def select_more(
|
|
|
428
468
|
...
|
|
429
469
|
|
|
430
470
|
def select_random(
|
|
431
|
-
override_context: typing.Optional[
|
|
471
|
+
override_context: typing.Optional[
|
|
472
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
473
|
+
] = None,
|
|
432
474
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
433
475
|
undo: typing.Optional[bool] = None,
|
|
434
476
|
seed: typing.Optional[typing.Any] = 0,
|
|
@@ -436,7 +478,7 @@ def select_random(
|
|
|
436
478
|
):
|
|
437
479
|
"""Randomizes existing selection or create new random selection
|
|
438
480
|
|
|
439
|
-
:type override_context: typing.Optional[typing.Union[
|
|
481
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
440
482
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
441
483
|
:type undo: typing.Optional[bool]
|
|
442
484
|
:param seed: Seed, Source of randomness
|
|
@@ -448,14 +490,16 @@ def select_random(
|
|
|
448
490
|
...
|
|
449
491
|
|
|
450
492
|
def set_selection_domain(
|
|
451
|
-
override_context: typing.Optional[
|
|
493
|
+
override_context: typing.Optional[
|
|
494
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
495
|
+
] = None,
|
|
452
496
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
453
497
|
undo: typing.Optional[bool] = None,
|
|
454
498
|
domain: typing.Optional[typing.Union[str, int]] = "POINT",
|
|
455
499
|
):
|
|
456
500
|
"""Change the mode used for selection masking in curves sculpt mode
|
|
457
501
|
|
|
458
|
-
:type override_context: typing.Optional[typing.Union[
|
|
502
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
459
503
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
460
504
|
:type undo: typing.Optional[bool]
|
|
461
505
|
:param domain: Domain
|
|
@@ -465,14 +509,16 @@ def set_selection_domain(
|
|
|
465
509
|
...
|
|
466
510
|
|
|
467
511
|
def snap_curves_to_surface(
|
|
468
|
-
override_context: typing.Optional[
|
|
512
|
+
override_context: typing.Optional[
|
|
513
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
514
|
+
] = None,
|
|
469
515
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
470
516
|
undo: typing.Optional[bool] = None,
|
|
471
517
|
attach_mode: typing.Optional[typing.Any] = "NEAREST",
|
|
472
518
|
):
|
|
473
519
|
"""Move curves so that the first point is exactly on the surface mesh
|
|
474
520
|
|
|
475
|
-
:type override_context: typing.Optional[typing.Union[
|
|
521
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
476
522
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
477
523
|
:type undo: typing.Optional[bool]
|
|
478
524
|
:param attach_mode: Attach Mode, How to find the point on the surface to attach to
|
|
@@ -488,14 +534,16 @@ def snap_curves_to_surface(
|
|
|
488
534
|
...
|
|
489
535
|
|
|
490
536
|
def subdivide(
|
|
491
|
-
override_context: typing.Optional[
|
|
537
|
+
override_context: typing.Optional[
|
|
538
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
539
|
+
] = None,
|
|
492
540
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
493
541
|
undo: typing.Optional[bool] = None,
|
|
494
542
|
number_cuts: typing.Optional[typing.Any] = 1,
|
|
495
543
|
):
|
|
496
544
|
"""Subdivide selected curve segments
|
|
497
545
|
|
|
498
|
-
:type override_context: typing.Optional[typing.Union[
|
|
546
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
499
547
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
500
548
|
:type undo: typing.Optional[bool]
|
|
501
549
|
:param number_cuts: Number of Cuts
|
|
@@ -505,13 +553,15 @@ def subdivide(
|
|
|
505
553
|
...
|
|
506
554
|
|
|
507
555
|
def surface_set(
|
|
508
|
-
override_context: typing.Optional[
|
|
556
|
+
override_context: typing.Optional[
|
|
557
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
558
|
+
] = None,
|
|
509
559
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
510
560
|
undo: typing.Optional[bool] = None,
|
|
511
561
|
):
|
|
512
562
|
"""Use the active object as surface for selected curves objects and set it as the parent
|
|
513
563
|
|
|
514
|
-
:type override_context: typing.Optional[typing.Union[
|
|
564
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
515
565
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
516
566
|
:type undo: typing.Optional[bool]
|
|
517
567
|
"""
|
|
@@ -519,13 +569,15 @@ def surface_set(
|
|
|
519
569
|
...
|
|
520
570
|
|
|
521
571
|
def switch_direction(
|
|
522
|
-
override_context: typing.Optional[
|
|
572
|
+
override_context: typing.Optional[
|
|
573
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
574
|
+
] = None,
|
|
523
575
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
524
576
|
undo: typing.Optional[bool] = None,
|
|
525
577
|
):
|
|
526
578
|
"""Reverse the direction of the selected curves
|
|
527
579
|
|
|
528
|
-
:type override_context: typing.Optional[typing.Union[
|
|
580
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
529
581
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
530
582
|
:type undo: typing.Optional[bool]
|
|
531
583
|
"""
|
|
@@ -533,13 +585,15 @@ def switch_direction(
|
|
|
533
585
|
...
|
|
534
586
|
|
|
535
587
|
def tilt_clear(
|
|
536
|
-
override_context: typing.Optional[
|
|
588
|
+
override_context: typing.Optional[
|
|
589
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
590
|
+
] = None,
|
|
537
591
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
538
592
|
undo: typing.Optional[bool] = None,
|
|
539
593
|
):
|
|
540
594
|
"""Clear the tilt of selected control points
|
|
541
595
|
|
|
542
|
-
:type override_context: typing.Optional[typing.Union[
|
|
596
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
543
597
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
544
598
|
:type undo: typing.Optional[bool]
|
|
545
599
|
"""
|
bpy/ops/cycles/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def denoise_animation(
|
|
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
|
input_filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -12,7 +14,7 @@ def denoise_animation(
|
|
|
12
14
|
):
|
|
13
15
|
"""Denoise rendered animation sequence using current scene and view layer settings. Requires denoising data passes and output to OpenEXR multilayer files
|
|
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 input_filepath: Input Filepath, File path for image to denoise. If not specified, uses the render file path and frame range from the scene
|
|
@@ -24,7 +26,9 @@ def denoise_animation(
|
|
|
24
26
|
...
|
|
25
27
|
|
|
26
28
|
def merge_images(
|
|
27
|
-
override_context: typing.Optional[
|
|
29
|
+
override_context: typing.Optional[
|
|
30
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
31
|
+
] = None,
|
|
28
32
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
29
33
|
undo: typing.Optional[bool] = None,
|
|
30
34
|
input_filepath1: typing.Union[str, typing.Any] = "",
|
|
@@ -33,7 +37,7 @@ def merge_images(
|
|
|
33
37
|
):
|
|
34
38
|
"""Combine OpenEXR multi-layer images rendered with different sample ranges into one image with reduced noise
|
|
35
39
|
|
|
36
|
-
:type override_context: typing.Optional[typing.Union[
|
|
40
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
37
41
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
38
42
|
:type undo: typing.Optional[bool]
|
|
39
43
|
:param input_filepath1: Input Filepath, File path for image to merge
|
|
@@ -47,13 +51,15 @@ def merge_images(
|
|
|
47
51
|
...
|
|
48
52
|
|
|
49
53
|
def use_shading_nodes(
|
|
50
|
-
override_context: typing.Optional[
|
|
54
|
+
override_context: typing.Optional[
|
|
55
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
56
|
+
] = None,
|
|
51
57
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
52
58
|
undo: typing.Optional[bool] = None,
|
|
53
59
|
):
|
|
54
60
|
"""Enable nodes on a material, world or light
|
|
55
61
|
|
|
56
|
-
:type override_context: typing.Optional[typing.Union[
|
|
62
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
57
63
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
58
64
|
:type undo: typing.Optional[bool]
|
|
59
65
|
"""
|
bpy/ops/dpaint/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def bake(
|
|
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
|
"""Bake dynamic paint image sequence surface
|
|
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,14 +20,16 @@ def bake(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def output_toggle(
|
|
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
|
output: typing.Optional[typing.Any] = "A",
|
|
25
29
|
):
|
|
26
30
|
"""Add or remove Dynamic Paint output data layer
|
|
27
31
|
|
|
28
|
-
:type override_context: typing.Optional[typing.Union[
|
|
32
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
29
33
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
30
34
|
:type undo: typing.Optional[bool]
|
|
31
35
|
:param output: Output Toggle
|
|
@@ -35,13 +39,15 @@ def output_toggle(
|
|
|
35
39
|
...
|
|
36
40
|
|
|
37
41
|
def surface_slot_add(
|
|
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
|
):
|
|
42
48
|
"""Add a new Dynamic Paint surface slot
|
|
43
49
|
|
|
44
|
-
:type override_context: typing.Optional[typing.Union[
|
|
50
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
45
51
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
46
52
|
:type undo: typing.Optional[bool]
|
|
47
53
|
"""
|
|
@@ -49,13 +55,15 @@ def surface_slot_add(
|
|
|
49
55
|
...
|
|
50
56
|
|
|
51
57
|
def surface_slot_remove(
|
|
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
|
):
|
|
56
64
|
"""Remove the selected surface slot
|
|
57
65
|
|
|
58
|
-
:type override_context: typing.Optional[typing.Union[
|
|
66
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
59
67
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
60
68
|
:type undo: typing.Optional[bool]
|
|
61
69
|
"""
|
|
@@ -63,14 +71,16 @@ def surface_slot_remove(
|
|
|
63
71
|
...
|
|
64
72
|
|
|
65
73
|
def type_toggle(
|
|
66
|
-
override_context: typing.Optional[
|
|
74
|
+
override_context: typing.Optional[
|
|
75
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
76
|
+
] = None,
|
|
67
77
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
68
78
|
undo: typing.Optional[bool] = None,
|
|
69
79
|
type: typing.Optional[typing.Union[str, int]] = "CANVAS",
|
|
70
80
|
):
|
|
71
81
|
"""Toggle whether given type is active or not
|
|
72
82
|
|
|
73
|
-
:type override_context: typing.Optional[typing.Union[
|
|
83
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
74
84
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
75
85
|
:type undo: typing.Optional[bool]
|
|
76
86
|
:param type: Type
|