fake-bpy-module 20251001__py3-none-any.whl → 20251003__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.

@@ -371,6 +371,13 @@ class ClearUselessActions(_bpy_types.Operator):
371
371
  :param _context:
372
372
  """
373
373
 
374
+ @staticmethod
375
+ def has_fcurves(action) -> None:
376
+ """
377
+
378
+ :param action:
379
+ """
380
+
374
381
  @classmethod
375
382
  def poll(cls, _context) -> None:
376
383
  """
@@ -83,10 +83,10 @@ class NODE_MT_compositor_node_color_base(bl_ui.node_add_menu.NodeMenu):
83
83
  :rtype: typing.Any
84
84
  """
85
85
 
86
- def draw(self, _context) -> None:
86
+ def draw(self, context) -> None:
87
87
  """
88
88
 
89
- :param _context:
89
+ :param context:
90
90
  """
91
91
 
92
92
  class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
@@ -117,6 +117,33 @@ class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
117
117
  :param context:
118
118
  """
119
119
 
120
+ class NODE_MT_compositor_node_creative_base(bl_ui.node_add_menu.NodeMenu):
121
+ """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
122
+
123
+ bl_label: typing.Any
124
+ bl_rna: typing.Any
125
+ id_data: typing.Any
126
+
127
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
128
+ """
129
+
130
+ :return: The RNA type or default when not found.
131
+ :rtype: bpy.types.Struct
132
+ """
133
+
134
+ def bl_rna_get_subclass_py(self) -> typing.Any:
135
+ """
136
+
137
+ :return: The class or default when not found.
138
+ :rtype: typing.Any
139
+ """
140
+
141
+ def draw(self, _context) -> None:
142
+ """
143
+
144
+ :param _context:
145
+ """
146
+
120
147
  class NODE_MT_compositor_node_filter_base(bl_ui.node_add_menu.NodeMenu):
121
148
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
122
149
 
@@ -309,6 +336,34 @@ class NODE_MT_compositor_node_mask_base(bl_ui.node_add_menu.NodeMenu):
309
336
  :param _context:
310
337
  """
311
338
 
339
+ class NODE_MT_compositor_node_math_base(bl_ui.node_add_menu.NodeMenu):
340
+ """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
341
+
342
+ bl_label: typing.Any
343
+ bl_rna: typing.Any
344
+ id_data: typing.Any
345
+ menu_path: typing.Any
346
+
347
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
348
+ """
349
+
350
+ :return: The RNA type or default when not found.
351
+ :rtype: bpy.types.Struct
352
+ """
353
+
354
+ def bl_rna_get_subclass_py(self) -> typing.Any:
355
+ """
356
+
357
+ :return: The class or default when not found.
358
+ :rtype: typing.Any
359
+ """
360
+
361
+ def draw(self, context) -> None:
362
+ """
363
+
364
+ :param context:
365
+ """
366
+
312
367
  class NODE_MT_compositor_node_output_base(bl_ui.node_add_menu.NodeMenu):
313
368
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
314
369
 
@@ -451,6 +506,7 @@ class NODE_MT_compositor_node_vector_base(bl_ui.node_add_menu.NodeMenu):
451
506
  bl_label: typing.Any
452
507
  bl_rna: typing.Any
453
508
  id_data: typing.Any
509
+ menu_path: typing.Any
454
510
 
455
511
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
456
512
  """
@@ -116,6 +116,33 @@ class NODE_MT_gn_attribute_base(bl_ui.node_add_menu.NodeMenu):
116
116
  :param _context:
117
117
  """
118
118
 
119
+ class NODE_MT_gn_color_base(bl_ui.node_add_menu.NodeMenu):
120
+ """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
121
+
122
+ bl_label: typing.Any
123
+ bl_rna: typing.Any
124
+ id_data: typing.Any
125
+
126
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
127
+ """
128
+
129
+ :return: The RNA type or default when not found.
130
+ :rtype: bpy.types.Struct
131
+ """
132
+
133
+ def bl_rna_get_subclass_py(self) -> typing.Any:
134
+ """
135
+
136
+ :return: The class or default when not found.
137
+ :rtype: typing.Any
138
+ """
139
+
140
+ def draw(self, context) -> None:
141
+ """
142
+
143
+ :param context:
144
+ """
145
+
119
146
  class NODE_MT_gn_curve_base(bl_ui.node_add_menu.NodeMenu):
120
147
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
121
148
 
@@ -762,6 +789,7 @@ class NODE_MT_gn_material_base(bl_ui.node_add_menu.NodeMenu):
762
789
  bl_label: typing.Any
763
790
  bl_rna: typing.Any
764
791
  id_data: typing.Any
792
+ menu_path: typing.Any
765
793
 
766
794
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
767
795
  """
@@ -1141,34 +1169,6 @@ class NODE_MT_gn_utilities_base(bl_ui.node_add_menu.NodeMenu):
1141
1169
  :param context:
1142
1170
  """
1143
1171
 
1144
- class NODE_MT_gn_utilities_color_base(bl_ui.node_add_menu.NodeMenu):
1145
- """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
1146
-
1147
- bl_label: typing.Any
1148
- bl_rna: typing.Any
1149
- id_data: typing.Any
1150
- menu_path: typing.Any
1151
-
1152
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
1153
- """
1154
-
1155
- :return: The RNA type or default when not found.
1156
- :rtype: bpy.types.Struct
1157
- """
1158
-
1159
- def bl_rna_get_subclass_py(self) -> typing.Any:
1160
- """
1161
-
1162
- :return: The class or default when not found.
1163
- :rtype: typing.Any
1164
- """
1165
-
1166
- def draw(self, context) -> None:
1167
- """
1168
-
1169
- :param context:
1170
- """
1171
-
1172
1172
  class NODE_MT_gn_utilities_deprecated_base(bl_ui.node_add_menu.NodeMenu):
1173
1173
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
1174
1174
 
@@ -61,7 +61,7 @@ class NODE_MT_shader_node_color_base(bl_ui.node_add_menu.NodeMenu):
61
61
  :param context:
62
62
  """
63
63
 
64
- class NODE_MT_shader_node_converter_base(bl_ui.node_add_menu.NodeMenu):
64
+ class NODE_MT_shader_node_displacement_base(bl_ui.node_add_menu.NodeMenu):
65
65
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
66
66
 
67
67
  bl_label: typing.Any
@@ -82,10 +82,10 @@ class NODE_MT_shader_node_converter_base(bl_ui.node_add_menu.NodeMenu):
82
82
  :rtype: typing.Any
83
83
  """
84
84
 
85
- def draw(self, context) -> None:
85
+ def draw(self, _context) -> None:
86
86
  """
87
87
 
88
- :param context:
88
+ :param _context:
89
89
  """
90
90
 
91
91
  class NODE_MT_shader_node_input_base(bl_ui.node_add_menu.NodeMenu):
@@ -115,12 +115,13 @@ class NODE_MT_shader_node_input_base(bl_ui.node_add_menu.NodeMenu):
115
115
  :param context:
116
116
  """
117
117
 
118
- class NODE_MT_shader_node_output_base(bl_ui.node_add_menu.NodeMenu):
118
+ class NODE_MT_shader_node_math_base(bl_ui.node_add_menu.NodeMenu):
119
119
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
120
120
 
121
121
  bl_label: typing.Any
122
122
  bl_rna: typing.Any
123
123
  id_data: typing.Any
124
+ menu_path: typing.Any
124
125
 
125
126
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
126
127
  """
@@ -142,7 +143,7 @@ class NODE_MT_shader_node_output_base(bl_ui.node_add_menu.NodeMenu):
142
143
  :param context:
143
144
  """
144
145
 
145
- class NODE_MT_shader_node_script_base(bl_ui.node_add_menu.NodeMenu):
146
+ class NODE_MT_shader_node_output_base(bl_ui.node_add_menu.NodeMenu):
146
147
  """A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
147
148
 
148
149
  bl_label: typing.Any
@@ -163,10 +164,10 @@ class NODE_MT_shader_node_script_base(bl_ui.node_add_menu.NodeMenu):
163
164
  :rtype: typing.Any
164
165
  """
165
166
 
166
- def draw(self, _context) -> None:
167
+ def draw(self, context) -> None:
167
168
  """
168
169
 
169
- :param _context:
170
+ :param context:
170
171
  """
171
172
 
172
173
  class NODE_MT_shader_node_shader_base(bl_ui.node_add_menu.NodeMenu):
@@ -256,6 +257,7 @@ class NODE_MT_shader_node_vector_base(bl_ui.node_add_menu.NodeMenu):
256
257
  bl_label: typing.Any
257
258
  bl_rna: typing.Any
258
259
  id_data: typing.Any
260
+ menu_path: typing.Any
259
261
 
260
262
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
261
263
  """
@@ -271,10 +273,10 @@ class NODE_MT_shader_node_vector_base(bl_ui.node_add_menu.NodeMenu):
271
273
  :rtype: typing.Any
272
274
  """
273
275
 
274
- def draw(self, _context) -> None:
276
+ def draw(self, context) -> None:
275
277
  """
276
278
 
277
- :param _context:
279
+ :param context:
278
280
  """
279
281
 
280
282
  def cycles_shader_nodes_poll(context) -> None: ...
@@ -96,7 +96,6 @@ class UnifiedPaintPanel:
96
96
  unified_name=None,
97
97
  pressure_name=None,
98
98
  curve_visibility_name=None,
99
- icon="NONE",
100
99
  text=None,
101
100
  slider=False,
102
101
  header=False,
@@ -113,7 +112,6 @@ class UnifiedPaintPanel:
113
112
  :param unified_name:
114
113
  :param pressure_name:
115
114
  :param curve_visibility_name:
116
- :param icon:
117
115
  :param text:
118
116
  :param slider:
119
117
  :param header:
@@ -344,9 +342,6 @@ class TextureMaskPanel(BrushPanel):
344
342
  """
345
343
 
346
344
  def brush_basic__draw_color_selector(context, layout, brush, gp_settings) -> None: ...
347
- def brush_basic_gpencil_vertex_settings(
348
- layout, context, brush, *, compact=False
349
- ) -> None: ...
350
345
  def brush_basic_grease_pencil_paint_settings(
351
346
  layout, context, brush, props, *, compact=False
352
347
  ) -> None: ...
@@ -813,41 +813,7 @@ class NODE_PT_node_tree_animation(_bpy_types.Panel):
813
813
  bl_category: typing.Any
814
814
  bl_label: typing.Any
815
815
  bl_options: typing.Any
816
- bl_region_type: typing.Any
817
- bl_rna: typing.Any
818
- bl_space_type: typing.Any
819
- id_data: typing.Any
820
-
821
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
822
- """
823
-
824
- :return: The RNA type or default when not found.
825
- :rtype: bpy.types.Struct
826
- """
827
-
828
- def bl_rna_get_subclass_py(self) -> typing.Any:
829
- """
830
-
831
- :return: The class or default when not found.
832
- :rtype: typing.Any
833
- """
834
-
835
- def draw(self, context) -> None:
836
- """
837
-
838
- :param context:
839
- """
840
-
841
- @classmethod
842
- def poll(cls, context) -> None:
843
- """
844
-
845
- :param context:
846
- """
847
-
848
- class NODE_PT_node_tree_interface(_bpy_types.Panel):
849
- bl_category: typing.Any
850
- bl_label: typing.Any
816
+ bl_order: typing.Any
851
817
  bl_region_type: typing.Any
852
818
  bl_rna: typing.Any
853
819
  bl_space_type: typing.Any
@@ -883,6 +849,7 @@ class NODE_PT_node_tree_interface(_bpy_types.Panel):
883
849
  class NODE_PT_node_tree_properties(_bpy_types.Panel):
884
850
  bl_category: typing.Any
885
851
  bl_label: typing.Any
852
+ bl_order: typing.Any
886
853
  bl_region_type: typing.Any
887
854
  bl_rna: typing.Any
888
855
  bl_space_type: typing.Any
@@ -5,82 +5,6 @@ import numpy.typing as npt
5
5
  import _bpy_types
6
6
  import bpy.types
7
7
 
8
- class TIME_MT_editor_menus(_bpy_types.Menu):
9
- bl_idname: typing.Any
10
- bl_label: typing.Any
11
- bl_rna: typing.Any
12
- id_data: typing.Any
13
-
14
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
15
- """
16
-
17
- :return: The RNA type or default when not found.
18
- :rtype: bpy.types.Struct
19
- """
20
-
21
- def bl_rna_get_subclass_py(self) -> typing.Any:
22
- """
23
-
24
- :return: The class or default when not found.
25
- :rtype: typing.Any
26
- """
27
-
28
- def draw(self, context) -> None:
29
- """
30
-
31
- :param context:
32
- """
33
-
34
- class TIME_MT_marker(_bpy_types.Menu):
35
- bl_label: typing.Any
36
- bl_rna: typing.Any
37
- id_data: typing.Any
38
-
39
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
40
- """
41
-
42
- :return: The RNA type or default when not found.
43
- :rtype: bpy.types.Struct
44
- """
45
-
46
- def bl_rna_get_subclass_py(self) -> typing.Any:
47
- """
48
-
49
- :return: The class or default when not found.
50
- :rtype: typing.Any
51
- """
52
-
53
- def draw(self, context) -> None:
54
- """
55
-
56
- :param context:
57
- """
58
-
59
- class TIME_MT_view(_bpy_types.Menu):
60
- bl_label: typing.Any
61
- bl_rna: typing.Any
62
- id_data: typing.Any
63
-
64
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
65
- """
66
-
67
- :return: The RNA type or default when not found.
68
- :rtype: bpy.types.Struct
69
- """
70
-
71
- def bl_rna_get_subclass_py(self) -> typing.Any:
72
- """
73
-
74
- :return: The class or default when not found.
75
- :rtype: typing.Any
76
- """
77
-
78
- def draw(self, context) -> None:
79
- """
80
-
81
- :param context:
82
- """
83
-
84
8
  class TIME_PT_auto_keyframing(TimelinePanelButtons, _bpy_types.Panel):
85
9
  bl_label: typing.Any
86
10
  bl_options: typing.Any