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
@@ -4,15 +4,14 @@ import typing_extensions
4
4
  import bpy.types
5
5
 
6
6
  def addon_disable(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
7
  execution_context: int | str | None = None,
9
8
  undo: bool | None = None,
9
+ /,
10
10
  *,
11
11
  module: str = "",
12
12
  ):
13
13
  """Turn off this add-on
14
14
 
15
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
16
15
  :type execution_context: int | str | None
17
16
  :type undo: bool | None
18
17
  :param module: Module, Module name of the add-on to disable
@@ -20,15 +19,14 @@ def addon_disable(
20
19
  """
21
20
 
22
21
  def addon_enable(
23
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
24
22
  execution_context: int | str | None = None,
25
23
  undo: bool | None = None,
24
+ /,
26
25
  *,
27
26
  module: str = "",
28
27
  ):
29
28
  """Turn on this add-on
30
29
 
31
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
32
30
  :type execution_context: int | str | None
33
31
  :type undo: bool | None
34
32
  :param module: Module, Module name of the add-on to enable
@@ -36,15 +34,14 @@ def addon_enable(
36
34
  """
37
35
 
38
36
  def addon_expand(
39
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
40
37
  execution_context: int | str | None = None,
41
38
  undo: bool | None = None,
39
+ /,
42
40
  *,
43
41
  module: str = "",
44
42
  ):
45
43
  """Display information and preferences for this add-on
46
44
 
47
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
48
45
  :type execution_context: int | str | None
49
46
  :type undo: bool | None
50
47
  :param module: Module, Module name of the add-on to expand
@@ -52,9 +49,9 @@ def addon_expand(
52
49
  """
53
50
 
54
51
  def addon_install(
55
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
56
52
  execution_context: int | str | None = None,
57
53
  undo: bool | None = None,
54
+ /,
58
55
  *,
59
56
  overwrite: bool | None = True,
60
57
  enable_on_install: bool | None = False,
@@ -66,7 +63,6 @@ def addon_install(
66
63
  ):
67
64
  """Install an add-on
68
65
 
69
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
70
66
  :type execution_context: int | str | None
71
67
  :type undo: bool | None
72
68
  :param overwrite: Overwrite, Remove existing add-ons with the same ID
@@ -85,28 +81,22 @@ def addon_install(
85
81
  :type filter_glob: str
86
82
  """
87
83
 
88
- def addon_refresh(
89
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
90
- execution_context: int | str | None = None,
91
- undo: bool | None = None,
92
- ):
84
+ def addon_refresh(execution_context: int | str | None = None, undo: bool | None = None):
93
85
  """Scan add-on directories for new modules
94
86
 
95
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
96
87
  :type execution_context: int | str | None
97
88
  :type undo: bool | None
98
89
  """
99
90
 
100
91
  def addon_remove(
101
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
102
92
  execution_context: int | str | None = None,
103
93
  undo: bool | None = None,
94
+ /,
104
95
  *,
105
96
  module: str = "",
106
97
  ):
107
98
  """Delete the add-on from the file system
108
99
 
109
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
110
100
  :type execution_context: int | str | None
111
101
  :type undo: bool | None
112
102
  :param module: Module, Module name of the add-on to remove
@@ -114,15 +104,14 @@ def addon_remove(
114
104
  """
115
105
 
116
106
  def addon_show(
117
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
118
107
  execution_context: int | str | None = None,
119
108
  undo: bool | None = None,
109
+ /,
120
110
  *,
121
111
  module: str = "",
122
112
  ):
123
113
  """Show add-on preferences
124
114
 
125
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
126
115
  :type execution_context: int | str | None
127
116
  :type undo: bool | None
128
117
  :param module: Module, Module name of the add-on to expand
@@ -130,9 +119,9 @@ def addon_show(
130
119
  """
131
120
 
132
121
  def app_template_install(
133
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
134
122
  execution_context: int | str | None = None,
135
123
  undo: bool | None = None,
124
+ /,
136
125
  *,
137
126
  overwrite: bool | None = True,
138
127
  filepath: str = "",
@@ -141,7 +130,6 @@ def app_template_install(
141
130
  ):
142
131
  """Install an application template
143
132
 
144
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
145
133
  :type execution_context: int | str | None
146
134
  :type undo: bool | None
147
135
  :param overwrite: Overwrite, Remove existing template with the same ID
@@ -155,9 +143,9 @@ def app_template_install(
155
143
  """
156
144
 
157
145
  def asset_library_add(
158
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
159
146
  execution_context: int | str | None = None,
160
147
  undo: bool | None = None,
148
+ /,
161
149
  *,
162
150
  directory: str = "",
163
151
  hide_props_region: bool | None = True,
@@ -188,7 +176,6 @@ def asset_library_add(
188
176
  ):
189
177
  """Add a directory to be used by the Asset Browser as source of assets
190
178
 
191
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
192
179
  :type execution_context: int | str | None
193
180
  :type undo: bool | None
194
181
  :param directory: Directory, Directory of the file
@@ -252,15 +239,14 @@ def asset_library_add(
252
239
  """
253
240
 
254
241
  def asset_library_remove(
255
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
256
242
  execution_context: int | str | None = None,
257
243
  undo: bool | None = None,
244
+ /,
258
245
  *,
259
246
  index: int | None = 0,
260
247
  ):
261
248
  """Remove a path to a .blend file, so the Asset Browser will not attempt to show it anymore
262
249
 
263
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
264
250
  :type execution_context: int | str | None
265
251
  :type undo: bool | None
266
252
  :param index: Index
@@ -268,61 +254,49 @@ def asset_library_remove(
268
254
  """
269
255
 
270
256
  def associate_blend(
271
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
272
- execution_context: int | str | None = None,
273
- undo: bool | None = None,
257
+ execution_context: int | str | None = None, undo: bool | None = None
274
258
  ):
275
259
  """Use this installation for .blend files and to display thumbnails
276
260
 
277
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
278
261
  :type execution_context: int | str | None
279
262
  :type undo: bool | None
280
263
  """
281
264
 
282
265
  def autoexec_path_add(
283
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
284
- execution_context: int | str | None = None,
285
- undo: bool | None = None,
266
+ execution_context: int | str | None = None, undo: bool | None = None
286
267
  ):
287
268
  """Add path to exclude from auto-execution
288
269
 
289
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
290
270
  :type execution_context: int | str | None
291
271
  :type undo: bool | None
292
272
  """
293
273
 
294
274
  def autoexec_path_remove(
295
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
296
275
  execution_context: int | str | None = None,
297
276
  undo: bool | None = None,
277
+ /,
298
278
  *,
299
279
  index: int | None = 0,
300
280
  ):
301
281
  """Remove path to exclude from auto-execution
302
282
 
303
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
304
283
  :type execution_context: int | str | None
305
284
  :type undo: bool | None
306
285
  :param index: Index
307
286
  :type index: int | None
308
287
  """
309
288
 
310
- def copy_prev(
311
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
312
- execution_context: int | str | None = None,
313
- undo: bool | None = None,
314
- ):
289
+ def copy_prev(execution_context: int | str | None = None, undo: bool | None = None):
315
290
  """Copy settings from previous version
316
291
 
317
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
318
292
  :type execution_context: int | str | None
319
293
  :type undo: bool | None
320
294
  """
321
295
 
322
296
  def extension_repo_add(
323
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
324
297
  execution_context: int | str | None = None,
325
298
  undo: bool | None = None,
299
+ /,
326
300
  *,
327
301
  name: str = "",
328
302
  remote_url: str = "",
@@ -335,7 +309,6 @@ def extension_repo_add(
335
309
  ):
336
310
  """Add a new repository used to store extensions
337
311
 
338
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
339
312
  :type execution_context: int | str | None
340
313
  :type undo: bool | None
341
314
  :param name: Name, Unique repository name
@@ -363,16 +336,15 @@ def extension_repo_add(
363
336
  """
364
337
 
365
338
  def extension_repo_remove(
366
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
367
339
  execution_context: int | str | None = None,
368
340
  undo: bool | None = None,
341
+ /,
369
342
  *,
370
343
  index: int | None = 0,
371
344
  remove_files: bool | None = False,
372
345
  ):
373
346
  """Remove an extension repository
374
347
 
375
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
376
348
  :type execution_context: int | str | None
377
349
  :type undo: bool | None
378
350
  :param index: Index
@@ -382,15 +354,14 @@ def extension_repo_remove(
382
354
  """
383
355
 
384
356
  def extension_url_drop(
385
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
386
357
  execution_context: int | str | None = None,
387
358
  undo: bool | None = None,
359
+ /,
388
360
  *,
389
361
  url: str = "",
390
362
  ):
391
363
  """Handle dropping an extension URL
392
364
 
393
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
394
365
  :type execution_context: int | str | None
395
366
  :type undo: bool | None
396
367
  :param url: URL, Location of the extension to install
@@ -398,15 +369,14 @@ def extension_url_drop(
398
369
  """
399
370
 
400
371
  def keyconfig_activate(
401
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
402
372
  execution_context: int | str | None = None,
403
373
  undo: bool | None = None,
374
+ /,
404
375
  *,
405
376
  filepath: str = "",
406
377
  ):
407
378
  """Undocumented, consider contributing.
408
379
 
409
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
410
380
  :type execution_context: int | str | None
411
381
  :type undo: bool | None
412
382
  :param filepath: filepath
@@ -414,9 +384,9 @@ def keyconfig_activate(
414
384
  """
415
385
 
416
386
  def keyconfig_export(
417
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
418
387
  execution_context: int | str | None = None,
419
388
  undo: bool | None = None,
389
+ /,
420
390
  *,
421
391
  all: bool | None = False,
422
392
  filepath: str = "",
@@ -426,7 +396,6 @@ def keyconfig_export(
426
396
  ):
427
397
  """Export key configuration to a Python script
428
398
 
429
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
430
399
  :type execution_context: int | str | None
431
400
  :type undo: bool | None
432
401
  :param all: All Keymaps, Write all keymaps (not just user modified)
@@ -442,9 +411,9 @@ def keyconfig_export(
442
411
  """
443
412
 
444
413
  def keyconfig_import(
445
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
446
414
  execution_context: int | str | None = None,
447
415
  undo: bool | None = None,
416
+ /,
448
417
  *,
449
418
  filepath: str = "keymap.py",
450
419
  filter_folder: bool | None = True,
@@ -454,7 +423,6 @@ def keyconfig_import(
454
423
  ):
455
424
  """Import key configuration from a Python script
456
425
 
457
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
458
426
  :type execution_context: int | str | None
459
427
  :type undo: bool | None
460
428
  :param filepath: filepath
@@ -470,51 +438,39 @@ def keyconfig_import(
470
438
  """
471
439
 
472
440
  def keyconfig_remove(
473
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
474
- execution_context: int | str | None = None,
475
- undo: bool | None = None,
441
+ execution_context: int | str | None = None, undo: bool | None = None
476
442
  ):
477
443
  """Remove key config
478
444
 
479
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
480
445
  :type execution_context: int | str | None
481
446
  :type undo: bool | None
482
447
  """
483
448
 
484
449
  def keyconfig_test(
485
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
486
- execution_context: int | str | None = None,
487
- undo: bool | None = None,
450
+ execution_context: int | str | None = None, undo: bool | None = None
488
451
  ):
489
452
  """Test key configuration for conflicts
490
453
 
491
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
492
454
  :type execution_context: int | str | None
493
455
  :type undo: bool | None
494
456
  """
495
457
 
496
- def keyitem_add(
497
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
498
- execution_context: int | str | None = None,
499
- undo: bool | None = None,
500
- ):
458
+ def keyitem_add(execution_context: int | str | None = None, undo: bool | None = None):
501
459
  """Add key map item
502
460
 
503
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
504
461
  :type execution_context: int | str | None
505
462
  :type undo: bool | None
506
463
  """
507
464
 
508
465
  def keyitem_remove(
509
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
510
466
  execution_context: int | str | None = None,
511
467
  undo: bool | None = None,
468
+ /,
512
469
  *,
513
470
  item_id: int | None = 0,
514
471
  ):
515
472
  """Remove key map item
516
473
 
517
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
518
474
  :type execution_context: int | str | None
519
475
  :type undo: bool | None
520
476
  :param item_id: Item Identifier, Identifier of the item to remove
@@ -522,15 +478,14 @@ def keyitem_remove(
522
478
  """
523
479
 
524
480
  def keyitem_restore(
525
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
526
481
  execution_context: int | str | None = None,
527
482
  undo: bool | None = None,
483
+ /,
528
484
  *,
529
485
  item_id: int | None = 0,
530
486
  ):
531
487
  """Restore key map item
532
488
 
533
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
534
489
  :type execution_context: int | str | None
535
490
  :type undo: bool | None
536
491
  :param item_id: Item Identifier, Identifier of the item to restore
@@ -538,15 +493,14 @@ def keyitem_restore(
538
493
  """
539
494
 
540
495
  def keymap_restore(
541
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
542
496
  execution_context: int | str | None = None,
543
497
  undo: bool | None = None,
498
+ /,
544
499
  *,
545
500
  all: bool | None = False,
546
501
  ):
547
502
  """Restore key map(s)
548
503
 
549
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
550
504
  :type execution_context: int | str | None
551
505
  :type undo: bool | None
552
506
  :param all: All Keymaps, Restore all keymaps to default
@@ -554,28 +508,24 @@ def keymap_restore(
554
508
  """
555
509
 
556
510
  def reset_default_theme(
557
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
558
- execution_context: int | str | None = None,
559
- undo: bool | None = None,
511
+ execution_context: int | str | None = None, undo: bool | None = None
560
512
  ):
561
513
  """Reset to the default theme colors
562
514
 
563
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
564
515
  :type execution_context: int | str | None
565
516
  :type undo: bool | None
566
517
  """
567
518
 
568
519
  def script_directory_add(
569
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
570
520
  execution_context: int | str | None = None,
571
521
  undo: bool | None = None,
522
+ /,
572
523
  *,
573
524
  directory: str = "",
574
525
  filter_folder: bool | None = True,
575
526
  ):
576
527
  """Undocumented, consider contributing.
577
528
 
578
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
579
529
  :type execution_context: int | str | None
580
530
  :type undo: bool | None
581
531
  :param directory: directory
@@ -585,15 +535,14 @@ def script_directory_add(
585
535
  """
586
536
 
587
537
  def script_directory_remove(
588
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
589
538
  execution_context: int | str | None = None,
590
539
  undo: bool | None = None,
540
+ /,
591
541
  *,
592
542
  index: int | None = 0,
593
543
  ):
594
544
  """Undocumented, consider contributing.
595
545
 
596
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
597
546
  :type execution_context: int | str | None
598
547
  :type undo: bool | None
599
548
  :param index: Index, Index of the script directory to remove
@@ -601,15 +550,14 @@ def script_directory_remove(
601
550
  """
602
551
 
603
552
  def studiolight_copy_settings(
604
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
605
553
  execution_context: int | str | None = None,
606
554
  undo: bool | None = None,
555
+ /,
607
556
  *,
608
557
  index: int | None = 0,
609
558
  ):
610
559
  """Copy Studio Light settings to the Studio Light editor
611
560
 
612
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
613
561
  :type execution_context: int | str | None
614
562
  :type undo: bool | None
615
563
  :param index: index
@@ -617,9 +565,9 @@ def studiolight_copy_settings(
617
565
  """
618
566
 
619
567
  def studiolight_install(
620
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
621
568
  execution_context: int | str | None = None,
622
569
  undo: bool | None = None,
570
+ /,
623
571
  *,
624
572
  files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
625
573
  | None = None,
@@ -630,7 +578,6 @@ def studiolight_install(
630
578
  ):
631
579
  """Install a user defined light
632
580
 
633
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
634
581
  :type execution_context: int | str | None
635
582
  :type undo: bool | None
636
583
  :param files: File Path
@@ -655,15 +602,14 @@ def studiolight_install(
655
602
  """
656
603
 
657
604
  def studiolight_new(
658
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
659
605
  execution_context: int | str | None = None,
660
606
  undo: bool | None = None,
607
+ /,
661
608
  *,
662
609
  filename: str = "StudioLight",
663
610
  ):
664
611
  """Save custom studio light from the studio light editor settings
665
612
 
666
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
667
613
  :type execution_context: int | str | None
668
614
  :type undo: bool | None
669
615
  :param filename: Name
@@ -671,15 +617,14 @@ def studiolight_new(
671
617
  """
672
618
 
673
619
  def studiolight_uninstall(
674
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
675
620
  execution_context: int | str | None = None,
676
621
  undo: bool | None = None,
622
+ /,
677
623
  *,
678
624
  index: int | None = 0,
679
625
  ):
680
626
  """Delete Studio Light
681
627
 
682
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
683
628
  :type execution_context: int | str | None
684
629
  :type undo: bool | None
685
630
  :param index: index
@@ -687,9 +632,9 @@ def studiolight_uninstall(
687
632
  """
688
633
 
689
634
  def theme_install(
690
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
691
635
  execution_context: int | str | None = None,
692
636
  undo: bool | None = None,
637
+ /,
693
638
  *,
694
639
  overwrite: bool | None = True,
695
640
  filepath: str = "",
@@ -698,7 +643,6 @@ def theme_install(
698
643
  ):
699
644
  """Load and apply a Blender XML theme file
700
645
 
701
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
702
646
  :type execution_context: int | str | None
703
647
  :type undo: bool | None
704
648
  :param overwrite: Overwrite, Remove existing theme file if exists
@@ -712,13 +656,10 @@ def theme_install(
712
656
  """
713
657
 
714
658
  def unassociate_blend(
715
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
716
- execution_context: int | str | None = None,
717
- undo: bool | None = None,
659
+ execution_context: int | str | None = None, undo: bool | None = None
718
660
  ):
719
661
  """Remove this installation's associations with .blend files
720
662
 
721
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
722
663
  :type execution_context: int | str | None
723
664
  :type undo: bool | None
724
665
  """
@@ -1,30 +1,23 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
- def add(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
- execution_context: int | str | None = None,
9
- undo: bool | None = None,
10
- ):
5
+ def add(execution_context: int | str | None = None, undo: bool | None = None):
11
6
  """Add new cache
12
7
 
13
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
14
8
  :type execution_context: int | str | None
15
9
  :type undo: bool | None
16
10
  """
17
11
 
18
12
  def bake(
19
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
20
13
  execution_context: int | str | None = None,
21
14
  undo: bool | None = None,
15
+ /,
22
16
  *,
23
17
  bake: bool | None = False,
24
18
  ):
25
19
  """Bake physics
26
20
 
27
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
28
21
  :type execution_context: int | str | None
29
22
  :type undo: bool | None
30
23
  :param bake: Bake
@@ -32,15 +25,14 @@ def bake(
32
25
  """
33
26
 
34
27
  def bake_all(
35
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
36
28
  execution_context: int | str | None = None,
37
29
  undo: bool | None = None,
30
+ /,
38
31
  *,
39
32
  bake: bool | None = True,
40
33
  ):
41
34
  """Bake all physics
42
35
 
43
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
44
36
  :type execution_context: int | str | None
45
37
  :type undo: bool | None
46
38
  :param bake: Bake
@@ -48,49 +40,31 @@ def bake_all(
48
40
  """
49
41
 
50
42
  def bake_from_cache(
51
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
52
- execution_context: int | str | None = None,
53
- undo: bool | None = None,
43
+ execution_context: int | str | None = None, undo: bool | None = None
54
44
  ):
55
45
  """Bake from cache
56
46
 
57
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
58
47
  :type execution_context: int | str | None
59
48
  :type undo: bool | None
60
49
  """
61
50
 
62
- def free_bake(
63
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
64
- execution_context: int | str | None = None,
65
- undo: bool | None = None,
66
- ):
51
+ def free_bake(execution_context: int | str | None = None, undo: bool | None = None):
67
52
  """Delete physics bake
68
53
 
69
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
70
54
  :type execution_context: int | str | None
71
55
  :type undo: bool | None
72
56
  """
73
57
 
74
- def free_bake_all(
75
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
76
- execution_context: int | str | None = None,
77
- undo: bool | None = None,
78
- ):
58
+ def free_bake_all(execution_context: int | str | None = None, undo: bool | None = None):
79
59
  """Delete all baked caches of all objects in the current scene
80
60
 
81
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
82
61
  :type execution_context: int | str | None
83
62
  :type undo: bool | None
84
63
  """
85
64
 
86
- def remove(
87
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
88
- execution_context: int | str | None = None,
89
- undo: bool | None = None,
90
- ):
65
+ def remove(execution_context: int | str | None = None, undo: bool | None = None):
91
66
  """Delete current cache
92
67
 
93
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
94
68
  :type execution_context: int | str | None
95
69
  :type undo: bool | None
96
70
  """