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.

@@ -54,6 +54,14 @@ class BrushAssetShelf:
54
54
  :param context:
55
55
  """
56
56
 
57
+ @classmethod
58
+ def has_tool_with_brush_type(cls, context, brush_type):
59
+ """
60
+
61
+ :param context:
62
+ :param brush_type:
63
+ """
64
+
57
65
  @classmethod
58
66
  def poll(cls, context):
59
67
  """
@@ -152,6 +160,41 @@ class VIEW3D_MT_tools_projectpaint_clone(bpy.types.Menu):
152
160
  :param context:
153
161
  """
154
162
 
163
+ class VIEW3D_PT_brush_asset_shelf_filter(bpy.types.Panel):
164
+ bl_label: typing.Any
165
+ bl_parent_id: typing.Any
166
+ bl_region_type: typing.Any
167
+ bl_rna: typing.Any
168
+ bl_space_type: typing.Any
169
+ id_data: typing.Any
170
+
171
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
172
+ """
173
+
174
+ :return: The RNA type or default when not found.
175
+ :rtype: bpy.types.Struct
176
+ """
177
+
178
+ def bl_rna_get_subclass_py(self) -> typing.Any:
179
+ """
180
+
181
+ :return: The class or default when not found.
182
+ :rtype: typing.Any
183
+ """
184
+
185
+ def draw(self, context):
186
+ """
187
+
188
+ :param context:
189
+ """
190
+
191
+ @classmethod
192
+ def poll(cls, context):
193
+ """
194
+
195
+ :param context:
196
+ """
197
+
155
198
  class BrushPanel(UnifiedPaintPanel):
156
199
  @classmethod
157
200
  def poll(cls, context):
@@ -2,7 +2,6 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import bl_ui.properties_data_grease_pencil
5
- import bl_ui.properties_grease_pencil_common
6
5
  import bpy.types
7
6
  import rna_prop_ui
8
7
 
@@ -216,31 +215,6 @@ class DOPESHEET_MT_gpencil_channel(bpy.types.Menu):
216
215
  :param _context:
217
216
  """
218
217
 
219
- class DOPESHEET_MT_gpencil_key(bpy.types.Menu):
220
- bl_label: typing.Any
221
- bl_rna: typing.Any
222
- id_data: typing.Any
223
-
224
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
225
- """
226
-
227
- :return: The RNA type or default when not found.
228
- :rtype: bpy.types.Struct
229
- """
230
-
231
- def bl_rna_get_subclass_py(self) -> typing.Any:
232
- """
233
-
234
- :return: The class or default when not found.
235
- :rtype: typing.Any
236
- """
237
-
238
- def draw(self, _context):
239
- """
240
-
241
- :param _context:
242
- """
243
-
244
218
  class DOPESHEET_MT_key(bpy.types.Menu):
245
219
  bl_label: typing.Any
246
220
  bl_rna: typing.Any
@@ -549,174 +523,6 @@ class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy.types.Panel):
549
523
  :param context:
550
524
  """
551
525
 
552
- class DOPESHEET_PT_gpencil_layer_adjustments(
553
- bl_ui.properties_grease_pencil_common.GreasePencilLayerAdjustmentsPanel,
554
- LayersDopeSheetPanel,
555
- bpy.types.Panel,
556
- ):
557
- bl_category: typing.Any
558
- bl_label: typing.Any
559
- bl_options: typing.Any
560
- bl_parent_id: typing.Any
561
- bl_region_type: typing.Any
562
- bl_rna: typing.Any
563
- bl_space_type: typing.Any
564
- id_data: typing.Any
565
-
566
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
567
- """
568
-
569
- :return: The RNA type or default when not found.
570
- :rtype: bpy.types.Struct
571
- """
572
-
573
- def bl_rna_get_subclass_py(self) -> typing.Any:
574
- """
575
-
576
- :return: The class or default when not found.
577
- :rtype: typing.Any
578
- """
579
-
580
- class DOPESHEET_PT_gpencil_layer_display(
581
- bl_ui.properties_grease_pencil_common.GreasePencilLayerDisplayPanel,
582
- LayersDopeSheetPanel,
583
- bpy.types.Panel,
584
- ):
585
- bl_category: typing.Any
586
- bl_label: typing.Any
587
- bl_options: typing.Any
588
- bl_parent_id: typing.Any
589
- bl_region_type: typing.Any
590
- bl_rna: typing.Any
591
- bl_space_type: typing.Any
592
- id_data: typing.Any
593
-
594
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
595
- """
596
-
597
- :return: The RNA type or default when not found.
598
- :rtype: bpy.types.Struct
599
- """
600
-
601
- def bl_rna_get_subclass_py(self) -> typing.Any:
602
- """
603
-
604
- :return: The class or default when not found.
605
- :rtype: typing.Any
606
- """
607
-
608
- class DOPESHEET_PT_gpencil_layer_masks(
609
- bl_ui.properties_grease_pencil_common.GreasePencilLayerMasksPanel,
610
- LayersDopeSheetPanel,
611
- bpy.types.Panel,
612
- ):
613
- bl_category: typing.Any
614
- bl_label: typing.Any
615
- bl_options: typing.Any
616
- bl_parent_id: typing.Any
617
- bl_region_type: typing.Any
618
- bl_rna: typing.Any
619
- bl_space_type: typing.Any
620
- id_data: typing.Any
621
-
622
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
623
- """
624
-
625
- :return: The RNA type or default when not found.
626
- :rtype: bpy.types.Struct
627
- """
628
-
629
- def bl_rna_get_subclass_py(self) -> typing.Any:
630
- """
631
-
632
- :return: The class or default when not found.
633
- :rtype: typing.Any
634
- """
635
-
636
- class DOPESHEET_PT_gpencil_layer_relations(
637
- bl_ui.properties_grease_pencil_common.GreasePencilLayerRelationsPanel,
638
- LayersDopeSheetPanel,
639
- bpy.types.Panel,
640
- ):
641
- bl_category: typing.Any
642
- bl_label: typing.Any
643
- bl_options: typing.Any
644
- bl_parent_id: typing.Any
645
- bl_region_type: typing.Any
646
- bl_rna: typing.Any
647
- bl_space_type: typing.Any
648
- id_data: typing.Any
649
-
650
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
651
- """
652
-
653
- :return: The RNA type or default when not found.
654
- :rtype: bpy.types.Struct
655
- """
656
-
657
- def bl_rna_get_subclass_py(self) -> typing.Any:
658
- """
659
-
660
- :return: The class or default when not found.
661
- :rtype: typing.Any
662
- """
663
-
664
- class DOPESHEET_PT_gpencil_layer_transform(
665
- bl_ui.properties_grease_pencil_common.GreasePencilLayerTransformPanel,
666
- LayersDopeSheetPanel,
667
- bpy.types.Panel,
668
- ):
669
- bl_category: typing.Any
670
- bl_label: typing.Any
671
- bl_options: typing.Any
672
- bl_parent_id: typing.Any
673
- bl_region_type: typing.Any
674
- bl_rna: typing.Any
675
- bl_space_type: typing.Any
676
- id_data: typing.Any
677
-
678
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
679
- """
680
-
681
- :return: The RNA type or default when not found.
682
- :rtype: bpy.types.Struct
683
- """
684
-
685
- def bl_rna_get_subclass_py(self) -> typing.Any:
686
- """
687
-
688
- :return: The class or default when not found.
689
- :rtype: typing.Any
690
- """
691
-
692
- class DOPESHEET_PT_gpencil_mode(LayersDopeSheetPanel, bpy.types.Panel):
693
- bl_category: typing.Any
694
- bl_label: typing.Any
695
- bl_region_type: typing.Any
696
- bl_rna: typing.Any
697
- bl_space_type: typing.Any
698
- id_data: typing.Any
699
-
700
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
701
- """
702
-
703
- :return: The RNA type or default when not found.
704
- :rtype: bpy.types.Struct
705
- """
706
-
707
- def bl_rna_get_subclass_py(self) -> typing.Any:
708
- """
709
-
710
- :return: The class or default when not found.
711
- :rtype: typing.Any
712
- """
713
-
714
- def draw(self, context):
715
- """
716
-
717
- :param context:
718
- """
719
-
720
526
  class DOPESHEET_PT_grease_pencil_layer_masks(
721
527
  bl_ui.properties_data_grease_pencil.GreasePencil_LayerMaskPanel,
722
528
  GreasePencilLayersDopeSheetPanel,
@@ -166,62 +166,6 @@ class _defs_edit_mesh:
166
166
  class _defs_edit_text:
167
167
  select_text: typing.Any
168
168
 
169
- class _defs_gpencil_edit:
170
- bend: typing.Any
171
- box_select: typing.Any
172
- circle_select: typing.Any
173
- extrude: typing.Any
174
- interpolate: typing.Any
175
- lasso_select: typing.Any
176
- radius: typing.Any
177
- select: typing.Any
178
- shear: typing.Any
179
- tosphere: typing.Any
180
- transform_fill: typing.Any
181
-
182
- def is_segment(self, context):
183
- """
184
-
185
- :param context:
186
- """
187
-
188
- class _defs_gpencil_paint:
189
- arc: typing.Any
190
- box: typing.Any
191
- circle: typing.Any
192
- curve: typing.Any
193
- cutter: typing.Any
194
- eyedropper: typing.Any
195
- interpolate: typing.Any
196
- line: typing.Any
197
- polyline: typing.Any
198
-
199
- @staticmethod
200
- def gpencil_primitive_toolbar(context, layout, _tool, props):
201
- """
202
-
203
- :param context:
204
- :param layout:
205
- :param _tool:
206
- :param props:
207
- """
208
-
209
- class _defs_gpencil_sculpt:
210
- @staticmethod
211
- def poll_select_mask(context):
212
- """
213
-
214
- :param context:
215
- """
216
-
217
- class _defs_gpencil_vertex:
218
- @staticmethod
219
- def poll_select_mask(context):
220
- """
221
-
222
- :param context:
223
- """
224
-
225
169
  class _defs_gpencil_weight: ...
226
170
 
227
171
  class _defs_grease_pencil_edit:
@@ -520,49 +520,6 @@ class TOPBAR_MT_workspace_menu(bpy.types.Menu):
520
520
  :param _context:
521
521
  """
522
522
 
523
- class TOPBAR_PT_gpencil_layers(bpy.types.Panel):
524
- bl_label: typing.Any
525
- bl_region_type: typing.Any
526
- bl_rna: typing.Any
527
- bl_space_type: typing.Any
528
- bl_ui_units_x: typing.Any
529
- id_data: typing.Any
530
-
531
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
532
- """
533
-
534
- :return: The RNA type or default when not found.
535
- :rtype: bpy.types.Struct
536
- """
537
-
538
- def bl_rna_get_subclass_py(self) -> typing.Any:
539
- """
540
-
541
- :return: The class or default when not found.
542
- :rtype: typing.Any
543
- """
544
-
545
- def draw(self, context):
546
- """
547
-
548
- :param context:
549
- """
550
-
551
- def draw_layers(self, context, layout, gpd):
552
- """
553
-
554
- :param context:
555
- :param layout:
556
- :param gpd:
557
- """
558
-
559
- @classmethod
560
- def poll(cls, context):
561
- """
562
-
563
- :param context:
564
- """
565
-
566
523
  class TOPBAR_PT_gpencil_primitive(bpy.types.Panel):
567
524
  bl_label: typing.Any
568
525
  bl_region_type: typing.Any