fake-bpy-module 20240428__py3-none-any.whl → 20240430__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_operators/geometry_nodes/__init__.pyi +10 -1880
- bl_ui/properties_data_grease_pencil/__init__.pyi +49 -3
- bl_ui/space_dopesheet/__init__.pyi +686 -0
- bl_ui/space_node/__init__.pyi +115 -1224
- bl_ui/space_toolsystem_toolbar/__init__.pyi +3 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/nla/__init__.pyi +1 -1
- bpy/ops/node/__init__.pyi +14 -14
- bpy/ops/paint/__init__.pyi +40 -0
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/ui/__init__.pyi +17 -0
- bpy/ops/wm/__init__.pyi +5 -5
- bpy/types/__init__.pyi +28141 -28314
- {fake_bpy_module-20240428.dist-info → fake_bpy_module-20240430.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240428.dist-info → fake_bpy_module-20240430.dist-info}/RECORD +17 -17
- {fake_bpy_module-20240428.dist-info → fake_bpy_module-20240430.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240428.dist-info → fake_bpy_module-20240430.dist-info}/top_level.txt +0 -0
|
@@ -42,6 +42,43 @@ class LayerDataButtonsPanel:
|
|
|
42
42
|
"""
|
|
43
43
|
...
|
|
44
44
|
|
|
45
|
+
class GreasePencil_LayerMaskPanel:
|
|
46
|
+
""" """
|
|
47
|
+
|
|
48
|
+
def draw(self, context):
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
:param context:
|
|
52
|
+
"""
|
|
53
|
+
...
|
|
54
|
+
|
|
55
|
+
def draw_header(self, context):
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
:param context:
|
|
59
|
+
"""
|
|
60
|
+
...
|
|
61
|
+
|
|
62
|
+
class GreasPencil_LayerRelationsPanel:
|
|
63
|
+
""" """
|
|
64
|
+
|
|
65
|
+
def draw(self, context):
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
:param context:
|
|
69
|
+
"""
|
|
70
|
+
...
|
|
71
|
+
|
|
72
|
+
class GreasePencil_LayerTransformPanel:
|
|
73
|
+
""" """
|
|
74
|
+
|
|
75
|
+
def draw(self, context):
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
:param context:
|
|
79
|
+
"""
|
|
80
|
+
...
|
|
81
|
+
|
|
45
82
|
class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(
|
|
46
83
|
bpy_types.Menu, bpy_types._GenericUI
|
|
47
84
|
):
|
|
@@ -1695,7 +1732,10 @@ class DATA_PT_grease_pencil_settings(
|
|
|
1695
1732
|
...
|
|
1696
1733
|
|
|
1697
1734
|
class DATA_PT_grease_pencil_layer_masks(
|
|
1698
|
-
bpy_types.Panel,
|
|
1735
|
+
bpy_types.Panel,
|
|
1736
|
+
LayerDataButtonsPanel,
|
|
1737
|
+
GreasePencil_LayerMaskPanel,
|
|
1738
|
+
bpy_types._GenericUI,
|
|
1699
1739
|
):
|
|
1700
1740
|
""" """
|
|
1701
1741
|
|
|
@@ -1866,7 +1906,10 @@ class DATA_PT_grease_pencil_layer_masks(
|
|
|
1866
1906
|
...
|
|
1867
1907
|
|
|
1868
1908
|
class DATA_PT_grease_pencil_layer_relations(
|
|
1869
|
-
bpy_types.Panel,
|
|
1909
|
+
bpy_types.Panel,
|
|
1910
|
+
LayerDataButtonsPanel,
|
|
1911
|
+
GreasPencil_LayerRelationsPanel,
|
|
1912
|
+
bpy_types._GenericUI,
|
|
1870
1913
|
):
|
|
1871
1914
|
""" """
|
|
1872
1915
|
|
|
@@ -2030,7 +2073,10 @@ class DATA_PT_grease_pencil_layer_relations(
|
|
|
2030
2073
|
...
|
|
2031
2074
|
|
|
2032
2075
|
class DATA_PT_grease_pencil_layer_transform(
|
|
2033
|
-
bpy_types.Panel,
|
|
2076
|
+
bpy_types.Panel,
|
|
2077
|
+
LayerDataButtonsPanel,
|
|
2078
|
+
GreasePencil_LayerTransformPanel,
|
|
2079
|
+
bpy_types._GenericUI,
|
|
2034
2080
|
):
|
|
2035
2081
|
""" """
|
|
2036
2082
|
|