fake-bpy-module 20241008__py3-none-any.whl → 20241009__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.

@@ -5658,6 +5658,40 @@ class VIEW3D_PT_overlay_edit_curve(bpy.types.Panel):
5658
5658
  :param context:
5659
5659
  """
5660
5660
 
5661
+ class VIEW3D_PT_overlay_edit_curves(bpy.types.Panel):
5662
+ bl_label: typing.Any
5663
+ bl_region_type: typing.Any
5664
+ bl_rna: typing.Any
5665
+ bl_space_type: typing.Any
5666
+ id_data: typing.Any
5667
+
5668
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
5669
+ """
5670
+
5671
+ :return: The RNA type or default when not found.
5672
+ :rtype: bpy.types.Struct
5673
+ """
5674
+
5675
+ def bl_rna_get_subclass_py(self) -> typing.Any:
5676
+ """
5677
+
5678
+ :return: The class or default when not found.
5679
+ :rtype: typing.Any
5680
+ """
5681
+
5682
+ def draw(self, context):
5683
+ """
5684
+
5685
+ :param context:
5686
+ """
5687
+
5688
+ @classmethod
5689
+ def poll(cls, context):
5690
+ """
5691
+
5692
+ :param context:
5693
+ """
5694
+
5661
5695
  class VIEW3D_PT_overlay_edit_mesh(bpy.types.Panel):
5662
5696
  bl_label: typing.Any
5663
5697
  bl_region_type: typing.Any
@@ -7090,3 +7124,4 @@ class VIEW3D_MT_bone_options_toggle(bpy.types.Menu, BoneOptions):
7090
7124
  """
7091
7125
 
7092
7126
  def draw_curve(self_, _context): ...
7127
+ def draw_topbar_grease_pencil_layer_panel(context, layout): ...
bpy/ops/anim/__init__.pyi CHANGED
@@ -893,18 +893,6 @@ def slot_new_for_id(
893
893
  :type undo: bool | None
894
894
  """
895
895
 
896
- def slot_new_for_object(
897
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
898
- execution_context: int | str | None = None,
899
- undo: bool | None = None,
900
- ):
901
- """Create a new Slot for this object, on the Action already assigned to it
902
-
903
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
904
- :type execution_context: int | str | None
905
- :type undo: bool | None
906
- """
907
-
908
896
  def slot_unassign_from_constraint(
909
897
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
910
898
  execution_context: int | str | None = None,