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
|
@@ -281,6 +281,7 @@ class DOPESHEET_MT_channel(bpy_types._GenericUI):
|
|
|
281
281
|
filter_path,
|
|
282
282
|
display_name,
|
|
283
283
|
add_operator,
|
|
284
|
+
add_operator_props,
|
|
284
285
|
):
|
|
285
286
|
"""
|
|
286
287
|
|
|
@@ -292,6 +293,7 @@ class DOPESHEET_MT_channel(bpy_types._GenericUI):
|
|
|
292
293
|
:param filter_path:
|
|
293
294
|
:param display_name:
|
|
294
295
|
:param add_operator:
|
|
296
|
+
:param add_operator_props:
|
|
295
297
|
"""
|
|
296
298
|
...
|
|
297
299
|
|
|
@@ -460,6 +462,7 @@ class DOPESHEET_MT_channel_context_menu(bpy_types._GenericUI):
|
|
|
460
462
|
filter_path,
|
|
461
463
|
display_name,
|
|
462
464
|
add_operator,
|
|
465
|
+
add_operator_props,
|
|
463
466
|
):
|
|
464
467
|
"""
|
|
465
468
|
|
|
@@ -471,6 +474,7 @@ class DOPESHEET_MT_channel_context_menu(bpy_types._GenericUI):
|
|
|
471
474
|
:param filter_path:
|
|
472
475
|
:param display_name:
|
|
473
476
|
:param add_operator:
|
|
477
|
+
:param add_operator_props:
|
|
474
478
|
"""
|
|
475
479
|
...
|
|
476
480
|
|
|
@@ -639,6 +643,7 @@ class DOPESHEET_MT_context_menu(bpy_types._GenericUI):
|
|
|
639
643
|
filter_path,
|
|
640
644
|
display_name,
|
|
641
645
|
add_operator,
|
|
646
|
+
add_operator_props,
|
|
642
647
|
):
|
|
643
648
|
"""
|
|
644
649
|
|
|
@@ -650,6 +655,7 @@ class DOPESHEET_MT_context_menu(bpy_types._GenericUI):
|
|
|
650
655
|
:param filter_path:
|
|
651
656
|
:param display_name:
|
|
652
657
|
:param add_operator:
|
|
658
|
+
:param add_operator_props:
|
|
653
659
|
"""
|
|
654
660
|
...
|
|
655
661
|
|
|
@@ -818,6 +824,7 @@ class DOPESHEET_MT_delete(bpy_types._GenericUI):
|
|
|
818
824
|
filter_path,
|
|
819
825
|
display_name,
|
|
820
826
|
add_operator,
|
|
827
|
+
add_operator_props,
|
|
821
828
|
):
|
|
822
829
|
"""
|
|
823
830
|
|
|
@@ -829,6 +836,7 @@ class DOPESHEET_MT_delete(bpy_types._GenericUI):
|
|
|
829
836
|
:param filter_path:
|
|
830
837
|
:param display_name:
|
|
831
838
|
:param add_operator:
|
|
839
|
+
:param add_operator_props:
|
|
832
840
|
"""
|
|
833
841
|
...
|
|
834
842
|
|
|
@@ -1000,6 +1008,7 @@ class DOPESHEET_MT_editor_menus(bpy_types._GenericUI):
|
|
|
1000
1008
|
filter_path,
|
|
1001
1009
|
display_name,
|
|
1002
1010
|
add_operator,
|
|
1011
|
+
add_operator_props,
|
|
1003
1012
|
):
|
|
1004
1013
|
"""
|
|
1005
1014
|
|
|
@@ -1011,6 +1020,7 @@ class DOPESHEET_MT_editor_menus(bpy_types._GenericUI):
|
|
|
1011
1020
|
:param filter_path:
|
|
1012
1021
|
:param display_name:
|
|
1013
1022
|
:param add_operator:
|
|
1023
|
+
:param add_operator_props:
|
|
1014
1024
|
"""
|
|
1015
1025
|
...
|
|
1016
1026
|
|
|
@@ -1179,6 +1189,7 @@ class DOPESHEET_MT_gpencil_channel(bpy_types._GenericUI):
|
|
|
1179
1189
|
filter_path,
|
|
1180
1190
|
display_name,
|
|
1181
1191
|
add_operator,
|
|
1192
|
+
add_operator_props,
|
|
1182
1193
|
):
|
|
1183
1194
|
"""
|
|
1184
1195
|
|
|
@@ -1190,6 +1201,7 @@ class DOPESHEET_MT_gpencil_channel(bpy_types._GenericUI):
|
|
|
1190
1201
|
:param filter_path:
|
|
1191
1202
|
:param display_name:
|
|
1192
1203
|
:param add_operator:
|
|
1204
|
+
:param add_operator_props:
|
|
1193
1205
|
"""
|
|
1194
1206
|
...
|
|
1195
1207
|
|
|
@@ -1358,6 +1370,7 @@ class DOPESHEET_MT_gpencil_key(bpy_types._GenericUI):
|
|
|
1358
1370
|
filter_path,
|
|
1359
1371
|
display_name,
|
|
1360
1372
|
add_operator,
|
|
1373
|
+
add_operator_props,
|
|
1361
1374
|
):
|
|
1362
1375
|
"""
|
|
1363
1376
|
|
|
@@ -1369,6 +1382,7 @@ class DOPESHEET_MT_gpencil_key(bpy_types._GenericUI):
|
|
|
1369
1382
|
:param filter_path:
|
|
1370
1383
|
:param display_name:
|
|
1371
1384
|
:param add_operator:
|
|
1385
|
+
:param add_operator_props:
|
|
1372
1386
|
"""
|
|
1373
1387
|
...
|
|
1374
1388
|
|
|
@@ -1537,6 +1551,7 @@ class DOPESHEET_MT_key(bpy_types._GenericUI):
|
|
|
1537
1551
|
filter_path,
|
|
1538
1552
|
display_name,
|
|
1539
1553
|
add_operator,
|
|
1554
|
+
add_operator_props,
|
|
1540
1555
|
):
|
|
1541
1556
|
"""
|
|
1542
1557
|
|
|
@@ -1548,6 +1563,7 @@ class DOPESHEET_MT_key(bpy_types._GenericUI):
|
|
|
1548
1563
|
:param filter_path:
|
|
1549
1564
|
:param display_name:
|
|
1550
1565
|
:param add_operator:
|
|
1566
|
+
:param add_operator_props:
|
|
1551
1567
|
"""
|
|
1552
1568
|
...
|
|
1553
1569
|
|
|
@@ -1716,6 +1732,7 @@ class DOPESHEET_MT_key_transform(bpy_types._GenericUI):
|
|
|
1716
1732
|
filter_path,
|
|
1717
1733
|
display_name,
|
|
1718
1734
|
add_operator,
|
|
1735
|
+
add_operator_props,
|
|
1719
1736
|
):
|
|
1720
1737
|
"""
|
|
1721
1738
|
|
|
@@ -1727,6 +1744,7 @@ class DOPESHEET_MT_key_transform(bpy_types._GenericUI):
|
|
|
1727
1744
|
:param filter_path:
|
|
1728
1745
|
:param display_name:
|
|
1729
1746
|
:param add_operator:
|
|
1747
|
+
:param add_operator_props:
|
|
1730
1748
|
"""
|
|
1731
1749
|
...
|
|
1732
1750
|
|
|
@@ -1895,6 +1913,7 @@ class DOPESHEET_MT_marker(bpy_types._GenericUI):
|
|
|
1895
1913
|
filter_path,
|
|
1896
1914
|
display_name,
|
|
1897
1915
|
add_operator,
|
|
1916
|
+
add_operator_props,
|
|
1898
1917
|
):
|
|
1899
1918
|
"""
|
|
1900
1919
|
|
|
@@ -1906,6 +1925,7 @@ class DOPESHEET_MT_marker(bpy_types._GenericUI):
|
|
|
1906
1925
|
:param filter_path:
|
|
1907
1926
|
:param display_name:
|
|
1908
1927
|
:param add_operator:
|
|
1928
|
+
:param add_operator_props:
|
|
1909
1929
|
"""
|
|
1910
1930
|
...
|
|
1911
1931
|
|
|
@@ -2074,6 +2094,7 @@ class DOPESHEET_MT_select(bpy_types._GenericUI):
|
|
|
2074
2094
|
filter_path,
|
|
2075
2095
|
display_name,
|
|
2076
2096
|
add_operator,
|
|
2097
|
+
add_operator_props,
|
|
2077
2098
|
):
|
|
2078
2099
|
"""
|
|
2079
2100
|
|
|
@@ -2085,6 +2106,7 @@ class DOPESHEET_MT_select(bpy_types._GenericUI):
|
|
|
2085
2106
|
:param filter_path:
|
|
2086
2107
|
:param display_name:
|
|
2087
2108
|
:param add_operator:
|
|
2109
|
+
:param add_operator_props:
|
|
2088
2110
|
"""
|
|
2089
2111
|
...
|
|
2090
2112
|
|
|
@@ -2253,6 +2275,7 @@ class DOPESHEET_MT_snap_pie(bpy_types._GenericUI):
|
|
|
2253
2275
|
filter_path,
|
|
2254
2276
|
display_name,
|
|
2255
2277
|
add_operator,
|
|
2278
|
+
add_operator_props,
|
|
2256
2279
|
):
|
|
2257
2280
|
"""
|
|
2258
2281
|
|
|
@@ -2264,6 +2287,7 @@ class DOPESHEET_MT_snap_pie(bpy_types._GenericUI):
|
|
|
2264
2287
|
:param filter_path:
|
|
2265
2288
|
:param display_name:
|
|
2266
2289
|
:param add_operator:
|
|
2290
|
+
:param add_operator_props:
|
|
2267
2291
|
"""
|
|
2268
2292
|
...
|
|
2269
2293
|
|
|
@@ -2432,6 +2456,7 @@ class DOPESHEET_MT_view(bpy_types._GenericUI):
|
|
|
2432
2456
|
filter_path,
|
|
2433
2457
|
display_name,
|
|
2434
2458
|
add_operator,
|
|
2459
|
+
add_operator_props,
|
|
2435
2460
|
):
|
|
2436
2461
|
"""
|
|
2437
2462
|
|
|
@@ -2443,6 +2468,7 @@ class DOPESHEET_MT_view(bpy_types._GenericUI):
|
|
|
2443
2468
|
:param filter_path:
|
|
2444
2469
|
:param display_name:
|
|
2445
2470
|
:param add_operator:
|
|
2471
|
+
:param add_operator_props:
|
|
2446
2472
|
"""
|
|
2447
2473
|
...
|
|
2448
2474
|
|
|
@@ -2611,6 +2637,7 @@ class DOPESHEET_MT_view_pie(bpy_types._GenericUI):
|
|
|
2611
2637
|
filter_path,
|
|
2612
2638
|
display_name,
|
|
2613
2639
|
add_operator,
|
|
2640
|
+
add_operator_props,
|
|
2614
2641
|
):
|
|
2615
2642
|
"""
|
|
2616
2643
|
|
|
@@ -2622,6 +2649,7 @@ class DOPESHEET_MT_view_pie(bpy_types._GenericUI):
|
|
|
2622
2649
|
:param filter_path:
|
|
2623
2650
|
:param display_name:
|
|
2624
2651
|
:param add_operator:
|
|
2652
|
+
:param add_operator_props:
|
|
2625
2653
|
"""
|
|
2626
2654
|
...
|
|
2627
2655
|
|
|
@@ -130,6 +130,7 @@ class ASSETBROWSER_MT_catalog(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 ASSETBROWSER_MT_catalog(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
|
|
|
@@ -316,6 +318,7 @@ class ASSETBROWSER_MT_context_menu(bpy_types._GenericUI):
|
|
|
316
318
|
filter_path,
|
|
317
319
|
display_name,
|
|
318
320
|
add_operator,
|
|
321
|
+
add_operator_props,
|
|
319
322
|
):
|
|
320
323
|
"""
|
|
321
324
|
|
|
@@ -327,6 +330,7 @@ class ASSETBROWSER_MT_context_menu(bpy_types._GenericUI):
|
|
|
327
330
|
:param filter_path:
|
|
328
331
|
:param display_name:
|
|
329
332
|
:param add_operator:
|
|
333
|
+
:param add_operator_props:
|
|
330
334
|
"""
|
|
331
335
|
...
|
|
332
336
|
|
|
@@ -505,6 +509,7 @@ class ASSETBROWSER_MT_editor_menus(bpy_types._GenericUI):
|
|
|
505
509
|
filter_path,
|
|
506
510
|
display_name,
|
|
507
511
|
add_operator,
|
|
512
|
+
add_operator_props,
|
|
508
513
|
):
|
|
509
514
|
"""
|
|
510
515
|
|
|
@@ -516,6 +521,7 @@ class ASSETBROWSER_MT_editor_menus(bpy_types._GenericUI):
|
|
|
516
521
|
:param filter_path:
|
|
517
522
|
:param display_name:
|
|
518
523
|
:param add_operator:
|
|
524
|
+
:param add_operator_props:
|
|
519
525
|
"""
|
|
520
526
|
...
|
|
521
527
|
|
|
@@ -691,6 +697,7 @@ class ASSETBROWSER_MT_metadata_preview_menu(bpy_types._GenericUI):
|
|
|
691
697
|
filter_path,
|
|
692
698
|
display_name,
|
|
693
699
|
add_operator,
|
|
700
|
+
add_operator_props,
|
|
694
701
|
):
|
|
695
702
|
"""
|
|
696
703
|
|
|
@@ -702,6 +709,7 @@ class ASSETBROWSER_MT_metadata_preview_menu(bpy_types._GenericUI):
|
|
|
702
709
|
:param filter_path:
|
|
703
710
|
:param display_name:
|
|
704
711
|
:param add_operator:
|
|
712
|
+
:param add_operator_props:
|
|
705
713
|
"""
|
|
706
714
|
...
|
|
707
715
|
|
|
@@ -870,6 +878,7 @@ class ASSETBROWSER_MT_select(bpy_types._GenericUI):
|
|
|
870
878
|
filter_path,
|
|
871
879
|
display_name,
|
|
872
880
|
add_operator,
|
|
881
|
+
add_operator_props,
|
|
873
882
|
):
|
|
874
883
|
"""
|
|
875
884
|
|
|
@@ -881,6 +890,7 @@ class ASSETBROWSER_MT_select(bpy_types._GenericUI):
|
|
|
881
890
|
:param filter_path:
|
|
882
891
|
:param display_name:
|
|
883
892
|
:param add_operator:
|
|
893
|
+
:param add_operator_props:
|
|
884
894
|
"""
|
|
885
895
|
...
|
|
886
896
|
|
|
@@ -1056,6 +1066,7 @@ class ASSETBROWSER_MT_view(bpy_types._GenericUI):
|
|
|
1056
1066
|
filter_path,
|
|
1057
1067
|
display_name,
|
|
1058
1068
|
add_operator,
|
|
1069
|
+
add_operator_props,
|
|
1059
1070
|
):
|
|
1060
1071
|
"""
|
|
1061
1072
|
|
|
@@ -1067,6 +1078,7 @@ class ASSETBROWSER_MT_view(bpy_types._GenericUI):
|
|
|
1067
1078
|
:param filter_path:
|
|
1068
1079
|
:param display_name:
|
|
1069
1080
|
:param add_operator:
|
|
1081
|
+
:param add_operator_props:
|
|
1070
1082
|
"""
|
|
1071
1083
|
...
|
|
1072
1084
|
|
|
@@ -2357,6 +2369,7 @@ class FILEBROWSER_MT_bookmarks_context_menu(bpy_types._GenericUI):
|
|
|
2357
2369
|
filter_path,
|
|
2358
2370
|
display_name,
|
|
2359
2371
|
add_operator,
|
|
2372
|
+
add_operator_props,
|
|
2360
2373
|
):
|
|
2361
2374
|
"""
|
|
2362
2375
|
|
|
@@ -2368,6 +2381,7 @@ class FILEBROWSER_MT_bookmarks_context_menu(bpy_types._GenericUI):
|
|
|
2368
2381
|
:param filter_path:
|
|
2369
2382
|
:param display_name:
|
|
2370
2383
|
:param add_operator:
|
|
2384
|
+
:param add_operator_props:
|
|
2371
2385
|
"""
|
|
2372
2386
|
...
|
|
2373
2387
|
|
|
@@ -2536,6 +2550,7 @@ class FILEBROWSER_MT_bookmarks_recents_specials_menu(bpy_types._GenericUI):
|
|
|
2536
2550
|
filter_path,
|
|
2537
2551
|
display_name,
|
|
2538
2552
|
add_operator,
|
|
2553
|
+
add_operator_props,
|
|
2539
2554
|
):
|
|
2540
2555
|
"""
|
|
2541
2556
|
|
|
@@ -2547,6 +2562,7 @@ class FILEBROWSER_MT_bookmarks_recents_specials_menu(bpy_types._GenericUI):
|
|
|
2547
2562
|
:param filter_path:
|
|
2548
2563
|
:param display_name:
|
|
2549
2564
|
:param add_operator:
|
|
2565
|
+
:param add_operator_props:
|
|
2550
2566
|
"""
|
|
2551
2567
|
...
|
|
2552
2568
|
|
|
@@ -2715,6 +2731,7 @@ class FILEBROWSER_MT_context_menu(bpy_types._GenericUI):
|
|
|
2715
2731
|
filter_path,
|
|
2716
2732
|
display_name,
|
|
2717
2733
|
add_operator,
|
|
2734
|
+
add_operator_props,
|
|
2718
2735
|
):
|
|
2719
2736
|
"""
|
|
2720
2737
|
|
|
@@ -2726,6 +2743,7 @@ class FILEBROWSER_MT_context_menu(bpy_types._GenericUI):
|
|
|
2726
2743
|
:param filter_path:
|
|
2727
2744
|
:param display_name:
|
|
2728
2745
|
:param add_operator:
|
|
2746
|
+
:param add_operator_props:
|
|
2729
2747
|
"""
|
|
2730
2748
|
...
|
|
2731
2749
|
|
|
@@ -2904,6 +2922,7 @@ class FILEBROWSER_MT_editor_menus(bpy_types._GenericUI):
|
|
|
2904
2922
|
filter_path,
|
|
2905
2923
|
display_name,
|
|
2906
2924
|
add_operator,
|
|
2925
|
+
add_operator_props,
|
|
2907
2926
|
):
|
|
2908
2927
|
"""
|
|
2909
2928
|
|
|
@@ -2915,6 +2934,7 @@ class FILEBROWSER_MT_editor_menus(bpy_types._GenericUI):
|
|
|
2915
2934
|
:param filter_path:
|
|
2916
2935
|
:param display_name:
|
|
2917
2936
|
:param add_operator:
|
|
2937
|
+
:param add_operator_props:
|
|
2918
2938
|
"""
|
|
2919
2939
|
...
|
|
2920
2940
|
|
|
@@ -3090,6 +3110,7 @@ class FILEBROWSER_MT_select(bpy_types._GenericUI):
|
|
|
3090
3110
|
filter_path,
|
|
3091
3111
|
display_name,
|
|
3092
3112
|
add_operator,
|
|
3113
|
+
add_operator_props,
|
|
3093
3114
|
):
|
|
3094
3115
|
"""
|
|
3095
3116
|
|
|
@@ -3101,6 +3122,7 @@ class FILEBROWSER_MT_select(bpy_types._GenericUI):
|
|
|
3101
3122
|
:param filter_path:
|
|
3102
3123
|
:param display_name:
|
|
3103
3124
|
:param add_operator:
|
|
3125
|
+
:param add_operator_props:
|
|
3104
3126
|
"""
|
|
3105
3127
|
...
|
|
3106
3128
|
|
|
@@ -3276,6 +3298,7 @@ class FILEBROWSER_MT_view(bpy_types._GenericUI):
|
|
|
3276
3298
|
filter_path,
|
|
3277
3299
|
display_name,
|
|
3278
3300
|
add_operator,
|
|
3301
|
+
add_operator_props,
|
|
3279
3302
|
):
|
|
3280
3303
|
"""
|
|
3281
3304
|
|
|
@@ -3287,6 +3310,7 @@ class FILEBROWSER_MT_view(bpy_types._GenericUI):
|
|
|
3287
3310
|
:param filter_path:
|
|
3288
3311
|
:param display_name:
|
|
3289
3312
|
:param add_operator:
|
|
3313
|
+
:param add_operator_props:
|
|
3290
3314
|
"""
|
|
3291
3315
|
...
|
|
3292
3316
|
|
|
@@ -3465,6 +3489,7 @@ class FILEBROWSER_MT_view_pie(bpy_types._GenericUI):
|
|
|
3465
3489
|
filter_path,
|
|
3466
3490
|
display_name,
|
|
3467
3491
|
add_operator,
|
|
3492
|
+
add_operator_props,
|
|
3468
3493
|
):
|
|
3469
3494
|
"""
|
|
3470
3495
|
|
|
@@ -3476,6 +3501,7 @@ class FILEBROWSER_MT_view_pie(bpy_types._GenericUI):
|
|
|
3476
3501
|
:param filter_path:
|
|
3477
3502
|
:param display_name:
|
|
3478
3503
|
:param add_operator:
|
|
3504
|
+
:param add_operator_props:
|
|
3479
3505
|
"""
|
|
3480
3506
|
...
|
|
3481
3507
|
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -270,6 +270,7 @@ class GRAPH_MT_channel(bpy_types._GenericUI):
|
|
|
270
270
|
filter_path,
|
|
271
271
|
display_name,
|
|
272
272
|
add_operator,
|
|
273
|
+
add_operator_props,
|
|
273
274
|
):
|
|
274
275
|
"""
|
|
275
276
|
|
|
@@ -281,6 +282,7 @@ class GRAPH_MT_channel(bpy_types._GenericUI):
|
|
|
281
282
|
:param filter_path:
|
|
282
283
|
:param display_name:
|
|
283
284
|
:param add_operator:
|
|
285
|
+
:param add_operator_props:
|
|
284
286
|
"""
|
|
285
287
|
...
|
|
286
288
|
|
|
@@ -449,6 +451,7 @@ class GRAPH_MT_context_menu(bpy_types._GenericUI):
|
|
|
449
451
|
filter_path,
|
|
450
452
|
display_name,
|
|
451
453
|
add_operator,
|
|
454
|
+
add_operator_props,
|
|
452
455
|
):
|
|
453
456
|
"""
|
|
454
457
|
|
|
@@ -460,6 +463,7 @@ class GRAPH_MT_context_menu(bpy_types._GenericUI):
|
|
|
460
463
|
:param filter_path:
|
|
461
464
|
:param display_name:
|
|
462
465
|
:param add_operator:
|
|
466
|
+
:param add_operator_props:
|
|
463
467
|
"""
|
|
464
468
|
...
|
|
465
469
|
|
|
@@ -628,6 +632,7 @@ class GRAPH_MT_delete(bpy_types._GenericUI):
|
|
|
628
632
|
filter_path,
|
|
629
633
|
display_name,
|
|
630
634
|
add_operator,
|
|
635
|
+
add_operator_props,
|
|
631
636
|
):
|
|
632
637
|
"""
|
|
633
638
|
|
|
@@ -639,6 +644,7 @@ class GRAPH_MT_delete(bpy_types._GenericUI):
|
|
|
639
644
|
:param filter_path:
|
|
640
645
|
:param display_name:
|
|
641
646
|
:param add_operator:
|
|
647
|
+
:param add_operator_props:
|
|
642
648
|
"""
|
|
643
649
|
...
|
|
644
650
|
|
|
@@ -810,6 +816,7 @@ class GRAPH_MT_editor_menus(bpy_types._GenericUI):
|
|
|
810
816
|
filter_path,
|
|
811
817
|
display_name,
|
|
812
818
|
add_operator,
|
|
819
|
+
add_operator_props,
|
|
813
820
|
):
|
|
814
821
|
"""
|
|
815
822
|
|
|
@@ -821,6 +828,7 @@ class GRAPH_MT_editor_menus(bpy_types._GenericUI):
|
|
|
821
828
|
:param filter_path:
|
|
822
829
|
:param display_name:
|
|
823
830
|
:param add_operator:
|
|
831
|
+
:param add_operator_props:
|
|
824
832
|
"""
|
|
825
833
|
...
|
|
826
834
|
|
|
@@ -989,6 +997,7 @@ class GRAPH_MT_key(bpy_types._GenericUI):
|
|
|
989
997
|
filter_path,
|
|
990
998
|
display_name,
|
|
991
999
|
add_operator,
|
|
1000
|
+
add_operator_props,
|
|
992
1001
|
):
|
|
993
1002
|
"""
|
|
994
1003
|
|
|
@@ -1000,6 +1009,7 @@ class GRAPH_MT_key(bpy_types._GenericUI):
|
|
|
1000
1009
|
:param filter_path:
|
|
1001
1010
|
:param display_name:
|
|
1002
1011
|
:param add_operator:
|
|
1012
|
+
:param add_operator_props:
|
|
1003
1013
|
"""
|
|
1004
1014
|
...
|
|
1005
1015
|
|
|
@@ -1168,6 +1178,7 @@ class GRAPH_MT_key_blending(bpy_types._GenericUI):
|
|
|
1168
1178
|
filter_path,
|
|
1169
1179
|
display_name,
|
|
1170
1180
|
add_operator,
|
|
1181
|
+
add_operator_props,
|
|
1171
1182
|
):
|
|
1172
1183
|
"""
|
|
1173
1184
|
|
|
@@ -1179,6 +1190,7 @@ class GRAPH_MT_key_blending(bpy_types._GenericUI):
|
|
|
1179
1190
|
:param filter_path:
|
|
1180
1191
|
:param display_name:
|
|
1181
1192
|
:param add_operator:
|
|
1193
|
+
:param add_operator_props:
|
|
1182
1194
|
"""
|
|
1183
1195
|
...
|
|
1184
1196
|
|
|
@@ -1347,6 +1359,7 @@ class GRAPH_MT_key_density(bpy_types._GenericUI):
|
|
|
1347
1359
|
filter_path,
|
|
1348
1360
|
display_name,
|
|
1349
1361
|
add_operator,
|
|
1362
|
+
add_operator_props,
|
|
1350
1363
|
):
|
|
1351
1364
|
"""
|
|
1352
1365
|
|
|
@@ -1358,6 +1371,7 @@ class GRAPH_MT_key_density(bpy_types._GenericUI):
|
|
|
1358
1371
|
:param filter_path:
|
|
1359
1372
|
:param display_name:
|
|
1360
1373
|
:param add_operator:
|
|
1374
|
+
:param add_operator_props:
|
|
1361
1375
|
"""
|
|
1362
1376
|
...
|
|
1363
1377
|
|
|
@@ -1526,6 +1540,7 @@ class GRAPH_MT_key_smoothing(bpy_types._GenericUI):
|
|
|
1526
1540
|
filter_path,
|
|
1527
1541
|
display_name,
|
|
1528
1542
|
add_operator,
|
|
1543
|
+
add_operator_props,
|
|
1529
1544
|
):
|
|
1530
1545
|
"""
|
|
1531
1546
|
|
|
@@ -1537,6 +1552,7 @@ class GRAPH_MT_key_smoothing(bpy_types._GenericUI):
|
|
|
1537
1552
|
:param filter_path:
|
|
1538
1553
|
:param display_name:
|
|
1539
1554
|
:param add_operator:
|
|
1555
|
+
:param add_operator_props:
|
|
1540
1556
|
"""
|
|
1541
1557
|
...
|
|
1542
1558
|
|
|
@@ -1705,6 +1721,7 @@ class GRAPH_MT_key_snap(bpy_types._GenericUI):
|
|
|
1705
1721
|
filter_path,
|
|
1706
1722
|
display_name,
|
|
1707
1723
|
add_operator,
|
|
1724
|
+
add_operator_props,
|
|
1708
1725
|
):
|
|
1709
1726
|
"""
|
|
1710
1727
|
|
|
@@ -1716,6 +1733,7 @@ class GRAPH_MT_key_snap(bpy_types._GenericUI):
|
|
|
1716
1733
|
:param filter_path:
|
|
1717
1734
|
:param display_name:
|
|
1718
1735
|
:param add_operator:
|
|
1736
|
+
:param add_operator_props:
|
|
1719
1737
|
"""
|
|
1720
1738
|
...
|
|
1721
1739
|
|
|
@@ -1884,6 +1902,7 @@ class GRAPH_MT_key_transform(bpy_types._GenericUI):
|
|
|
1884
1902
|
filter_path,
|
|
1885
1903
|
display_name,
|
|
1886
1904
|
add_operator,
|
|
1905
|
+
add_operator_props,
|
|
1887
1906
|
):
|
|
1888
1907
|
"""
|
|
1889
1908
|
|
|
@@ -1895,6 +1914,7 @@ class GRAPH_MT_key_transform(bpy_types._GenericUI):
|
|
|
1895
1914
|
:param filter_path:
|
|
1896
1915
|
:param display_name:
|
|
1897
1916
|
:param add_operator:
|
|
1917
|
+
:param add_operator_props:
|
|
1898
1918
|
"""
|
|
1899
1919
|
...
|
|
1900
1920
|
|
|
@@ -2063,6 +2083,7 @@ class GRAPH_MT_marker(bpy_types._GenericUI):
|
|
|
2063
2083
|
filter_path,
|
|
2064
2084
|
display_name,
|
|
2065
2085
|
add_operator,
|
|
2086
|
+
add_operator_props,
|
|
2066
2087
|
):
|
|
2067
2088
|
"""
|
|
2068
2089
|
|
|
@@ -2074,6 +2095,7 @@ class GRAPH_MT_marker(bpy_types._GenericUI):
|
|
|
2074
2095
|
:param filter_path:
|
|
2075
2096
|
:param display_name:
|
|
2076
2097
|
:param add_operator:
|
|
2098
|
+
:param add_operator_props:
|
|
2077
2099
|
"""
|
|
2078
2100
|
...
|
|
2079
2101
|
|
|
@@ -2242,6 +2264,7 @@ class GRAPH_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
2242
2264
|
filter_path,
|
|
2243
2265
|
display_name,
|
|
2244
2266
|
add_operator,
|
|
2267
|
+
add_operator_props,
|
|
2245
2268
|
):
|
|
2246
2269
|
"""
|
|
2247
2270
|
|
|
@@ -2253,6 +2276,7 @@ class GRAPH_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
2253
2276
|
:param filter_path:
|
|
2254
2277
|
:param display_name:
|
|
2255
2278
|
:param add_operator:
|
|
2279
|
+
:param add_operator_props:
|
|
2256
2280
|
"""
|
|
2257
2281
|
...
|
|
2258
2282
|
|
|
@@ -2421,6 +2445,7 @@ class GRAPH_MT_select(bpy_types._GenericUI):
|
|
|
2421
2445
|
filter_path,
|
|
2422
2446
|
display_name,
|
|
2423
2447
|
add_operator,
|
|
2448
|
+
add_operator_props,
|
|
2424
2449
|
):
|
|
2425
2450
|
"""
|
|
2426
2451
|
|
|
@@ -2432,6 +2457,7 @@ class GRAPH_MT_select(bpy_types._GenericUI):
|
|
|
2432
2457
|
:param filter_path:
|
|
2433
2458
|
:param display_name:
|
|
2434
2459
|
:param add_operator:
|
|
2460
|
+
:param add_operator_props:
|
|
2435
2461
|
"""
|
|
2436
2462
|
...
|
|
2437
2463
|
|
|
@@ -2600,6 +2626,7 @@ class GRAPH_MT_snap_pie(bpy_types._GenericUI):
|
|
|
2600
2626
|
filter_path,
|
|
2601
2627
|
display_name,
|
|
2602
2628
|
add_operator,
|
|
2629
|
+
add_operator_props,
|
|
2603
2630
|
):
|
|
2604
2631
|
"""
|
|
2605
2632
|
|
|
@@ -2611,6 +2638,7 @@ class GRAPH_MT_snap_pie(bpy_types._GenericUI):
|
|
|
2611
2638
|
:param filter_path:
|
|
2612
2639
|
:param display_name:
|
|
2613
2640
|
:param add_operator:
|
|
2641
|
+
:param add_operator_props:
|
|
2614
2642
|
"""
|
|
2615
2643
|
...
|
|
2616
2644
|
|
|
@@ -2779,6 +2807,7 @@ class GRAPH_MT_view(bpy_types._GenericUI):
|
|
|
2779
2807
|
filter_path,
|
|
2780
2808
|
display_name,
|
|
2781
2809
|
add_operator,
|
|
2810
|
+
add_operator_props,
|
|
2782
2811
|
):
|
|
2783
2812
|
"""
|
|
2784
2813
|
|
|
@@ -2790,6 +2819,7 @@ class GRAPH_MT_view(bpy_types._GenericUI):
|
|
|
2790
2819
|
:param filter_path:
|
|
2791
2820
|
:param display_name:
|
|
2792
2821
|
:param add_operator:
|
|
2822
|
+
:param add_operator_props:
|
|
2793
2823
|
"""
|
|
2794
2824
|
...
|
|
2795
2825
|
|
|
@@ -2958,6 +2988,7 @@ class GRAPH_MT_view_pie(bpy_types._GenericUI):
|
|
|
2958
2988
|
filter_path,
|
|
2959
2989
|
display_name,
|
|
2960
2990
|
add_operator,
|
|
2991
|
+
add_operator_props,
|
|
2961
2992
|
):
|
|
2962
2993
|
"""
|
|
2963
2994
|
|
|
@@ -2969,6 +3000,7 @@ class GRAPH_MT_view_pie(bpy_types._GenericUI):
|
|
|
2969
3000
|
:param filter_path:
|
|
2970
3001
|
:param display_name:
|
|
2971
3002
|
:param add_operator:
|
|
3003
|
+
:param add_operator_props:
|
|
2972
3004
|
"""
|
|
2973
3005
|
...
|
|
2974
3006
|
|