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
bl_ui/space_text/__init__.pyi
CHANGED
|
@@ -413,6 +413,7 @@ class TEXT_MT_context_menu(bpy_types._GenericUI):
|
|
|
413
413
|
filter_path,
|
|
414
414
|
display_name,
|
|
415
415
|
add_operator,
|
|
416
|
+
add_operator_props,
|
|
416
417
|
):
|
|
417
418
|
"""
|
|
418
419
|
|
|
@@ -424,6 +425,7 @@ class TEXT_MT_context_menu(bpy_types._GenericUI):
|
|
|
424
425
|
:param filter_path:
|
|
425
426
|
:param display_name:
|
|
426
427
|
:param add_operator:
|
|
428
|
+
:param add_operator_props:
|
|
427
429
|
"""
|
|
428
430
|
...
|
|
429
431
|
|
|
@@ -592,6 +594,7 @@ class TEXT_MT_edit(bpy_types._GenericUI):
|
|
|
592
594
|
filter_path,
|
|
593
595
|
display_name,
|
|
594
596
|
add_operator,
|
|
597
|
+
add_operator_props,
|
|
595
598
|
):
|
|
596
599
|
"""
|
|
597
600
|
|
|
@@ -603,6 +606,7 @@ class TEXT_MT_edit(bpy_types._GenericUI):
|
|
|
603
606
|
:param filter_path:
|
|
604
607
|
:param display_name:
|
|
605
608
|
:param add_operator:
|
|
609
|
+
:param add_operator_props:
|
|
606
610
|
"""
|
|
607
611
|
...
|
|
608
612
|
|
|
@@ -778,6 +782,7 @@ class TEXT_MT_edit_to3d(bpy_types._GenericUI):
|
|
|
778
782
|
filter_path,
|
|
779
783
|
display_name,
|
|
780
784
|
add_operator,
|
|
785
|
+
add_operator_props,
|
|
781
786
|
):
|
|
782
787
|
"""
|
|
783
788
|
|
|
@@ -789,6 +794,7 @@ class TEXT_MT_edit_to3d(bpy_types._GenericUI):
|
|
|
789
794
|
:param filter_path:
|
|
790
795
|
:param display_name:
|
|
791
796
|
:param add_operator:
|
|
797
|
+
:param add_operator_props:
|
|
792
798
|
"""
|
|
793
799
|
...
|
|
794
800
|
|
|
@@ -960,6 +966,7 @@ class TEXT_MT_editor_menus(bpy_types._GenericUI):
|
|
|
960
966
|
filter_path,
|
|
961
967
|
display_name,
|
|
962
968
|
add_operator,
|
|
969
|
+
add_operator_props,
|
|
963
970
|
):
|
|
964
971
|
"""
|
|
965
972
|
|
|
@@ -971,6 +978,7 @@ class TEXT_MT_editor_menus(bpy_types._GenericUI):
|
|
|
971
978
|
:param filter_path:
|
|
972
979
|
:param display_name:
|
|
973
980
|
:param add_operator:
|
|
981
|
+
:param add_operator_props:
|
|
974
982
|
"""
|
|
975
983
|
...
|
|
976
984
|
|
|
@@ -1139,6 +1147,7 @@ class TEXT_MT_format(bpy_types._GenericUI):
|
|
|
1139
1147
|
filter_path,
|
|
1140
1148
|
display_name,
|
|
1141
1149
|
add_operator,
|
|
1150
|
+
add_operator_props,
|
|
1142
1151
|
):
|
|
1143
1152
|
"""
|
|
1144
1153
|
|
|
@@ -1150,6 +1159,7 @@ class TEXT_MT_format(bpy_types._GenericUI):
|
|
|
1150
1159
|
:param filter_path:
|
|
1151
1160
|
:param display_name:
|
|
1152
1161
|
:param add_operator:
|
|
1162
|
+
:param add_operator_props:
|
|
1153
1163
|
"""
|
|
1154
1164
|
...
|
|
1155
1165
|
|
|
@@ -1318,6 +1328,7 @@ class TEXT_MT_select(bpy_types._GenericUI):
|
|
|
1318
1328
|
filter_path,
|
|
1319
1329
|
display_name,
|
|
1320
1330
|
add_operator,
|
|
1331
|
+
add_operator_props,
|
|
1321
1332
|
):
|
|
1322
1333
|
"""
|
|
1323
1334
|
|
|
@@ -1329,6 +1340,7 @@ class TEXT_MT_select(bpy_types._GenericUI):
|
|
|
1329
1340
|
:param filter_path:
|
|
1330
1341
|
:param display_name:
|
|
1331
1342
|
:param add_operator:
|
|
1343
|
+
:param add_operator_props:
|
|
1332
1344
|
"""
|
|
1333
1345
|
...
|
|
1334
1346
|
|
|
@@ -1497,6 +1509,7 @@ class TEXT_MT_templates(bpy_types._GenericUI):
|
|
|
1497
1509
|
filter_path,
|
|
1498
1510
|
display_name,
|
|
1499
1511
|
add_operator,
|
|
1512
|
+
add_operator_props,
|
|
1500
1513
|
):
|
|
1501
1514
|
"""
|
|
1502
1515
|
|
|
@@ -1508,6 +1521,7 @@ class TEXT_MT_templates(bpy_types._GenericUI):
|
|
|
1508
1521
|
:param filter_path:
|
|
1509
1522
|
:param display_name:
|
|
1510
1523
|
:param add_operator:
|
|
1524
|
+
:param add_operator_props:
|
|
1511
1525
|
"""
|
|
1512
1526
|
...
|
|
1513
1527
|
|
|
@@ -1676,6 +1690,7 @@ class TEXT_MT_templates_osl(bpy_types._GenericUI):
|
|
|
1676
1690
|
filter_path,
|
|
1677
1691
|
display_name,
|
|
1678
1692
|
add_operator,
|
|
1693
|
+
add_operator_props,
|
|
1679
1694
|
):
|
|
1680
1695
|
"""
|
|
1681
1696
|
|
|
@@ -1687,6 +1702,7 @@ class TEXT_MT_templates_osl(bpy_types._GenericUI):
|
|
|
1687
1702
|
:param filter_path:
|
|
1688
1703
|
:param display_name:
|
|
1689
1704
|
:param add_operator:
|
|
1705
|
+
:param add_operator_props:
|
|
1690
1706
|
"""
|
|
1691
1707
|
...
|
|
1692
1708
|
|
|
@@ -1855,6 +1871,7 @@ class TEXT_MT_templates_py(bpy_types._GenericUI):
|
|
|
1855
1871
|
filter_path,
|
|
1856
1872
|
display_name,
|
|
1857
1873
|
add_operator,
|
|
1874
|
+
add_operator_props,
|
|
1858
1875
|
):
|
|
1859
1876
|
"""
|
|
1860
1877
|
|
|
@@ -1866,6 +1883,7 @@ class TEXT_MT_templates_py(bpy_types._GenericUI):
|
|
|
1866
1883
|
:param filter_path:
|
|
1867
1884
|
:param display_name:
|
|
1868
1885
|
:param add_operator:
|
|
1886
|
+
:param add_operator_props:
|
|
1869
1887
|
"""
|
|
1870
1888
|
...
|
|
1871
1889
|
|
|
@@ -2034,6 +2052,7 @@ class TEXT_MT_text(bpy_types._GenericUI):
|
|
|
2034
2052
|
filter_path,
|
|
2035
2053
|
display_name,
|
|
2036
2054
|
add_operator,
|
|
2055
|
+
add_operator_props,
|
|
2037
2056
|
):
|
|
2038
2057
|
"""
|
|
2039
2058
|
|
|
@@ -2045,6 +2064,7 @@ class TEXT_MT_text(bpy_types._GenericUI):
|
|
|
2045
2064
|
:param filter_path:
|
|
2046
2065
|
:param display_name:
|
|
2047
2066
|
:param add_operator:
|
|
2067
|
+
:param add_operator_props:
|
|
2048
2068
|
"""
|
|
2049
2069
|
...
|
|
2050
2070
|
|
|
@@ -2213,6 +2233,7 @@ class TEXT_MT_view(bpy_types._GenericUI):
|
|
|
2213
2233
|
filter_path,
|
|
2214
2234
|
display_name,
|
|
2215
2235
|
add_operator,
|
|
2236
|
+
add_operator_props,
|
|
2216
2237
|
):
|
|
2217
2238
|
"""
|
|
2218
2239
|
|
|
@@ -2224,6 +2245,7 @@ class TEXT_MT_view(bpy_types._GenericUI):
|
|
|
2224
2245
|
:param filter_path:
|
|
2225
2246
|
:param display_name:
|
|
2226
2247
|
:param add_operator:
|
|
2248
|
+
:param add_operator_props:
|
|
2227
2249
|
"""
|
|
2228
2250
|
...
|
|
2229
2251
|
|
|
@@ -2392,6 +2414,7 @@ class TEXT_MT_view_navigation(bpy_types._GenericUI):
|
|
|
2392
2414
|
filter_path,
|
|
2393
2415
|
display_name,
|
|
2394
2416
|
add_operator,
|
|
2417
|
+
add_operator_props,
|
|
2395
2418
|
):
|
|
2396
2419
|
"""
|
|
2397
2420
|
|
|
@@ -2403,6 +2426,7 @@ class TEXT_MT_view_navigation(bpy_types._GenericUI):
|
|
|
2403
2426
|
:param filter_path:
|
|
2404
2427
|
:param display_name:
|
|
2405
2428
|
:param add_operator:
|
|
2429
|
+
:param add_operator_props:
|
|
2406
2430
|
"""
|
|
2407
2431
|
...
|
|
2408
2432
|
|
bl_ui/space_time/__init__.pyi
CHANGED
|
@@ -141,6 +141,7 @@ class TIME_MT_cache(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 TIME_MT_cache(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
|
|
|
@@ -323,6 +325,7 @@ class TIME_MT_editor_menus(bpy_types._GenericUI):
|
|
|
323
325
|
filter_path,
|
|
324
326
|
display_name,
|
|
325
327
|
add_operator,
|
|
328
|
+
add_operator_props,
|
|
326
329
|
):
|
|
327
330
|
"""
|
|
328
331
|
|
|
@@ -334,6 +337,7 @@ class TIME_MT_editor_menus(bpy_types._GenericUI):
|
|
|
334
337
|
:param filter_path:
|
|
335
338
|
:param display_name:
|
|
336
339
|
:param add_operator:
|
|
340
|
+
:param add_operator_props:
|
|
337
341
|
"""
|
|
338
342
|
...
|
|
339
343
|
|
|
@@ -502,6 +506,7 @@ class TIME_MT_marker(bpy_types._GenericUI):
|
|
|
502
506
|
filter_path,
|
|
503
507
|
display_name,
|
|
504
508
|
add_operator,
|
|
509
|
+
add_operator_props,
|
|
505
510
|
):
|
|
506
511
|
"""
|
|
507
512
|
|
|
@@ -513,6 +518,7 @@ class TIME_MT_marker(bpy_types._GenericUI):
|
|
|
513
518
|
:param filter_path:
|
|
514
519
|
:param display_name:
|
|
515
520
|
:param add_operator:
|
|
521
|
+
:param add_operator_props:
|
|
516
522
|
"""
|
|
517
523
|
...
|
|
518
524
|
|
|
@@ -681,6 +687,7 @@ class TIME_MT_view(bpy_types._GenericUI):
|
|
|
681
687
|
filter_path,
|
|
682
688
|
display_name,
|
|
683
689
|
add_operator,
|
|
690
|
+
add_operator_props,
|
|
684
691
|
):
|
|
685
692
|
"""
|
|
686
693
|
|
|
@@ -692,6 +699,7 @@ class TIME_MT_view(bpy_types._GenericUI):
|
|
|
692
699
|
:param filter_path:
|
|
693
700
|
:param display_name:
|
|
694
701
|
:param add_operator:
|
|
702
|
+
:param add_operator_props:
|
|
695
703
|
"""
|
|
696
704
|
...
|
|
697
705
|
|
|
@@ -305,6 +305,7 @@ class WM_MT_toolsystem_submenu(bpy_types._GenericUI):
|
|
|
305
305
|
filter_path,
|
|
306
306
|
display_name,
|
|
307
307
|
add_operator,
|
|
308
|
+
add_operator_props,
|
|
308
309
|
):
|
|
309
310
|
"""
|
|
310
311
|
|
|
@@ -316,6 +317,7 @@ class WM_MT_toolsystem_submenu(bpy_types._GenericUI):
|
|
|
316
317
|
:param filter_path:
|
|
317
318
|
:param display_name:
|
|
318
319
|
:param add_operator:
|
|
320
|
+
:param add_operator_props:
|
|
319
321
|
"""
|
|
320
322
|
...
|
|
321
323
|
|
bl_ui/space_topbar/__init__.pyi
CHANGED
|
@@ -284,6 +284,7 @@ class TOPBAR_MT_blender(bpy_types._GenericUI):
|
|
|
284
284
|
filter_path,
|
|
285
285
|
display_name,
|
|
286
286
|
add_operator,
|
|
287
|
+
add_operator_props,
|
|
287
288
|
):
|
|
288
289
|
"""
|
|
289
290
|
|
|
@@ -295,6 +296,7 @@ class TOPBAR_MT_blender(bpy_types._GenericUI):
|
|
|
295
296
|
:param filter_path:
|
|
296
297
|
:param display_name:
|
|
297
298
|
:param add_operator:
|
|
299
|
+
:param add_operator_props:
|
|
298
300
|
"""
|
|
299
301
|
...
|
|
300
302
|
|
|
@@ -463,6 +465,7 @@ class TOPBAR_MT_blender_system(bpy_types._GenericUI):
|
|
|
463
465
|
filter_path,
|
|
464
466
|
display_name,
|
|
465
467
|
add_operator,
|
|
468
|
+
add_operator_props,
|
|
466
469
|
):
|
|
467
470
|
"""
|
|
468
471
|
|
|
@@ -474,6 +477,7 @@ class TOPBAR_MT_blender_system(bpy_types._GenericUI):
|
|
|
474
477
|
:param filter_path:
|
|
475
478
|
:param display_name:
|
|
476
479
|
:param add_operator:
|
|
480
|
+
:param add_operator_props:
|
|
477
481
|
"""
|
|
478
482
|
...
|
|
479
483
|
|
|
@@ -642,6 +646,7 @@ class TOPBAR_MT_edit(bpy_types._GenericUI):
|
|
|
642
646
|
filter_path,
|
|
643
647
|
display_name,
|
|
644
648
|
add_operator,
|
|
649
|
+
add_operator_props,
|
|
645
650
|
):
|
|
646
651
|
"""
|
|
647
652
|
|
|
@@ -653,6 +658,7 @@ class TOPBAR_MT_edit(bpy_types._GenericUI):
|
|
|
653
658
|
:param filter_path:
|
|
654
659
|
:param display_name:
|
|
655
660
|
:param add_operator:
|
|
661
|
+
:param add_operator_props:
|
|
656
662
|
"""
|
|
657
663
|
...
|
|
658
664
|
|
|
@@ -824,6 +830,7 @@ class TOPBAR_MT_editor_menus(bpy_types._GenericUI):
|
|
|
824
830
|
filter_path,
|
|
825
831
|
display_name,
|
|
826
832
|
add_operator,
|
|
833
|
+
add_operator_props,
|
|
827
834
|
):
|
|
828
835
|
"""
|
|
829
836
|
|
|
@@ -835,6 +842,7 @@ class TOPBAR_MT_editor_menus(bpy_types._GenericUI):
|
|
|
835
842
|
:param filter_path:
|
|
836
843
|
:param display_name:
|
|
837
844
|
:param add_operator:
|
|
845
|
+
:param add_operator_props:
|
|
838
846
|
"""
|
|
839
847
|
...
|
|
840
848
|
|
|
@@ -1003,6 +1011,7 @@ class TOPBAR_MT_file(bpy_types._GenericUI):
|
|
|
1003
1011
|
filter_path,
|
|
1004
1012
|
display_name,
|
|
1005
1013
|
add_operator,
|
|
1014
|
+
add_operator_props,
|
|
1006
1015
|
):
|
|
1007
1016
|
"""
|
|
1008
1017
|
|
|
@@ -1014,6 +1023,7 @@ class TOPBAR_MT_file(bpy_types._GenericUI):
|
|
|
1014
1023
|
:param filter_path:
|
|
1015
1024
|
:param display_name:
|
|
1016
1025
|
:param add_operator:
|
|
1026
|
+
:param add_operator_props:
|
|
1017
1027
|
"""
|
|
1018
1028
|
...
|
|
1019
1029
|
|
|
@@ -1182,6 +1192,7 @@ class TOPBAR_MT_file_cleanup(bpy_types._GenericUI):
|
|
|
1182
1192
|
filter_path,
|
|
1183
1193
|
display_name,
|
|
1184
1194
|
add_operator,
|
|
1195
|
+
add_operator_props,
|
|
1185
1196
|
):
|
|
1186
1197
|
"""
|
|
1187
1198
|
|
|
@@ -1193,6 +1204,7 @@ class TOPBAR_MT_file_cleanup(bpy_types._GenericUI):
|
|
|
1193
1204
|
:param filter_path:
|
|
1194
1205
|
:param display_name:
|
|
1195
1206
|
:param add_operator:
|
|
1207
|
+
:param add_operator_props:
|
|
1196
1208
|
"""
|
|
1197
1209
|
...
|
|
1198
1210
|
|
|
@@ -1361,6 +1373,7 @@ class TOPBAR_MT_file_context_menu(bpy_types._GenericUI):
|
|
|
1361
1373
|
filter_path,
|
|
1362
1374
|
display_name,
|
|
1363
1375
|
add_operator,
|
|
1376
|
+
add_operator_props,
|
|
1364
1377
|
):
|
|
1365
1378
|
"""
|
|
1366
1379
|
|
|
@@ -1372,6 +1385,7 @@ class TOPBAR_MT_file_context_menu(bpy_types._GenericUI):
|
|
|
1372
1385
|
:param filter_path:
|
|
1373
1386
|
:param display_name:
|
|
1374
1387
|
:param add_operator:
|
|
1388
|
+
:param add_operator_props:
|
|
1375
1389
|
"""
|
|
1376
1390
|
...
|
|
1377
1391
|
|
|
@@ -1540,6 +1554,7 @@ class TOPBAR_MT_file_defaults(bpy_types._GenericUI):
|
|
|
1540
1554
|
filter_path,
|
|
1541
1555
|
display_name,
|
|
1542
1556
|
add_operator,
|
|
1557
|
+
add_operator_props,
|
|
1543
1558
|
):
|
|
1544
1559
|
"""
|
|
1545
1560
|
|
|
@@ -1551,6 +1566,7 @@ class TOPBAR_MT_file_defaults(bpy_types._GenericUI):
|
|
|
1551
1566
|
:param filter_path:
|
|
1552
1567
|
:param display_name:
|
|
1553
1568
|
:param add_operator:
|
|
1569
|
+
:param add_operator_props:
|
|
1554
1570
|
"""
|
|
1555
1571
|
...
|
|
1556
1572
|
|
|
@@ -1725,6 +1741,7 @@ class TOPBAR_MT_file_export(bpy_types._GenericUI):
|
|
|
1725
1741
|
filter_path,
|
|
1726
1742
|
display_name,
|
|
1727
1743
|
add_operator,
|
|
1744
|
+
add_operator_props,
|
|
1728
1745
|
):
|
|
1729
1746
|
"""
|
|
1730
1747
|
|
|
@@ -1736,6 +1753,7 @@ class TOPBAR_MT_file_export(bpy_types._GenericUI):
|
|
|
1736
1753
|
:param filter_path:
|
|
1737
1754
|
:param display_name:
|
|
1738
1755
|
:param add_operator:
|
|
1756
|
+
:param add_operator_props:
|
|
1739
1757
|
"""
|
|
1740
1758
|
...
|
|
1741
1759
|
|
|
@@ -1904,6 +1922,7 @@ class TOPBAR_MT_file_external_data(bpy_types._GenericUI):
|
|
|
1904
1922
|
filter_path,
|
|
1905
1923
|
display_name,
|
|
1906
1924
|
add_operator,
|
|
1925
|
+
add_operator_props,
|
|
1907
1926
|
):
|
|
1908
1927
|
"""
|
|
1909
1928
|
|
|
@@ -1915,6 +1934,7 @@ class TOPBAR_MT_file_external_data(bpy_types._GenericUI):
|
|
|
1915
1934
|
:param filter_path:
|
|
1916
1935
|
:param display_name:
|
|
1917
1936
|
:param add_operator:
|
|
1937
|
+
:param add_operator_props:
|
|
1918
1938
|
"""
|
|
1919
1939
|
...
|
|
1920
1940
|
|
|
@@ -2089,6 +2109,7 @@ class TOPBAR_MT_file_import(bpy_types._GenericUI):
|
|
|
2089
2109
|
filter_path,
|
|
2090
2110
|
display_name,
|
|
2091
2111
|
add_operator,
|
|
2112
|
+
add_operator_props,
|
|
2092
2113
|
):
|
|
2093
2114
|
"""
|
|
2094
2115
|
|
|
@@ -2100,6 +2121,7 @@ class TOPBAR_MT_file_import(bpy_types._GenericUI):
|
|
|
2100
2121
|
:param filter_path:
|
|
2101
2122
|
:param display_name:
|
|
2102
2123
|
:param add_operator:
|
|
2124
|
+
:param add_operator_props:
|
|
2103
2125
|
"""
|
|
2104
2126
|
...
|
|
2105
2127
|
|
|
@@ -2282,6 +2304,7 @@ class TOPBAR_MT_file_new(bpy_types._GenericUI):
|
|
|
2282
2304
|
filter_path,
|
|
2283
2305
|
display_name,
|
|
2284
2306
|
add_operator,
|
|
2307
|
+
add_operator_props,
|
|
2285
2308
|
):
|
|
2286
2309
|
"""
|
|
2287
2310
|
|
|
@@ -2293,6 +2316,7 @@ class TOPBAR_MT_file_new(bpy_types._GenericUI):
|
|
|
2293
2316
|
:param filter_path:
|
|
2294
2317
|
:param display_name:
|
|
2295
2318
|
:param add_operator:
|
|
2319
|
+
:param add_operator_props:
|
|
2296
2320
|
"""
|
|
2297
2321
|
...
|
|
2298
2322
|
|
|
@@ -2461,6 +2485,7 @@ class TOPBAR_MT_file_previews(bpy_types._GenericUI):
|
|
|
2461
2485
|
filter_path,
|
|
2462
2486
|
display_name,
|
|
2463
2487
|
add_operator,
|
|
2488
|
+
add_operator_props,
|
|
2464
2489
|
):
|
|
2465
2490
|
"""
|
|
2466
2491
|
|
|
@@ -2472,6 +2497,7 @@ class TOPBAR_MT_file_previews(bpy_types._GenericUI):
|
|
|
2472
2497
|
:param filter_path:
|
|
2473
2498
|
:param display_name:
|
|
2474
2499
|
:param add_operator:
|
|
2500
|
+
:param add_operator_props:
|
|
2475
2501
|
"""
|
|
2476
2502
|
...
|
|
2477
2503
|
|
|
@@ -2640,6 +2666,7 @@ class TOPBAR_MT_file_recover(bpy_types._GenericUI):
|
|
|
2640
2666
|
filter_path,
|
|
2641
2667
|
display_name,
|
|
2642
2668
|
add_operator,
|
|
2669
|
+
add_operator_props,
|
|
2643
2670
|
):
|
|
2644
2671
|
"""
|
|
2645
2672
|
|
|
@@ -2651,6 +2678,7 @@ class TOPBAR_MT_file_recover(bpy_types._GenericUI):
|
|
|
2651
2678
|
:param filter_path:
|
|
2652
2679
|
:param display_name:
|
|
2653
2680
|
:param add_operator:
|
|
2681
|
+
:param add_operator_props:
|
|
2654
2682
|
"""
|
|
2655
2683
|
...
|
|
2656
2684
|
|
|
@@ -2819,6 +2847,7 @@ class TOPBAR_MT_help(bpy_types._GenericUI):
|
|
|
2819
2847
|
filter_path,
|
|
2820
2848
|
display_name,
|
|
2821
2849
|
add_operator,
|
|
2850
|
+
add_operator_props,
|
|
2822
2851
|
):
|
|
2823
2852
|
"""
|
|
2824
2853
|
|
|
@@ -2830,6 +2859,7 @@ class TOPBAR_MT_help(bpy_types._GenericUI):
|
|
|
2830
2859
|
:param filter_path:
|
|
2831
2860
|
:param display_name:
|
|
2832
2861
|
:param add_operator:
|
|
2862
|
+
:param add_operator_props:
|
|
2833
2863
|
"""
|
|
2834
2864
|
...
|
|
2835
2865
|
|
|
@@ -2998,6 +3028,7 @@ class TOPBAR_MT_render(bpy_types._GenericUI):
|
|
|
2998
3028
|
filter_path,
|
|
2999
3029
|
display_name,
|
|
3000
3030
|
add_operator,
|
|
3031
|
+
add_operator_props,
|
|
3001
3032
|
):
|
|
3002
3033
|
"""
|
|
3003
3034
|
|
|
@@ -3009,6 +3040,7 @@ class TOPBAR_MT_render(bpy_types._GenericUI):
|
|
|
3009
3040
|
:param filter_path:
|
|
3010
3041
|
:param display_name:
|
|
3011
3042
|
:param add_operator:
|
|
3043
|
+
:param add_operator_props:
|
|
3012
3044
|
"""
|
|
3013
3045
|
...
|
|
3014
3046
|
|
|
@@ -3177,6 +3209,7 @@ class TOPBAR_MT_templates_more(bpy_types._GenericUI):
|
|
|
3177
3209
|
filter_path,
|
|
3178
3210
|
display_name,
|
|
3179
3211
|
add_operator,
|
|
3212
|
+
add_operator_props,
|
|
3180
3213
|
):
|
|
3181
3214
|
"""
|
|
3182
3215
|
|
|
@@ -3188,6 +3221,7 @@ class TOPBAR_MT_templates_more(bpy_types._GenericUI):
|
|
|
3188
3221
|
:param filter_path:
|
|
3189
3222
|
:param display_name:
|
|
3190
3223
|
:param add_operator:
|
|
3224
|
+
:param add_operator_props:
|
|
3191
3225
|
"""
|
|
3192
3226
|
...
|
|
3193
3227
|
|
|
@@ -3356,6 +3390,7 @@ class TOPBAR_MT_window(bpy_types._GenericUI):
|
|
|
3356
3390
|
filter_path,
|
|
3357
3391
|
display_name,
|
|
3358
3392
|
add_operator,
|
|
3393
|
+
add_operator_props,
|
|
3359
3394
|
):
|
|
3360
3395
|
"""
|
|
3361
3396
|
|
|
@@ -3367,6 +3402,7 @@ class TOPBAR_MT_window(bpy_types._GenericUI):
|
|
|
3367
3402
|
:param filter_path:
|
|
3368
3403
|
:param display_name:
|
|
3369
3404
|
:param add_operator:
|
|
3405
|
+
:param add_operator_props:
|
|
3370
3406
|
"""
|
|
3371
3407
|
...
|
|
3372
3408
|
|
|
@@ -3535,6 +3571,7 @@ class TOPBAR_MT_workspace_menu(bpy_types._GenericUI):
|
|
|
3535
3571
|
filter_path,
|
|
3536
3572
|
display_name,
|
|
3537
3573
|
add_operator,
|
|
3574
|
+
add_operator_props,
|
|
3538
3575
|
):
|
|
3539
3576
|
"""
|
|
3540
3577
|
|
|
@@ -3546,6 +3583,7 @@ class TOPBAR_MT_workspace_menu(bpy_types._GenericUI):
|
|
|
3546
3583
|
:param filter_path:
|
|
3547
3584
|
:param display_name:
|
|
3548
3585
|
:param add_operator:
|
|
3586
|
+
:param add_operator_props:
|
|
3549
3587
|
"""
|
|
3550
3588
|
...
|
|
3551
3589
|
|
|
@@ -560,6 +560,7 @@ class USERPREF_MT_editor_menus(bpy_types._GenericUI):
|
|
|
560
560
|
filter_path,
|
|
561
561
|
display_name,
|
|
562
562
|
add_operator,
|
|
563
|
+
add_operator_props,
|
|
563
564
|
):
|
|
564
565
|
"""
|
|
565
566
|
|
|
@@ -571,6 +572,7 @@ class USERPREF_MT_editor_menus(bpy_types._GenericUI):
|
|
|
571
572
|
:param filter_path:
|
|
572
573
|
:param display_name:
|
|
573
574
|
:param add_operator:
|
|
575
|
+
:param add_operator_props:
|
|
574
576
|
"""
|
|
575
577
|
...
|
|
576
578
|
|
|
@@ -751,6 +753,7 @@ class USERPREF_MT_interface_theme_presets(bpy_types._GenericUI):
|
|
|
751
753
|
filter_path,
|
|
752
754
|
display_name,
|
|
753
755
|
add_operator,
|
|
756
|
+
add_operator_props,
|
|
754
757
|
):
|
|
755
758
|
"""
|
|
756
759
|
|
|
@@ -762,6 +765,7 @@ class USERPREF_MT_interface_theme_presets(bpy_types._GenericUI):
|
|
|
762
765
|
:param filter_path:
|
|
763
766
|
:param display_name:
|
|
764
767
|
:param add_operator:
|
|
768
|
+
:param add_operator_props:
|
|
765
769
|
"""
|
|
766
770
|
...
|
|
767
771
|
|
|
@@ -943,6 +947,7 @@ class USERPREF_MT_keyconfigs(bpy_types._GenericUI):
|
|
|
943
947
|
filter_path,
|
|
944
948
|
display_name,
|
|
945
949
|
add_operator,
|
|
950
|
+
add_operator_props,
|
|
946
951
|
):
|
|
947
952
|
"""
|
|
948
953
|
|
|
@@ -954,6 +959,7 @@ class USERPREF_MT_keyconfigs(bpy_types._GenericUI):
|
|
|
954
959
|
:param filter_path:
|
|
955
960
|
:param display_name:
|
|
956
961
|
:param add_operator:
|
|
962
|
+
:param add_operator_props:
|
|
957
963
|
"""
|
|
958
964
|
...
|
|
959
965
|
|
|
@@ -1122,6 +1128,7 @@ class USERPREF_MT_save_load(bpy_types._GenericUI):
|
|
|
1122
1128
|
filter_path,
|
|
1123
1129
|
display_name,
|
|
1124
1130
|
add_operator,
|
|
1131
|
+
add_operator_props,
|
|
1125
1132
|
):
|
|
1126
1133
|
"""
|
|
1127
1134
|
|
|
@@ -1133,6 +1140,7 @@ class USERPREF_MT_save_load(bpy_types._GenericUI):
|
|
|
1133
1140
|
:param filter_path:
|
|
1134
1141
|
:param display_name:
|
|
1135
1142
|
:param add_operator:
|
|
1143
|
+
:param add_operator_props:
|
|
1136
1144
|
"""
|
|
1137
1145
|
...
|
|
1138
1146
|
|
|
@@ -1301,6 +1309,7 @@ class USERPREF_MT_view(bpy_types._GenericUI):
|
|
|
1301
1309
|
filter_path,
|
|
1302
1310
|
display_name,
|
|
1303
1311
|
add_operator,
|
|
1312
|
+
add_operator_props,
|
|
1304
1313
|
):
|
|
1305
1314
|
"""
|
|
1306
1315
|
|
|
@@ -1312,6 +1321,7 @@ class USERPREF_MT_view(bpy_types._GenericUI):
|
|
|
1312
1321
|
:param filter_path:
|
|
1313
1322
|
:param display_name:
|
|
1314
1323
|
:param add_operator:
|
|
1324
|
+
:param add_operator_props:
|
|
1315
1325
|
"""
|
|
1316
1326
|
...
|
|
1317
1327
|
|
|
@@ -11228,6 +11238,7 @@ class USERPREF_PT_text_editor_presets(bpy_types._GenericUI):
|
|
|
11228
11238
|
filter_path,
|
|
11229
11239
|
display_name,
|
|
11230
11240
|
add_operator,
|
|
11241
|
+
add_operator_props,
|
|
11231
11242
|
):
|
|
11232
11243
|
"""
|
|
11233
11244
|
|
|
@@ -11239,6 +11250,7 @@ class USERPREF_PT_text_editor_presets(bpy_types._GenericUI):
|
|
|
11239
11250
|
:param filter_path:
|
|
11240
11251
|
:param display_name:
|
|
11241
11252
|
:param add_operator:
|
|
11253
|
+
:param add_operator_props:
|
|
11242
11254
|
"""
|
|
11243
11255
|
...
|
|
11244
11256
|
|