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.

@@ -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, LayerDataButtonsPanel, bpy_types._GenericUI
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, LayerDataButtonsPanel, bpy_types._GenericUI
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, LayerDataButtonsPanel, bpy_types._GenericUI
2076
+ bpy_types.Panel,
2077
+ LayerDataButtonsPanel,
2078
+ GreasePencil_LayerTransformPanel,
2079
+ bpy_types._GenericUI,
2034
2080
  ):
2035
2081
  """ """
2036
2082