fake-bpy-module 20241003__py3-none-any.whl → 20241008__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/properties_object/__init__.pyi +149 -0
- bl_ui/properties_paint_common/__init__.pyi +43 -0
- 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 +45 -721
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- 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/node/__init__.pyi +24 -24
- bpy/ops/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +13 -357
- bpy/types/__init__.pyi +126 -250
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/RECORD +22 -22
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.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/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(
|