fake-bpy-module 20241208__py3-none-any.whl → 20241209__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.

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