fake-bpy-module 20240126__py3-none-any.whl → 20240128__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.
@@ -241,7 +241,7 @@ def collection_remove_unused(
241
241
  execution_context: typing.Optional[typing.Union[str, int]] = None,
242
242
  undo: typing.Optional[bool] = None,
243
243
  ):
244
- """Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed :File: `startup/bl_operators/anim.py\:601 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/anim.py#L601>`__
244
+ """Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed :File: `startup/bl_operators/anim.py\:581 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/anim.py#L581>`__
245
245
 
246
246
  :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
247
247
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -273,7 +273,7 @@ def collection_show_all(
273
273
  execution_context: typing.Optional[typing.Union[str, int]] = None,
274
274
  undo: typing.Optional[bool] = None,
275
275
  ):
276
- """Show all bone collections :File: `startup/bl_operators/anim.py\:579 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/anim.py#L579>`__
276
+ """Show all bone collections :File: `startup/bl_operators/anim.py\:537 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/anim.py#L537>`__
277
277
 
278
278
  :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
279
279
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -282,7 +282,7 @@ def collection_show_all(
282
282
 
283
283
  ...
284
284
 
285
- def collection_solo_visibility(
285
+ def collection_unassign(
286
286
  override_context: typing.Optional[
287
287
  typing.Union[typing.Dict, "bpy.types.Context"]
288
288
  ] = None,
@@ -291,18 +291,18 @@ def collection_solo_visibility(
291
291
  *,
292
292
  name: typing.Union[str, typing.Any] = "",
293
293
  ):
294
- """Hide all other bone collections and show the active one. Note that it is necessary to also show the ancestors of the active bone collection in order to ensure its visibility :File: `startup/bl_operators/anim.py\:541 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/anim.py#L541>`__
294
+ """Remove selected bones from the active bone collection
295
295
 
296
296
  :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
297
297
  :type execution_context: typing.Optional[typing.Union[str, int]]
298
298
  :type undo: typing.Optional[bool]
299
- :param name: Bone Collection
299
+ :param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
300
300
  :type name: typing.Union[str, typing.Any]
301
301
  """
302
302
 
303
303
  ...
304
304
 
305
- def collection_unassign(
305
+ def collection_unassign_named(
306
306
  override_context: typing.Optional[
307
307
  typing.Union[typing.Dict, "bpy.types.Context"]
308
308
  ] = None,
@@ -310,37 +310,33 @@ def collection_unassign(
310
310
  undo: typing.Optional[bool] = None,
311
311
  *,
312
312
  name: typing.Union[str, typing.Any] = "",
313
+ bone_name: typing.Union[str, typing.Any] = "",
313
314
  ):
314
- """Remove selected bones from the active bone collection
315
+ """Unassign the named bone from this bone collection
315
316
 
316
317
  :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
317
318
  :type execution_context: typing.Optional[typing.Union[str, int]]
318
319
  :type undo: typing.Optional[bool]
319
320
  :param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
320
321
  :type name: typing.Union[str, typing.Any]
322
+ :param bone_name: Bone Name, Name of the bone to unassign from the collection; empty to use the active bone
323
+ :type bone_name: typing.Union[str, typing.Any]
321
324
  """
322
325
 
323
326
  ...
324
327
 
325
- def collection_unassign_named(
328
+ def collection_unsolo_all(
326
329
  override_context: typing.Optional[
327
330
  typing.Union[typing.Dict, "bpy.types.Context"]
328
331
  ] = None,
329
332
  execution_context: typing.Optional[typing.Union[str, int]] = None,
330
333
  undo: typing.Optional[bool] = None,
331
- *,
332
- name: typing.Union[str, typing.Any] = "",
333
- bone_name: typing.Union[str, typing.Any] = "",
334
334
  ):
335
- """Unassign the named bone from this bone collection
335
+ """Clear the 'solo' setting on all bone collections :File: `startup/bl_operators/anim.py\:559 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/anim.py#L559>`__
336
336
 
337
337
  :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
338
338
  :type execution_context: typing.Optional[typing.Union[str, int]]
339
339
  :type undo: typing.Optional[bool]
340
- :param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
341
- :type name: typing.Union[str, typing.Any]
342
- :param bone_name: Bone Name, Name of the bone to unassign from the collection; empty to use the active bone
343
- :type bone_name: typing.Union[str, typing.Any]
344
340
  """
345
341
 
346
342
  ...
bpy/ops/node/__init__.pyi CHANGED
@@ -778,6 +778,58 @@ def duplicate_move_linked(
778
778
 
779
779
  ...
780
780
 
781
+ def enum_definition_item_add(
782
+ override_context: typing.Optional[
783
+ typing.Union[typing.Dict, "bpy.types.Context"]
784
+ ] = None,
785
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
786
+ undo: typing.Optional[bool] = None,
787
+ ):
788
+ """Add an enum item to the definition :File: `startup/bl_operators/node.py\:395 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L395>`__
789
+
790
+ :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
791
+ :type execution_context: typing.Optional[typing.Union[str, int]]
792
+ :type undo: typing.Optional[bool]
793
+ """
794
+
795
+ ...
796
+
797
+ def enum_definition_item_move(
798
+ override_context: typing.Optional[
799
+ typing.Union[typing.Dict, "bpy.types.Context"]
800
+ ] = None,
801
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
802
+ undo: typing.Optional[bool] = None,
803
+ *,
804
+ direction: typing.Optional[typing.Any] = "UP",
805
+ ):
806
+ """Remove the selected enum item from the definition :File: `startup/bl_operators/node.py\:431 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L431>`__
807
+
808
+ :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
809
+ :type execution_context: typing.Optional[typing.Union[str, int]]
810
+ :type undo: typing.Optional[bool]
811
+ :param direction: Direction, Move up or down
812
+ :type direction: typing.Optional[typing.Any]
813
+ """
814
+
815
+ ...
816
+
817
+ def enum_definition_item_remove(
818
+ override_context: typing.Optional[
819
+ typing.Union[typing.Dict, "bpy.types.Context"]
820
+ ] = None,
821
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
822
+ undo: typing.Optional[bool] = None,
823
+ ):
824
+ """Remove the selected enum item from the definition :File: `startup/bl_operators/node.py\:409 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L409>`__
825
+
826
+ :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
827
+ :type execution_context: typing.Optional[typing.Union[str, int]]
828
+ :type undo: typing.Optional[bool]
829
+ """
830
+
831
+ ...
832
+
781
833
  def find_node(
782
834
  override_context: typing.Optional[
783
835
  typing.Union[typing.Dict, "bpy.types.Context"]