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_image/__init__.pyi
CHANGED
|
@@ -522,6 +522,7 @@ class IMAGE_MT_editor_menus(bpy_types._GenericUI):
|
|
|
522
522
|
filter_path,
|
|
523
523
|
display_name,
|
|
524
524
|
add_operator,
|
|
525
|
+
add_operator_props,
|
|
525
526
|
):
|
|
526
527
|
"""
|
|
527
528
|
|
|
@@ -533,6 +534,7 @@ class IMAGE_MT_editor_menus(bpy_types._GenericUI):
|
|
|
533
534
|
:param filter_path:
|
|
534
535
|
:param display_name:
|
|
535
536
|
:param add_operator:
|
|
537
|
+
:param add_operator_props:
|
|
536
538
|
"""
|
|
537
539
|
...
|
|
538
540
|
|
|
@@ -701,6 +703,7 @@ class IMAGE_MT_image(bpy_types._GenericUI):
|
|
|
701
703
|
filter_path,
|
|
702
704
|
display_name,
|
|
703
705
|
add_operator,
|
|
706
|
+
add_operator_props,
|
|
704
707
|
):
|
|
705
708
|
"""
|
|
706
709
|
|
|
@@ -712,6 +715,7 @@ class IMAGE_MT_image(bpy_types._GenericUI):
|
|
|
712
715
|
:param filter_path:
|
|
713
716
|
:param display_name:
|
|
714
717
|
:param add_operator:
|
|
718
|
+
:param add_operator_props:
|
|
715
719
|
"""
|
|
716
720
|
...
|
|
717
721
|
|
|
@@ -880,6 +884,7 @@ class IMAGE_MT_image_invert(bpy_types._GenericUI):
|
|
|
880
884
|
filter_path,
|
|
881
885
|
display_name,
|
|
882
886
|
add_operator,
|
|
887
|
+
add_operator_props,
|
|
883
888
|
):
|
|
884
889
|
"""
|
|
885
890
|
|
|
@@ -891,6 +896,7 @@ class IMAGE_MT_image_invert(bpy_types._GenericUI):
|
|
|
891
896
|
:param filter_path:
|
|
892
897
|
:param display_name:
|
|
893
898
|
:param add_operator:
|
|
899
|
+
:param add_operator_props:
|
|
894
900
|
"""
|
|
895
901
|
...
|
|
896
902
|
|
|
@@ -1059,6 +1065,7 @@ class IMAGE_MT_image_transform(bpy_types._GenericUI):
|
|
|
1059
1065
|
filter_path,
|
|
1060
1066
|
display_name,
|
|
1061
1067
|
add_operator,
|
|
1068
|
+
add_operator_props,
|
|
1062
1069
|
):
|
|
1063
1070
|
"""
|
|
1064
1071
|
|
|
@@ -1070,6 +1077,7 @@ class IMAGE_MT_image_transform(bpy_types._GenericUI):
|
|
|
1070
1077
|
:param filter_path:
|
|
1071
1078
|
:param display_name:
|
|
1072
1079
|
:param add_operator:
|
|
1080
|
+
:param add_operator_props:
|
|
1073
1081
|
"""
|
|
1074
1082
|
...
|
|
1075
1083
|
|
|
@@ -1238,6 +1246,7 @@ class IMAGE_MT_mask_context_menu(bpy_types._GenericUI):
|
|
|
1238
1246
|
filter_path,
|
|
1239
1247
|
display_name,
|
|
1240
1248
|
add_operator,
|
|
1249
|
+
add_operator_props,
|
|
1241
1250
|
):
|
|
1242
1251
|
"""
|
|
1243
1252
|
|
|
@@ -1249,6 +1258,7 @@ class IMAGE_MT_mask_context_menu(bpy_types._GenericUI):
|
|
|
1249
1258
|
:param filter_path:
|
|
1250
1259
|
:param display_name:
|
|
1251
1260
|
:param add_operator:
|
|
1261
|
+
:param add_operator_props:
|
|
1252
1262
|
"""
|
|
1253
1263
|
...
|
|
1254
1264
|
|
|
@@ -1424,6 +1434,7 @@ class IMAGE_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
1424
1434
|
filter_path,
|
|
1425
1435
|
display_name,
|
|
1426
1436
|
add_operator,
|
|
1437
|
+
add_operator_props,
|
|
1427
1438
|
):
|
|
1428
1439
|
"""
|
|
1429
1440
|
|
|
@@ -1435,6 +1446,7 @@ class IMAGE_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
1435
1446
|
:param filter_path:
|
|
1436
1447
|
:param display_name:
|
|
1437
1448
|
:param add_operator:
|
|
1449
|
+
:param add_operator_props:
|
|
1438
1450
|
"""
|
|
1439
1451
|
...
|
|
1440
1452
|
|
|
@@ -1603,6 +1615,7 @@ class IMAGE_MT_select(bpy_types._GenericUI):
|
|
|
1603
1615
|
filter_path,
|
|
1604
1616
|
display_name,
|
|
1605
1617
|
add_operator,
|
|
1618
|
+
add_operator_props,
|
|
1606
1619
|
):
|
|
1607
1620
|
"""
|
|
1608
1621
|
|
|
@@ -1614,6 +1627,7 @@ class IMAGE_MT_select(bpy_types._GenericUI):
|
|
|
1614
1627
|
:param filter_path:
|
|
1615
1628
|
:param display_name:
|
|
1616
1629
|
:param add_operator:
|
|
1630
|
+
:param add_operator_props:
|
|
1617
1631
|
"""
|
|
1618
1632
|
...
|
|
1619
1633
|
|
|
@@ -1782,6 +1796,7 @@ class IMAGE_MT_select_linked(bpy_types._GenericUI):
|
|
|
1782
1796
|
filter_path,
|
|
1783
1797
|
display_name,
|
|
1784
1798
|
add_operator,
|
|
1799
|
+
add_operator_props,
|
|
1785
1800
|
):
|
|
1786
1801
|
"""
|
|
1787
1802
|
|
|
@@ -1793,6 +1808,7 @@ class IMAGE_MT_select_linked(bpy_types._GenericUI):
|
|
|
1793
1808
|
:param filter_path:
|
|
1794
1809
|
:param display_name:
|
|
1795
1810
|
:param add_operator:
|
|
1811
|
+
:param add_operator_props:
|
|
1796
1812
|
"""
|
|
1797
1813
|
...
|
|
1798
1814
|
|
|
@@ -1961,6 +1977,7 @@ class IMAGE_MT_uvs(bpy_types._GenericUI):
|
|
|
1961
1977
|
filter_path,
|
|
1962
1978
|
display_name,
|
|
1963
1979
|
add_operator,
|
|
1980
|
+
add_operator_props,
|
|
1964
1981
|
):
|
|
1965
1982
|
"""
|
|
1966
1983
|
|
|
@@ -1972,6 +1989,7 @@ class IMAGE_MT_uvs(bpy_types._GenericUI):
|
|
|
1972
1989
|
:param filter_path:
|
|
1973
1990
|
:param display_name:
|
|
1974
1991
|
:param add_operator:
|
|
1992
|
+
:param add_operator_props:
|
|
1975
1993
|
"""
|
|
1976
1994
|
...
|
|
1977
1995
|
|
|
@@ -2140,6 +2158,7 @@ class IMAGE_MT_uvs_align(bpy_types._GenericUI):
|
|
|
2140
2158
|
filter_path,
|
|
2141
2159
|
display_name,
|
|
2142
2160
|
add_operator,
|
|
2161
|
+
add_operator_props,
|
|
2143
2162
|
):
|
|
2144
2163
|
"""
|
|
2145
2164
|
|
|
@@ -2151,6 +2170,7 @@ class IMAGE_MT_uvs_align(bpy_types._GenericUI):
|
|
|
2151
2170
|
:param filter_path:
|
|
2152
2171
|
:param display_name:
|
|
2153
2172
|
:param add_operator:
|
|
2173
|
+
:param add_operator_props:
|
|
2154
2174
|
"""
|
|
2155
2175
|
...
|
|
2156
2176
|
|
|
@@ -2319,6 +2339,7 @@ class IMAGE_MT_uvs_context_menu(bpy_types._GenericUI):
|
|
|
2319
2339
|
filter_path,
|
|
2320
2340
|
display_name,
|
|
2321
2341
|
add_operator,
|
|
2342
|
+
add_operator_props,
|
|
2322
2343
|
):
|
|
2323
2344
|
"""
|
|
2324
2345
|
|
|
@@ -2330,6 +2351,7 @@ class IMAGE_MT_uvs_context_menu(bpy_types._GenericUI):
|
|
|
2330
2351
|
:param filter_path:
|
|
2331
2352
|
:param display_name:
|
|
2332
2353
|
:param add_operator:
|
|
2354
|
+
:param add_operator_props:
|
|
2333
2355
|
"""
|
|
2334
2356
|
...
|
|
2335
2357
|
|
|
@@ -2498,6 +2520,7 @@ class IMAGE_MT_uvs_merge(bpy_types._GenericUI):
|
|
|
2498
2520
|
filter_path,
|
|
2499
2521
|
display_name,
|
|
2500
2522
|
add_operator,
|
|
2523
|
+
add_operator_props,
|
|
2501
2524
|
):
|
|
2502
2525
|
"""
|
|
2503
2526
|
|
|
@@ -2509,6 +2532,7 @@ class IMAGE_MT_uvs_merge(bpy_types._GenericUI):
|
|
|
2509
2532
|
:param filter_path:
|
|
2510
2533
|
:param display_name:
|
|
2511
2534
|
:param add_operator:
|
|
2535
|
+
:param add_operator_props:
|
|
2512
2536
|
"""
|
|
2513
2537
|
...
|
|
2514
2538
|
|
|
@@ -2677,6 +2701,7 @@ class IMAGE_MT_uvs_mirror(bpy_types._GenericUI):
|
|
|
2677
2701
|
filter_path,
|
|
2678
2702
|
display_name,
|
|
2679
2703
|
add_operator,
|
|
2704
|
+
add_operator_props,
|
|
2680
2705
|
):
|
|
2681
2706
|
"""
|
|
2682
2707
|
|
|
@@ -2688,6 +2713,7 @@ class IMAGE_MT_uvs_mirror(bpy_types._GenericUI):
|
|
|
2688
2713
|
:param filter_path:
|
|
2689
2714
|
:param display_name:
|
|
2690
2715
|
:param add_operator:
|
|
2716
|
+
:param add_operator_props:
|
|
2691
2717
|
"""
|
|
2692
2718
|
...
|
|
2693
2719
|
|
|
@@ -2856,6 +2882,7 @@ class IMAGE_MT_uvs_select_mode(bpy_types._GenericUI):
|
|
|
2856
2882
|
filter_path,
|
|
2857
2883
|
display_name,
|
|
2858
2884
|
add_operator,
|
|
2885
|
+
add_operator_props,
|
|
2859
2886
|
):
|
|
2860
2887
|
"""
|
|
2861
2888
|
|
|
@@ -2867,6 +2894,7 @@ class IMAGE_MT_uvs_select_mode(bpy_types._GenericUI):
|
|
|
2867
2894
|
:param filter_path:
|
|
2868
2895
|
:param display_name:
|
|
2869
2896
|
:param add_operator:
|
|
2897
|
+
:param add_operator_props:
|
|
2870
2898
|
"""
|
|
2871
2899
|
...
|
|
2872
2900
|
|
|
@@ -3035,6 +3063,7 @@ class IMAGE_MT_uvs_showhide(bpy_types._GenericUI):
|
|
|
3035
3063
|
filter_path,
|
|
3036
3064
|
display_name,
|
|
3037
3065
|
add_operator,
|
|
3066
|
+
add_operator_props,
|
|
3038
3067
|
):
|
|
3039
3068
|
"""
|
|
3040
3069
|
|
|
@@ -3046,6 +3075,7 @@ class IMAGE_MT_uvs_showhide(bpy_types._GenericUI):
|
|
|
3046
3075
|
:param filter_path:
|
|
3047
3076
|
:param display_name:
|
|
3048
3077
|
:param add_operator:
|
|
3078
|
+
:param add_operator_props:
|
|
3049
3079
|
"""
|
|
3050
3080
|
...
|
|
3051
3081
|
|
|
@@ -3214,6 +3244,7 @@ class IMAGE_MT_uvs_snap(bpy_types._GenericUI):
|
|
|
3214
3244
|
filter_path,
|
|
3215
3245
|
display_name,
|
|
3216
3246
|
add_operator,
|
|
3247
|
+
add_operator_props,
|
|
3217
3248
|
):
|
|
3218
3249
|
"""
|
|
3219
3250
|
|
|
@@ -3225,6 +3256,7 @@ class IMAGE_MT_uvs_snap(bpy_types._GenericUI):
|
|
|
3225
3256
|
:param filter_path:
|
|
3226
3257
|
:param display_name:
|
|
3227
3258
|
:param add_operator:
|
|
3259
|
+
:param add_operator_props:
|
|
3228
3260
|
"""
|
|
3229
3261
|
...
|
|
3230
3262
|
|
|
@@ -3393,6 +3425,7 @@ class IMAGE_MT_uvs_snap_pie(bpy_types._GenericUI):
|
|
|
3393
3425
|
filter_path,
|
|
3394
3426
|
display_name,
|
|
3395
3427
|
add_operator,
|
|
3428
|
+
add_operator_props,
|
|
3396
3429
|
):
|
|
3397
3430
|
"""
|
|
3398
3431
|
|
|
@@ -3404,6 +3437,7 @@ class IMAGE_MT_uvs_snap_pie(bpy_types._GenericUI):
|
|
|
3404
3437
|
:param filter_path:
|
|
3405
3438
|
:param display_name:
|
|
3406
3439
|
:param add_operator:
|
|
3440
|
+
:param add_operator_props:
|
|
3407
3441
|
"""
|
|
3408
3442
|
...
|
|
3409
3443
|
|
|
@@ -3572,6 +3606,7 @@ class IMAGE_MT_uvs_split(bpy_types._GenericUI):
|
|
|
3572
3606
|
filter_path,
|
|
3573
3607
|
display_name,
|
|
3574
3608
|
add_operator,
|
|
3609
|
+
add_operator_props,
|
|
3575
3610
|
):
|
|
3576
3611
|
"""
|
|
3577
3612
|
|
|
@@ -3583,6 +3618,7 @@ class IMAGE_MT_uvs_split(bpy_types._GenericUI):
|
|
|
3583
3618
|
:param filter_path:
|
|
3584
3619
|
:param display_name:
|
|
3585
3620
|
:param add_operator:
|
|
3621
|
+
:param add_operator_props:
|
|
3586
3622
|
"""
|
|
3587
3623
|
...
|
|
3588
3624
|
|
|
@@ -3751,6 +3787,7 @@ class IMAGE_MT_uvs_transform(bpy_types._GenericUI):
|
|
|
3751
3787
|
filter_path,
|
|
3752
3788
|
display_name,
|
|
3753
3789
|
add_operator,
|
|
3790
|
+
add_operator_props,
|
|
3754
3791
|
):
|
|
3755
3792
|
"""
|
|
3756
3793
|
|
|
@@ -3762,6 +3799,7 @@ class IMAGE_MT_uvs_transform(bpy_types._GenericUI):
|
|
|
3762
3799
|
:param filter_path:
|
|
3763
3800
|
:param display_name:
|
|
3764
3801
|
:param add_operator:
|
|
3802
|
+
:param add_operator_props:
|
|
3765
3803
|
"""
|
|
3766
3804
|
...
|
|
3767
3805
|
|
|
@@ -3930,6 +3968,7 @@ class IMAGE_MT_uvs_unwrap(bpy_types._GenericUI):
|
|
|
3930
3968
|
filter_path,
|
|
3931
3969
|
display_name,
|
|
3932
3970
|
add_operator,
|
|
3971
|
+
add_operator_props,
|
|
3933
3972
|
):
|
|
3934
3973
|
"""
|
|
3935
3974
|
|
|
@@ -3941,6 +3980,7 @@ class IMAGE_MT_uvs_unwrap(bpy_types._GenericUI):
|
|
|
3941
3980
|
:param filter_path:
|
|
3942
3981
|
:param display_name:
|
|
3943
3982
|
:param add_operator:
|
|
3983
|
+
:param add_operator_props:
|
|
3944
3984
|
"""
|
|
3945
3985
|
...
|
|
3946
3986
|
|
|
@@ -4109,6 +4149,7 @@ class IMAGE_MT_view(bpy_types._GenericUI):
|
|
|
4109
4149
|
filter_path,
|
|
4110
4150
|
display_name,
|
|
4111
4151
|
add_operator,
|
|
4152
|
+
add_operator_props,
|
|
4112
4153
|
):
|
|
4113
4154
|
"""
|
|
4114
4155
|
|
|
@@ -4120,6 +4161,7 @@ class IMAGE_MT_view(bpy_types._GenericUI):
|
|
|
4120
4161
|
:param filter_path:
|
|
4121
4162
|
:param display_name:
|
|
4122
4163
|
:param add_operator:
|
|
4164
|
+
:param add_operator_props:
|
|
4123
4165
|
"""
|
|
4124
4166
|
...
|
|
4125
4167
|
|
|
@@ -4288,6 +4330,7 @@ class IMAGE_MT_view_pie(bpy_types._GenericUI):
|
|
|
4288
4330
|
filter_path,
|
|
4289
4331
|
display_name,
|
|
4290
4332
|
add_operator,
|
|
4333
|
+
add_operator_props,
|
|
4291
4334
|
):
|
|
4292
4335
|
"""
|
|
4293
4336
|
|
|
@@ -4299,6 +4342,7 @@ class IMAGE_MT_view_pie(bpy_types._GenericUI):
|
|
|
4299
4342
|
:param filter_path:
|
|
4300
4343
|
:param display_name:
|
|
4301
4344
|
:param add_operator:
|
|
4345
|
+
:param add_operator_props:
|
|
4302
4346
|
"""
|
|
4303
4347
|
...
|
|
4304
4348
|
|
|
@@ -4467,6 +4511,7 @@ class IMAGE_MT_view_zoom(bpy_types._GenericUI):
|
|
|
4467
4511
|
filter_path,
|
|
4468
4512
|
display_name,
|
|
4469
4513
|
add_operator,
|
|
4514
|
+
add_operator_props,
|
|
4470
4515
|
):
|
|
4471
4516
|
"""
|
|
4472
4517
|
|
|
@@ -4478,6 +4523,7 @@ class IMAGE_MT_view_zoom(bpy_types._GenericUI):
|
|
|
4478
4523
|
:param filter_path:
|
|
4479
4524
|
:param display_name:
|
|
4480
4525
|
:param add_operator:
|
|
4526
|
+
:param add_operator_props:
|
|
4481
4527
|
"""
|
|
4482
4528
|
...
|
|
4483
4529
|
|
bl_ui/space_info/__init__.pyi
CHANGED
|
@@ -273,6 +273,7 @@ class INFO_MT_area(bpy_types._GenericUI):
|
|
|
273
273
|
filter_path,
|
|
274
274
|
display_name,
|
|
275
275
|
add_operator,
|
|
276
|
+
add_operator_props,
|
|
276
277
|
):
|
|
277
278
|
"""
|
|
278
279
|
|
|
@@ -284,6 +285,7 @@ class INFO_MT_area(bpy_types._GenericUI):
|
|
|
284
285
|
:param filter_path:
|
|
285
286
|
:param display_name:
|
|
286
287
|
:param add_operator:
|
|
288
|
+
:param add_operator_props:
|
|
287
289
|
"""
|
|
288
290
|
...
|
|
289
291
|
|
|
@@ -452,6 +454,7 @@ class INFO_MT_context_menu(bpy_types._GenericUI):
|
|
|
452
454
|
filter_path,
|
|
453
455
|
display_name,
|
|
454
456
|
add_operator,
|
|
457
|
+
add_operator_props,
|
|
455
458
|
):
|
|
456
459
|
"""
|
|
457
460
|
|
|
@@ -463,6 +466,7 @@ class INFO_MT_context_menu(bpy_types._GenericUI):
|
|
|
463
466
|
:param filter_path:
|
|
464
467
|
:param display_name:
|
|
465
468
|
:param add_operator:
|
|
469
|
+
:param add_operator_props:
|
|
466
470
|
"""
|
|
467
471
|
...
|
|
468
472
|
|
|
@@ -634,6 +638,7 @@ class INFO_MT_editor_menus(bpy_types._GenericUI):
|
|
|
634
638
|
filter_path,
|
|
635
639
|
display_name,
|
|
636
640
|
add_operator,
|
|
641
|
+
add_operator_props,
|
|
637
642
|
):
|
|
638
643
|
"""
|
|
639
644
|
|
|
@@ -645,6 +650,7 @@ class INFO_MT_editor_menus(bpy_types._GenericUI):
|
|
|
645
650
|
:param filter_path:
|
|
646
651
|
:param display_name:
|
|
647
652
|
:param add_operator:
|
|
653
|
+
:param add_operator_props:
|
|
648
654
|
"""
|
|
649
655
|
...
|
|
650
656
|
|
|
@@ -813,6 +819,7 @@ class INFO_MT_info(bpy_types._GenericUI):
|
|
|
813
819
|
filter_path,
|
|
814
820
|
display_name,
|
|
815
821
|
add_operator,
|
|
822
|
+
add_operator_props,
|
|
816
823
|
):
|
|
817
824
|
"""
|
|
818
825
|
|
|
@@ -824,6 +831,7 @@ class INFO_MT_info(bpy_types._GenericUI):
|
|
|
824
831
|
:param filter_path:
|
|
825
832
|
:param display_name:
|
|
826
833
|
:param add_operator:
|
|
834
|
+
:param add_operator_props:
|
|
827
835
|
"""
|
|
828
836
|
...
|
|
829
837
|
|
|
@@ -992,6 +1000,7 @@ class INFO_MT_view(bpy_types._GenericUI):
|
|
|
992
1000
|
filter_path,
|
|
993
1001
|
display_name,
|
|
994
1002
|
add_operator,
|
|
1003
|
+
add_operator_props,
|
|
995
1004
|
):
|
|
996
1005
|
"""
|
|
997
1006
|
|
|
@@ -1003,6 +1012,7 @@ class INFO_MT_view(bpy_types._GenericUI):
|
|
|
1003
1012
|
:param filter_path:
|
|
1004
1013
|
:param display_name:
|
|
1005
1014
|
:param add_operator:
|
|
1015
|
+
:param add_operator_props:
|
|
1006
1016
|
"""
|
|
1007
1017
|
...
|
|
1008
1018
|
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -273,6 +273,7 @@ class NLA_MT_add(bpy_types._GenericUI):
|
|
|
273
273
|
filter_path,
|
|
274
274
|
display_name,
|
|
275
275
|
add_operator,
|
|
276
|
+
add_operator_props,
|
|
276
277
|
):
|
|
277
278
|
"""
|
|
278
279
|
|
|
@@ -284,6 +285,7 @@ class NLA_MT_add(bpy_types._GenericUI):
|
|
|
284
285
|
:param filter_path:
|
|
285
286
|
:param display_name:
|
|
286
287
|
:param add_operator:
|
|
288
|
+
:param add_operator_props:
|
|
287
289
|
"""
|
|
288
290
|
...
|
|
289
291
|
|
|
@@ -452,6 +454,7 @@ class NLA_MT_channel_context_menu(bpy_types._GenericUI):
|
|
|
452
454
|
filter_path,
|
|
453
455
|
display_name,
|
|
454
456
|
add_operator,
|
|
457
|
+
add_operator_props,
|
|
455
458
|
):
|
|
456
459
|
"""
|
|
457
460
|
|
|
@@ -463,6 +466,7 @@ class NLA_MT_channel_context_menu(bpy_types._GenericUI):
|
|
|
463
466
|
:param filter_path:
|
|
464
467
|
:param display_name:
|
|
465
468
|
:param add_operator:
|
|
469
|
+
:param add_operator_props:
|
|
466
470
|
"""
|
|
467
471
|
...
|
|
468
472
|
|
|
@@ -631,6 +635,7 @@ class NLA_MT_context_menu(bpy_types._GenericUI):
|
|
|
631
635
|
filter_path,
|
|
632
636
|
display_name,
|
|
633
637
|
add_operator,
|
|
638
|
+
add_operator_props,
|
|
634
639
|
):
|
|
635
640
|
"""
|
|
636
641
|
|
|
@@ -642,6 +647,7 @@ class NLA_MT_context_menu(bpy_types._GenericUI):
|
|
|
642
647
|
:param filter_path:
|
|
643
648
|
:param display_name:
|
|
644
649
|
:param add_operator:
|
|
650
|
+
:param add_operator_props:
|
|
645
651
|
"""
|
|
646
652
|
...
|
|
647
653
|
|
|
@@ -813,6 +819,7 @@ class NLA_MT_editor_menus(bpy_types._GenericUI):
|
|
|
813
819
|
filter_path,
|
|
814
820
|
display_name,
|
|
815
821
|
add_operator,
|
|
822
|
+
add_operator_props,
|
|
816
823
|
):
|
|
817
824
|
"""
|
|
818
825
|
|
|
@@ -824,6 +831,7 @@ class NLA_MT_editor_menus(bpy_types._GenericUI):
|
|
|
824
831
|
:param filter_path:
|
|
825
832
|
:param display_name:
|
|
826
833
|
:param add_operator:
|
|
834
|
+
:param add_operator_props:
|
|
827
835
|
"""
|
|
828
836
|
...
|
|
829
837
|
|
|
@@ -992,6 +1000,7 @@ class NLA_MT_marker(bpy_types._GenericUI):
|
|
|
992
1000
|
filter_path,
|
|
993
1001
|
display_name,
|
|
994
1002
|
add_operator,
|
|
1003
|
+
add_operator_props,
|
|
995
1004
|
):
|
|
996
1005
|
"""
|
|
997
1006
|
|
|
@@ -1003,6 +1012,7 @@ class NLA_MT_marker(bpy_types._GenericUI):
|
|
|
1003
1012
|
:param filter_path:
|
|
1004
1013
|
:param display_name:
|
|
1005
1014
|
:param add_operator:
|
|
1015
|
+
:param add_operator_props:
|
|
1006
1016
|
"""
|
|
1007
1017
|
...
|
|
1008
1018
|
|
|
@@ -1171,6 +1181,7 @@ class NLA_MT_marker_select(bpy_types._GenericUI):
|
|
|
1171
1181
|
filter_path,
|
|
1172
1182
|
display_name,
|
|
1173
1183
|
add_operator,
|
|
1184
|
+
add_operator_props,
|
|
1174
1185
|
):
|
|
1175
1186
|
"""
|
|
1176
1187
|
|
|
@@ -1182,6 +1193,7 @@ class NLA_MT_marker_select(bpy_types._GenericUI):
|
|
|
1182
1193
|
:param filter_path:
|
|
1183
1194
|
:param display_name:
|
|
1184
1195
|
:param add_operator:
|
|
1196
|
+
:param add_operator_props:
|
|
1185
1197
|
"""
|
|
1186
1198
|
...
|
|
1187
1199
|
|
|
@@ -1350,6 +1362,7 @@ class NLA_MT_select(bpy_types._GenericUI):
|
|
|
1350
1362
|
filter_path,
|
|
1351
1363
|
display_name,
|
|
1352
1364
|
add_operator,
|
|
1365
|
+
add_operator_props,
|
|
1353
1366
|
):
|
|
1354
1367
|
"""
|
|
1355
1368
|
|
|
@@ -1361,6 +1374,7 @@ class NLA_MT_select(bpy_types._GenericUI):
|
|
|
1361
1374
|
:param filter_path:
|
|
1362
1375
|
:param display_name:
|
|
1363
1376
|
:param add_operator:
|
|
1377
|
+
:param add_operator_props:
|
|
1364
1378
|
"""
|
|
1365
1379
|
...
|
|
1366
1380
|
|
|
@@ -1529,6 +1543,7 @@ class NLA_MT_snap_pie(bpy_types._GenericUI):
|
|
|
1529
1543
|
filter_path,
|
|
1530
1544
|
display_name,
|
|
1531
1545
|
add_operator,
|
|
1546
|
+
add_operator_props,
|
|
1532
1547
|
):
|
|
1533
1548
|
"""
|
|
1534
1549
|
|
|
@@ -1540,6 +1555,7 @@ class NLA_MT_snap_pie(bpy_types._GenericUI):
|
|
|
1540
1555
|
:param filter_path:
|
|
1541
1556
|
:param display_name:
|
|
1542
1557
|
:param add_operator:
|
|
1558
|
+
:param add_operator_props:
|
|
1543
1559
|
"""
|
|
1544
1560
|
...
|
|
1545
1561
|
|
|
@@ -1708,6 +1724,7 @@ class NLA_MT_strips(bpy_types._GenericUI):
|
|
|
1708
1724
|
filter_path,
|
|
1709
1725
|
display_name,
|
|
1710
1726
|
add_operator,
|
|
1727
|
+
add_operator_props,
|
|
1711
1728
|
):
|
|
1712
1729
|
"""
|
|
1713
1730
|
|
|
@@ -1719,6 +1736,7 @@ class NLA_MT_strips(bpy_types._GenericUI):
|
|
|
1719
1736
|
:param filter_path:
|
|
1720
1737
|
:param display_name:
|
|
1721
1738
|
:param add_operator:
|
|
1739
|
+
:param add_operator_props:
|
|
1722
1740
|
"""
|
|
1723
1741
|
...
|
|
1724
1742
|
|
|
@@ -1887,6 +1905,7 @@ class NLA_MT_strips_transform(bpy_types._GenericUI):
|
|
|
1887
1905
|
filter_path,
|
|
1888
1906
|
display_name,
|
|
1889
1907
|
add_operator,
|
|
1908
|
+
add_operator_props,
|
|
1890
1909
|
):
|
|
1891
1910
|
"""
|
|
1892
1911
|
|
|
@@ -1898,6 +1917,7 @@ class NLA_MT_strips_transform(bpy_types._GenericUI):
|
|
|
1898
1917
|
:param filter_path:
|
|
1899
1918
|
:param display_name:
|
|
1900
1919
|
:param add_operator:
|
|
1920
|
+
:param add_operator_props:
|
|
1901
1921
|
"""
|
|
1902
1922
|
...
|
|
1903
1923
|
|
|
@@ -2069,6 +2089,7 @@ class NLA_MT_tracks(bpy_types._GenericUI):
|
|
|
2069
2089
|
filter_path,
|
|
2070
2090
|
display_name,
|
|
2071
2091
|
add_operator,
|
|
2092
|
+
add_operator_props,
|
|
2072
2093
|
):
|
|
2073
2094
|
"""
|
|
2074
2095
|
|
|
@@ -2080,6 +2101,7 @@ class NLA_MT_tracks(bpy_types._GenericUI):
|
|
|
2080
2101
|
:param filter_path:
|
|
2081
2102
|
:param display_name:
|
|
2082
2103
|
:param add_operator:
|
|
2104
|
+
:param add_operator_props:
|
|
2083
2105
|
"""
|
|
2084
2106
|
...
|
|
2085
2107
|
|
|
@@ -2248,6 +2270,7 @@ class NLA_MT_view(bpy_types._GenericUI):
|
|
|
2248
2270
|
filter_path,
|
|
2249
2271
|
display_name,
|
|
2250
2272
|
add_operator,
|
|
2273
|
+
add_operator_props,
|
|
2251
2274
|
):
|
|
2252
2275
|
"""
|
|
2253
2276
|
|
|
@@ -2259,6 +2282,7 @@ class NLA_MT_view(bpy_types._GenericUI):
|
|
|
2259
2282
|
:param filter_path:
|
|
2260
2283
|
:param display_name:
|
|
2261
2284
|
:param add_operator:
|
|
2285
|
+
:param add_operator_props:
|
|
2262
2286
|
"""
|
|
2263
2287
|
...
|
|
2264
2288
|
|
|
@@ -2427,6 +2451,7 @@ class NLA_MT_view_pie(bpy_types._GenericUI):
|
|
|
2427
2451
|
filter_path,
|
|
2428
2452
|
display_name,
|
|
2429
2453
|
add_operator,
|
|
2454
|
+
add_operator_props,
|
|
2430
2455
|
):
|
|
2431
2456
|
"""
|
|
2432
2457
|
|
|
@@ -2438,6 +2463,7 @@ class NLA_MT_view_pie(bpy_types._GenericUI):
|
|
|
2438
2463
|
:param filter_path:
|
|
2439
2464
|
:param display_name:
|
|
2440
2465
|
:param add_operator:
|
|
2466
|
+
:param add_operator_props:
|
|
2441
2467
|
"""
|
|
2442
2468
|
...
|
|
2443
2469
|
|