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

Files changed (65) hide show
  1. bl_operators/presets/__init__.pyi +201 -0
  2. bl_operators/wm/__init__.pyi +8 -0
  3. bl_ui/__init__.pyi +5 -0
  4. bl_ui/anim/__init__.pyi +2 -0
  5. bl_ui/node_add_menu/__init__.pyi +2 -0
  6. bl_ui/node_add_menu_compositor/__init__.pyi +36 -0
  7. bl_ui/node_add_menu_geometry/__init__.pyi +96 -0
  8. bl_ui/node_add_menu_shader/__init__.pyi +20 -0
  9. bl_ui/node_add_menu_texture/__init__.pyi +18 -0
  10. bl_ui/properties_collection/__init__.pyi +158 -0
  11. bl_ui/properties_data_armature/__init__.pyi +4 -0
  12. bl_ui/properties_data_camera/__init__.pyi +4 -0
  13. bl_ui/properties_data_curves/__init__.pyi +2 -0
  14. bl_ui/properties_data_gpencil/__init__.pyi +4 -0
  15. bl_ui/properties_data_grease_pencil/__init__.pyi +4 -0
  16. bl_ui/properties_data_mesh/__init__.pyi +8 -0
  17. bl_ui/properties_data_modifier/__init__.pyi +12 -0
  18. bl_ui/properties_data_pointcloud/__init__.pyi +2 -0
  19. bl_ui/properties_freestyle/__init__.pyi +2 -0
  20. bl_ui/properties_grease_pencil_common/__init__.pyi +20 -0
  21. bl_ui/properties_mask_common/__init__.pyi +12 -0
  22. bl_ui/properties_material/__init__.pyi +2 -0
  23. bl_ui/properties_material_gpencil/__init__.pyi +4 -0
  24. bl_ui/properties_object/__init__.pyi +2 -0
  25. bl_ui/properties_output/__init__.pyi +6 -0
  26. bl_ui/properties_paint_common/__init__.pyi +2 -0
  27. bl_ui/properties_particle/__init__.pyi +4 -0
  28. bl_ui/properties_physics_cloth/__init__.pyi +2 -0
  29. bl_ui/properties_physics_fluid/__init__.pyi +2 -0
  30. bl_ui/properties_render/__init__.pyi +2 -0
  31. bl_ui/properties_texture/__init__.pyi +2 -0
  32. bl_ui/properties_view_layer/__init__.pyi +2 -0
  33. bl_ui/space_clip/__init__.pyi +60 -0
  34. bl_ui/space_console/__init__.pyi +10 -0
  35. bl_ui/space_dopesheet/__init__.pyi +28 -0
  36. bl_ui/space_filebrowser/__init__.pyi +26 -0
  37. bl_ui/space_graph/__init__.pyi +32 -0
  38. bl_ui/space_image/__init__.pyi +46 -0
  39. bl_ui/space_info/__init__.pyi +10 -0
  40. bl_ui/space_nla/__init__.pyi +26 -0
  41. bl_ui/space_node/__init__.pyi +24 -0
  42. bl_ui/space_outliner/__init__.pyi +24 -0
  43. bl_ui/space_sequencer/__init__.pyi +72 -0
  44. bl_ui/space_text/__init__.pyi +24 -0
  45. bl_ui/space_time/__init__.pyi +8 -0
  46. bl_ui/space_toolsystem_common/__init__.pyi +2 -0
  47. bl_ui/space_topbar/__init__.pyi +38 -0
  48. bl_ui/space_userpref/__init__.pyi +12 -0
  49. bl_ui/space_view3d/__init__.pyi +382 -0
  50. bl_ui/space_view3d_toolbar/__init__.pyi +10 -0
  51. bl_ui/temp_anim_layers/__init__.pyi +165 -0
  52. bl_ui/temp_anim_layers/py.typed +0 -0
  53. bl_ui/utils/__init__.pyi +2 -0
  54. bpy/ops/collection/__init__.pyi +65 -0
  55. bpy/ops/export_scene/__init__.pyi +3 -3
  56. bpy/ops/graph/__init__.pyi +0 -3
  57. bpy/ops/nla/__init__.pyi +3 -3
  58. bpy/ops/sculpt/__init__.pyi +2 -2
  59. bpy/ops/wm/__init__.pyi +20 -0
  60. bpy/types/__init__.pyi +775 -125
  61. bpy_types/__init__.pyi +2 -0
  62. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/METADATA +1 -1
  63. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/RECORD +65 -63
  64. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/WHEEL +0 -0
  65. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/top_level.txt +0 -0
@@ -133,6 +133,7 @@ class NODE_MT_category_shader_color(bpy_types._GenericUI):
133
133
  filter_path,
134
134
  display_name,
135
135
  add_operator,
136
+ add_operator_props,
136
137
  ):
137
138
  """
138
139
 
@@ -144,6 +145,7 @@ class NODE_MT_category_shader_color(bpy_types._GenericUI):
144
145
  :param filter_path:
145
146
  :param display_name:
146
147
  :param add_operator:
148
+ :param add_operator_props:
147
149
  """
148
150
  ...
149
151
 
@@ -315,6 +317,7 @@ class NODE_MT_category_shader_converter(bpy_types._GenericUI):
315
317
  filter_path,
316
318
  display_name,
317
319
  add_operator,
320
+ add_operator_props,
318
321
  ):
319
322
  """
320
323
 
@@ -326,6 +329,7 @@ class NODE_MT_category_shader_converter(bpy_types._GenericUI):
326
329
  :param filter_path:
327
330
  :param display_name:
328
331
  :param add_operator:
332
+ :param add_operator_props:
329
333
  """
330
334
  ...
331
335
 
@@ -497,6 +501,7 @@ class NODE_MT_category_shader_group(bpy_types._GenericUI):
497
501
  filter_path,
498
502
  display_name,
499
503
  add_operator,
504
+ add_operator_props,
500
505
  ):
501
506
  """
502
507
 
@@ -508,6 +513,7 @@ class NODE_MT_category_shader_group(bpy_types._GenericUI):
508
513
  :param filter_path:
509
514
  :param display_name:
510
515
  :param add_operator:
516
+ :param add_operator_props:
511
517
  """
512
518
  ...
513
519
 
@@ -679,6 +685,7 @@ class NODE_MT_category_shader_input(bpy_types._GenericUI):
679
685
  filter_path,
680
686
  display_name,
681
687
  add_operator,
688
+ add_operator_props,
682
689
  ):
683
690
  """
684
691
 
@@ -690,6 +697,7 @@ class NODE_MT_category_shader_input(bpy_types._GenericUI):
690
697
  :param filter_path:
691
698
  :param display_name:
692
699
  :param add_operator:
700
+ :param add_operator_props:
693
701
  """
694
702
  ...
695
703
 
@@ -861,6 +869,7 @@ class NODE_MT_category_shader_output(bpy_types._GenericUI):
861
869
  filter_path,
862
870
  display_name,
863
871
  add_operator,
872
+ add_operator_props,
864
873
  ):
865
874
  """
866
875
 
@@ -872,6 +881,7 @@ class NODE_MT_category_shader_output(bpy_types._GenericUI):
872
881
  :param filter_path:
873
882
  :param display_name:
874
883
  :param add_operator:
884
+ :param add_operator_props:
875
885
  """
876
886
  ...
877
887
 
@@ -1043,6 +1053,7 @@ class NODE_MT_category_shader_script(bpy_types._GenericUI):
1043
1053
  filter_path,
1044
1054
  display_name,
1045
1055
  add_operator,
1056
+ add_operator_props,
1046
1057
  ):
1047
1058
  """
1048
1059
 
@@ -1054,6 +1065,7 @@ class NODE_MT_category_shader_script(bpy_types._GenericUI):
1054
1065
  :param filter_path:
1055
1066
  :param display_name:
1056
1067
  :param add_operator:
1068
+ :param add_operator_props:
1057
1069
  """
1058
1070
  ...
1059
1071
 
@@ -1225,6 +1237,7 @@ class NODE_MT_category_shader_shader(bpy_types._GenericUI):
1225
1237
  filter_path,
1226
1238
  display_name,
1227
1239
  add_operator,
1240
+ add_operator_props,
1228
1241
  ):
1229
1242
  """
1230
1243
 
@@ -1236,6 +1249,7 @@ class NODE_MT_category_shader_shader(bpy_types._GenericUI):
1236
1249
  :param filter_path:
1237
1250
  :param display_name:
1238
1251
  :param add_operator:
1252
+ :param add_operator_props:
1239
1253
  """
1240
1254
  ...
1241
1255
 
@@ -1407,6 +1421,7 @@ class NODE_MT_category_shader_texture(bpy_types._GenericUI):
1407
1421
  filter_path,
1408
1422
  display_name,
1409
1423
  add_operator,
1424
+ add_operator_props,
1410
1425
  ):
1411
1426
  """
1412
1427
 
@@ -1418,6 +1433,7 @@ class NODE_MT_category_shader_texture(bpy_types._GenericUI):
1418
1433
  :param filter_path:
1419
1434
  :param display_name:
1420
1435
  :param add_operator:
1436
+ :param add_operator_props:
1421
1437
  """
1422
1438
  ...
1423
1439
 
@@ -1589,6 +1605,7 @@ class NODE_MT_category_shader_vector(bpy_types._GenericUI):
1589
1605
  filter_path,
1590
1606
  display_name,
1591
1607
  add_operator,
1608
+ add_operator_props,
1592
1609
  ):
1593
1610
  """
1594
1611
 
@@ -1600,6 +1617,7 @@ class NODE_MT_category_shader_vector(bpy_types._GenericUI):
1600
1617
  :param filter_path:
1601
1618
  :param display_name:
1602
1619
  :param add_operator:
1620
+ :param add_operator_props:
1603
1621
  """
1604
1622
  ...
1605
1623
 
@@ -1771,6 +1789,7 @@ class NODE_MT_shader_node_add_all(bpy_types._GenericUI):
1771
1789
  filter_path,
1772
1790
  display_name,
1773
1791
  add_operator,
1792
+ add_operator_props,
1774
1793
  ):
1775
1794
  """
1776
1795
 
@@ -1782,6 +1801,7 @@ class NODE_MT_shader_node_add_all(bpy_types._GenericUI):
1782
1801
  :param filter_path:
1783
1802
  :param display_name:
1784
1803
  :param add_operator:
1804
+ :param add_operator_props:
1785
1805
  """
1786
1806
  ...
1787
1807
 
@@ -133,6 +133,7 @@ class NODE_MT_category_texture_color(bpy_types._GenericUI):
133
133
  filter_path,
134
134
  display_name,
135
135
  add_operator,
136
+ add_operator_props,
136
137
  ):
137
138
  """
138
139
 
@@ -144,6 +145,7 @@ class NODE_MT_category_texture_color(bpy_types._GenericUI):
144
145
  :param filter_path:
145
146
  :param display_name:
146
147
  :param add_operator:
148
+ :param add_operator_props:
147
149
  """
148
150
  ...
149
151
 
@@ -315,6 +317,7 @@ class NODE_MT_category_texture_converter(bpy_types._GenericUI):
315
317
  filter_path,
316
318
  display_name,
317
319
  add_operator,
320
+ add_operator_props,
318
321
  ):
319
322
  """
320
323
 
@@ -326,6 +329,7 @@ class NODE_MT_category_texture_converter(bpy_types._GenericUI):
326
329
  :param filter_path:
327
330
  :param display_name:
328
331
  :param add_operator:
332
+ :param add_operator_props:
329
333
  """
330
334
  ...
331
335
 
@@ -497,6 +501,7 @@ class NODE_MT_category_texture_distort(bpy_types._GenericUI):
497
501
  filter_path,
498
502
  display_name,
499
503
  add_operator,
504
+ add_operator_props,
500
505
  ):
501
506
  """
502
507
 
@@ -508,6 +513,7 @@ class NODE_MT_category_texture_distort(bpy_types._GenericUI):
508
513
  :param filter_path:
509
514
  :param display_name:
510
515
  :param add_operator:
516
+ :param add_operator_props:
511
517
  """
512
518
  ...
513
519
 
@@ -679,6 +685,7 @@ class NODE_MT_category_texture_group(bpy_types._GenericUI):
679
685
  filter_path,
680
686
  display_name,
681
687
  add_operator,
688
+ add_operator_props,
682
689
  ):
683
690
  """
684
691
 
@@ -690,6 +697,7 @@ class NODE_MT_category_texture_group(bpy_types._GenericUI):
690
697
  :param filter_path:
691
698
  :param display_name:
692
699
  :param add_operator:
700
+ :param add_operator_props:
693
701
  """
694
702
  ...
695
703
 
@@ -861,6 +869,7 @@ class NODE_MT_category_texture_input(bpy_types._GenericUI):
861
869
  filter_path,
862
870
  display_name,
863
871
  add_operator,
872
+ add_operator_props,
864
873
  ):
865
874
  """
866
875
 
@@ -872,6 +881,7 @@ class NODE_MT_category_texture_input(bpy_types._GenericUI):
872
881
  :param filter_path:
873
882
  :param display_name:
874
883
  :param add_operator:
884
+ :param add_operator_props:
875
885
  """
876
886
  ...
877
887
 
@@ -1043,6 +1053,7 @@ class NODE_MT_category_texture_output(bpy_types._GenericUI):
1043
1053
  filter_path,
1044
1054
  display_name,
1045
1055
  add_operator,
1056
+ add_operator_props,
1046
1057
  ):
1047
1058
  """
1048
1059
 
@@ -1054,6 +1065,7 @@ class NODE_MT_category_texture_output(bpy_types._GenericUI):
1054
1065
  :param filter_path:
1055
1066
  :param display_name:
1056
1067
  :param add_operator:
1068
+ :param add_operator_props:
1057
1069
  """
1058
1070
  ...
1059
1071
 
@@ -1225,6 +1237,7 @@ class NODE_MT_category_texture_pattern(bpy_types._GenericUI):
1225
1237
  filter_path,
1226
1238
  display_name,
1227
1239
  add_operator,
1240
+ add_operator_props,
1228
1241
  ):
1229
1242
  """
1230
1243
 
@@ -1236,6 +1249,7 @@ class NODE_MT_category_texture_pattern(bpy_types._GenericUI):
1236
1249
  :param filter_path:
1237
1250
  :param display_name:
1238
1251
  :param add_operator:
1252
+ :param add_operator_props:
1239
1253
  """
1240
1254
  ...
1241
1255
 
@@ -1407,6 +1421,7 @@ class NODE_MT_category_texture_texture(bpy_types._GenericUI):
1407
1421
  filter_path,
1408
1422
  display_name,
1409
1423
  add_operator,
1424
+ add_operator_props,
1410
1425
  ):
1411
1426
  """
1412
1427
 
@@ -1418,6 +1433,7 @@ class NODE_MT_category_texture_texture(bpy_types._GenericUI):
1418
1433
  :param filter_path:
1419
1434
  :param display_name:
1420
1435
  :param add_operator:
1436
+ :param add_operator_props:
1421
1437
  """
1422
1438
  ...
1423
1439
 
@@ -1589,6 +1605,7 @@ class NODE_MT_texture_node_add_all(bpy_types._GenericUI):
1589
1605
  filter_path,
1590
1606
  display_name,
1591
1607
  add_operator,
1608
+ add_operator_props,
1592
1609
  ):
1593
1610
  """
1594
1611
 
@@ -1600,6 +1617,7 @@ class NODE_MT_texture_node_add_all(bpy_types._GenericUI):
1600
1617
  :param filter_path:
1601
1618
  :param display_name:
1602
1619
  :param add_operator:
1620
+ :param add_operator_props:
1603
1621
  """
1604
1622
  ...
1605
1623
 
@@ -130,6 +130,7 @@ class COLLECTION_MT_context_menu_instance_offset(bpy_types._GenericUI):
130
130
  filter_path,
131
131
  display_name,
132
132
  add_operator,
133
+ add_operator_props,
133
134
  ):
134
135
  """
135
136
 
@@ -141,6 +142,7 @@ class COLLECTION_MT_context_menu_instance_offset(bpy_types._GenericUI):
141
142
  :param filter_path:
142
143
  :param display_name:
143
144
  :param add_operator:
145
+ :param add_operator_props:
144
146
  """
145
147
  ...
146
148
 
@@ -500,6 +502,162 @@ class COLLECTION_PT_collection_flags(bpy_types._GenericUI):
500
502
  """ """
501
503
  ...
502
504
 
505
+ class COLLECTION_PT_exporters(bpy_types._GenericUI):
506
+ """ """
507
+
508
+ bl_context: typing.Any
509
+ """ """
510
+
511
+ bl_label: typing.Any
512
+ """ """
513
+
514
+ bl_region_type: typing.Any
515
+ """ """
516
+
517
+ bl_rna: typing.Any
518
+ """ """
519
+
520
+ bl_space_type: typing.Any
521
+ """ """
522
+
523
+ id_data: typing.Any
524
+ """ """
525
+
526
+ def append(self, draw_func):
527
+ """
528
+
529
+ :param draw_func:
530
+ """
531
+ ...
532
+
533
+ def as_pointer(self):
534
+ """ """
535
+ ...
536
+
537
+ def bl_rna_get_subclass(self):
538
+ """ """
539
+ ...
540
+
541
+ def bl_rna_get_subclass_py(self):
542
+ """ """
543
+ ...
544
+
545
+ def draw(self, context):
546
+ """
547
+
548
+ :param context:
549
+ """
550
+ ...
551
+
552
+ def driver_add(self):
553
+ """ """
554
+ ...
555
+
556
+ def driver_remove(self):
557
+ """ """
558
+ ...
559
+
560
+ def get(self):
561
+ """ """
562
+ ...
563
+
564
+ def id_properties_clear(self):
565
+ """ """
566
+ ...
567
+
568
+ def id_properties_ensure(self):
569
+ """ """
570
+ ...
571
+
572
+ def id_properties_ui(self):
573
+ """ """
574
+ ...
575
+
576
+ def is_extended(self):
577
+ """ """
578
+ ...
579
+
580
+ def is_property_hidden(self):
581
+ """ """
582
+ ...
583
+
584
+ def is_property_overridable_library(self):
585
+ """ """
586
+ ...
587
+
588
+ def is_property_readonly(self):
589
+ """ """
590
+ ...
591
+
592
+ def is_property_set(self):
593
+ """ """
594
+ ...
595
+
596
+ def items(self):
597
+ """ """
598
+ ...
599
+
600
+ def keyframe_delete(self):
601
+ """ """
602
+ ...
603
+
604
+ def keyframe_insert(self):
605
+ """ """
606
+ ...
607
+
608
+ def keys(self):
609
+ """ """
610
+ ...
611
+
612
+ def path_from_id(self):
613
+ """ """
614
+ ...
615
+
616
+ def path_resolve(self):
617
+ """ """
618
+ ...
619
+
620
+ def poll(self, context):
621
+ """
622
+
623
+ :param context:
624
+ """
625
+ ...
626
+
627
+ def pop(self):
628
+ """ """
629
+ ...
630
+
631
+ def prepend(self, draw_func):
632
+ """
633
+
634
+ :param draw_func:
635
+ """
636
+ ...
637
+
638
+ def property_overridable_library_set(self):
639
+ """ """
640
+ ...
641
+
642
+ def property_unset(self):
643
+ """ """
644
+ ...
645
+
646
+ def remove(self, draw_func):
647
+ """
648
+
649
+ :param draw_func:
650
+ """
651
+ ...
652
+
653
+ def type_recast(self):
654
+ """ """
655
+ ...
656
+
657
+ def values(self):
658
+ """ """
659
+ ...
660
+
503
661
  class COLLECTION_PT_instancing(bpy_types._GenericUI):
504
662
  """ """
505
663
 
@@ -130,6 +130,7 @@ class ARMATURE_MT_collection_context_menu(bpy_types._GenericUI):
130
130
  filter_path,
131
131
  display_name,
132
132
  add_operator,
133
+ add_operator_props,
133
134
  ):
134
135
  """
135
136
 
@@ -141,6 +142,7 @@ class ARMATURE_MT_collection_context_menu(bpy_types._GenericUI):
141
142
  :param filter_path:
142
143
  :param display_name:
143
144
  :param add_operator:
145
+ :param add_operator_props:
144
146
  """
145
147
  ...
146
148
 
@@ -309,6 +311,7 @@ class ARMATURE_MT_collection_tree_context_menu(bpy_types._GenericUI):
309
311
  filter_path,
310
312
  display_name,
311
313
  add_operator,
314
+ add_operator_props,
312
315
  ):
313
316
  """
314
317
 
@@ -320,6 +323,7 @@ class ARMATURE_MT_collection_tree_context_menu(bpy_types._GenericUI):
320
323
  :param filter_path:
321
324
  :param display_name:
322
325
  :param add_operator:
326
+ :param add_operator_props:
323
327
  """
324
328
  ...
325
329
 
@@ -148,6 +148,7 @@ class CAMERA_PT_presets(bpy_types._GenericUI):
148
148
  filter_path,
149
149
  display_name,
150
150
  add_operator,
151
+ add_operator_props,
151
152
  ):
152
153
  """
153
154
 
@@ -159,6 +160,7 @@ class CAMERA_PT_presets(bpy_types._GenericUI):
159
160
  :param filter_path:
160
161
  :param display_name:
161
162
  :param add_operator:
163
+ :param add_operator_props:
162
164
  """
163
165
  ...
164
166
 
@@ -345,6 +347,7 @@ class CAMERA_PT_safe_areas_presets(bpy_types._GenericUI):
345
347
  filter_path,
346
348
  display_name,
347
349
  add_operator,
350
+ add_operator_props,
348
351
  ):
349
352
  """
350
353
 
@@ -356,6 +359,7 @@ class CAMERA_PT_safe_areas_presets(bpy_types._GenericUI):
356
359
  :param filter_path:
357
360
  :param display_name:
358
361
  :param add_operator:
362
+ :param add_operator_props:
359
363
  """
360
364
  ...
361
365
 
@@ -141,6 +141,7 @@ class CURVES_MT_add_attribute(bpy_types._GenericUI):
141
141
  filter_path,
142
142
  display_name,
143
143
  add_operator,
144
+ add_operator_props,
144
145
  ):
145
146
  """
146
147
 
@@ -152,6 +153,7 @@ class CURVES_MT_add_attribute(bpy_types._GenericUI):
152
153
  :param filter_path:
153
154
  :param display_name:
154
155
  :param add_operator:
156
+ :param add_operator_props:
155
157
  """
156
158
  ...
157
159
 
@@ -2578,6 +2578,7 @@ class GPENCIL_MT_gpencil_vertex_group(bpy_types._GenericUI):
2578
2578
  filter_path,
2579
2579
  display_name,
2580
2580
  add_operator,
2581
+ add_operator_props,
2581
2582
  ):
2582
2583
  """
2583
2584
 
@@ -2589,6 +2590,7 @@ class GPENCIL_MT_gpencil_vertex_group(bpy_types._GenericUI):
2589
2590
  :param filter_path:
2590
2591
  :param display_name:
2591
2592
  :param add_operator:
2593
+ :param add_operator_props:
2592
2594
  """
2593
2595
  ...
2594
2596
 
@@ -2757,6 +2759,7 @@ class GPENCIL_MT_layer_context_menu(bpy_types._GenericUI):
2757
2759
  filter_path,
2758
2760
  display_name,
2759
2761
  add_operator,
2762
+ add_operator_props,
2760
2763
  ):
2761
2764
  """
2762
2765
 
@@ -2768,6 +2771,7 @@ class GPENCIL_MT_layer_context_menu(bpy_types._GenericUI):
2768
2771
  :param filter_path:
2769
2772
  :param display_name:
2770
2773
  :param add_operator:
2774
+ :param add_operator_props:
2771
2775
  """
2772
2776
  ...
2773
2777
 
@@ -1762,6 +1762,7 @@ class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(bpy_types._GenericUI):
1762
1762
  filter_path,
1763
1763
  display_name,
1764
1764
  add_operator,
1765
+ add_operator_props,
1765
1766
  ):
1766
1767
  """
1767
1768
 
@@ -1773,6 +1774,7 @@ class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(bpy_types._GenericUI):
1773
1774
  :param filter_path:
1774
1775
  :param display_name:
1775
1776
  :param add_operator:
1777
+ :param add_operator_props:
1776
1778
  """
1777
1779
  ...
1778
1780
 
@@ -1941,6 +1943,7 @@ class GREASE_PENCIL_MT_layer_mask_add(bpy_types._GenericUI):
1941
1943
  filter_path,
1942
1944
  display_name,
1943
1945
  add_operator,
1946
+ add_operator_props,
1944
1947
  ):
1945
1948
  """
1946
1949
 
@@ -1952,6 +1955,7 @@ class GREASE_PENCIL_MT_layer_mask_add(bpy_types._GenericUI):
1952
1955
  :param filter_path:
1953
1956
  :param display_name:
1954
1957
  :param add_operator:
1958
+ :param add_operator_props:
1955
1959
  """
1956
1960
  ...
1957
1961
 
@@ -1762,6 +1762,7 @@ class MESH_MT_attribute_context_menu(bpy_types._GenericUI):
1762
1762
  filter_path,
1763
1763
  display_name,
1764
1764
  add_operator,
1765
+ add_operator_props,
1765
1766
  ):
1766
1767
  """
1767
1768
 
@@ -1773,6 +1774,7 @@ class MESH_MT_attribute_context_menu(bpy_types._GenericUI):
1773
1774
  :param filter_path:
1774
1775
  :param display_name:
1775
1776
  :param add_operator:
1777
+ :param add_operator_props:
1776
1778
  """
1777
1779
  ...
1778
1780
 
@@ -1941,6 +1943,7 @@ class MESH_MT_color_attribute_context_menu(bpy_types._GenericUI):
1941
1943
  filter_path,
1942
1944
  display_name,
1943
1945
  add_operator,
1946
+ add_operator_props,
1944
1947
  ):
1945
1948
  """
1946
1949
 
@@ -1952,6 +1955,7 @@ class MESH_MT_color_attribute_context_menu(bpy_types._GenericUI):
1952
1955
  :param filter_path:
1953
1956
  :param display_name:
1954
1957
  :param add_operator:
1958
+ :param add_operator_props:
1955
1959
  """
1956
1960
  ...
1957
1961
 
@@ -2120,6 +2124,7 @@ class MESH_MT_shape_key_context_menu(bpy_types._GenericUI):
2120
2124
  filter_path,
2121
2125
  display_name,
2122
2126
  add_operator,
2127
+ add_operator_props,
2123
2128
  ):
2124
2129
  """
2125
2130
 
@@ -2131,6 +2136,7 @@ class MESH_MT_shape_key_context_menu(bpy_types._GenericUI):
2131
2136
  :param filter_path:
2132
2137
  :param display_name:
2133
2138
  :param add_operator:
2139
+ :param add_operator_props:
2134
2140
  """
2135
2141
  ...
2136
2142
 
@@ -2299,6 +2305,7 @@ class MESH_MT_vertex_group_context_menu(bpy_types._GenericUI):
2299
2305
  filter_path,
2300
2306
  display_name,
2301
2307
  add_operator,
2308
+ add_operator_props,
2302
2309
  ):
2303
2310
  """
2304
2311
 
@@ -2310,6 +2317,7 @@ class MESH_MT_vertex_group_context_menu(bpy_types._GenericUI):
2310
2317
  :param filter_path:
2311
2318
  :param display_name:
2312
2319
  :param add_operator:
2320
+ :param add_operator_props:
2313
2321
  """
2314
2322
  ...
2315
2323