fake-bpy-module 20240408__py3-none-any.whl → 20240409__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.
- bl_operators/presets/__init__.pyi +201 -0
- bl_operators/wm/__init__.pyi +8 -0
- bl_ui/__init__.pyi +5 -0
- bl_ui/anim/__init__.pyi +2 -0
- bl_ui/node_add_menu/__init__.pyi +2 -0
- bl_ui/node_add_menu_compositor/__init__.pyi +36 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +96 -0
- bl_ui/node_add_menu_shader/__init__.pyi +20 -0
- bl_ui/node_add_menu_texture/__init__.pyi +18 -0
- bl_ui/properties_collection/__init__.pyi +158 -0
- bl_ui/properties_data_armature/__init__.pyi +4 -0
- bl_ui/properties_data_camera/__init__.pyi +4 -0
- bl_ui/properties_data_curves/__init__.pyi +2 -0
- bl_ui/properties_data_gpencil/__init__.pyi +4 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +4 -0
- bl_ui/properties_data_mesh/__init__.pyi +8 -0
- bl_ui/properties_data_modifier/__init__.pyi +12 -0
- bl_ui/properties_data_pointcloud/__init__.pyi +2 -0
- bl_ui/properties_freestyle/__init__.pyi +2 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +20 -0
- bl_ui/properties_mask_common/__init__.pyi +12 -0
- bl_ui/properties_material/__init__.pyi +2 -0
- bl_ui/properties_material_gpencil/__init__.pyi +4 -0
- bl_ui/properties_object/__init__.pyi +2 -0
- bl_ui/properties_output/__init__.pyi +6 -0
- bl_ui/properties_paint_common/__init__.pyi +2 -0
- bl_ui/properties_particle/__init__.pyi +4 -0
- bl_ui/properties_physics_cloth/__init__.pyi +2 -0
- bl_ui/properties_physics_fluid/__init__.pyi +2 -0
- bl_ui/properties_render/__init__.pyi +2 -0
- bl_ui/properties_texture/__init__.pyi +2 -0
- bl_ui/properties_view_layer/__init__.pyi +2 -0
- bl_ui/space_clip/__init__.pyi +60 -0
- bl_ui/space_console/__init__.pyi +10 -0
- bl_ui/space_dopesheet/__init__.pyi +28 -0
- bl_ui/space_filebrowser/__init__.pyi +26 -0
- bl_ui/space_graph/__init__.pyi +32 -0
- bl_ui/space_image/__init__.pyi +46 -0
- bl_ui/space_info/__init__.pyi +10 -0
- bl_ui/space_nla/__init__.pyi +26 -0
- bl_ui/space_node/__init__.pyi +24 -0
- bl_ui/space_outliner/__init__.pyi +24 -0
- bl_ui/space_sequencer/__init__.pyi +72 -0
- bl_ui/space_text/__init__.pyi +24 -0
- bl_ui/space_time/__init__.pyi +8 -0
- bl_ui/space_toolsystem_common/__init__.pyi +2 -0
- bl_ui/space_topbar/__init__.pyi +38 -0
- bl_ui/space_userpref/__init__.pyi +12 -0
- bl_ui/space_view3d/__init__.pyi +382 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +10 -0
- bl_ui/temp_anim_layers/__init__.pyi +165 -0
- bl_ui/temp_anim_layers/py.typed +0 -0
- bl_ui/utils/__init__.pyi +2 -0
- bpy/ops/collection/__init__.pyi +65 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/nla/__init__.pyi +1 -1
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/wm/__init__.pyi +20 -0
- bpy/types/__init__.pyi +775 -125
- bpy_types/__init__.pyi +2 -0
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/RECORD +64 -62
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/top_level.txt +0 -0
|
@@ -640,6 +640,7 @@ class OBJECT_MT_modifier_add(bpy_types._GenericUI):
|
|
|
640
640
|
filter_path,
|
|
641
641
|
display_name,
|
|
642
642
|
add_operator,
|
|
643
|
+
add_operator_props,
|
|
643
644
|
):
|
|
644
645
|
"""
|
|
645
646
|
|
|
@@ -651,6 +652,7 @@ class OBJECT_MT_modifier_add(bpy_types._GenericUI):
|
|
|
651
652
|
:param filter_path:
|
|
652
653
|
:param display_name:
|
|
653
654
|
:param add_operator:
|
|
655
|
+
:param add_operator_props:
|
|
654
656
|
"""
|
|
655
657
|
...
|
|
656
658
|
|
|
@@ -839,6 +841,7 @@ class OBJECT_MT_modifier_add_color(bpy_types._GenericUI):
|
|
|
839
841
|
filter_path,
|
|
840
842
|
display_name,
|
|
841
843
|
add_operator,
|
|
844
|
+
add_operator_props,
|
|
842
845
|
):
|
|
843
846
|
"""
|
|
844
847
|
|
|
@@ -850,6 +853,7 @@ class OBJECT_MT_modifier_add_color(bpy_types._GenericUI):
|
|
|
850
853
|
:param filter_path:
|
|
851
854
|
:param display_name:
|
|
852
855
|
:param add_operator:
|
|
856
|
+
:param add_operator_props:
|
|
853
857
|
"""
|
|
854
858
|
...
|
|
855
859
|
|
|
@@ -1038,6 +1042,7 @@ class OBJECT_MT_modifier_add_deform(bpy_types._GenericUI):
|
|
|
1038
1042
|
filter_path,
|
|
1039
1043
|
display_name,
|
|
1040
1044
|
add_operator,
|
|
1045
|
+
add_operator_props,
|
|
1041
1046
|
):
|
|
1042
1047
|
"""
|
|
1043
1048
|
|
|
@@ -1049,6 +1054,7 @@ class OBJECT_MT_modifier_add_deform(bpy_types._GenericUI):
|
|
|
1049
1054
|
:param filter_path:
|
|
1050
1055
|
:param display_name:
|
|
1051
1056
|
:param add_operator:
|
|
1057
|
+
:param add_operator_props:
|
|
1052
1058
|
"""
|
|
1053
1059
|
...
|
|
1054
1060
|
|
|
@@ -1237,6 +1243,7 @@ class OBJECT_MT_modifier_add_edit(bpy_types._GenericUI):
|
|
|
1237
1243
|
filter_path,
|
|
1238
1244
|
display_name,
|
|
1239
1245
|
add_operator,
|
|
1246
|
+
add_operator_props,
|
|
1240
1247
|
):
|
|
1241
1248
|
"""
|
|
1242
1249
|
|
|
@@ -1248,6 +1255,7 @@ class OBJECT_MT_modifier_add_edit(bpy_types._GenericUI):
|
|
|
1248
1255
|
:param filter_path:
|
|
1249
1256
|
:param display_name:
|
|
1250
1257
|
:param add_operator:
|
|
1258
|
+
:param add_operator_props:
|
|
1251
1259
|
"""
|
|
1252
1260
|
...
|
|
1253
1261
|
|
|
@@ -1436,6 +1444,7 @@ class OBJECT_MT_modifier_add_generate(bpy_types._GenericUI):
|
|
|
1436
1444
|
filter_path,
|
|
1437
1445
|
display_name,
|
|
1438
1446
|
add_operator,
|
|
1447
|
+
add_operator_props,
|
|
1439
1448
|
):
|
|
1440
1449
|
"""
|
|
1441
1450
|
|
|
@@ -1447,6 +1456,7 @@ class OBJECT_MT_modifier_add_generate(bpy_types._GenericUI):
|
|
|
1447
1456
|
:param filter_path:
|
|
1448
1457
|
:param display_name:
|
|
1449
1458
|
:param add_operator:
|
|
1459
|
+
:param add_operator_props:
|
|
1450
1460
|
"""
|
|
1451
1461
|
...
|
|
1452
1462
|
|
|
@@ -1635,6 +1645,7 @@ class OBJECT_MT_modifier_add_physics(bpy_types._GenericUI):
|
|
|
1635
1645
|
filter_path,
|
|
1636
1646
|
display_name,
|
|
1637
1647
|
add_operator,
|
|
1648
|
+
add_operator_props,
|
|
1638
1649
|
):
|
|
1639
1650
|
"""
|
|
1640
1651
|
|
|
@@ -1646,6 +1657,7 @@ class OBJECT_MT_modifier_add_physics(bpy_types._GenericUI):
|
|
|
1646
1657
|
:param filter_path:
|
|
1647
1658
|
:param display_name:
|
|
1648
1659
|
:param add_operator:
|
|
1660
|
+
:param add_operator_props:
|
|
1649
1661
|
"""
|
|
1650
1662
|
...
|
|
1651
1663
|
|
|
@@ -646,6 +646,7 @@ class POINTCLOUD_MT_add_attribute(bpy_types._GenericUI):
|
|
|
646
646
|
filter_path,
|
|
647
647
|
display_name,
|
|
648
648
|
add_operator,
|
|
649
|
+
add_operator_props,
|
|
649
650
|
):
|
|
650
651
|
"""
|
|
651
652
|
|
|
@@ -657,6 +658,7 @@ class POINTCLOUD_MT_add_attribute(bpy_types._GenericUI):
|
|
|
657
658
|
:param filter_path:
|
|
658
659
|
:param display_name:
|
|
659
660
|
:param add_operator:
|
|
661
|
+
:param add_operator_props:
|
|
660
662
|
"""
|
|
661
663
|
...
|
|
662
664
|
|
|
@@ -311,6 +311,7 @@ class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
|
311
311
|
filter_path,
|
|
312
312
|
display_name,
|
|
313
313
|
add_operator,
|
|
314
|
+
add_operator_props,
|
|
314
315
|
):
|
|
315
316
|
"""
|
|
316
317
|
|
|
@@ -322,6 +323,7 @@ class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
|
322
323
|
:param filter_path:
|
|
323
324
|
:param display_name:
|
|
324
325
|
:param add_operator:
|
|
326
|
+
:param add_operator_props:
|
|
325
327
|
"""
|
|
326
328
|
...
|
|
327
329
|
|
|
@@ -217,6 +217,7 @@ class GPENCIL_MT_cleanup(bpy_types._GenericUI):
|
|
|
217
217
|
filter_path,
|
|
218
218
|
display_name,
|
|
219
219
|
add_operator,
|
|
220
|
+
add_operator_props,
|
|
220
221
|
):
|
|
221
222
|
"""
|
|
222
223
|
|
|
@@ -228,6 +229,7 @@ class GPENCIL_MT_cleanup(bpy_types._GenericUI):
|
|
|
228
229
|
:param filter_path:
|
|
229
230
|
:param display_name:
|
|
230
231
|
:param add_operator:
|
|
232
|
+
:param add_operator_props:
|
|
231
233
|
"""
|
|
232
234
|
...
|
|
233
235
|
|
|
@@ -396,6 +398,7 @@ class GPENCIL_MT_gpencil_draw_delete(bpy_types._GenericUI):
|
|
|
396
398
|
filter_path,
|
|
397
399
|
display_name,
|
|
398
400
|
add_operator,
|
|
401
|
+
add_operator_props,
|
|
399
402
|
):
|
|
400
403
|
"""
|
|
401
404
|
|
|
@@ -407,6 +410,7 @@ class GPENCIL_MT_gpencil_draw_delete(bpy_types._GenericUI):
|
|
|
407
410
|
:param filter_path:
|
|
408
411
|
:param display_name:
|
|
409
412
|
:param add_operator:
|
|
413
|
+
:param add_operator_props:
|
|
410
414
|
"""
|
|
411
415
|
...
|
|
412
416
|
|
|
@@ -575,6 +579,7 @@ class GPENCIL_MT_layer_active(bpy_types._GenericUI):
|
|
|
575
579
|
filter_path,
|
|
576
580
|
display_name,
|
|
577
581
|
add_operator,
|
|
582
|
+
add_operator_props,
|
|
578
583
|
):
|
|
579
584
|
"""
|
|
580
585
|
|
|
@@ -586,6 +591,7 @@ class GPENCIL_MT_layer_active(bpy_types._GenericUI):
|
|
|
586
591
|
:param filter_path:
|
|
587
592
|
:param display_name:
|
|
588
593
|
:param add_operator:
|
|
594
|
+
:param add_operator_props:
|
|
589
595
|
"""
|
|
590
596
|
...
|
|
591
597
|
|
|
@@ -754,6 +760,7 @@ class GPENCIL_MT_layer_mask_menu(bpy_types._GenericUI):
|
|
|
754
760
|
filter_path,
|
|
755
761
|
display_name,
|
|
756
762
|
add_operator,
|
|
763
|
+
add_operator_props,
|
|
757
764
|
):
|
|
758
765
|
"""
|
|
759
766
|
|
|
@@ -765,6 +772,7 @@ class GPENCIL_MT_layer_mask_menu(bpy_types._GenericUI):
|
|
|
765
772
|
:param filter_path:
|
|
766
773
|
:param display_name:
|
|
767
774
|
:param add_operator:
|
|
775
|
+
:param add_operator_props:
|
|
768
776
|
"""
|
|
769
777
|
...
|
|
770
778
|
|
|
@@ -933,6 +941,7 @@ class GPENCIL_MT_material_active(bpy_types._GenericUI):
|
|
|
933
941
|
filter_path,
|
|
934
942
|
display_name,
|
|
935
943
|
add_operator,
|
|
944
|
+
add_operator_props,
|
|
936
945
|
):
|
|
937
946
|
"""
|
|
938
947
|
|
|
@@ -944,6 +953,7 @@ class GPENCIL_MT_material_active(bpy_types._GenericUI):
|
|
|
944
953
|
:param filter_path:
|
|
945
954
|
:param display_name:
|
|
946
955
|
:param add_operator:
|
|
956
|
+
:param add_operator_props:
|
|
947
957
|
"""
|
|
948
958
|
...
|
|
949
959
|
|
|
@@ -1119,6 +1129,7 @@ class GPENCIL_MT_move_to_layer(bpy_types._GenericUI):
|
|
|
1119
1129
|
filter_path,
|
|
1120
1130
|
display_name,
|
|
1121
1131
|
add_operator,
|
|
1132
|
+
add_operator_props,
|
|
1122
1133
|
):
|
|
1123
1134
|
"""
|
|
1124
1135
|
|
|
@@ -1130,6 +1141,7 @@ class GPENCIL_MT_move_to_layer(bpy_types._GenericUI):
|
|
|
1130
1141
|
:param filter_path:
|
|
1131
1142
|
:param display_name:
|
|
1132
1143
|
:param add_operator:
|
|
1144
|
+
:param add_operator_props:
|
|
1133
1145
|
"""
|
|
1134
1146
|
...
|
|
1135
1147
|
|
|
@@ -1298,6 +1310,7 @@ class GPENCIL_MT_snap(bpy_types._GenericUI):
|
|
|
1298
1310
|
filter_path,
|
|
1299
1311
|
display_name,
|
|
1300
1312
|
add_operator,
|
|
1313
|
+
add_operator_props,
|
|
1301
1314
|
):
|
|
1302
1315
|
"""
|
|
1303
1316
|
|
|
@@ -1309,6 +1322,7 @@ class GPENCIL_MT_snap(bpy_types._GenericUI):
|
|
|
1309
1322
|
:param filter_path:
|
|
1310
1323
|
:param display_name:
|
|
1311
1324
|
:param add_operator:
|
|
1325
|
+
:param add_operator_props:
|
|
1312
1326
|
"""
|
|
1313
1327
|
...
|
|
1314
1328
|
|
|
@@ -1477,6 +1491,7 @@ class GPENCIL_MT_snap_pie(bpy_types._GenericUI):
|
|
|
1477
1491
|
filter_path,
|
|
1478
1492
|
display_name,
|
|
1479
1493
|
add_operator,
|
|
1494
|
+
add_operator_props,
|
|
1480
1495
|
):
|
|
1481
1496
|
"""
|
|
1482
1497
|
|
|
@@ -1488,6 +1503,7 @@ class GPENCIL_MT_snap_pie(bpy_types._GenericUI):
|
|
|
1488
1503
|
:param filter_path:
|
|
1489
1504
|
:param display_name:
|
|
1490
1505
|
:param add_operator:
|
|
1506
|
+
:param add_operator_props:
|
|
1491
1507
|
"""
|
|
1492
1508
|
...
|
|
1493
1509
|
|
|
@@ -2118,6 +2134,7 @@ class GREASE_PENCIL_MT_layer_active(bpy_types._GenericUI):
|
|
|
2118
2134
|
filter_path,
|
|
2119
2135
|
display_name,
|
|
2120
2136
|
add_operator,
|
|
2137
|
+
add_operator_props,
|
|
2121
2138
|
):
|
|
2122
2139
|
"""
|
|
2123
2140
|
|
|
@@ -2129,6 +2146,7 @@ class GREASE_PENCIL_MT_layer_active(bpy_types._GenericUI):
|
|
|
2129
2146
|
:param filter_path:
|
|
2130
2147
|
:param display_name:
|
|
2131
2148
|
:param add_operator:
|
|
2149
|
+
:param add_operator_props:
|
|
2132
2150
|
"""
|
|
2133
2151
|
...
|
|
2134
2152
|
|
|
@@ -2297,6 +2315,7 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types._GenericUI):
|
|
|
2297
2315
|
filter_path,
|
|
2298
2316
|
display_name,
|
|
2299
2317
|
add_operator,
|
|
2318
|
+
add_operator_props,
|
|
2300
2319
|
):
|
|
2301
2320
|
"""
|
|
2302
2321
|
|
|
@@ -2308,6 +2327,7 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types._GenericUI):
|
|
|
2308
2327
|
:param filter_path:
|
|
2309
2328
|
:param display_name:
|
|
2310
2329
|
:param add_operator:
|
|
2330
|
+
:param add_operator_props:
|
|
2311
2331
|
"""
|
|
2312
2332
|
...
|
|
2313
2333
|
|
|
@@ -136,6 +136,7 @@ class MASK_MT_add(bpy_types._GenericUI):
|
|
|
136
136
|
filter_path,
|
|
137
137
|
display_name,
|
|
138
138
|
add_operator,
|
|
139
|
+
add_operator_props,
|
|
139
140
|
):
|
|
140
141
|
"""
|
|
141
142
|
|
|
@@ -147,6 +148,7 @@ class MASK_MT_add(bpy_types._GenericUI):
|
|
|
147
148
|
:param filter_path:
|
|
148
149
|
:param display_name:
|
|
149
150
|
:param add_operator:
|
|
151
|
+
:param add_operator_props:
|
|
150
152
|
"""
|
|
151
153
|
...
|
|
152
154
|
|
|
@@ -315,6 +317,7 @@ class MASK_MT_animation(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 MASK_MT_animation(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
|
|
|
@@ -494,6 +498,7 @@ class MASK_MT_mask(bpy_types._GenericUI):
|
|
|
494
498
|
filter_path,
|
|
495
499
|
display_name,
|
|
496
500
|
add_operator,
|
|
501
|
+
add_operator_props,
|
|
497
502
|
):
|
|
498
503
|
"""
|
|
499
504
|
|
|
@@ -505,6 +510,7 @@ class MASK_MT_mask(bpy_types._GenericUI):
|
|
|
505
510
|
:param filter_path:
|
|
506
511
|
:param display_name:
|
|
507
512
|
:param add_operator:
|
|
513
|
+
:param add_operator_props:
|
|
508
514
|
"""
|
|
509
515
|
...
|
|
510
516
|
|
|
@@ -673,6 +679,7 @@ class MASK_MT_select(bpy_types._GenericUI):
|
|
|
673
679
|
filter_path,
|
|
674
680
|
display_name,
|
|
675
681
|
add_operator,
|
|
682
|
+
add_operator_props,
|
|
676
683
|
):
|
|
677
684
|
"""
|
|
678
685
|
|
|
@@ -684,6 +691,7 @@ class MASK_MT_select(bpy_types._GenericUI):
|
|
|
684
691
|
:param filter_path:
|
|
685
692
|
:param display_name:
|
|
686
693
|
:param add_operator:
|
|
694
|
+
:param add_operator_props:
|
|
687
695
|
"""
|
|
688
696
|
...
|
|
689
697
|
|
|
@@ -852,6 +860,7 @@ class MASK_MT_transform(bpy_types._GenericUI):
|
|
|
852
860
|
filter_path,
|
|
853
861
|
display_name,
|
|
854
862
|
add_operator,
|
|
863
|
+
add_operator_props,
|
|
855
864
|
):
|
|
856
865
|
"""
|
|
857
866
|
|
|
@@ -863,6 +872,7 @@ class MASK_MT_transform(bpy_types._GenericUI):
|
|
|
863
872
|
:param filter_path:
|
|
864
873
|
:param display_name:
|
|
865
874
|
:param add_operator:
|
|
875
|
+
:param add_operator_props:
|
|
866
876
|
"""
|
|
867
877
|
...
|
|
868
878
|
|
|
@@ -1031,6 +1041,7 @@ class MASK_MT_visibility(bpy_types._GenericUI):
|
|
|
1031
1041
|
filter_path,
|
|
1032
1042
|
display_name,
|
|
1033
1043
|
add_operator,
|
|
1044
|
+
add_operator_props,
|
|
1034
1045
|
):
|
|
1035
1046
|
"""
|
|
1036
1047
|
|
|
@@ -1042,6 +1053,7 @@ class MASK_MT_visibility(bpy_types._GenericUI):
|
|
|
1042
1053
|
:param filter_path:
|
|
1043
1054
|
:param display_name:
|
|
1044
1055
|
:param add_operator:
|
|
1056
|
+
:param add_operator_props:
|
|
1045
1057
|
"""
|
|
1046
1058
|
...
|
|
1047
1059
|
|
|
@@ -1585,6 +1585,7 @@ class MATERIAL_MT_context_menu(bpy_types._GenericUI):
|
|
|
1585
1585
|
filter_path,
|
|
1586
1586
|
display_name,
|
|
1587
1587
|
add_operator,
|
|
1588
|
+
add_operator_props,
|
|
1588
1589
|
):
|
|
1589
1590
|
"""
|
|
1590
1591
|
|
|
@@ -1596,6 +1597,7 @@ class MATERIAL_MT_context_menu(bpy_types._GenericUI):
|
|
|
1596
1597
|
:param filter_path:
|
|
1597
1598
|
:param display_name:
|
|
1598
1599
|
:param add_operator:
|
|
1600
|
+
:param add_operator_props:
|
|
1599
1601
|
"""
|
|
1600
1602
|
...
|
|
1601
1603
|
|
|
@@ -130,6 +130,7 @@ class GPENCIL_MT_material_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 GPENCIL_MT_material_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
|
|
|
@@ -828,6 +830,7 @@ class MATERIAL_PT_gpencil_material_presets(bpy_types._GenericUI):
|
|
|
828
830
|
filter_path,
|
|
829
831
|
display_name,
|
|
830
832
|
add_operator,
|
|
833
|
+
add_operator_props,
|
|
831
834
|
):
|
|
832
835
|
"""
|
|
833
836
|
|
|
@@ -839,6 +842,7 @@ class MATERIAL_PT_gpencil_material_presets(bpy_types._GenericUI):
|
|
|
839
842
|
:param filter_path:
|
|
840
843
|
:param display_name:
|
|
841
844
|
:param add_operator:
|
|
845
|
+
:param add_operator_props:
|
|
842
846
|
"""
|
|
843
847
|
...
|
|
844
848
|
|
|
@@ -130,6 +130,7 @@ class COLLECTION_MT_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 COLLECTION_MT_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
|
|
|
@@ -136,6 +136,7 @@ class RENDER_MT_framerate_presets(bpy_types._GenericUI):
|
|
|
136
136
|
filter_path,
|
|
137
137
|
display_name,
|
|
138
138
|
add_operator,
|
|
139
|
+
add_operator_props,
|
|
139
140
|
):
|
|
140
141
|
"""
|
|
141
142
|
|
|
@@ -147,6 +148,7 @@ class RENDER_MT_framerate_presets(bpy_types._GenericUI):
|
|
|
147
148
|
:param filter_path:
|
|
148
149
|
:param display_name:
|
|
149
150
|
:param add_operator:
|
|
151
|
+
:param add_operator_props:
|
|
150
152
|
"""
|
|
151
153
|
...
|
|
152
154
|
|
|
@@ -830,6 +832,7 @@ class RENDER_PT_ffmpeg_presets(bpy_types._GenericUI):
|
|
|
830
832
|
filter_path,
|
|
831
833
|
display_name,
|
|
832
834
|
add_operator,
|
|
835
|
+
add_operator_props,
|
|
833
836
|
):
|
|
834
837
|
"""
|
|
835
838
|
|
|
@@ -841,6 +844,7 @@ class RENDER_PT_ffmpeg_presets(bpy_types._GenericUI):
|
|
|
841
844
|
:param filter_path:
|
|
842
845
|
:param display_name:
|
|
843
846
|
:param add_operator:
|
|
847
|
+
:param add_operator_props:
|
|
844
848
|
"""
|
|
845
849
|
...
|
|
846
850
|
|
|
@@ -1198,6 +1202,7 @@ class RENDER_PT_format_presets(bpy_types._GenericUI):
|
|
|
1198
1202
|
filter_path,
|
|
1199
1203
|
display_name,
|
|
1200
1204
|
add_operator,
|
|
1205
|
+
add_operator_props,
|
|
1201
1206
|
):
|
|
1202
1207
|
"""
|
|
1203
1208
|
|
|
@@ -1209,6 +1214,7 @@ class RENDER_PT_format_presets(bpy_types._GenericUI):
|
|
|
1209
1214
|
:param filter_path:
|
|
1210
1215
|
:param display_name:
|
|
1211
1216
|
:param add_operator:
|
|
1217
|
+
:param add_operator_props:
|
|
1212
1218
|
"""
|
|
1213
1219
|
...
|
|
1214
1220
|
|
|
@@ -199,6 +199,7 @@ class VIEW3D_MT_tools_projectpaint_clone(bpy_types._GenericUI):
|
|
|
199
199
|
filter_path,
|
|
200
200
|
display_name,
|
|
201
201
|
add_operator,
|
|
202
|
+
add_operator_props,
|
|
202
203
|
):
|
|
203
204
|
"""
|
|
204
205
|
|
|
@@ -210,6 +211,7 @@ class VIEW3D_MT_tools_projectpaint_clone(bpy_types._GenericUI):
|
|
|
210
211
|
:param filter_path:
|
|
211
212
|
:param display_name:
|
|
212
213
|
:param add_operator:
|
|
214
|
+
:param add_operator_props:
|
|
213
215
|
"""
|
|
214
216
|
...
|
|
215
217
|
|
|
@@ -133,6 +133,7 @@ class PARTICLE_MT_context_menu(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 PARTICLE_MT_context_menu(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
|
|
|
@@ -3792,6 +3794,7 @@ class PARTICLE_PT_hair_dynamics_presets(bpy_types._GenericUI):
|
|
|
3792
3794
|
filter_path,
|
|
3793
3795
|
display_name,
|
|
3794
3796
|
add_operator,
|
|
3797
|
+
add_operator_props,
|
|
3795
3798
|
):
|
|
3796
3799
|
"""
|
|
3797
3800
|
|
|
@@ -3803,6 +3806,7 @@ class PARTICLE_PT_hair_dynamics_presets(bpy_types._GenericUI):
|
|
|
3803
3806
|
:param filter_path:
|
|
3804
3807
|
:param display_name:
|
|
3805
3808
|
:param add_operator:
|
|
3809
|
+
:param add_operator_props:
|
|
3806
3810
|
"""
|
|
3807
3811
|
...
|
|
3808
3812
|
|
|
@@ -145,6 +145,7 @@ class CLOTH_PT_presets(bpy_types._GenericUI):
|
|
|
145
145
|
filter_path,
|
|
146
146
|
display_name,
|
|
147
147
|
add_operator,
|
|
148
|
+
add_operator_props,
|
|
148
149
|
):
|
|
149
150
|
"""
|
|
150
151
|
|
|
@@ -156,6 +157,7 @@ class CLOTH_PT_presets(bpy_types._GenericUI):
|
|
|
156
157
|
:param filter_path:
|
|
157
158
|
:param display_name:
|
|
158
159
|
:param add_operator:
|
|
160
|
+
:param add_operator_props:
|
|
159
161
|
"""
|
|
160
162
|
...
|
|
161
163
|
|
|
@@ -145,6 +145,7 @@ class FLUID_PT_presets(bpy_types._GenericUI):
|
|
|
145
145
|
filter_path,
|
|
146
146
|
display_name,
|
|
147
147
|
add_operator,
|
|
148
|
+
add_operator_props,
|
|
148
149
|
):
|
|
149
150
|
"""
|
|
150
151
|
|
|
@@ -156,6 +157,7 @@ class FLUID_PT_presets(bpy_types._GenericUI):
|
|
|
156
157
|
:param filter_path:
|
|
157
158
|
:param display_name:
|
|
158
159
|
:param add_operator:
|
|
160
|
+
:param add_operator_props:
|
|
159
161
|
"""
|
|
160
162
|
...
|
|
161
163
|
|
|
@@ -3940,6 +3940,7 @@ class RENDER_PT_eevee_next_raytracing_presets(bpy_types._GenericUI):
|
|
|
3940
3940
|
filter_path,
|
|
3941
3941
|
display_name,
|
|
3942
3942
|
add_operator,
|
|
3943
|
+
add_operator_props,
|
|
3943
3944
|
):
|
|
3944
3945
|
"""
|
|
3945
3946
|
|
|
@@ -3951,6 +3952,7 @@ class RENDER_PT_eevee_next_raytracing_presets(bpy_types._GenericUI):
|
|
|
3951
3952
|
:param filter_path:
|
|
3952
3953
|
:param display_name:
|
|
3953
3954
|
:param add_operator:
|
|
3955
|
+
:param add_operator_props:
|
|
3954
3956
|
"""
|
|
3955
3957
|
...
|
|
3956
3958
|
|
|
@@ -133,6 +133,7 @@ class TEXTURE_MT_context_menu(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 TEXTURE_MT_context_menu(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
|
|
|
@@ -130,6 +130,7 @@ class VIEWLAYER_MT_lightgroup_sync(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 VIEWLAYER_MT_lightgroup_sync(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
|
|