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

@@ -7,6 +7,24 @@ import bpy.types
7
7
  GenericType1 = typing.TypeVar("GenericType1")
8
8
  GenericType2 = typing.TypeVar("GenericType2")
9
9
 
10
+ def active_frame_delete(
11
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
12
+ execution_context: int | str | None = None,
13
+ undo: bool | None = None,
14
+ *,
15
+ all: bool | None = False,
16
+ ):
17
+ """Delete the active Grease Pencil frame(s)
18
+
19
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
20
+ :type execution_context: int | str | None
21
+ :type undo: bool | None
22
+ :param all: Delete all, Delete active keyframes of all layer
23
+ :type all: bool | None
24
+ """
25
+
26
+ ...
27
+
10
28
  def brush_stroke(
11
29
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
12
30
  execution_context: int | str | None = None,