fake-bpy-module 20240927__py3-none-any.whl → 20240929__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.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ import bpy.typing
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def add_bezier(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -28,7 +28,7 @@ def add_bezier(
|
|
|
28
28
|
):
|
|
29
29
|
"""Add new bezier curve
|
|
30
30
|
|
|
31
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
32
32
|
:type execution_context: int | str | None
|
|
33
33
|
:type undo: bool | None
|
|
34
34
|
:param radius: Radius
|
|
@@ -55,7 +55,7 @@ def add_bezier(
|
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
57
|
def add_circle(
|
|
58
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
58
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
59
59
|
execution_context: int | str | None = None,
|
|
60
60
|
undo: bool | None = None,
|
|
61
61
|
*,
|
|
@@ -76,7 +76,7 @@ def add_circle(
|
|
|
76
76
|
):
|
|
77
77
|
"""Add new circle curve
|
|
78
78
|
|
|
79
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
80
80
|
:type execution_context: int | str | None
|
|
81
81
|
:type undo: bool | None
|
|
82
82
|
:param radius: Radius
|
|
@@ -103,7 +103,7 @@ def add_circle(
|
|
|
103
103
|
"""
|
|
104
104
|
|
|
105
105
|
def attribute_set(
|
|
106
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
106
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
107
107
|
execution_context: int | str | None = None,
|
|
108
108
|
undo: bool | None = None,
|
|
109
109
|
*,
|
|
@@ -117,7 +117,7 @@ def attribute_set(
|
|
|
117
117
|
):
|
|
118
118
|
"""Set values of the active attribute for selected elements
|
|
119
119
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
:param value_float: Value
|
|
@@ -137,31 +137,31 @@ def attribute_set(
|
|
|
137
137
|
"""
|
|
138
138
|
|
|
139
139
|
def convert_from_particle_system(
|
|
140
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
140
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
141
141
|
execution_context: int | str | None = None,
|
|
142
142
|
undo: bool | None = None,
|
|
143
143
|
):
|
|
144
144
|
"""Add a new curves object based on the current state of the particle system
|
|
145
145
|
|
|
146
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
146
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
147
147
|
:type execution_context: int | str | None
|
|
148
148
|
:type undo: bool | None
|
|
149
149
|
"""
|
|
150
150
|
|
|
151
151
|
def convert_to_particle_system(
|
|
152
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
152
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
153
153
|
execution_context: int | str | None = None,
|
|
154
154
|
undo: bool | None = None,
|
|
155
155
|
):
|
|
156
156
|
"""Add a new or update an existing hair particle system on the surface object
|
|
157
157
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
158
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
159
|
:type execution_context: int | str | None
|
|
160
160
|
:type undo: bool | None
|
|
161
161
|
"""
|
|
162
162
|
|
|
163
163
|
def curve_type_set(
|
|
164
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
164
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
165
165
|
execution_context: int | str | None = None,
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
*,
|
|
@@ -170,7 +170,7 @@ def curve_type_set(
|
|
|
170
170
|
):
|
|
171
171
|
"""Set type of selected curves
|
|
172
172
|
|
|
173
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
173
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
174
174
|
:type execution_context: int | str | None
|
|
175
175
|
:type undo: bool | None
|
|
176
176
|
:param type: Type, Curve type
|
|
@@ -180,31 +180,31 @@ def curve_type_set(
|
|
|
180
180
|
"""
|
|
181
181
|
|
|
182
182
|
def cyclic_toggle(
|
|
183
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
183
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
184
184
|
execution_context: int | str | None = None,
|
|
185
185
|
undo: bool | None = None,
|
|
186
186
|
):
|
|
187
187
|
"""Make active curve closed/opened loop
|
|
188
188
|
|
|
189
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
189
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
190
190
|
:type execution_context: int | str | None
|
|
191
191
|
:type undo: bool | None
|
|
192
192
|
"""
|
|
193
193
|
|
|
194
194
|
def delete(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
196
196
|
execution_context: int | str | None = None,
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
):
|
|
199
199
|
"""Remove selected control points or curves
|
|
200
200
|
|
|
201
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
201
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
202
202
|
:type execution_context: int | str | None
|
|
203
203
|
:type undo: bool | None
|
|
204
204
|
"""
|
|
205
205
|
|
|
206
206
|
def draw(
|
|
207
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
207
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
208
208
|
execution_context: int | str | None = None,
|
|
209
209
|
undo: bool | None = None,
|
|
210
210
|
*,
|
|
@@ -220,7 +220,7 @@ def draw(
|
|
|
220
220
|
):
|
|
221
221
|
"""Draw a freehand curve
|
|
222
222
|
|
|
223
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
223
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
224
224
|
:type execution_context: int | str | None
|
|
225
225
|
:type undo: bool | None
|
|
226
226
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
@@ -242,19 +242,19 @@ def draw(
|
|
|
242
242
|
"""
|
|
243
243
|
|
|
244
244
|
def duplicate(
|
|
245
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
245
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
246
246
|
execution_context: int | str | None = None,
|
|
247
247
|
undo: bool | None = None,
|
|
248
248
|
):
|
|
249
249
|
"""Copy selected points or curves
|
|
250
250
|
|
|
251
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
251
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
252
252
|
:type execution_context: int | str | None
|
|
253
253
|
:type undo: bool | None
|
|
254
254
|
"""
|
|
255
255
|
|
|
256
256
|
def duplicate_move(
|
|
257
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
257
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
258
258
|
execution_context: int | str | None = None,
|
|
259
259
|
undo: bool | None = None,
|
|
260
260
|
*,
|
|
@@ -263,7 +263,7 @@ def duplicate_move(
|
|
|
263
263
|
):
|
|
264
264
|
"""Make copies of selected elements and move them
|
|
265
265
|
|
|
266
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
266
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
267
267
|
:type execution_context: int | str | None
|
|
268
268
|
:type undo: bool | None
|
|
269
269
|
:param CURVES_OT_duplicate: Duplicate, Copy selected points or curves
|
|
@@ -273,19 +273,19 @@ def duplicate_move(
|
|
|
273
273
|
"""
|
|
274
274
|
|
|
275
275
|
def extrude(
|
|
276
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
276
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
277
277
|
execution_context: int | str | None = None,
|
|
278
278
|
undo: bool | None = None,
|
|
279
279
|
):
|
|
280
280
|
"""Extrude selected control point(s)
|
|
281
281
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
283
283
|
:type execution_context: int | str | None
|
|
284
284
|
:type undo: bool | None
|
|
285
285
|
"""
|
|
286
286
|
|
|
287
287
|
def extrude_move(
|
|
288
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
288
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
289
289
|
execution_context: int | str | None = None,
|
|
290
290
|
undo: bool | None = None,
|
|
291
291
|
*,
|
|
@@ -294,7 +294,7 @@ def extrude_move(
|
|
|
294
294
|
):
|
|
295
295
|
"""Extrude curve and move result
|
|
296
296
|
|
|
297
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
297
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
298
298
|
:type execution_context: int | str | None
|
|
299
299
|
:type undo: bool | None
|
|
300
300
|
:param CURVES_OT_extrude: Extrude, Extrude selected control point(s)
|
|
@@ -304,7 +304,7 @@ def extrude_move(
|
|
|
304
304
|
"""
|
|
305
305
|
|
|
306
306
|
def handle_type_set(
|
|
307
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
307
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
308
308
|
execution_context: int | str | None = None,
|
|
309
309
|
undo: bool | None = None,
|
|
310
310
|
*,
|
|
@@ -312,7 +312,7 @@ def handle_type_set(
|
|
|
312
312
|
):
|
|
313
313
|
"""Set the handle type for bezier curves
|
|
314
314
|
|
|
315
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
315
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
316
316
|
:type execution_context: int | str | None
|
|
317
317
|
:type undo: bool | None
|
|
318
318
|
:param type: Type
|
|
@@ -320,19 +320,19 @@ def handle_type_set(
|
|
|
320
320
|
"""
|
|
321
321
|
|
|
322
322
|
def sculptmode_toggle(
|
|
323
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
323
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
324
324
|
execution_context: int | str | None = None,
|
|
325
325
|
undo: bool | None = None,
|
|
326
326
|
):
|
|
327
327
|
"""Enter/Exit sculpt mode for curves
|
|
328
328
|
|
|
329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
329
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
330
330
|
:type execution_context: int | str | None
|
|
331
331
|
:type undo: bool | None
|
|
332
332
|
"""
|
|
333
333
|
|
|
334
334
|
def select_all(
|
|
335
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
335
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
336
336
|
execution_context: int | str | None = None,
|
|
337
337
|
undo: bool | None = None,
|
|
338
338
|
*,
|
|
@@ -340,7 +340,7 @@ def select_all(
|
|
|
340
340
|
):
|
|
341
341
|
"""(De)select all control points
|
|
342
342
|
|
|
343
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
343
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
344
344
|
:type execution_context: int | str | None
|
|
345
345
|
:type undo: bool | None
|
|
346
346
|
:param action: Action, Selection action to execute
|
|
@@ -360,7 +360,7 @@ def select_all(
|
|
|
360
360
|
"""
|
|
361
361
|
|
|
362
362
|
def select_ends(
|
|
363
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
363
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
364
364
|
execution_context: int | str | None = None,
|
|
365
365
|
undo: bool | None = None,
|
|
366
366
|
*,
|
|
@@ -369,7 +369,7 @@ def select_ends(
|
|
|
369
369
|
):
|
|
370
370
|
"""Select end points of curves
|
|
371
371
|
|
|
372
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
372
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
373
373
|
:type execution_context: int | str | None
|
|
374
374
|
:type undo: bool | None
|
|
375
375
|
:param amount_start: Amount Front, Number of points to select from the front
|
|
@@ -379,43 +379,43 @@ def select_ends(
|
|
|
379
379
|
"""
|
|
380
380
|
|
|
381
381
|
def select_less(
|
|
382
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
382
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
383
383
|
execution_context: int | str | None = None,
|
|
384
384
|
undo: bool | None = None,
|
|
385
385
|
):
|
|
386
386
|
"""Shrink the selection by one point
|
|
387
387
|
|
|
388
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
388
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
389
389
|
:type execution_context: int | str | None
|
|
390
390
|
:type undo: bool | None
|
|
391
391
|
"""
|
|
392
392
|
|
|
393
393
|
def select_linked(
|
|
394
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
394
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
):
|
|
398
398
|
"""Select all points in curves with any point selection
|
|
399
399
|
|
|
400
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
400
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
401
401
|
:type execution_context: int | str | None
|
|
402
402
|
:type undo: bool | None
|
|
403
403
|
"""
|
|
404
404
|
|
|
405
405
|
def select_more(
|
|
406
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
406
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
407
407
|
execution_context: int | str | None = None,
|
|
408
408
|
undo: bool | None = None,
|
|
409
409
|
):
|
|
410
410
|
"""Grow the selection by one point
|
|
411
411
|
|
|
412
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
412
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
413
413
|
:type execution_context: int | str | None
|
|
414
414
|
:type undo: bool | None
|
|
415
415
|
"""
|
|
416
416
|
|
|
417
417
|
def select_random(
|
|
418
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
418
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
419
419
|
execution_context: int | str | None = None,
|
|
420
420
|
undo: bool | None = None,
|
|
421
421
|
*,
|
|
@@ -424,7 +424,7 @@ def select_random(
|
|
|
424
424
|
):
|
|
425
425
|
"""Randomizes existing selection or create new random selection
|
|
426
426
|
|
|
427
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
427
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
428
428
|
:type execution_context: int | str | None
|
|
429
429
|
:type undo: bool | None
|
|
430
430
|
:param seed: Seed, Source of randomness
|
|
@@ -434,7 +434,7 @@ def select_random(
|
|
|
434
434
|
"""
|
|
435
435
|
|
|
436
436
|
def set_selection_domain(
|
|
437
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
437
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
438
438
|
execution_context: int | str | None = None,
|
|
439
439
|
undo: bool | None = None,
|
|
440
440
|
*,
|
|
@@ -442,7 +442,7 @@ def set_selection_domain(
|
|
|
442
442
|
):
|
|
443
443
|
"""Change the mode used for selection masking in curves sculpt mode
|
|
444
444
|
|
|
445
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
445
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
446
446
|
:type execution_context: int | str | None
|
|
447
447
|
:type undo: bool | None
|
|
448
448
|
:param domain: Domain
|
|
@@ -450,7 +450,7 @@ def set_selection_domain(
|
|
|
450
450
|
"""
|
|
451
451
|
|
|
452
452
|
def snap_curves_to_surface(
|
|
453
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
453
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
454
454
|
execution_context: int | str | None = None,
|
|
455
455
|
undo: bool | None = None,
|
|
456
456
|
*,
|
|
@@ -458,7 +458,7 @@ def snap_curves_to_surface(
|
|
|
458
458
|
):
|
|
459
459
|
"""Move curves so that the first point is exactly on the surface mesh
|
|
460
460
|
|
|
461
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
461
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
462
462
|
:type execution_context: int | str | None
|
|
463
463
|
:type undo: bool | None
|
|
464
464
|
:param attach_mode: Attach Mode, How to find the point on the surface to attach to
|
|
@@ -472,7 +472,7 @@ def snap_curves_to_surface(
|
|
|
472
472
|
"""
|
|
473
473
|
|
|
474
474
|
def subdivide(
|
|
475
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
475
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
476
476
|
execution_context: int | str | None = None,
|
|
477
477
|
undo: bool | None = None,
|
|
478
478
|
*,
|
|
@@ -480,7 +480,7 @@ def subdivide(
|
|
|
480
480
|
):
|
|
481
481
|
"""Subdivide selected curve segments
|
|
482
482
|
|
|
483
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
483
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
484
484
|
:type execution_context: int | str | None
|
|
485
485
|
:type undo: bool | None
|
|
486
486
|
:param number_cuts: Number of Cuts
|
|
@@ -488,37 +488,37 @@ def subdivide(
|
|
|
488
488
|
"""
|
|
489
489
|
|
|
490
490
|
def surface_set(
|
|
491
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
491
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
492
492
|
execution_context: int | str | None = None,
|
|
493
493
|
undo: bool | None = None,
|
|
494
494
|
):
|
|
495
495
|
"""Use the active object as surface for selected curves objects and set it as the parent
|
|
496
496
|
|
|
497
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
497
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
498
498
|
:type execution_context: int | str | None
|
|
499
499
|
:type undo: bool | None
|
|
500
500
|
"""
|
|
501
501
|
|
|
502
502
|
def switch_direction(
|
|
503
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
503
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
504
504
|
execution_context: int | str | None = None,
|
|
505
505
|
undo: bool | None = None,
|
|
506
506
|
):
|
|
507
507
|
"""Reverse the direction of the selected curves
|
|
508
508
|
|
|
509
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
510
510
|
:type execution_context: int | str | None
|
|
511
511
|
:type undo: bool | None
|
|
512
512
|
"""
|
|
513
513
|
|
|
514
514
|
def tilt_clear(
|
|
515
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
515
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
516
516
|
execution_context: int | str | None = None,
|
|
517
517
|
undo: bool | None = None,
|
|
518
518
|
):
|
|
519
519
|
"""Clear the tilt of selected control points
|
|
520
520
|
|
|
521
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
521
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
522
522
|
:type execution_context: int | str | None
|
|
523
523
|
:type undo: bool | None
|
|
524
524
|
"""
|
bpy/ops/cycles/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def denoise_animation(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -13,7 +13,7 @@ def denoise_animation(
|
|
|
13
13
|
):
|
|
14
14
|
"""Denoise rendered animation sequence using current scene and view layer settings. Requires denoising data passes and output to OpenEXR multilayer files
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
: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
|
|
@@ -23,7 +23,7 @@ def denoise_animation(
|
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
def merge_images(
|
|
26
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
27
27
|
execution_context: int | str | None = None,
|
|
28
28
|
undo: bool | None = None,
|
|
29
29
|
*,
|
|
@@ -33,7 +33,7 @@ def merge_images(
|
|
|
33
33
|
):
|
|
34
34
|
"""Combine OpenEXR multi-layer images rendered with different sample ranges into one image with reduced noise
|
|
35
35
|
|
|
36
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
36
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
37
37
|
:type execution_context: int | str | None
|
|
38
38
|
:type undo: bool | None
|
|
39
39
|
:param input_filepath1: Input Filepath, File path for image to merge
|
|
@@ -45,13 +45,13 @@ def merge_images(
|
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
47
|
def use_shading_nodes(
|
|
48
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
48
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
49
49
|
execution_context: int | str | None = None,
|
|
50
50
|
undo: bool | None = None,
|
|
51
51
|
):
|
|
52
52
|
"""Enable nodes on a material, world or light
|
|
53
53
|
|
|
54
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
55
55
|
:type execution_context: int | str | None
|
|
56
56
|
:type undo: bool | None
|
|
57
57
|
"""
|
bpy/ops/dpaint/__init__.pyi
CHANGED
|
@@ -5,19 +5,19 @@ import bpy.types
|
|
|
5
5
|
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def bake(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
):
|
|
12
12
|
"""Bake dynamic paint image sequence surface
|
|
13
13
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
14
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
15
|
:type execution_context: int | str | None
|
|
16
16
|
:type undo: bool | None
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
def output_toggle(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
20
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
21
|
execution_context: int | str | None = None,
|
|
22
22
|
undo: bool | None = None,
|
|
23
23
|
*,
|
|
@@ -25,7 +25,7 @@ def output_toggle(
|
|
|
25
25
|
):
|
|
26
26
|
"""Add or remove Dynamic Paint output data layer
|
|
27
27
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
28
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
29
29
|
:type execution_context: int | str | None
|
|
30
30
|
:type undo: bool | None
|
|
31
31
|
:param output: Output Toggle
|
|
@@ -33,31 +33,31 @@ def output_toggle(
|
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
35
|
def surface_slot_add(
|
|
36
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
36
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
37
37
|
execution_context: int | str | None = None,
|
|
38
38
|
undo: bool | None = None,
|
|
39
39
|
):
|
|
40
40
|
"""Add a new Dynamic Paint surface slot
|
|
41
41
|
|
|
42
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
43
43
|
:type execution_context: int | str | None
|
|
44
44
|
:type undo: bool | None
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
47
|
def surface_slot_remove(
|
|
48
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
48
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
49
49
|
execution_context: int | str | None = None,
|
|
50
50
|
undo: bool | None = None,
|
|
51
51
|
):
|
|
52
52
|
"""Remove the selected surface slot
|
|
53
53
|
|
|
54
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
55
55
|
:type execution_context: int | str | None
|
|
56
56
|
:type undo: bool | None
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
def type_toggle(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
*,
|
|
@@ -65,7 +65,7 @@ def type_toggle(
|
|
|
65
65
|
):
|
|
66
66
|
"""Toggle whether given type is active or not
|
|
67
67
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
68
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
69
69
|
:type execution_context: int | str | None
|
|
70
70
|
:type undo: bool | None
|
|
71
71
|
:param type: Type
|