fake-bpy-module 20240620__py3-none-any.whl → 20240621__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 (77) hide show
  1. bl_ui/space_userpref/__init__.pyi +225 -0
  2. bpy/ops/action/__init__.pyi +50 -50
  3. bpy/ops/anim/__init__.pyi +94 -94
  4. bpy/ops/armature/__init__.pyi +54 -54
  5. bpy/ops/asset/__init__.pyi +50 -50
  6. bpy/ops/brush/__init__.pyi +10 -10
  7. bpy/ops/buttons/__init__.pyi +88 -88
  8. bpy/ops/cachefile/__init__.pyi +88 -88
  9. bpy/ops/camera/__init__.pyi +14 -14
  10. bpy/ops/clip/__init__.pyi +175 -174
  11. bpy/ops/cloth/__init__.pyi +6 -6
  12. bpy/ops/collection/__init__.pyi +8 -8
  13. bpy/ops/console/__init__.pyi +26 -26
  14. bpy/ops/constraint/__init__.pyi +42 -42
  15. bpy/ops/curve/__init__.pyi +167 -122
  16. bpy/ops/curves/__init__.pyi +75 -58
  17. bpy/ops/cycles/__init__.pyi +10 -10
  18. bpy/ops/ed/__init__.pyi +50 -50
  19. bpy/ops/export_anim/__init__.pyi +14 -14
  20. bpy/ops/export_scene/__init__.pyi +250 -250
  21. bpy/ops/extensions/__init__.pyi +73 -73
  22. bpy/ops/file/__init__.pyi +94 -94
  23. bpy/ops/fluid/__init__.pyi +6 -6
  24. bpy/ops/font/__init__.pyi +100 -100
  25. bpy/ops/geometry/__init__.pyi +20 -20
  26. bpy/ops/gizmogroup/__init__.pyi +10 -10
  27. bpy/ops/gpencil/__init__.pyi +411 -410
  28. bpy/ops/graph/__init__.pyi +194 -194
  29. bpy/ops/grease_pencil/__init__.pyi +100 -100
  30. bpy/ops/image/__init__.pyi +399 -390
  31. bpy/ops/import_anim/__init__.pyi +16 -16
  32. bpy/ops/import_curve/__init__.pyi +4 -4
  33. bpy/ops/import_scene/__init__.pyi +56 -56
  34. bpy/ops/info/__init__.pyi +14 -14
  35. bpy/ops/lattice/__init__.pyi +8 -8
  36. bpy/ops/marker/__init__.pyi +34 -34
  37. bpy/ops/mask/__init__.pyi +63 -62
  38. bpy/ops/mball/__init__.pyi +12 -12
  39. bpy/ops/mesh/__init__.pyi +893 -790
  40. bpy/ops/nla/__init__.pyi +70 -70
  41. bpy/ops/node/__init__.pyi +192 -192
  42. bpy/ops/object/__init__.pyi +1013 -840
  43. bpy/ops/outliner/__init__.pyi +44 -44
  44. bpy/ops/paint/__init__.pyi +169 -168
  45. bpy/ops/paintcurve/__init__.pyi +12 -12
  46. bpy/ops/palette/__init__.pyi +4 -4
  47. bpy/ops/particle/__init__.pyi +34 -34
  48. bpy/ops/pose/__init__.pyi +60 -60
  49. bpy/ops/poselib/__init__.pyi +18 -18
  50. bpy/ops/preferences/__init__.pyi +150 -150
  51. bpy/ops/ptcache/__init__.pyi +4 -4
  52. bpy/ops/render/__init__.pyi +56 -56
  53. bpy/ops/rigidbody/__init__.pyi +8 -8
  54. bpy/ops/scene/__init__.pyi +20 -20
  55. bpy/ops/screen/__init__.pyi +128 -128
  56. bpy/ops/script/__init__.pyi +6 -6
  57. bpy/ops/sculpt/__init__.pyi +207 -202
  58. bpy/ops/sculpt_curves/__init__.pyi +12 -12
  59. bpy/ops/sequencer/__init__.pyi +465 -464
  60. bpy/ops/sound/__init__.pyi +154 -154
  61. bpy/ops/spreadsheet/__init__.pyi +6 -6
  62. bpy/ops/surface/__init__.pyi +109 -60
  63. bpy/ops/text/__init__.pyi +110 -110
  64. bpy/ops/text_editor/__init__.pyi +6 -6
  65. bpy/ops/transform/__init__.pyi +628 -566
  66. bpy/ops/ui/__init__.pyi +25 -24
  67. bpy/ops/uilist/__init__.pyi +12 -12
  68. bpy/ops/uv/__init__.pyi +235 -234
  69. bpy/ops/view2d/__init__.pyi +72 -72
  70. bpy/ops/view3d/__init__.pyi +144 -144
  71. bpy/ops/wm/__init__.pyi +1813 -1806
  72. bpy/ops/workspace/__init__.pyi +4 -4
  73. bpy/types/__init__.pyi +1611 -1802
  74. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
  75. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
  76. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
  77. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/file/__init__.pyi CHANGED
@@ -52,7 +52,7 @@ def bookmark_delete(
52
52
  execution_context: int | str | None = None,
53
53
  undo: bool | None = None,
54
54
  *,
55
- index: typing.Any | None = -1,
55
+ index: int | None = -1,
56
56
  ):
57
57
  """Delete selected bookmark
58
58
 
@@ -60,7 +60,7 @@ def bookmark_delete(
60
60
  :type execution_context: int | str | None
61
61
  :type undo: bool | None
62
62
  :param index: Index
63
- :type index: typing.Any | None
63
+ :type index: int | None
64
64
  """
65
65
 
66
66
  ...
@@ -128,8 +128,8 @@ def directory_new(
128
128
  execution_context: int | str | None = None,
129
129
  undo: bool | None = None,
130
130
  *,
131
- directory: str | typing.Any = "",
132
- open: bool | typing.Any | None = False,
131
+ directory: str = "",
132
+ open: bool | None = False,
133
133
  ):
134
134
  """Create a new directory
135
135
 
@@ -137,9 +137,9 @@ def directory_new(
137
137
  :type execution_context: int | str | None
138
138
  :type undo: bool | None
139
139
  :param directory: Directory, Name of new directory
140
- :type directory: str | typing.Any
140
+ :type directory: str
141
141
  :param open: Open, Open new directory
142
- :type open: bool | typing.Any | None
142
+ :type open: bool | None
143
143
  """
144
144
 
145
145
  ...
@@ -177,7 +177,7 @@ def external_operation(
177
177
  execution_context: int | str | None = None,
178
178
  undo: bool | None = None,
179
179
  *,
180
- filepath: str | typing.Any = "",
180
+ filepath: str = "",
181
181
  operation: str | None = "OPEN",
182
182
  ):
183
183
  """Perform external operation on a file or folder
@@ -186,7 +186,7 @@ def external_operation(
186
186
  :type execution_context: int | str | None
187
187
  :type undo: bool | None
188
188
  :param filepath: File or folder path
189
- :type filepath: str | typing.Any
189
+ :type filepath: str
190
190
  :param operation: Operation, Operation to perform on the file or path
191
191
 
192
192
  OPEN
@@ -243,7 +243,7 @@ def filenum(
243
243
  execution_context: int | str | None = None,
244
244
  undo: bool | None = None,
245
245
  *,
246
- increment: typing.Any | None = 1,
246
+ increment: int | None = 1,
247
247
  ):
248
248
  """Increment number in filename
249
249
 
@@ -251,7 +251,7 @@ def filenum(
251
251
  :type execution_context: int | str | None
252
252
  :type undo: bool | None
253
253
  :param increment: Increment
254
- :type increment: typing.Any | None
254
+ :type increment: int | None
255
255
  """
256
256
 
257
257
  ...
@@ -261,14 +261,14 @@ def filepath_drop(
261
261
  execution_context: int | str | None = None,
262
262
  undo: bool | None = None,
263
263
  *,
264
- filepath: str | typing.Any = "Path",
264
+ filepath: str = "Path",
265
265
  ):
266
266
  """Undocumented, consider contributing.
267
267
 
268
268
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
269
269
  :type execution_context: int | str | None
270
270
  :type undo: bool | None
271
- :type filepath: str | typing.Any
271
+ :type filepath: str
272
272
  """
273
273
 
274
274
  ...
@@ -278,28 +278,28 @@ def find_missing_files(
278
278
  execution_context: int | str | None = None,
279
279
  undo: bool | None = None,
280
280
  *,
281
- find_all: bool | typing.Any | None = False,
282
- directory: str | typing.Any = "",
283
- hide_props_region: bool | typing.Any | None = True,
284
- check_existing: bool | typing.Any | None = False,
285
- filter_blender: bool | typing.Any | None = False,
286
- filter_backup: bool | typing.Any | None = False,
287
- filter_image: bool | typing.Any | None = False,
288
- filter_movie: bool | typing.Any | None = False,
289
- filter_python: bool | typing.Any | None = False,
290
- filter_font: bool | typing.Any | None = False,
291
- filter_sound: bool | typing.Any | None = False,
292
- filter_text: bool | typing.Any | None = False,
293
- filter_archive: bool | typing.Any | None = False,
294
- filter_btx: bool | typing.Any | None = False,
295
- filter_collada: bool | typing.Any | None = False,
296
- filter_alembic: bool | typing.Any | None = False,
297
- filter_usd: bool | typing.Any | None = False,
298
- filter_obj: bool | typing.Any | None = False,
299
- filter_volume: bool | typing.Any | None = False,
300
- filter_folder: bool | typing.Any | None = False,
301
- filter_blenlib: bool | typing.Any | None = False,
302
- filemode: typing.Any | None = 9,
281
+ find_all: bool | None = False,
282
+ directory: str = "",
283
+ hide_props_region: bool | None = True,
284
+ check_existing: bool | None = False,
285
+ filter_blender: bool | None = False,
286
+ filter_backup: bool | None = False,
287
+ filter_image: bool | None = False,
288
+ filter_movie: bool | None = False,
289
+ filter_python: bool | None = False,
290
+ filter_font: bool | None = False,
291
+ filter_sound: bool | None = False,
292
+ filter_text: bool | None = False,
293
+ filter_archive: bool | None = False,
294
+ filter_btx: bool | None = False,
295
+ filter_collada: bool | None = False,
296
+ filter_alembic: bool | None = False,
297
+ filter_usd: bool | None = False,
298
+ filter_obj: bool | None = False,
299
+ filter_volume: bool | None = False,
300
+ filter_folder: bool | None = False,
301
+ filter_blenlib: bool | None = False,
302
+ filemode: int | None = 9,
303
303
  display_type: str | None = "DEFAULT",
304
304
  sort_method: str | None = "",
305
305
  ):
@@ -309,49 +309,49 @@ def find_missing_files(
309
309
  :type execution_context: int | str | None
310
310
  :type undo: bool | None
311
311
  :param find_all: Find All, Find all files in the search path (not just missing)
312
- :type find_all: bool | typing.Any | None
312
+ :type find_all: bool | None
313
313
  :param directory: Directory, Directory of the file
314
- :type directory: str | typing.Any
314
+ :type directory: str
315
315
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
316
- :type hide_props_region: bool | typing.Any | None
316
+ :type hide_props_region: bool | None
317
317
  :param check_existing: Check Existing, Check and warn on overwriting existing files
318
- :type check_existing: bool | typing.Any | None
318
+ :type check_existing: bool | None
319
319
  :param filter_blender: Filter .blend files
320
- :type filter_blender: bool | typing.Any | None
320
+ :type filter_blender: bool | None
321
321
  :param filter_backup: Filter .blend files
322
- :type filter_backup: bool | typing.Any | None
322
+ :type filter_backup: bool | None
323
323
  :param filter_image: Filter image files
324
- :type filter_image: bool | typing.Any | None
324
+ :type filter_image: bool | None
325
325
  :param filter_movie: Filter movie files
326
- :type filter_movie: bool | typing.Any | None
326
+ :type filter_movie: bool | None
327
327
  :param filter_python: Filter Python files
328
- :type filter_python: bool | typing.Any | None
328
+ :type filter_python: bool | None
329
329
  :param filter_font: Filter font files
330
- :type filter_font: bool | typing.Any | None
330
+ :type filter_font: bool | None
331
331
  :param filter_sound: Filter sound files
332
- :type filter_sound: bool | typing.Any | None
332
+ :type filter_sound: bool | None
333
333
  :param filter_text: Filter text files
334
- :type filter_text: bool | typing.Any | None
334
+ :type filter_text: bool | None
335
335
  :param filter_archive: Filter archive files
336
- :type filter_archive: bool | typing.Any | None
336
+ :type filter_archive: bool | None
337
337
  :param filter_btx: Filter btx files
338
- :type filter_btx: bool | typing.Any | None
338
+ :type filter_btx: bool | None
339
339
  :param filter_collada: Filter COLLADA files
340
- :type filter_collada: bool | typing.Any | None
340
+ :type filter_collada: bool | None
341
341
  :param filter_alembic: Filter Alembic files
342
- :type filter_alembic: bool | typing.Any | None
342
+ :type filter_alembic: bool | None
343
343
  :param filter_usd: Filter USD files
344
- :type filter_usd: bool | typing.Any | None
344
+ :type filter_usd: bool | None
345
345
  :param filter_obj: Filter OBJ files
346
- :type filter_obj: bool | typing.Any | None
346
+ :type filter_obj: bool | None
347
347
  :param filter_volume: Filter OpenVDB volume files
348
- :type filter_volume: bool | typing.Any | None
348
+ :type filter_volume: bool | None
349
349
  :param filter_folder: Filter folders
350
- :type filter_folder: bool | typing.Any | None
350
+ :type filter_folder: bool | None
351
351
  :param filter_blenlib: Filter Blender IDs
352
- :type filter_blenlib: bool | typing.Any | None
352
+ :type filter_blenlib: bool | None
353
353
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
354
- :type filemode: typing.Any | None
354
+ :type filemode: int | None
355
355
  :param display_type: Display Type
356
356
 
357
357
  DEFAULT
@@ -573,15 +573,15 @@ def select(
573
573
  execution_context: int | str | None = None,
574
574
  undo: bool | None = None,
575
575
  *,
576
- wait_to_deselect_others: bool | typing.Any | None = False,
577
- mouse_x: typing.Any | None = 0,
578
- mouse_y: typing.Any | None = 0,
579
- extend: bool | typing.Any | None = False,
580
- fill: bool | typing.Any | None = False,
581
- open: bool | typing.Any | None = True,
582
- deselect_all: bool | typing.Any | None = False,
583
- only_activate_if_selected: bool | typing.Any | None = False,
584
- pass_through: bool | typing.Any | None = False,
576
+ wait_to_deselect_others: bool | None = False,
577
+ mouse_x: int | None = 0,
578
+ mouse_y: int | None = 0,
579
+ extend: bool | None = False,
580
+ fill: bool | None = False,
581
+ open: bool | None = True,
582
+ deselect_all: bool | None = False,
583
+ only_activate_if_selected: bool | None = False,
584
+ pass_through: bool | None = False,
585
585
  ):
586
586
  """Handle mouse clicks to select and activate items
587
587
 
@@ -589,23 +589,23 @@ def select(
589
589
  :type execution_context: int | str | None
590
590
  :type undo: bool | None
591
591
  :param wait_to_deselect_others: Wait to Deselect Others
592
- :type wait_to_deselect_others: bool | typing.Any | None
592
+ :type wait_to_deselect_others: bool | None
593
593
  :param mouse_x: Mouse X
594
- :type mouse_x: typing.Any | None
594
+ :type mouse_x: int | None
595
595
  :param mouse_y: Mouse Y
596
- :type mouse_y: typing.Any | None
596
+ :type mouse_y: int | None
597
597
  :param extend: Extend, Extend selection instead of deselecting everything first
598
- :type extend: bool | typing.Any | None
598
+ :type extend: bool | None
599
599
  :param fill: Fill, Select everything beginning with the last selection
600
- :type fill: bool | typing.Any | None
600
+ :type fill: bool | None
601
601
  :param open: Open, Open a directory when selecting it
602
- :type open: bool | typing.Any | None
602
+ :type open: bool | None
603
603
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
604
- :type deselect_all: bool | typing.Any | None
604
+ :type deselect_all: bool | None
605
605
  :param only_activate_if_selected: Only Activate if Selected, Do not change selection if the item under the cursor is already selected, only activate it
606
- :type only_activate_if_selected: bool | typing.Any | None
606
+ :type only_activate_if_selected: bool | None
607
607
  :param pass_through: Pass Through, Even on successful execution, pass the event on so other operators can execute on it as well
608
- :type pass_through: bool | typing.Any | None
608
+ :type pass_through: bool | None
609
609
  """
610
610
 
611
611
  ...
@@ -645,7 +645,7 @@ def select_bookmark(
645
645
  execution_context: int | str | None = None,
646
646
  undo: bool | None = None,
647
647
  *,
648
- dir: str | typing.Any = "",
648
+ dir: str = "",
649
649
  ):
650
650
  """Select a bookmarked directory
651
651
 
@@ -653,7 +653,7 @@ def select_bookmark(
653
653
  :type execution_context: int | str | None
654
654
  :type undo: bool | None
655
655
  :param dir: Directory
656
- :type dir: str | typing.Any
656
+ :type dir: str
657
657
  """
658
658
 
659
659
  ...
@@ -663,11 +663,11 @@ def select_box(
663
663
  execution_context: int | str | None = None,
664
664
  undo: bool | None = None,
665
665
  *,
666
- xmin: typing.Any | None = 0,
667
- xmax: typing.Any | None = 0,
668
- ymin: typing.Any | None = 0,
669
- ymax: typing.Any | None = 0,
670
- wait_for_input: bool | typing.Any | None = True,
666
+ xmin: int | None = 0,
667
+ xmax: int | None = 0,
668
+ ymin: int | None = 0,
669
+ ymax: int | None = 0,
670
+ wait_for_input: bool | None = True,
671
671
  mode: str | None = "SET",
672
672
  ):
673
673
  """Activate/select the file(s) contained in the border
@@ -676,15 +676,15 @@ def select_box(
676
676
  :type execution_context: int | str | None
677
677
  :type undo: bool | None
678
678
  :param xmin: X Min
679
- :type xmin: typing.Any | None
679
+ :type xmin: int | None
680
680
  :param xmax: X Max
681
- :type xmax: typing.Any | None
681
+ :type xmax: int | None
682
682
  :param ymin: Y Min
683
- :type ymin: typing.Any | None
683
+ :type ymin: int | None
684
684
  :param ymax: Y Max
685
- :type ymax: typing.Any | None
685
+ :type ymax: int | None
686
686
  :param wait_for_input: Wait for Input
687
- :type wait_for_input: bool | typing.Any | None
687
+ :type wait_for_input: bool | None
688
688
  :param mode: Mode
689
689
 
690
690
  SET
@@ -706,8 +706,8 @@ def select_walk(
706
706
  undo: bool | None = None,
707
707
  *,
708
708
  direction: str | None = "UP",
709
- extend: bool | typing.Any | None = False,
710
- fill: bool | typing.Any | None = False,
709
+ extend: bool | None = False,
710
+ fill: bool | None = False,
711
711
  ):
712
712
  """Select/Deselect files by walking through them
713
713
 
@@ -717,9 +717,9 @@ def select_walk(
717
717
  :param direction: Walk Direction, Select/Deselect element in this direction
718
718
  :type direction: str | None
719
719
  :param extend: Extend, Extend selection instead of deselecting everything first
720
- :type extend: bool | typing.Any | None
720
+ :type extend: bool | None
721
721
  :param fill: Fill, Select everything beginning with the last selection
722
- :type fill: bool | typing.Any | None
722
+ :type fill: bool | None
723
723
  """
724
724
 
725
725
  ...
@@ -790,8 +790,8 @@ def unpack_item(
790
790
  undo: bool | None = None,
791
791
  *,
792
792
  method: str | None = "USE_LOCAL",
793
- id_name: str | typing.Any = "",
794
- id_type: typing.Any | None = 19785,
793
+ id_name: str = "",
794
+ id_type: int | None = 19785,
795
795
  ):
796
796
  """Unpack this file to an external file
797
797
 
@@ -801,9 +801,9 @@ def unpack_item(
801
801
  :param method: Method, How to unpack
802
802
  :type method: str | None
803
803
  :param id_name: ID Name, Name of ID block to unpack
804
- :type id_name: str | typing.Any
804
+ :type id_name: str
805
805
  :param id_type: ID Type, Identifier type of ID block
806
- :type id_type: typing.Any | None
806
+ :type id_type: int | None
807
807
  """
808
808
 
809
809
  ...
@@ -192,9 +192,9 @@ def preset_add(
192
192
  execution_context: int | str | None = None,
193
193
  undo: bool | None = None,
194
194
  *,
195
- name: str | typing.Any = "",
196
- remove_name: bool | typing.Any | None = False,
197
- remove_active: bool | typing.Any | None = False,
195
+ name: str = "",
196
+ remove_name: bool | None = False,
197
+ remove_active: bool | None = False,
198
198
  ):
199
199
  """Add or remove a Fluid Preset
200
200
 
@@ -202,11 +202,11 @@ def preset_add(
202
202
  :type execution_context: int | str | None
203
203
  :type undo: bool | None
204
204
  :param name: Name, Name of the preset, used to make the path name
205
- :type name: str | typing.Any
205
+ :type name: str
206
206
  :param remove_name: remove_name
207
- :type remove_name: bool | typing.Any | None
207
+ :type remove_name: bool | None
208
208
  :param remove_active: remove_active
209
- :type remove_active: bool | typing.Any | None
209
+ :type remove_active: bool | None
210
210
  """
211
211
 
212
212
  ...