fake-bpy-module 20240620__py3-none-any.whl → 20240622__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 +1614 -1805
  74. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/METADATA +3 -5
  75. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/RECORD +77 -77
  76. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/WHEEL +0 -0
  77. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/top_level.txt +0 -0
@@ -331,7 +331,7 @@ def collection_isolate(
331
331
  execution_context: int | str | None = None,
332
332
  undo: bool | None = None,
333
333
  *,
334
- extend: bool | typing.Any | None = False,
334
+ extend: bool | None = False,
335
335
  ):
336
336
  """Hide all but this collection and its parents
337
337
 
@@ -339,7 +339,7 @@ def collection_isolate(
339
339
  :type execution_context: int | str | None
340
340
  :type undo: bool | None
341
341
  :param extend: Extend, Extend current visible collections
342
- :type extend: bool | typing.Any | None
342
+ :type extend: bool | None
343
343
  """
344
344
 
345
345
  ...
@@ -363,7 +363,7 @@ def collection_new(
363
363
  execution_context: int | str | None = None,
364
364
  undo: bool | None = None,
365
365
  *,
366
- nested: bool | typing.Any | None = True,
366
+ nested: bool | None = True,
367
367
  ):
368
368
  """Add a new collection inside selected collection
369
369
 
@@ -371,7 +371,7 @@ def collection_new(
371
371
  :type execution_context: int | str | None
372
372
  :type undo: bool | None
373
373
  :param nested: Nested, Add as child of selected collection
374
- :type nested: bool | typing.Any | None
374
+ :type nested: bool | None
375
375
  """
376
376
 
377
377
  ...
@@ -487,7 +487,7 @@ def delete(
487
487
  execution_context: int | str | None = None,
488
488
  undo: bool | None = None,
489
489
  *,
490
- hierarchy: bool | typing.Any | None = False,
490
+ hierarchy: bool | None = False,
491
491
  ):
492
492
  """Delete selected objects and collections
493
493
 
@@ -495,7 +495,7 @@ def delete(
495
495
  :type execution_context: int | str | None
496
496
  :type undo: bool | None
497
497
  :param hierarchy: Hierarchy, Delete child objects and collections
498
- :type hierarchy: bool | typing.Any | None
498
+ :type hierarchy: bool | None
499
499
  """
500
500
 
501
501
  ...
@@ -692,10 +692,10 @@ def item_activate(
692
692
  execution_context: int | str | None = None,
693
693
  undo: bool | None = None,
694
694
  *,
695
- extend: bool | typing.Any | None = False,
696
- extend_range: bool | typing.Any | None = False,
697
- deselect_all: bool | typing.Any | None = False,
698
- recurse: bool | typing.Any | None = False,
695
+ extend: bool | None = False,
696
+ extend_range: bool | None = False,
697
+ deselect_all: bool | None = False,
698
+ recurse: bool | None = False,
699
699
  ):
700
700
  """Handle mouse clicks to select and activate items
701
701
 
@@ -703,13 +703,13 @@ def item_activate(
703
703
  :type execution_context: int | str | None
704
704
  :type undo: bool | None
705
705
  :param extend: Extend, Extend selection for activation
706
- :type extend: bool | typing.Any | None
706
+ :type extend: bool | None
707
707
  :param extend_range: Extend Range, Select a range from active element
708
- :type extend_range: bool | typing.Any | None
708
+ :type extend_range: bool | None
709
709
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
710
- :type deselect_all: bool | typing.Any | None
710
+ :type deselect_all: bool | None
711
711
  :param recurse: Recurse, Select objects recursively from active element
712
- :type recurse: bool | typing.Any | None
712
+ :type recurse: bool | None
713
713
  """
714
714
 
715
715
  ...
@@ -733,7 +733,7 @@ def item_openclose(
733
733
  execution_context: int | str | None = None,
734
734
  undo: bool | None = None,
735
735
  *,
736
- all: bool | typing.Any | None = False,
736
+ all: bool | None = False,
737
737
  ):
738
738
  """Toggle whether item under cursor is enabled or closed
739
739
 
@@ -741,7 +741,7 @@ def item_openclose(
741
741
  :type execution_context: int | str | None
742
742
  :type undo: bool | None
743
743
  :param all: All, Close or open all items
744
- :type all: bool | typing.Any | None
744
+ :type all: bool | None
745
745
  """
746
746
 
747
747
  ...
@@ -751,7 +751,7 @@ def item_rename(
751
751
  execution_context: int | str | None = None,
752
752
  undo: bool | None = None,
753
753
  *,
754
- use_active: bool | typing.Any | None = False,
754
+ use_active: bool | None = False,
755
755
  ):
756
756
  """Rename the active element
757
757
 
@@ -759,7 +759,7 @@ def item_rename(
759
759
  :type execution_context: int | str | None
760
760
  :type undo: bool | None
761
761
  :param use_active: Use Active, Rename the active item, rather than the one the mouse is over
762
- :type use_active: bool | typing.Any | None
762
+ :type use_active: bool | None
763
763
  """
764
764
 
765
765
  ...
@@ -1010,9 +1010,9 @@ def orphans_purge(
1010
1010
  execution_context: int | str | None = None,
1011
1011
  undo: bool | None = None,
1012
1012
  *,
1013
- do_local_ids: bool | typing.Any | None = True,
1014
- do_linked_ids: bool | typing.Any | None = True,
1015
- do_recursive: bool | typing.Any | None = True,
1013
+ do_local_ids: bool | None = True,
1014
+ do_linked_ids: bool | None = True,
1015
+ do_recursive: bool | None = True,
1016
1016
  ):
1017
1017
  """Clear all orphaned data-blocks without any users from the file
1018
1018
 
@@ -1020,11 +1020,11 @@ def orphans_purge(
1020
1020
  :type execution_context: int | str | None
1021
1021
  :type undo: bool | None
1022
1022
  :param do_local_ids: Local Data-blocks, Include unused local data-blocks into deletion
1023
- :type do_local_ids: bool | typing.Any | None
1023
+ :type do_local_ids: bool | None
1024
1024
  :param do_linked_ids: Linked Data-blocks, Include unused linked data-blocks into deletion
1025
- :type do_linked_ids: bool | typing.Any | None
1025
+ :type do_linked_ids: bool | None
1026
1026
  :param do_recursive: Recursive Delete, Recursively check for indirectly unused data-blocks, ensuring that no orphaned data-blocks remain after execution
1027
- :type do_recursive: bool | typing.Any | None
1027
+ :type do_recursive: bool | None
1028
1028
  """
1029
1029
 
1030
1030
  ...
@@ -1094,7 +1094,7 @@ def scroll_page(
1094
1094
  execution_context: int | str | None = None,
1095
1095
  undo: bool | None = None,
1096
1096
  *,
1097
- up: bool | typing.Any | None = False,
1097
+ up: bool | None = False,
1098
1098
  ):
1099
1099
  """Scroll page up or down
1100
1100
 
@@ -1102,7 +1102,7 @@ def scroll_page(
1102
1102
  :type execution_context: int | str | None
1103
1103
  :type undo: bool | None
1104
1104
  :param up: Up, Scroll up one page
1105
- :type up: bool | typing.Any | None
1105
+ :type up: bool | None
1106
1106
  """
1107
1107
 
1108
1108
  ...
@@ -1142,12 +1142,12 @@ def select_box(
1142
1142
  execution_context: int | str | None = None,
1143
1143
  undo: bool | None = None,
1144
1144
  *,
1145
- tweak: bool | typing.Any | None = False,
1146
- xmin: typing.Any | None = 0,
1147
- xmax: typing.Any | None = 0,
1148
- ymin: typing.Any | None = 0,
1149
- ymax: typing.Any | None = 0,
1150
- wait_for_input: bool | typing.Any | None = True,
1145
+ tweak: bool | None = False,
1146
+ xmin: int | None = 0,
1147
+ xmax: int | None = 0,
1148
+ ymin: int | None = 0,
1149
+ ymax: int | None = 0,
1150
+ wait_for_input: bool | None = True,
1151
1151
  mode: str | None = "SET",
1152
1152
  ):
1153
1153
  """Use box selection to select tree elements
@@ -1156,17 +1156,17 @@ def select_box(
1156
1156
  :type execution_context: int | str | None
1157
1157
  :type undo: bool | None
1158
1158
  :param tweak: Tweak, Tweak gesture from empty space for box selection
1159
- :type tweak: bool | typing.Any | None
1159
+ :type tweak: bool | None
1160
1160
  :param xmin: X Min
1161
- :type xmin: typing.Any | None
1161
+ :type xmin: int | None
1162
1162
  :param xmax: X Max
1163
- :type xmax: typing.Any | None
1163
+ :type xmax: int | None
1164
1164
  :param ymin: Y Min
1165
- :type ymin: typing.Any | None
1165
+ :type ymin: int | None
1166
1166
  :param ymax: Y Max
1167
- :type ymax: typing.Any | None
1167
+ :type ymax: int | None
1168
1168
  :param wait_for_input: Wait for Input
1169
- :type wait_for_input: bool | typing.Any | None
1169
+ :type wait_for_input: bool | None
1170
1170
  :param mode: Mode
1171
1171
 
1172
1172
  SET
@@ -1188,8 +1188,8 @@ def select_walk(
1188
1188
  undo: bool | None = None,
1189
1189
  *,
1190
1190
  direction: str | None = "UP",
1191
- extend: bool | typing.Any | None = False,
1192
- toggle_all: bool | typing.Any | None = False,
1191
+ extend: bool | None = False,
1192
+ toggle_all: bool | None = False,
1193
1193
  ):
1194
1194
  """Use walk navigation to select tree elements
1195
1195
 
@@ -1199,9 +1199,9 @@ def select_walk(
1199
1199
  :param direction: Walk Direction, Select/Deselect element in this direction
1200
1200
  :type direction: str | None
1201
1201
  :param extend: Extend, Extend selection on walk
1202
- :type extend: bool | typing.Any | None
1202
+ :type extend: bool | None
1203
1203
  :param toggle_all: Toggle All, Toggle open/close hierarchy
1204
- :type toggle_all: bool | typing.Any | None
1204
+ :type toggle_all: bool | None
1205
1205
  """
1206
1206
 
1207
1207
  ...
@@ -1239,7 +1239,7 @@ def show_one_level(
1239
1239
  execution_context: int | str | None = None,
1240
1240
  undo: bool | None = None,
1241
1241
  *,
1242
- open: bool | typing.Any | None = True,
1242
+ open: bool | None = True,
1243
1243
  ):
1244
1244
  """Expand/collapse all entries by one level
1245
1245
 
@@ -1247,7 +1247,7 @@ def show_one_level(
1247
1247
  :type execution_context: int | str | None
1248
1248
  :type undo: bool | None
1249
1249
  :param open: Open, Expand all entries one level deep
1250
- :type open: bool | typing.Any | None
1250
+ :type open: bool | None
1251
1251
  """
1252
1252
 
1253
1253
  ...