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

@@ -31,6 +31,56 @@ class COLLECTION_MT_context_menu(bpy.types.Menu):
31
31
  :param _context:
32
32
  """
33
33
 
34
+ class OBJECT_MT_light_linking_context_menu(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):
54
+ """
55
+
56
+ :param _context:
57
+ """
58
+
59
+ class OBJECT_MT_shadow_linking_context_menu(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):
79
+ """
80
+
81
+ :param _context:
82
+ """
83
+
34
84
  class OBJECT_PT_animation(
35
85
  rna_prop_ui.PropertyPanel,
36
86
  ObjectButtonsPanel,
@@ -291,6 +341,36 @@ class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy.types.Panel):
291
341
  :param context:
292
342
  """
293
343
 
344
+ class OBJECT_PT_light_linking(ObjectButtonsPanel, bpy.types.Panel):
345
+ bl_context: typing.Any
346
+ bl_label: typing.Any
347
+ bl_options: typing.Any
348
+ bl_parent_id: typing.Any
349
+ bl_region_type: typing.Any
350
+ bl_rna: typing.Any
351
+ bl_space_type: typing.Any
352
+ id_data: typing.Any
353
+
354
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
355
+ """
356
+
357
+ :return: The RNA type or default when not found.
358
+ :rtype: bpy.types.Struct
359
+ """
360
+
361
+ def bl_rna_get_subclass_py(self) -> typing.Any:
362
+ """
363
+
364
+ :return: The class or default when not found.
365
+ :rtype: typing.Any
366
+ """
367
+
368
+ def draw(self, context):
369
+ """
370
+
371
+ :param context:
372
+ """
373
+
294
374
  class OBJECT_PT_lineart(ObjectButtonsPanel, bpy.types.Panel):
295
375
  bl_context: typing.Any
296
376
  bl_label: typing.Any
@@ -434,6 +514,73 @@ class OBJECT_PT_relations(ObjectButtonsPanel, bpy.types.Panel):
434
514
  :param context:
435
515
  """
436
516
 
517
+ class OBJECT_PT_shading(ObjectButtonsPanel, bpy.types.Panel):
518
+ COMPAT_ENGINES: typing.Any
519
+ bl_context: typing.Any
520
+ bl_label: typing.Any
521
+ bl_options: typing.Any
522
+ bl_region_type: typing.Any
523
+ bl_rna: typing.Any
524
+ bl_space_type: typing.Any
525
+ id_data: typing.Any
526
+
527
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
528
+ """
529
+
530
+ :return: The RNA type or default when not found.
531
+ :rtype: bpy.types.Struct
532
+ """
533
+
534
+ def bl_rna_get_subclass_py(self) -> typing.Any:
535
+ """
536
+
537
+ :return: The class or default when not found.
538
+ :rtype: typing.Any
539
+ """
540
+
541
+ def draw(self, context):
542
+ """
543
+
544
+ :param context:
545
+ """
546
+
547
+ @classmethod
548
+ def poll(cls, context):
549
+ """
550
+
551
+ :param context:
552
+ """
553
+
554
+ class OBJECT_PT_shadow_linking(ObjectButtonsPanel, bpy.types.Panel):
555
+ bl_context: typing.Any
556
+ bl_label: typing.Any
557
+ bl_options: typing.Any
558
+ bl_parent_id: typing.Any
559
+ bl_region_type: typing.Any
560
+ bl_rna: typing.Any
561
+ bl_space_type: typing.Any
562
+ id_data: typing.Any
563
+
564
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
565
+ """
566
+
567
+ :return: The RNA type or default when not found.
568
+ :rtype: bpy.types.Struct
569
+ """
570
+
571
+ def bl_rna_get_subclass_py(self) -> typing.Any:
572
+ """
573
+
574
+ :return: The class or default when not found.
575
+ :rtype: typing.Any
576
+ """
577
+
578
+ def draw(self, context):
579
+ """
580
+
581
+ :param context:
582
+ """
583
+
437
584
  class OBJECT_PT_transform(ObjectButtonsPanel, bpy.types.Panel):
438
585
  bl_context: typing.Any
439
586
  bl_label: typing.Any
@@ -503,3 +650,5 @@ class ObjectButtonsPanel:
503
650
  bl_context: typing.Any
504
651
  bl_region_type: typing.Any
505
652
  bl_space_type: typing.Any
653
+
654
+ def has_geometry_visibility(ob): ...
@@ -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):
@@ -2884,6 +2884,12 @@ class VIEW3D_MT_make_links(bpy.types.Menu):
2884
2884
  :rtype: typing.Any
2885
2885
  """
2886
2886
 
2887
+ def draw(self, _context):
2888
+ """
2889
+
2890
+ :param _context:
2891
+ """
2892
+
2887
2893
  class VIEW3D_MT_make_single_user(bpy.types.Menu):
2888
2894
  bl_label: typing.Any
2889
2895
  bl_rna: typing.Any
@@ -6131,6 +6137,34 @@ class VIEW3D_PT_greasepencil_vertex_paint_context_menu(bpy.types.Panel):
6131
6137
  :param context:
6132
6138
  """
6133
6139
 
6140
+ class VIEW3D_PT_greasepencil_weight_context_menu(bpy.types.Panel):
6141
+ bl_label: typing.Any
6142
+ bl_region_type: typing.Any
6143
+ bl_rna: typing.Any
6144
+ bl_space_type: typing.Any
6145
+ bl_ui_units_x: typing.Any
6146
+ id_data: typing.Any
6147
+
6148
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
6149
+ """
6150
+
6151
+ :return: The RNA type or default when not found.
6152
+ :rtype: bpy.types.Struct
6153
+ """
6154
+
6155
+ def bl_rna_get_subclass_py(self) -> typing.Any:
6156
+ """
6157
+
6158
+ :return: The class or default when not found.
6159
+ :rtype: typing.Any
6160
+ """
6161
+
6162
+ def draw(self, context):
6163
+ """
6164
+
6165
+ :param context:
6166
+ """
6167
+
6134
6168
  class VIEW3D_PT_object_type_visibility(bpy.types.Panel):
6135
6169
  bl_label: typing.Any
6136
6170
  bl_region_type: typing.Any
bpy/ops/node/__init__.pyi CHANGED
@@ -447,7 +447,7 @@ def bake_node_item_add(
447
447
  execution_context: int | str | None = None,
448
448
  undo: bool | None = None,
449
449
  ):
450
- """Add bake item
450
+ """Add item below active item
451
451
 
452
452
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
453
453
  :type execution_context: int | str | None
@@ -461,7 +461,7 @@ def bake_node_item_move(
461
461
  *,
462
462
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
463
463
  ):
464
- """Move active bake item
464
+ """Move active item
465
465
 
466
466
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
467
467
  :type execution_context: int | str | None
@@ -475,7 +475,7 @@ def bake_node_item_remove(
475
475
  execution_context: int | str | None = None,
476
476
  undo: bool | None = None,
477
477
  ):
478
- """Remove active bake item
478
+ """Remove active item
479
479
 
480
480
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
481
481
  :type execution_context: int | str | None
@@ -487,7 +487,7 @@ def capture_attribute_item_add(
487
487
  execution_context: int | str | None = None,
488
488
  undo: bool | None = None,
489
489
  ):
490
- """Add capture attribute item
490
+ """Add item below active item
491
491
 
492
492
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
493
493
  :type execution_context: int | str | None
@@ -501,7 +501,7 @@ def capture_attribute_item_move(
501
501
  *,
502
502
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
503
503
  ):
504
- """Move active capture attribute item
504
+ """Move active item
505
505
 
506
506
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
507
507
  :type execution_context: int | str | None
@@ -515,7 +515,7 @@ def capture_attribute_item_remove(
515
515
  execution_context: int | str | None = None,
516
516
  undo: bool | None = None,
517
517
  ):
518
- """Remove active capture attribute item
518
+ """Remove active item
519
519
 
520
520
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
521
521
  :type execution_context: int | str | None
@@ -777,7 +777,7 @@ def enum_definition_item_add(
777
777
  execution_context: int | str | None = None,
778
778
  undo: bool | None = None,
779
779
  ):
780
- """Add menu item
780
+ """Add item below active item
781
781
 
782
782
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
783
783
  :type execution_context: int | str | None
@@ -791,7 +791,7 @@ def enum_definition_item_move(
791
791
  *,
792
792
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
793
793
  ):
794
- """Move active menu item
794
+ """Move active item
795
795
 
796
796
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
797
797
  :type execution_context: int | str | None
@@ -805,7 +805,7 @@ def enum_definition_item_remove(
805
805
  execution_context: int | str | None = None,
806
806
  undo: bool | None = None,
807
807
  ):
808
- """Remove active menu item
808
+ """Remove active item
809
809
 
810
810
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
811
811
  :type execution_context: int | str | None
@@ -829,7 +829,7 @@ def foreach_geometry_element_zone_generation_item_add(
829
829
  execution_context: int | str | None = None,
830
830
  undo: bool | None = None,
831
831
  ):
832
- """Add for-each generation item
832
+ """Add item below active item
833
833
 
834
834
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
835
835
  :type execution_context: int | str | None
@@ -843,7 +843,7 @@ def foreach_geometry_element_zone_generation_item_move(
843
843
  *,
844
844
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
845
845
  ):
846
- """Move active for-each generation item
846
+ """Move active item
847
847
 
848
848
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
849
849
  :type execution_context: int | str | None
@@ -857,7 +857,7 @@ def foreach_geometry_element_zone_generation_item_remove(
857
857
  execution_context: int | str | None = None,
858
858
  undo: bool | None = None,
859
859
  ):
860
- """Remove active for-each generation item
860
+ """Remove active item
861
861
 
862
862
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
863
863
  :type execution_context: int | str | None
@@ -869,7 +869,7 @@ def foreach_geometry_element_zone_input_item_add(
869
869
  execution_context: int | str | None = None,
870
870
  undo: bool | None = None,
871
871
  ):
872
- """Add for-each input item
872
+ """Add item below active item
873
873
 
874
874
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
875
875
  :type execution_context: int | str | None
@@ -883,7 +883,7 @@ def foreach_geometry_element_zone_input_item_move(
883
883
  *,
884
884
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
885
885
  ):
886
- """Move active for-each input item
886
+ """Move active item
887
887
 
888
888
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
889
889
  :type execution_context: int | str | None
@@ -897,7 +897,7 @@ def foreach_geometry_element_zone_input_item_remove(
897
897
  execution_context: int | str | None = None,
898
898
  undo: bool | None = None,
899
899
  ):
900
- """Remove active for-each input item
900
+ """Remove active item
901
901
 
902
902
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
903
903
  :type execution_context: int | str | None
@@ -909,7 +909,7 @@ def foreach_geometry_element_zone_main_item_add(
909
909
  execution_context: int | str | None = None,
910
910
  undo: bool | None = None,
911
911
  ):
912
- """Add for-each main item
912
+ """Add item below active item
913
913
 
914
914
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
915
915
  :type execution_context: int | str | None
@@ -923,7 +923,7 @@ def foreach_geometry_element_zone_main_item_move(
923
923
  *,
924
924
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
925
925
  ):
926
- """Move active for-each main item
926
+ """Move active item
927
927
 
928
928
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
929
929
  :type execution_context: int | str | None
@@ -937,7 +937,7 @@ def foreach_geometry_element_zone_main_item_remove(
937
937
  execution_context: int | str | None = None,
938
938
  undo: bool | None = None,
939
939
  ):
940
- """Remove active for-each main item
940
+ """Remove active item
941
941
 
942
942
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
943
943
  :type execution_context: int | str | None
@@ -1509,7 +1509,7 @@ def repeat_zone_item_add(
1509
1509
  execution_context: int | str | None = None,
1510
1510
  undo: bool | None = None,
1511
1511
  ):
1512
- """Add repeat zone item
1512
+ """Add item below active item
1513
1513
 
1514
1514
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1515
1515
  :type execution_context: int | str | None
@@ -1523,7 +1523,7 @@ def repeat_zone_item_move(
1523
1523
  *,
1524
1524
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
1525
1525
  ):
1526
- """Move active repeat zone item
1526
+ """Move active item
1527
1527
 
1528
1528
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1529
1529
  :type execution_context: int | str | None
@@ -1537,7 +1537,7 @@ def repeat_zone_item_remove(
1537
1537
  execution_context: int | str | None = None,
1538
1538
  undo: bool | None = None,
1539
1539
  ):
1540
- """Remove active repeat zone item
1540
+ """Remove active item
1541
1541
 
1542
1542
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1543
1543
  :type execution_context: int | str | None
@@ -1836,7 +1836,7 @@ def simulation_zone_item_add(
1836
1836
  execution_context: int | str | None = None,
1837
1837
  undo: bool | None = None,
1838
1838
  ):
1839
- """Add simulation zone item
1839
+ """Add item below active item
1840
1840
 
1841
1841
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1842
1842
  :type execution_context: int | str | None
@@ -1850,7 +1850,7 @@ def simulation_zone_item_move(
1850
1850
  *,
1851
1851
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
1852
1852
  ):
1853
- """Move active simulation zone item
1853
+ """Move active item
1854
1854
 
1855
1855
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1856
1856
  :type execution_context: int | str | None
@@ -1864,7 +1864,7 @@ def simulation_zone_item_remove(
1864
1864
  execution_context: int | str | None = None,
1865
1865
  undo: bool | None = None,
1866
1866
  ):
1867
- """Remove active simulation zone item
1867
+ """Remove active item
1868
1868
 
1869
1869
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1870
1870
  :type execution_context: int | str | None
bpy/ops/wm/__init__.pyi CHANGED
@@ -5721,6 +5721,8 @@ def usd_import(
5721
5721
  import_usd_preview: bool | None = True,
5722
5722
  set_material_blend: bool | None = True,
5723
5723
  light_intensity_scale: float | None = 1.0,
5724
+ mtl_purpose: typing.Literal["MTL_ALL_PURPOSE", "MTL_PREVIEW", "MTL_FULL"]
5725
+ | None = "MTL_FULL",
5724
5726
  mtl_name_collision_mode: typing.Literal["MAKE_UNIQUE", "REFERENCE_EXISTING"]
5725
5727
  | None = "MAKE_UNIQUE",
5726
5728
  import_textures_mode: typing.Literal["IMPORT_NONE", "IMPORT_PACK", "IMPORT_COPY"]
@@ -5851,6 +5853,17 @@ def usd_import(
5851
5853
  :type set_material_blend: bool | None
5852
5854
  :param light_intensity_scale: Light Intensity Scale, Scale for the intensity of imported lights
5853
5855
  :type light_intensity_scale: float | None
5856
+ :param mtl_purpose: Material Purpose, Attempt to import materials with the given purpose. If no material with this purpose is bound to the primitive, fall back on loading any other bound material
5857
+
5858
+ MTL_ALL_PURPOSE
5859
+ All Purpose -- Attempt to import 'allPurpose' materials..
5860
+
5861
+ MTL_PREVIEW
5862
+ Preview -- Attempt to import 'preview' materials. Load 'allPurpose' materials as a fallback.
5863
+
5864
+ MTL_FULL
5865
+ Full -- Attempt to import 'full' materials. Load 'allPurpose' or 'preview' materials, in that order, as a fallback.
5866
+ :type mtl_purpose: typing.Literal['MTL_ALL_PURPOSE','MTL_PREVIEW','MTL_FULL'] | None
5854
5867
  :param mtl_name_collision_mode: Material Name Collision, Behavior when the name of an imported material conflicts with an existing material
5855
5868
 
5856
5869
  MAKE_UNIQUE
bpy/types/__init__.pyi CHANGED
@@ -4473,6 +4473,7 @@
4473
4473
  --------------------
4474
4474
 
4475
4475
  * GreasePencilFrames.copy
4476
+ * GreasePencilFrames.move
4476
4477
  * GreasePencilFrames.new
4477
4478
  * GreasePencilLayer.current_frame
4478
4479
  * GreasePencilLayer.frames
@@ -107158,6 +107159,19 @@ class GreasePencilFrames(bpy_prop_collection[GreasePencilFrame], bpy_struct):
107158
107159
  :rtype: GreasePencilFrame
107159
107160
  """
107160
107161
 
107162
+ def move(
107163
+ self, from_frame_number: int | None, to_frame_number: int | None
107164
+ ) -> GreasePencilFrame:
107165
+ """Move a Grease Pencil frame
107166
+
107167
+ :param from_frame_number: Source Frame Number, The frame number of the source frame
107168
+ :type from_frame_number: int | None
107169
+ :param to_frame_number: Target Frame Number, The frame number to move the frame to
107170
+ :type to_frame_number: int | None
107171
+ :return: The moved frame
107172
+ :rtype: GreasePencilFrame
107173
+ """
107174
+
107161
107175
  @classmethod
107162
107176
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
107163
107177
  """
@@ -162556,6 +162570,14 @@ class IMAGE_AST_brush_paint(AssetShelf, bpy_struct):
162556
162570
  :param context:
162557
162571
  """
162558
162572
 
162573
+ @classmethod
162574
+ def has_tool_with_brush_type(cls, context, brush_type):
162575
+ """
162576
+
162577
+ :param context:
162578
+ :param brush_type:
162579
+ """
162580
+
162559
162581
  @classmethod
162560
162582
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162561
162583
  """
@@ -191422,6 +191444,12 @@ class PreferencesView(bpy_struct):
191422
191444
  :type: float
191423
191445
  """
191424
191446
 
191447
+ use_filter_brushes_by_tool: bool
191448
+ """ Only show brushes applicable for the currently active tool in the asset shelf. Stored in the Preferences, which may have to be saved manually if Auto-Save Preferences is disabled
191449
+
191450
+ :type: bool
191451
+ """
191452
+
191425
191453
  use_fresnel_edit: bool
191426
191454
  """ Enable a fresnel effect on edit mesh overlays.
191427
191455
  It improves shape readability of very dense meshes, but increases eye fatigue when modeling lower poly
@@ -224216,6 +224244,14 @@ class VIEW3D_AST_brush_gpencil_paint(AssetShelf, bpy_struct):
224216
224244
  :param context:
224217
224245
  """
224218
224246
 
224247
+ @classmethod
224248
+ def has_tool_with_brush_type(cls, context, brush_type):
224249
+ """
224250
+
224251
+ :param context:
224252
+ :param brush_type:
224253
+ """
224254
+
224219
224255
  @classmethod
224220
224256
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224221
224257
  """
@@ -224264,6 +224300,14 @@ class VIEW3D_AST_brush_gpencil_sculpt(AssetShelf, bpy_struct):
224264
224300
  :param context:
224265
224301
  """
224266
224302
 
224303
+ @classmethod
224304
+ def has_tool_with_brush_type(cls, context, brush_type):
224305
+ """
224306
+
224307
+ :param context:
224308
+ :param brush_type:
224309
+ """
224310
+
224267
224311
  @classmethod
224268
224312
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224269
224313
  """
@@ -224312,6 +224356,14 @@ class VIEW3D_AST_brush_gpencil_vertex(AssetShelf, bpy_struct):
224312
224356
  :param context:
224313
224357
  """
224314
224358
 
224359
+ @classmethod
224360
+ def has_tool_with_brush_type(cls, context, brush_type):
224361
+ """
224362
+
224363
+ :param context:
224364
+ :param brush_type:
224365
+ """
224366
+
224315
224367
  @classmethod
224316
224368
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224317
224369
  """
@@ -224360,6 +224412,14 @@ class VIEW3D_AST_brush_gpencil_weight(AssetShelf, bpy_struct):
224360
224412
  :param context:
224361
224413
  """
224362
224414
 
224415
+ @classmethod
224416
+ def has_tool_with_brush_type(cls, context, brush_type):
224417
+ """
224418
+
224419
+ :param context:
224420
+ :param brush_type:
224421
+ """
224422
+
224363
224423
  @classmethod
224364
224424
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224365
224425
  """
@@ -224408,6 +224468,14 @@ class VIEW3D_AST_brush_grease_pencil_paint(AssetShelf, bpy_struct):
224408
224468
  :param context:
224409
224469
  """
224410
224470
 
224471
+ @classmethod
224472
+ def has_tool_with_brush_type(cls, context, brush_type):
224473
+ """
224474
+
224475
+ :param context:
224476
+ :param brush_type:
224477
+ """
224478
+
224411
224479
  @classmethod
224412
224480
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224413
224481
  """
@@ -224456,6 +224524,14 @@ class VIEW3D_AST_brush_sculpt(AssetShelf, bpy_struct):
224456
224524
  :param context:
224457
224525
  """
224458
224526
 
224527
+ @classmethod
224528
+ def has_tool_with_brush_type(cls, context, brush_type):
224529
+ """
224530
+
224531
+ :param context:
224532
+ :param brush_type:
224533
+ """
224534
+
224459
224535
  @classmethod
224460
224536
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224461
224537
  """
@@ -224504,6 +224580,14 @@ class VIEW3D_AST_brush_sculpt_curves(AssetShelf, bpy_struct):
224504
224580
  :param context:
224505
224581
  """
224506
224582
 
224583
+ @classmethod
224584
+ def has_tool_with_brush_type(cls, context, brush_type):
224585
+ """
224586
+
224587
+ :param context:
224588
+ :param brush_type:
224589
+ """
224590
+
224507
224591
  @classmethod
224508
224592
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224509
224593
  """
@@ -224552,6 +224636,14 @@ class VIEW3D_AST_brush_texture_paint(AssetShelf, bpy_struct):
224552
224636
  :param context:
224553
224637
  """
224554
224638
 
224639
+ @classmethod
224640
+ def has_tool_with_brush_type(cls, context, brush_type):
224641
+ """
224642
+
224643
+ :param context:
224644
+ :param brush_type:
224645
+ """
224646
+
224555
224647
  @classmethod
224556
224648
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224557
224649
  """
@@ -224600,6 +224692,14 @@ class VIEW3D_AST_brush_vertex_paint(AssetShelf, bpy_struct):
224600
224692
  :param context:
224601
224693
  """
224602
224694
 
224695
+ @classmethod
224696
+ def has_tool_with_brush_type(cls, context, brush_type):
224697
+ """
224698
+
224699
+ :param context:
224700
+ :param brush_type:
224701
+ """
224702
+
224603
224703
  @classmethod
224604
224704
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224605
224705
  """
@@ -224648,6 +224748,14 @@ class VIEW3D_AST_brush_weight_paint(AssetShelf, bpy_struct):
224648
224748
  :param context:
224649
224749
  """
224650
224750
 
224751
+ @classmethod
224752
+ def has_tool_with_brush_type(cls, context, brush_type):
224753
+ """
224754
+
224755
+ :param context:
224756
+ :param brush_type:
224757
+ """
224758
+
224651
224759
  @classmethod
224652
224760
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224653
224761
  """
@@ -231970,6 +232078,8 @@ NODE_PT_texture_mapping: bl_ui.space_node.NODE_PT_texture_mapping
231970
232078
 
231971
232079
  NODE_PT_tools_active: bl_ui.space_toolsystem_toolbar.NODE_PT_tools_active
231972
232080
 
232081
+ OBJECT_MT_light_linking_context_menu: bl_ui.properties_object.OBJECT_MT_light_linking_context_menu
232082
+
231973
232083
  OBJECT_MT_modifier_add: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add
231974
232084
 
231975
232085
  OBJECT_MT_modifier_add_color: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_color
@@ -231984,6 +232094,8 @@ OBJECT_MT_modifier_add_normals: bl_ui.properties_data_modifier.OBJECT_MT_modifie
231984
232094
 
231985
232095
  OBJECT_MT_modifier_add_physics: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_physics
231986
232096
 
232097
+ OBJECT_MT_shadow_linking_context_menu: bl_ui.properties_object.OBJECT_MT_shadow_linking_context_menu
232098
+
231987
232099
  OBJECT_OT_assign_property_defaults: bl_operators.object.OBJECT_OT_assign_property_defaults
231988
232100
 
231989
232101
  OBJECT_PT_animation: bl_ui.properties_object.OBJECT_PT_animation
@@ -232078,6 +232190,8 @@ OBJECT_PT_instancing: bl_ui.properties_object.OBJECT_PT_instancing
232078
232190
 
232079
232191
  OBJECT_PT_instancing_size: bl_ui.properties_object.OBJECT_PT_instancing_size
232080
232192
 
232193
+ OBJECT_PT_light_linking: bl_ui.properties_object.OBJECT_PT_light_linking
232194
+
232081
232195
  OBJECT_PT_lineart: bl_ui.properties_object.OBJECT_PT_lineart
232082
232196
 
232083
232197
  OBJECT_PT_motion_paths: bl_ui.properties_object.OBJECT_PT_motion_paths
@@ -232086,6 +232200,10 @@ OBJECT_PT_motion_paths_display: bl_ui.properties_object.OBJECT_PT_motion_paths_d
232086
232200
 
232087
232201
  OBJECT_PT_relations: bl_ui.properties_object.OBJECT_PT_relations
232088
232202
 
232203
+ OBJECT_PT_shading: bl_ui.properties_object.OBJECT_PT_shading
232204
+
232205
+ OBJECT_PT_shadow_linking: bl_ui.properties_object.OBJECT_PT_shadow_linking
232206
+
232089
232207
  OBJECT_PT_transform: bl_ui.properties_object.OBJECT_PT_transform
232090
232208
 
232091
232209
  OBJECT_PT_visibility: bl_ui.properties_object.OBJECT_PT_visibility
@@ -233708,6 +233826,8 @@ VIEW3D_PT_active_tool_duplicate: bl_ui.space_view3d.VIEW3D_PT_active_tool_duplic
233708
233826
 
233709
233827
  VIEW3D_PT_annotation_onion: bl_ui.space_view3d.VIEW3D_PT_annotation_onion
233710
233828
 
233829
+ VIEW3D_PT_brush_asset_shelf_filter: bl_ui.properties_paint_common.VIEW3D_PT_brush_asset_shelf_filter
233830
+
233711
233831
  VIEW3D_PT_collections: bl_ui.space_view3d.VIEW3D_PT_collections
233712
233832
 
233713
233833
  VIEW3D_PT_context_properties: bl_ui.space_view3d.VIEW3D_PT_context_properties
@@ -233756,6 +233876,8 @@ VIEW3D_PT_greasepencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasep
233756
233876
 
233757
233877
  VIEW3D_PT_greasepencil_vertex_paint_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_vertex_paint_context_menu
233758
233878
 
233879
+ VIEW3D_PT_greasepencil_weight_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_weight_context_menu
233880
+
233759
233881
  VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
233760
233882
 
233761
233883
  VIEW3D_PT_object_type_visibility: bl_ui.space_view3d.VIEW3D_PT_object_type_visibility
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241003
3
+ Version: 20241004
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -134,9 +134,9 @@ bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=7W2f7feX-jky1zuLVDrDif
134
134
  bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
135
135
  bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
136
136
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=zfCV8bG4-NABgQNpZjhRRR4Ttr0qS2H17seuJlJgX4c,8621
137
- bl_ui/properties_object/__init__.pyi,sha256=o9wiWVZ0eDAxBHcdwM98UmVft2YgMHi0fLmmehxzBaM,11379
137
+ bl_ui/properties_object/__init__.pyi,sha256=8j-f7nIklQcDr8gIfbaHQzZBbfT9DpTDy3g02ZEWtbI,14680
138
138
  bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
139
- bl_ui/properties_paint_common/__init__.pyi,sha256=VgibBHChxQZjc4AdgluvJTZLG1nq2us3R-HFeykeAQ8,7009
139
+ bl_ui/properties_paint_common/__init__.pyi,sha256=CPyLlQHPep6FkrNUsbfpRzF2FF56E9um-IVFY6WR0OI,7889
140
140
  bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
141
141
  bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
142
142
  bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=UNeClTvCwngdhWjPGO6awJhMmtZz6IE2Ejah-GcY7Hs,11022
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=nBXvsE4g5M25m_fVVXWAYRPGpJFq3p95K8W-hue91z4,16175
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
176
- bl_ui/space_view3d/__init__.pyi,sha256=lbPA9fJIuYHrtd3fZC-bJa0hk6FhTDyIlJYGUZkhn-Y,168464
176
+ bl_ui/space_view3d/__init__.pyi,sha256=WMpaiXWQFIKNeJ0tpAq_na2yUt-Q0fnX7UJiqgucZgo,169185
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=U4P88SaA-UbGd9LlU_7bWuApb2N2h0bb9a_H-VFzS_g,76673
178
178
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
179
179
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
@@ -240,7 +240,7 @@ bpy/ops/material/__init__.pyi,sha256=KDgPB2utYKt3DSXKI4f71x1A4Di-_AdWpAbNah3N3AE
240
240
  bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,5384
241
241
  bpy/ops/mesh/__init__.pyi,sha256=EswEbctouuQD08OuJIkh3647uiUC5fzgd8_NxfL_00g,155123
242
242
  bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,24221
243
- bpy/ops/node/__init__.pyi,sha256=dj4AVg8iYRvWt_WWu4HgX8g16yZtob9d0Tu8o3sjCdE,69902
243
+ bpy/ops/node/__init__.pyi,sha256=3P5RJJLhHtwason9eKv2W9UAU16jKsiipNFstrmKNDQ,69731
244
244
  bpy/ops/object/__init__.pyi,sha256=RZ6y323WYIngaPCdBfCjfZls-cWOsBsA2FCyrkML2cY,206006
245
245
  bpy/ops/outliner/__init__.pyi,sha256=o5OxwPlRmadDEhvCUSmt8u1aJ8euFSCV-UYCknYymdI,38952
246
246
  bpy/ops/paint/__init__.pyi,sha256=CwUI97PIYq0-IiQu9oZBP1cvc62P4wSTDyPbnILs5EI,44921
@@ -271,12 +271,12 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
271
271
  bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
272
272
  bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
273
273
  bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
274
- bpy/ops/wm/__init__.pyi,sha256=Cjp7J0RoI4iNKvUJtGWGWlRPZktA4l3wTkWufquK6WU,243495
274
+ bpy/ops/wm/__init__.pyi,sha256=9fv_Z1Kl0Ff4UDvnXCBveP7b6QQjIqIro0MUHnSqdOM,244226
275
275
  bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
276
276
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
277
277
  bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
278
278
  bpy/props/__init__.pyi,sha256=jUUCk6C-K0f8Qt8-ln9GB_IH0NteN6meCPjr2spyhq4,29439
279
- bpy/types/__init__.pyi,sha256=kI7DYXzD6MNlUc9RGLsIRAV-MdTXYQ6JD0lnmDakw8U,5372902
279
+ bpy/types/__init__.pyi,sha256=vG2WRbkH0AM3PFEuOTrXMzenhxL33XWwzxUT0--iJ-E,5375998
280
280
  bpy/typing/__init__.pyi,sha256=7jjNtrLEpp8FCObTBb-IvF1rzAzDIXa1vaDvS58s9yg,137984
281
281
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
359
359
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
360
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
361
361
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
- fake_bpy_module-20241003.dist-info/METADATA,sha256=NKuuL7U5DZBVVglRrqLwXQvm2GXqNDZabwszWo0qNRk,7289
363
- fake_bpy_module-20241003.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
- fake_bpy_module-20241003.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20241003.dist-info/RECORD,,
362
+ fake_bpy_module-20241004.dist-info/METADATA,sha256=4mPHig31Gmanj41P4IGVi-aUm-gt4FfHKqr4xq2gv8Y,7289
363
+ fake_bpy_module-20241004.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
+ fake_bpy_module-20241004.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20241004.dist-info/RECORD,,