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.
- bpy/ops/grease_pencil/__init__.pyi +18 -0
- bpy/types/__init__.pyi +29114 -29108
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240803.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240803.dist-info}/RECORD +7 -7
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240803.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240803.dist-info}/top_level.txt +0 -0
|
@@ -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,
|