fake-bpy-module 20241004__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.
- bl_ui/properties_data_gpencil/__init__.pyi +0 -256
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -220
- bl_ui/space_dopesheet/__init__.pyi +0 -194
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -56
- bl_ui/space_topbar/__init__.pyi +0 -43
- bl_ui/space_view3d/__init__.pyi +43 -718
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- bpy/ops/anim/__init__.pyi +0 -12
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/gpencil/__init__.pyi +9 -2857
- bpy/ops/grease_pencil/__init__.pyi +16 -0
- bpy/ops/mesh/__init__.pyi +25 -0
- bpy/ops/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +0 -357
- bpy/types/__init__.pyi +29827 -30071
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/RECORD +21 -21
- mathutils/__init__.pyi +13 -0
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/top_level.txt +0 -0
|
@@ -10,24 +10,10 @@ class GreasePencilPaintPanel:
|
|
|
10
10
|
bl_category: typing.Any
|
|
11
11
|
bl_context: typing.Any
|
|
12
12
|
|
|
13
|
-
@classmethod
|
|
14
|
-
def poll(cls, context):
|
|
15
|
-
"""
|
|
16
|
-
|
|
17
|
-
:param context:
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
13
|
class GreasePencilSculptPanel:
|
|
21
14
|
bl_category: typing.Any
|
|
22
15
|
bl_context: typing.Any
|
|
23
16
|
|
|
24
|
-
@classmethod
|
|
25
|
-
def poll(cls, context):
|
|
26
|
-
"""
|
|
27
|
-
|
|
28
|
-
:param context:
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
17
|
class GreasePencilV3PaintPanel:
|
|
32
18
|
bl_category: typing.Any
|
|
33
19
|
bl_context: typing.Any
|
|
@@ -43,24 +29,10 @@ class GreasePencilVertexPanel:
|
|
|
43
29
|
bl_category: typing.Any
|
|
44
30
|
bl_context: typing.Any
|
|
45
31
|
|
|
46
|
-
@classmethod
|
|
47
|
-
def poll(cls, context):
|
|
48
|
-
"""
|
|
49
|
-
|
|
50
|
-
:param context:
|
|
51
|
-
"""
|
|
52
|
-
|
|
53
32
|
class GreasePencilWeightPanel:
|
|
54
33
|
bl_category: typing.Any
|
|
55
34
|
bl_context: typing.Any
|
|
56
35
|
|
|
57
|
-
@classmethod
|
|
58
|
-
def poll(cls, context):
|
|
59
|
-
"""
|
|
60
|
-
|
|
61
|
-
:param context:
|
|
62
|
-
"""
|
|
63
|
-
|
|
64
36
|
class SelectPaintSlotHelper:
|
|
65
37
|
bl_region_type: typing.Any
|
|
66
38
|
bl_space_type: typing.Any
|
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,
|
bpy/ops/file/__init__.pyi
CHANGED
|
@@ -114,6 +114,7 @@ def directory_new(
|
|
|
114
114
|
*,
|
|
115
115
|
directory: str = "",
|
|
116
116
|
open: bool | None = False,
|
|
117
|
+
confirm: bool | None = True,
|
|
117
118
|
):
|
|
118
119
|
"""Create a new directory
|
|
119
120
|
|
|
@@ -124,6 +125,8 @@ def directory_new(
|
|
|
124
125
|
:type directory: str
|
|
125
126
|
:param open: Open, Open new directory
|
|
126
127
|
:type open: bool | None
|
|
128
|
+
:param confirm: Confirm, Prompt for confirmation
|
|
129
|
+
:type confirm: bool | None
|
|
127
130
|
"""
|
|
128
131
|
|
|
129
132
|
def edit_directory_path(
|