fake-bpy-module 20240707__py3-none-any.whl → 20240709__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 (118) hide show
  1. _bpy_internal/__init__.pyi +1 -0
  2. _bpy_internal/addons/__init__.pyi +7 -0
  3. _bpy_internal/addons/cli/__init__.pyi +8 -0
  4. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  5. _bpy_internal/freedesktop/__init__.pyi +1 -1
  6. addon_utils/__init__.pyi +6 -5
  7. bl_app_override/__init__.pyi +2 -1
  8. bl_app_template_utils/__init__.pyi +4 -4
  9. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +1 -1
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -2
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +3 -1
  12. bl_keymap_utils/io/__init__.pyi +4 -2
  13. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +1 -1
  14. bl_keymap_utils/platform_helpers/__init__.pyi +1 -1
  15. bl_operators/__init__.pyi +1 -0
  16. bl_operators/add_mesh_torus/__init__.pyi +1 -1
  17. bl_operators/anim/__init__.pyi +8 -8
  18. bl_operators/assets/__init__.pyi +3 -3
  19. bl_operators/bone_selection_sets/__init__.pyi +2986 -0
  20. bl_operators/clip/__init__.pyi +11 -11
  21. bl_operators/connect_to_output/__init__.pyi +1 -1
  22. bl_operators/console/__init__.pyi +5 -5
  23. bl_operators/constraint/__init__.pyi +4 -4
  24. bl_operators/file/__init__.pyi +3 -3
  25. bl_operators/freestyle/__init__.pyi +4 -4
  26. bl_operators/geometry_nodes/__init__.pyi +4 -4
  27. bl_operators/image/__init__.pyi +4 -4
  28. bl_operators/image_as_planes/__init__.pyi +2 -2
  29. bl_operators/mesh/__init__.pyi +3 -3
  30. bl_operators/node/__init__.pyi +8 -8
  31. bl_operators/object/__init__.pyi +15 -15
  32. bl_operators/object_align/__init__.pyi +1 -1
  33. bl_operators/object_quick_effects/__init__.pyi +4 -4
  34. bl_operators/object_randomize_transform/__init__.pyi +1 -1
  35. bl_operators/presets/__init__.pyi +25 -23
  36. bl_operators/rigidbody/__init__.pyi +3 -3
  37. bl_operators/screen_play_rendered_anim/__init__.pyi +1 -1
  38. bl_operators/sequencer/__init__.pyi +5 -5
  39. bl_operators/spreadsheet/__init__.pyi +1 -1
  40. bl_operators/userpref/__init__.pyi +25 -25
  41. bl_operators/uvcalc_follow_active/__init__.pyi +1 -1
  42. bl_operators/uvcalc_lightmap/__init__.pyi +2 -2
  43. bl_operators/uvcalc_transform/__init__.pyi +2 -2
  44. bl_operators/vertexpaint_dirt/__init__.pyi +1 -1
  45. bl_operators/view3d/__init__.pyi +5 -5
  46. bl_operators/wm/__init__.pyi +46 -42
  47. bl_operators/world/__init__.pyi +1 -1
  48. bl_ui/__init__.pyi +2 -0
  49. bl_ui/anim/__init__.pyi +1 -0
  50. bl_ui/generic_ui_list/__init__.pyi +5 -4
  51. bl_ui/node_add_menu/__init__.pyi +2 -1
  52. bl_ui/node_add_menu_compositor/__init__.pyi +18 -0
  53. bl_ui/node_add_menu_geometry/__init__.pyi +49 -0
  54. bl_ui/node_add_menu_shader/__init__.pyi +10 -0
  55. bl_ui/node_add_menu_texture/__init__.pyi +9 -0
  56. bl_ui/properties_collection/__init__.pyi +1 -0
  57. bl_ui/properties_data_armature/__init__.pyi +1273 -0
  58. bl_ui/properties_data_camera/__init__.pyi +2 -0
  59. bl_ui/properties_data_curves/__init__.pyi +1 -0
  60. bl_ui/properties_data_gpencil/__init__.pyi +2 -0
  61. bl_ui/properties_data_grease_pencil/__init__.pyi +3 -0
  62. bl_ui/properties_data_mesh/__init__.pyi +4 -0
  63. bl_ui/properties_data_modifier/__init__.pyi +8 -1
  64. bl_ui/properties_data_pointcloud/__init__.pyi +1 -0
  65. bl_ui/properties_freestyle/__init__.pyi +1 -0
  66. bl_ui/properties_grease_pencil_common/__init__.pyi +13 -1
  67. bl_ui/properties_mask_common/__init__.pyi +6 -0
  68. bl_ui/properties_material/__init__.pyi +1 -0
  69. bl_ui/properties_material_gpencil/__init__.pyi +2 -0
  70. bl_ui/properties_object/__init__.pyi +1 -0
  71. bl_ui/properties_output/__init__.pyi +3 -0
  72. bl_ui/properties_paint_common/__init__.pyi +48 -17
  73. bl_ui/properties_particle/__init__.pyi +2 -0
  74. bl_ui/properties_physics_cloth/__init__.pyi +1 -0
  75. bl_ui/properties_physics_fluid/__init__.pyi +1 -0
  76. bl_ui/properties_render/__init__.pyi +2 -0
  77. bl_ui/properties_texture/__init__.pyi +1 -0
  78. bl_ui/properties_view_layer/__init__.pyi +1 -0
  79. bl_ui/space_clip/__init__.pyi +31 -0
  80. bl_ui/space_console/__init__.pyi +5 -0
  81. bl_ui/space_dopesheet/__init__.pyi +14 -0
  82. bl_ui/space_filebrowser/__init__.pyi +13 -0
  83. bl_ui/space_graph/__init__.pyi +16 -0
  84. bl_ui/space_image/__init__.pyi +313 -11
  85. bl_ui/space_info/__init__.pyi +5 -0
  86. bl_ui/space_nla/__init__.pyi +13 -0
  87. bl_ui/space_node/__init__.pyi +12 -0
  88. bl_ui/space_outliner/__init__.pyi +12 -0
  89. bl_ui/space_sequencer/__init__.pyi +34 -0
  90. bl_ui/space_text/__init__.pyi +12 -0
  91. bl_ui/space_time/__init__.pyi +4 -0
  92. bl_ui/space_toolsystem_common/__init__.pyi +7 -6
  93. bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -13
  94. bl_ui/space_topbar/__init__.pyi +20 -1
  95. bl_ui/space_userpref/__init__.pyi +8 -0
  96. bl_ui/space_view3d/__init__.pyi +3477 -1372
  97. bl_ui/space_view3d_toolbar/__init__.pyi +1706 -880
  98. bl_ui/utils/__init__.pyi +1 -0
  99. bl_ui_utils/bug_report_url/__init__.pyi +1 -1
  100. bmesh/types/__init__.pyi +48 -0
  101. bpy/ops/brush/__init__.pyi +185 -11
  102. bpy/ops/gpencil/__init__.pyi +0 -28
  103. bpy/ops/paint/__init__.pyi +0 -48
  104. bpy/ops/pose/__init__.pyi +176 -0
  105. bpy/ops/wm/__init__.pyi +18 -0
  106. bpy/path/__init__.pyi +6 -6
  107. bpy/types/__init__.pyi +2544 -1063
  108. bpy/utils/__init__.pyi +14 -12
  109. bpy_extras/anim_utils/__init__.pyi +3 -3
  110. bpy_extras/view3d_utils/__init__.pyi +2 -0
  111. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +4 -4
  112. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +118 -115
  113. mathutils/__init__.pyi +0 -44
  114. rna_info/__init__.pyi +1 -0
  115. rna_prop_ui/__init__.pyi +2 -1
  116. rna_xml/__init__.pyi +2 -2
  117. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  118. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
bl_ui/utils/__init__.pyi CHANGED
@@ -36,6 +36,7 @@ class PresetPanel:
36
36
  self,
37
37
  searchpaths: list[str],
38
38
  operator: str,
39
+ *,
39
40
  props_default: dict = None,
40
41
  prop_filepath: str | None = "filepath",
41
42
  filter_ext: collections.abc.Callable | None = None,
@@ -5,4 +5,4 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def url_prefill_from_blender(addon_info=None): ...
8
+ def url_prefill_from_blender(*, addon_info=None): ...
bmesh/types/__init__.pyi CHANGED
@@ -330,6 +330,7 @@ class BMEdgeSeq:
330
330
  """
331
331
  ...
332
332
 
333
+ @typing.overload
333
334
  def __getitem__(self, key: int) -> BMEdge:
334
335
  """
335
336
 
@@ -340,6 +341,17 @@ class BMEdgeSeq:
340
341
  """
341
342
  ...
342
343
 
344
+ @typing.overload
345
+ def __getitem__(self, key: slice) -> tuple[BMEdge, ...]:
346
+ """
347
+
348
+ :param key:
349
+ :type key: slice
350
+ :return:
351
+ :rtype: tuple[BMEdge, ...]
352
+ """
353
+ ...
354
+
343
355
  def __iter__(self) -> BMIter[BMEdge]:
344
356
  """
345
357
 
@@ -404,6 +416,7 @@ class BMElemSeq(typing.Generic[GenericType1]):
404
416
  """Initialize the index values of this sequence.This is the equivalent of looping over all elements and assigning the index values."""
405
417
  ...
406
418
 
419
+ @typing.overload
407
420
  def __getitem__(self, key: int) -> GenericType1:
408
421
  """
409
422
 
@@ -414,6 +427,17 @@ class BMElemSeq(typing.Generic[GenericType1]):
414
427
  """
415
428
  ...
416
429
 
430
+ @typing.overload
431
+ def __getitem__(self, key: slice) -> tuple[GenericType1, ...]:
432
+ """
433
+
434
+ :param key:
435
+ :type key: slice
436
+ :return:
437
+ :rtype: tuple[GenericType1, ...]
438
+ """
439
+ ...
440
+
417
441
  def __iter__(self) -> BMIter[GenericType1]:
418
442
  """
419
443
 
@@ -720,6 +744,7 @@ class BMFaceSeq:
720
744
  """
721
745
  ...
722
746
 
747
+ @typing.overload
723
748
  def __getitem__(self, key: int) -> BMFace:
724
749
  """
725
750
 
@@ -730,6 +755,17 @@ class BMFaceSeq:
730
755
  """
731
756
  ...
732
757
 
758
+ @typing.overload
759
+ def __getitem__(self, key: slice) -> tuple[BMFace, ...]:
760
+ """
761
+
762
+ :param key:
763
+ :type key: slice
764
+ :return:
765
+ :rtype: tuple[BMFace, ...]
766
+ """
767
+ ...
768
+
733
769
  def __iter__(self) -> BMIter[BMFace]:
734
770
  """
735
771
 
@@ -1471,6 +1507,7 @@ class BMVertSeq:
1471
1507
  """
1472
1508
  ...
1473
1509
 
1510
+ @typing.overload
1474
1511
  def __getitem__(self, key: int) -> BMVert:
1475
1512
  """
1476
1513
 
@@ -1481,6 +1518,17 @@ class BMVertSeq:
1481
1518
  """
1482
1519
  ...
1483
1520
 
1521
+ @typing.overload
1522
+ def __getitem__(self, key: slice) -> tuple[BMVert, ...]:
1523
+ """
1524
+
1525
+ :param key:
1526
+ :type key: slice
1527
+ :return:
1528
+ :rtype: tuple[BMVert, ...]
1529
+ """
1530
+ ...
1531
+
1484
1532
  def __iter__(self) -> BMIter[BMVert]:
1485
1533
  """
1486
1534
 
@@ -6,26 +6,36 @@ import bpy.types
6
6
  GenericType1 = typing.TypeVar("GenericType1")
7
7
  GenericType2 = typing.TypeVar("GenericType2")
8
8
 
9
- def add(
9
+ def asset_activate(
10
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
+ *,
14
+ asset_library_type: str | None = "LOCAL",
15
+ asset_library_identifier: str = "",
16
+ relative_asset_identifier: str = "",
13
17
  ):
14
- """Add brush by mode type
18
+ """Activate a brush asset as current sculpt and paint tool
15
19
 
16
20
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
17
21
  :type execution_context: int | str | None
18
22
  :type undo: bool | None
23
+ :param asset_library_type: Asset Library Type
24
+ :type asset_library_type: str | None
25
+ :param asset_library_identifier: Asset Library Identifier
26
+ :type asset_library_identifier: str
27
+ :param relative_asset_identifier: Relative Asset Identifier
28
+ :type relative_asset_identifier: str
19
29
  """
20
30
 
21
31
  ...
22
32
 
23
- def add_gpencil(
33
+ def asset_delete(
24
34
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
25
35
  execution_context: int | str | None = None,
26
36
  undo: bool | None = None,
27
37
  ):
28
- """Add brush for Grease Pencil
38
+ """Delete the active brush asset
29
39
 
30
40
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
31
41
  :type execution_context: int | str | None
@@ -34,30 +44,138 @@ def add_gpencil(
34
44
 
35
45
  ...
36
46
 
37
- def curve_preset(
47
+ def asset_edit_metadata(
38
48
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
39
49
  execution_context: int | str | None = None,
40
50
  undo: bool | None = None,
41
51
  *,
42
- shape: str | None = "SMOOTH",
52
+ catalog_path: str = "",
53
+ author: str = "",
54
+ description: str = "",
43
55
  ):
44
- """Set brush shape
56
+ """Edit asset information like the catalog, preview image, tags, or author
45
57
 
46
58
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
47
59
  :type execution_context: int | str | None
48
60
  :type undo: bool | None
49
- :param shape: Mode
50
- :type shape: str | None
61
+ :param catalog_path: Catalog, The asset's catalog path
62
+ :type catalog_path: str
63
+ :param author: Author
64
+ :type author: str
65
+ :param description: Description
66
+ :type description: str
67
+ """
68
+
69
+ ...
70
+
71
+ def asset_load_preview(
72
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
73
+ execution_context: int | str | None = None,
74
+ undo: bool | None = None,
75
+ *,
76
+ filepath: str = "",
77
+ hide_props_region: bool | None = True,
78
+ check_existing: bool | None = False,
79
+ filter_blender: bool | None = False,
80
+ filter_backup: bool | None = False,
81
+ filter_image: bool | None = True,
82
+ filter_movie: bool | None = False,
83
+ filter_python: bool | None = False,
84
+ filter_font: bool | None = False,
85
+ filter_sound: bool | None = False,
86
+ filter_text: bool | None = False,
87
+ filter_archive: bool | None = False,
88
+ filter_btx: bool | None = False,
89
+ filter_collada: bool | None = False,
90
+ filter_alembic: bool | None = False,
91
+ filter_usd: bool | None = False,
92
+ filter_obj: bool | None = False,
93
+ filter_volume: bool | None = False,
94
+ filter_folder: bool | None = True,
95
+ filter_blenlib: bool | None = False,
96
+ filemode: int | None = 9,
97
+ show_multiview: bool | None = False,
98
+ use_multiview: bool | None = False,
99
+ display_type: str | None = "DEFAULT",
100
+ sort_method: str | None = "",
101
+ ):
102
+ """Choose a preview image for the brush
103
+
104
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
105
+ :type execution_context: int | str | None
106
+ :type undo: bool | None
107
+ :param filepath: File Path, Path to file
108
+ :type filepath: str
109
+ :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
110
+ :type hide_props_region: bool | None
111
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
112
+ :type check_existing: bool | None
113
+ :param filter_blender: Filter .blend files
114
+ :type filter_blender: bool | None
115
+ :param filter_backup: Filter .blend files
116
+ :type filter_backup: bool | None
117
+ :param filter_image: Filter image files
118
+ :type filter_image: bool | None
119
+ :param filter_movie: Filter movie files
120
+ :type filter_movie: bool | None
121
+ :param filter_python: Filter Python files
122
+ :type filter_python: bool | None
123
+ :param filter_font: Filter font files
124
+ :type filter_font: bool | None
125
+ :param filter_sound: Filter sound files
126
+ :type filter_sound: bool | None
127
+ :param filter_text: Filter text files
128
+ :type filter_text: bool | None
129
+ :param filter_archive: Filter archive files
130
+ :type filter_archive: bool | None
131
+ :param filter_btx: Filter btx files
132
+ :type filter_btx: bool | None
133
+ :param filter_collada: Filter COLLADA files
134
+ :type filter_collada: bool | None
135
+ :param filter_alembic: Filter Alembic files
136
+ :type filter_alembic: bool | None
137
+ :param filter_usd: Filter USD files
138
+ :type filter_usd: bool | None
139
+ :param filter_obj: Filter OBJ files
140
+ :type filter_obj: bool | None
141
+ :param filter_volume: Filter OpenVDB volume files
142
+ :type filter_volume: bool | None
143
+ :param filter_folder: Filter folders
144
+ :type filter_folder: bool | None
145
+ :param filter_blenlib: Filter Blender IDs
146
+ :type filter_blenlib: bool | None
147
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
148
+ :type filemode: int | None
149
+ :param show_multiview: Enable Multi-View
150
+ :type show_multiview: bool | None
151
+ :param use_multiview: Use Multi-View
152
+ :type use_multiview: bool | None
153
+ :param display_type: Display Type
154
+
155
+ DEFAULT
156
+ Default -- Automatically determine display type for files.
157
+
158
+ LIST_VERTICAL
159
+ Short List -- Display files as short list.
160
+
161
+ LIST_HORIZONTAL
162
+ Long List -- Display files as a detailed list.
163
+
164
+ THUMBNAIL
165
+ Thumbnails -- Display files as thumbnails.
166
+ :type display_type: str | None
167
+ :param sort_method: File sorting mode
168
+ :type sort_method: str | None
51
169
  """
52
170
 
53
171
  ...
54
172
 
55
- def reset(
173
+ def asset_revert(
56
174
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
57
175
  execution_context: int | str | None = None,
58
176
  undo: bool | None = None,
59
177
  ):
60
- """Return brush to defaults based on current tool
178
+ """Revert the active brush settings to the default values from the asset library
61
179
 
62
180
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
63
181
  :type execution_context: int | str | None
@@ -66,6 +184,62 @@ def reset(
66
184
 
67
185
  ...
68
186
 
187
+ def asset_save_as(
188
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
189
+ execution_context: int | str | None = None,
190
+ undo: bool | None = None,
191
+ *,
192
+ name: str = "",
193
+ asset_library_reference: str | None = "",
194
+ catalog_path: str = "",
195
+ ):
196
+ """Save a copy of the active brush asset into the default asset library, and make it the active brush
197
+
198
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
199
+ :type execution_context: int | str | None
200
+ :type undo: bool | None
201
+ :param name: Name, Name for the new brush asset
202
+ :type name: str
203
+ :param asset_library_reference: Library, Asset library used to store the new brush
204
+ :type asset_library_reference: str | None
205
+ :param catalog_path: Catalog, Catalog to use for the new asset
206
+ :type catalog_path: str
207
+ """
208
+
209
+ ...
210
+
211
+ def asset_update(
212
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
213
+ execution_context: int | str | None = None,
214
+ undo: bool | None = None,
215
+ ):
216
+ """Update the active brush asset in the asset library with current settings
217
+
218
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
219
+ :type execution_context: int | str | None
220
+ :type undo: bool | None
221
+ """
222
+
223
+ ...
224
+
225
+ def curve_preset(
226
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
227
+ execution_context: int | str | None = None,
228
+ undo: bool | None = None,
229
+ *,
230
+ shape: str | None = "SMOOTH",
231
+ ):
232
+ """Set brush shape
233
+
234
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
235
+ :type execution_context: int | str | None
236
+ :type undo: bool | None
237
+ :param shape: Mode
238
+ :type shape: str | None
239
+ """
240
+
241
+ ...
242
+
69
243
  def scale_size(
70
244
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
71
245
  execution_context: int | str | None = None,
@@ -284,34 +284,6 @@ def blank_frame_add(
284
284
 
285
285
  ...
286
286
 
287
- def brush_reset(
288
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
289
- execution_context: int | str | None = None,
290
- undo: bool | None = None,
291
- ):
292
- """Reset brush to default parameters
293
-
294
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
295
- :type execution_context: int | str | None
296
- :type undo: bool | None
297
- """
298
-
299
- ...
300
-
301
- def brush_reset_all(
302
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
303
- execution_context: int | str | None = None,
304
- undo: bool | None = None,
305
- ):
306
- """Delete all mode brushes and recreate a default set
307
-
308
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
309
- :type execution_context: int | str | None
310
- :type undo: bool | None
311
- """
312
-
313
- ...
314
-
315
287
  def convert(
316
288
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
317
289
  execution_context: int | str | None = None,
@@ -83,54 +83,6 @@ def brush_colors_flip(
83
83
 
84
84
  ...
85
85
 
86
- def brush_select(
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
- *,
91
- sculpt_tool: str | None = "DRAW",
92
- vertex_tool: str | None = "DRAW",
93
- weight_tool: str | None = "DRAW",
94
- image_tool: str | None = "DRAW",
95
- gpencil_tool: str | None = "DRAW",
96
- gpencil_vertex_tool: str | None = "DRAW",
97
- gpencil_sculpt_tool: str | None = "SMOOTH",
98
- gpencil_weight_tool: str | None = "WEIGHT",
99
- curves_sculpt_tool: str | None = "COMB",
100
- toggle: bool | None = False,
101
- create_missing: bool | None = False,
102
- ):
103
- """Select a paint mode's brush by tool type
104
-
105
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
106
- :type execution_context: int | str | None
107
- :type undo: bool | None
108
- :param sculpt_tool: sculpt_tool
109
- :type sculpt_tool: str | None
110
- :param vertex_tool: vertex_tool
111
- :type vertex_tool: str | None
112
- :param weight_tool: weight_tool
113
- :type weight_tool: str | None
114
- :param image_tool: image_tool
115
- :type image_tool: str | None
116
- :param gpencil_tool: gpencil_tool
117
- :type gpencil_tool: str | None
118
- :param gpencil_vertex_tool: gpencil_vertex_tool
119
- :type gpencil_vertex_tool: str | None
120
- :param gpencil_sculpt_tool: gpencil_sculpt_tool
121
- :type gpencil_sculpt_tool: str | None
122
- :param gpencil_weight_tool: gpencil_weight_tool
123
- :type gpencil_weight_tool: str | None
124
- :param curves_sculpt_tool: curves_sculpt_tool
125
- :type curves_sculpt_tool: str | None
126
- :param toggle: Toggle, Toggle between two brushes rather than cycling
127
- :type toggle: bool | None
128
- :param create_missing: Create Missing, If the requested brush type does not exist, create a new brush
129
- :type create_missing: bool | None
130
- """
131
-
132
- ...
133
-
134
86
  def face_select_all(
135
87
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
136
88
  execution_context: int | str | None = None,
bpy/ops/pose/__init__.pyi CHANGED
@@ -881,6 +881,182 @@ def select_parent(
881
881
 
882
882
  ...
883
883
 
884
+ def selection_set_add(
885
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
886
+ execution_context: int | str | None = None,
887
+ undo: bool | None = None,
888
+ ):
889
+ """Create a new empty Selection Set
890
+
891
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
892
+ :type execution_context: int | str | None
893
+ :type undo: bool | None
894
+ """
895
+
896
+ ...
897
+
898
+ def selection_set_add_and_assign(
899
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
900
+ execution_context: int | str | None = None,
901
+ undo: bool | None = None,
902
+ ):
903
+ """Create a new Selection Set with the currently selected bones
904
+
905
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
906
+ :type execution_context: int | str | None
907
+ :type undo: bool | None
908
+ """
909
+
910
+ ...
911
+
912
+ def selection_set_assign(
913
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
914
+ execution_context: int | str | None = None,
915
+ undo: bool | None = None,
916
+ ):
917
+ """Add selected bones to Selection Set
918
+
919
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
920
+ :type execution_context: int | str | None
921
+ :type undo: bool | None
922
+ """
923
+
924
+ ...
925
+
926
+ def selection_set_copy(
927
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
928
+ execution_context: int | str | None = None,
929
+ undo: bool | None = None,
930
+ ):
931
+ """Copy the selected Selection Set(s) to the clipboard
932
+
933
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
934
+ :type execution_context: int | str | None
935
+ :type undo: bool | None
936
+ """
937
+
938
+ ...
939
+
940
+ def selection_set_delete_all(
941
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
942
+ execution_context: int | str | None = None,
943
+ undo: bool | None = None,
944
+ ):
945
+ """Remove all Selection Sets from this Armature
946
+
947
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
948
+ :type execution_context: int | str | None
949
+ :type undo: bool | None
950
+ """
951
+
952
+ ...
953
+
954
+ def selection_set_deselect(
955
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
956
+ execution_context: int | str | None = None,
957
+ undo: bool | None = None,
958
+ ):
959
+ """Remove Selection Set bones from current selection
960
+
961
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
962
+ :type execution_context: int | str | None
963
+ :type undo: bool | None
964
+ """
965
+
966
+ ...
967
+
968
+ def selection_set_move(
969
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
970
+ execution_context: int | str | None = None,
971
+ undo: bool | None = None,
972
+ *,
973
+ direction: str | None = "UP",
974
+ ):
975
+ """Move the active Selection Set up/down the list of sets
976
+
977
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
978
+ :type execution_context: int | str | None
979
+ :type undo: bool | None
980
+ :param direction: Move Direction, Direction to move the active Selection Set: UP (default) or DOWN
981
+ :type direction: str | None
982
+ """
983
+
984
+ ...
985
+
986
+ def selection_set_paste(
987
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
988
+ execution_context: int | str | None = None,
989
+ undo: bool | None = None,
990
+ ):
991
+ """Add new Selection Set(s) from the clipboard
992
+
993
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
994
+ :type execution_context: int | str | None
995
+ :type undo: bool | None
996
+ """
997
+
998
+ ...
999
+
1000
+ def selection_set_remove(
1001
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1002
+ execution_context: int | str | None = None,
1003
+ undo: bool | None = None,
1004
+ ):
1005
+ """Remove a Selection Set from this Armature
1006
+
1007
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1008
+ :type execution_context: int | str | None
1009
+ :type undo: bool | None
1010
+ """
1011
+
1012
+ ...
1013
+
1014
+ def selection_set_remove_bones(
1015
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1016
+ execution_context: int | str | None = None,
1017
+ undo: bool | None = None,
1018
+ ):
1019
+ """Remove the selected bones from all Selection Sets
1020
+
1021
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1022
+ :type execution_context: int | str | None
1023
+ :type undo: bool | None
1024
+ """
1025
+
1026
+ ...
1027
+
1028
+ def selection_set_select(
1029
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1030
+ execution_context: int | str | None = None,
1031
+ undo: bool | None = None,
1032
+ *,
1033
+ selection_set_index: int | None = -1,
1034
+ ):
1035
+ """Select the bones from this Selection Set
1036
+
1037
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1038
+ :type execution_context: int | str | None
1039
+ :type undo: bool | None
1040
+ :param selection_set_index: Selection Set Index, Which Selection Set to select; -1 uses the active Selection Set
1041
+ :type selection_set_index: int | None
1042
+ """
1043
+
1044
+ ...
1045
+
1046
+ def selection_set_unassign(
1047
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1048
+ execution_context: int | str | None = None,
1049
+ undo: bool | None = None,
1050
+ ):
1051
+ """Remove selected bones from Selection Set
1052
+
1053
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1054
+ :type execution_context: int | str | None
1055
+ :type undo: bool | None
1056
+ """
1057
+
1058
+ ...
1059
+
884
1060
  def transforms_clear(
885
1061
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
886
1062
  execution_context: int | str | None = None,
bpy/ops/wm/__init__.pyi CHANGED
@@ -490,6 +490,24 @@ def blend_strings_utf8_validate(
490
490
 
491
491
  ...
492
492
 
493
+ def call_asset_shelf_popover(
494
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
495
+ execution_context: int | str | None = None,
496
+ undo: bool | None = None,
497
+ *,
498
+ name: str = "",
499
+ ):
500
+ """Open a predefined asset shelf in a popup
501
+
502
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
503
+ :type execution_context: int | str | None
504
+ :type undo: bool | None
505
+ :param name: Asset Shelf Name, Identifier of the asset shelf to display
506
+ :type name: str
507
+ """
508
+
509
+ ...
510
+
493
511
  def call_menu(
494
512
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
495
513
  execution_context: int | str | None = None,