fake-bpy-module 20240407__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 +651 -1
- bpy_types/__init__.pyi +2 -0
- {fake_bpy_module-20240407.dist-info → fake_bpy_module-20240409.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240407.dist-info → fake_bpy_module-20240409.dist-info}/RECORD +64 -62
- {fake_bpy_module-20240407.dist-info → fake_bpy_module-20240409.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240407.dist-info → fake_bpy_module-20240409.dist-info}/top_level.txt +0 -0
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -273,6 +273,7 @@ class CLIP_MT_clip(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 CLIP_MT_clip(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 CLIP_MT_marker_pie(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 CLIP_MT_marker_pie(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
|
|
|
@@ -641,6 +645,7 @@ class CLIP_MT_masking_editor_menus(bpy_types._GenericUI):
|
|
|
641
645
|
filter_path,
|
|
642
646
|
display_name,
|
|
643
647
|
add_operator,
|
|
648
|
+
add_operator_props,
|
|
644
649
|
):
|
|
645
650
|
"""
|
|
646
651
|
|
|
@@ -652,6 +657,7 @@ class CLIP_MT_masking_editor_menus(bpy_types._GenericUI):
|
|
|
652
657
|
:param filter_path:
|
|
653
658
|
:param display_name:
|
|
654
659
|
:param add_operator:
|
|
660
|
+
:param add_operator_props:
|
|
655
661
|
"""
|
|
656
662
|
...
|
|
657
663
|
|
|
@@ -820,6 +826,7 @@ class CLIP_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
820
826
|
filter_path,
|
|
821
827
|
display_name,
|
|
822
828
|
add_operator,
|
|
829
|
+
add_operator_props,
|
|
823
830
|
):
|
|
824
831
|
"""
|
|
825
832
|
|
|
@@ -831,6 +838,7 @@ class CLIP_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
831
838
|
:param filter_path:
|
|
832
839
|
:param display_name:
|
|
833
840
|
:param add_operator:
|
|
841
|
+
:param add_operator_props:
|
|
834
842
|
"""
|
|
835
843
|
...
|
|
836
844
|
|
|
@@ -999,6 +1007,7 @@ class CLIP_MT_plane_track_image_context_menu(bpy_types._GenericUI):
|
|
|
999
1007
|
filter_path,
|
|
1000
1008
|
display_name,
|
|
1001
1009
|
add_operator,
|
|
1010
|
+
add_operator_props,
|
|
1002
1011
|
):
|
|
1003
1012
|
"""
|
|
1004
1013
|
|
|
@@ -1010,6 +1019,7 @@ class CLIP_MT_plane_track_image_context_menu(bpy_types._GenericUI):
|
|
|
1010
1019
|
:param filter_path:
|
|
1011
1020
|
:param display_name:
|
|
1012
1021
|
:param add_operator:
|
|
1022
|
+
:param add_operator_props:
|
|
1013
1023
|
"""
|
|
1014
1024
|
...
|
|
1015
1025
|
|
|
@@ -1178,6 +1188,7 @@ class CLIP_MT_proxy(bpy_types._GenericUI):
|
|
|
1178
1188
|
filter_path,
|
|
1179
1189
|
display_name,
|
|
1180
1190
|
add_operator,
|
|
1191
|
+
add_operator_props,
|
|
1181
1192
|
):
|
|
1182
1193
|
"""
|
|
1183
1194
|
|
|
@@ -1189,6 +1200,7 @@ class CLIP_MT_proxy(bpy_types._GenericUI):
|
|
|
1189
1200
|
:param filter_path:
|
|
1190
1201
|
:param display_name:
|
|
1191
1202
|
:param add_operator:
|
|
1203
|
+
:param add_operator_props:
|
|
1192
1204
|
"""
|
|
1193
1205
|
...
|
|
1194
1206
|
|
|
@@ -1357,6 +1369,7 @@ class CLIP_MT_reconstruction(bpy_types._GenericUI):
|
|
|
1357
1369
|
filter_path,
|
|
1358
1370
|
display_name,
|
|
1359
1371
|
add_operator,
|
|
1372
|
+
add_operator_props,
|
|
1360
1373
|
):
|
|
1361
1374
|
"""
|
|
1362
1375
|
|
|
@@ -1368,6 +1381,7 @@ class CLIP_MT_reconstruction(bpy_types._GenericUI):
|
|
|
1368
1381
|
:param filter_path:
|
|
1369
1382
|
:param display_name:
|
|
1370
1383
|
:param add_operator:
|
|
1384
|
+
:param add_operator_props:
|
|
1371
1385
|
"""
|
|
1372
1386
|
...
|
|
1373
1387
|
|
|
@@ -1536,6 +1550,7 @@ class CLIP_MT_reconstruction_pie(bpy_types._GenericUI):
|
|
|
1536
1550
|
filter_path,
|
|
1537
1551
|
display_name,
|
|
1538
1552
|
add_operator,
|
|
1553
|
+
add_operator_props,
|
|
1539
1554
|
):
|
|
1540
1555
|
"""
|
|
1541
1556
|
|
|
@@ -1547,6 +1562,7 @@ class CLIP_MT_reconstruction_pie(bpy_types._GenericUI):
|
|
|
1547
1562
|
:param filter_path:
|
|
1548
1563
|
:param display_name:
|
|
1549
1564
|
:param add_operator:
|
|
1565
|
+
:param add_operator_props:
|
|
1550
1566
|
"""
|
|
1551
1567
|
...
|
|
1552
1568
|
|
|
@@ -1722,6 +1738,7 @@ class CLIP_MT_select(bpy_types._GenericUI):
|
|
|
1722
1738
|
filter_path,
|
|
1723
1739
|
display_name,
|
|
1724
1740
|
add_operator,
|
|
1741
|
+
add_operator_props,
|
|
1725
1742
|
):
|
|
1726
1743
|
"""
|
|
1727
1744
|
|
|
@@ -1733,6 +1750,7 @@ class CLIP_MT_select(bpy_types._GenericUI):
|
|
|
1733
1750
|
:param filter_path:
|
|
1734
1751
|
:param display_name:
|
|
1735
1752
|
:param add_operator:
|
|
1753
|
+
:param add_operator_props:
|
|
1736
1754
|
"""
|
|
1737
1755
|
...
|
|
1738
1756
|
|
|
@@ -1901,6 +1919,7 @@ class CLIP_MT_select_grouped(bpy_types._GenericUI):
|
|
|
1901
1919
|
filter_path,
|
|
1902
1920
|
display_name,
|
|
1903
1921
|
add_operator,
|
|
1922
|
+
add_operator_props,
|
|
1904
1923
|
):
|
|
1905
1924
|
"""
|
|
1906
1925
|
|
|
@@ -1912,6 +1931,7 @@ class CLIP_MT_select_grouped(bpy_types._GenericUI):
|
|
|
1912
1931
|
:param filter_path:
|
|
1913
1932
|
:param display_name:
|
|
1914
1933
|
:param add_operator:
|
|
1934
|
+
:param add_operator_props:
|
|
1915
1935
|
"""
|
|
1916
1936
|
...
|
|
1917
1937
|
|
|
@@ -2080,6 +2100,7 @@ class CLIP_MT_solving_pie(bpy_types._GenericUI):
|
|
|
2080
2100
|
filter_path,
|
|
2081
2101
|
display_name,
|
|
2082
2102
|
add_operator,
|
|
2103
|
+
add_operator_props,
|
|
2083
2104
|
):
|
|
2084
2105
|
"""
|
|
2085
2106
|
|
|
@@ -2091,6 +2112,7 @@ class CLIP_MT_solving_pie(bpy_types._GenericUI):
|
|
|
2091
2112
|
:param filter_path:
|
|
2092
2113
|
:param display_name:
|
|
2093
2114
|
:param add_operator:
|
|
2115
|
+
:param add_operator_props:
|
|
2094
2116
|
"""
|
|
2095
2117
|
...
|
|
2096
2118
|
|
|
@@ -2266,6 +2288,7 @@ class CLIP_MT_stabilize_2d_context_menu(bpy_types._GenericUI):
|
|
|
2266
2288
|
filter_path,
|
|
2267
2289
|
display_name,
|
|
2268
2290
|
add_operator,
|
|
2291
|
+
add_operator_props,
|
|
2269
2292
|
):
|
|
2270
2293
|
"""
|
|
2271
2294
|
|
|
@@ -2277,6 +2300,7 @@ class CLIP_MT_stabilize_2d_context_menu(bpy_types._GenericUI):
|
|
|
2277
2300
|
:param filter_path:
|
|
2278
2301
|
:param display_name:
|
|
2279
2302
|
:param add_operator:
|
|
2303
|
+
:param add_operator_props:
|
|
2280
2304
|
"""
|
|
2281
2305
|
...
|
|
2282
2306
|
|
|
@@ -2445,6 +2469,7 @@ class CLIP_MT_stabilize_2d_rotation_context_menu(bpy_types._GenericUI):
|
|
|
2445
2469
|
filter_path,
|
|
2446
2470
|
display_name,
|
|
2447
2471
|
add_operator,
|
|
2472
|
+
add_operator_props,
|
|
2448
2473
|
):
|
|
2449
2474
|
"""
|
|
2450
2475
|
|
|
@@ -2456,6 +2481,7 @@ class CLIP_MT_stabilize_2d_rotation_context_menu(bpy_types._GenericUI):
|
|
|
2456
2481
|
:param filter_path:
|
|
2457
2482
|
:param display_name:
|
|
2458
2483
|
:param add_operator:
|
|
2484
|
+
:param add_operator_props:
|
|
2459
2485
|
"""
|
|
2460
2486
|
...
|
|
2461
2487
|
|
|
@@ -2624,6 +2650,7 @@ class CLIP_MT_track(bpy_types._GenericUI):
|
|
|
2624
2650
|
filter_path,
|
|
2625
2651
|
display_name,
|
|
2626
2652
|
add_operator,
|
|
2653
|
+
add_operator_props,
|
|
2627
2654
|
):
|
|
2628
2655
|
"""
|
|
2629
2656
|
|
|
@@ -2635,6 +2662,7 @@ class CLIP_MT_track(bpy_types._GenericUI):
|
|
|
2635
2662
|
:param filter_path:
|
|
2636
2663
|
:param display_name:
|
|
2637
2664
|
:param add_operator:
|
|
2665
|
+
:param add_operator_props:
|
|
2638
2666
|
"""
|
|
2639
2667
|
...
|
|
2640
2668
|
|
|
@@ -2803,6 +2831,7 @@ class CLIP_MT_track_animation(bpy_types._GenericUI):
|
|
|
2803
2831
|
filter_path,
|
|
2804
2832
|
display_name,
|
|
2805
2833
|
add_operator,
|
|
2834
|
+
add_operator_props,
|
|
2806
2835
|
):
|
|
2807
2836
|
"""
|
|
2808
2837
|
|
|
@@ -2814,6 +2843,7 @@ class CLIP_MT_track_animation(bpy_types._GenericUI):
|
|
|
2814
2843
|
:param filter_path:
|
|
2815
2844
|
:param display_name:
|
|
2816
2845
|
:param add_operator:
|
|
2846
|
+
:param add_operator_props:
|
|
2817
2847
|
"""
|
|
2818
2848
|
...
|
|
2819
2849
|
|
|
@@ -2982,6 +3012,7 @@ class CLIP_MT_track_cleanup(bpy_types._GenericUI):
|
|
|
2982
3012
|
filter_path,
|
|
2983
3013
|
display_name,
|
|
2984
3014
|
add_operator,
|
|
3015
|
+
add_operator_props,
|
|
2985
3016
|
):
|
|
2986
3017
|
"""
|
|
2987
3018
|
|
|
@@ -2993,6 +3024,7 @@ class CLIP_MT_track_cleanup(bpy_types._GenericUI):
|
|
|
2993
3024
|
:param filter_path:
|
|
2994
3025
|
:param display_name:
|
|
2995
3026
|
:param add_operator:
|
|
3027
|
+
:param add_operator_props:
|
|
2996
3028
|
"""
|
|
2997
3029
|
...
|
|
2998
3030
|
|
|
@@ -3161,6 +3193,7 @@ class CLIP_MT_track_clear(bpy_types._GenericUI):
|
|
|
3161
3193
|
filter_path,
|
|
3162
3194
|
display_name,
|
|
3163
3195
|
add_operator,
|
|
3196
|
+
add_operator_props,
|
|
3164
3197
|
):
|
|
3165
3198
|
"""
|
|
3166
3199
|
|
|
@@ -3172,6 +3205,7 @@ class CLIP_MT_track_clear(bpy_types._GenericUI):
|
|
|
3172
3205
|
:param filter_path:
|
|
3173
3206
|
:param display_name:
|
|
3174
3207
|
:param add_operator:
|
|
3208
|
+
:param add_operator_props:
|
|
3175
3209
|
"""
|
|
3176
3210
|
...
|
|
3177
3211
|
|
|
@@ -3340,6 +3374,7 @@ class CLIP_MT_track_motion(bpy_types._GenericUI):
|
|
|
3340
3374
|
filter_path,
|
|
3341
3375
|
display_name,
|
|
3342
3376
|
add_operator,
|
|
3377
|
+
add_operator_props,
|
|
3343
3378
|
):
|
|
3344
3379
|
"""
|
|
3345
3380
|
|
|
@@ -3351,6 +3386,7 @@ class CLIP_MT_track_motion(bpy_types._GenericUI):
|
|
|
3351
3386
|
:param filter_path:
|
|
3352
3387
|
:param display_name:
|
|
3353
3388
|
:param add_operator:
|
|
3389
|
+
:param add_operator_props:
|
|
3354
3390
|
"""
|
|
3355
3391
|
...
|
|
3356
3392
|
|
|
@@ -3519,6 +3555,7 @@ class CLIP_MT_track_refine(bpy_types._GenericUI):
|
|
|
3519
3555
|
filter_path,
|
|
3520
3556
|
display_name,
|
|
3521
3557
|
add_operator,
|
|
3558
|
+
add_operator_props,
|
|
3522
3559
|
):
|
|
3523
3560
|
"""
|
|
3524
3561
|
|
|
@@ -3530,6 +3567,7 @@ class CLIP_MT_track_refine(bpy_types._GenericUI):
|
|
|
3530
3567
|
:param filter_path:
|
|
3531
3568
|
:param display_name:
|
|
3532
3569
|
:param add_operator:
|
|
3570
|
+
:param add_operator_props:
|
|
3533
3571
|
"""
|
|
3534
3572
|
...
|
|
3535
3573
|
|
|
@@ -3698,6 +3736,7 @@ class CLIP_MT_track_transform(bpy_types._GenericUI):
|
|
|
3698
3736
|
filter_path,
|
|
3699
3737
|
display_name,
|
|
3700
3738
|
add_operator,
|
|
3739
|
+
add_operator_props,
|
|
3701
3740
|
):
|
|
3702
3741
|
"""
|
|
3703
3742
|
|
|
@@ -3709,6 +3748,7 @@ class CLIP_MT_track_transform(bpy_types._GenericUI):
|
|
|
3709
3748
|
:param filter_path:
|
|
3710
3749
|
:param display_name:
|
|
3711
3750
|
:param add_operator:
|
|
3751
|
+
:param add_operator_props:
|
|
3712
3752
|
"""
|
|
3713
3753
|
...
|
|
3714
3754
|
|
|
@@ -3877,6 +3917,7 @@ class CLIP_MT_track_visibility(bpy_types._GenericUI):
|
|
|
3877
3917
|
filter_path,
|
|
3878
3918
|
display_name,
|
|
3879
3919
|
add_operator,
|
|
3920
|
+
add_operator_props,
|
|
3880
3921
|
):
|
|
3881
3922
|
"""
|
|
3882
3923
|
|
|
@@ -3888,6 +3929,7 @@ class CLIP_MT_track_visibility(bpy_types._GenericUI):
|
|
|
3888
3929
|
:param filter_path:
|
|
3889
3930
|
:param display_name:
|
|
3890
3931
|
:param add_operator:
|
|
3932
|
+
:param add_operator_props:
|
|
3891
3933
|
"""
|
|
3892
3934
|
...
|
|
3893
3935
|
|
|
@@ -4056,6 +4098,7 @@ class CLIP_MT_tracking_context_menu(bpy_types._GenericUI):
|
|
|
4056
4098
|
filter_path,
|
|
4057
4099
|
display_name,
|
|
4058
4100
|
add_operator,
|
|
4101
|
+
add_operator_props,
|
|
4059
4102
|
):
|
|
4060
4103
|
"""
|
|
4061
4104
|
|
|
@@ -4067,6 +4110,7 @@ class CLIP_MT_tracking_context_menu(bpy_types._GenericUI):
|
|
|
4067
4110
|
:param filter_path:
|
|
4068
4111
|
:param display_name:
|
|
4069
4112
|
:param add_operator:
|
|
4113
|
+
:param add_operator_props:
|
|
4070
4114
|
"""
|
|
4071
4115
|
...
|
|
4072
4116
|
|
|
@@ -4245,6 +4289,7 @@ class CLIP_MT_tracking_editor_menus(bpy_types._GenericUI):
|
|
|
4245
4289
|
filter_path,
|
|
4246
4290
|
display_name,
|
|
4247
4291
|
add_operator,
|
|
4292
|
+
add_operator_props,
|
|
4248
4293
|
):
|
|
4249
4294
|
"""
|
|
4250
4295
|
|
|
@@ -4256,6 +4301,7 @@ class CLIP_MT_tracking_editor_menus(bpy_types._GenericUI):
|
|
|
4256
4301
|
:param filter_path:
|
|
4257
4302
|
:param display_name:
|
|
4258
4303
|
:param add_operator:
|
|
4304
|
+
:param add_operator_props:
|
|
4259
4305
|
"""
|
|
4260
4306
|
...
|
|
4261
4307
|
|
|
@@ -4427,6 +4473,7 @@ class CLIP_MT_tracking_pie(bpy_types._GenericUI):
|
|
|
4427
4473
|
filter_path,
|
|
4428
4474
|
display_name,
|
|
4429
4475
|
add_operator,
|
|
4476
|
+
add_operator_props,
|
|
4430
4477
|
):
|
|
4431
4478
|
"""
|
|
4432
4479
|
|
|
@@ -4438,6 +4485,7 @@ class CLIP_MT_tracking_pie(bpy_types._GenericUI):
|
|
|
4438
4485
|
:param filter_path:
|
|
4439
4486
|
:param display_name:
|
|
4440
4487
|
:param add_operator:
|
|
4488
|
+
:param add_operator_props:
|
|
4441
4489
|
"""
|
|
4442
4490
|
...
|
|
4443
4491
|
|
|
@@ -4613,6 +4661,7 @@ class CLIP_MT_view(bpy_types._GenericUI):
|
|
|
4613
4661
|
filter_path,
|
|
4614
4662
|
display_name,
|
|
4615
4663
|
add_operator,
|
|
4664
|
+
add_operator_props,
|
|
4616
4665
|
):
|
|
4617
4666
|
"""
|
|
4618
4667
|
|
|
@@ -4624,6 +4673,7 @@ class CLIP_MT_view(bpy_types._GenericUI):
|
|
|
4624
4673
|
:param filter_path:
|
|
4625
4674
|
:param display_name:
|
|
4626
4675
|
:param add_operator:
|
|
4676
|
+
:param add_operator_props:
|
|
4627
4677
|
"""
|
|
4628
4678
|
...
|
|
4629
4679
|
|
|
@@ -4792,6 +4842,7 @@ class CLIP_MT_view_pie(bpy_types._GenericUI):
|
|
|
4792
4842
|
filter_path,
|
|
4793
4843
|
display_name,
|
|
4794
4844
|
add_operator,
|
|
4845
|
+
add_operator_props,
|
|
4795
4846
|
):
|
|
4796
4847
|
"""
|
|
4797
4848
|
|
|
@@ -4803,6 +4854,7 @@ class CLIP_MT_view_pie(bpy_types._GenericUI):
|
|
|
4803
4854
|
:param filter_path:
|
|
4804
4855
|
:param display_name:
|
|
4805
4856
|
:param add_operator:
|
|
4857
|
+
:param add_operator_props:
|
|
4806
4858
|
"""
|
|
4807
4859
|
...
|
|
4808
4860
|
|
|
@@ -4978,6 +5030,7 @@ class CLIP_MT_view_zoom(bpy_types._GenericUI):
|
|
|
4978
5030
|
filter_path,
|
|
4979
5031
|
display_name,
|
|
4980
5032
|
add_operator,
|
|
5033
|
+
add_operator_props,
|
|
4981
5034
|
):
|
|
4982
5035
|
"""
|
|
4983
5036
|
|
|
@@ -4989,6 +5042,7 @@ class CLIP_MT_view_zoom(bpy_types._GenericUI):
|
|
|
4989
5042
|
:param filter_path:
|
|
4990
5043
|
:param display_name:
|
|
4991
5044
|
:param add_operator:
|
|
5045
|
+
:param add_operator_props:
|
|
4992
5046
|
"""
|
|
4993
5047
|
...
|
|
4994
5048
|
|
|
@@ -5815,6 +5869,7 @@ class CLIP_PT_camera_presets(bpy_types._GenericUI):
|
|
|
5815
5869
|
filter_path,
|
|
5816
5870
|
display_name,
|
|
5817
5871
|
add_operator,
|
|
5872
|
+
add_operator_props,
|
|
5818
5873
|
):
|
|
5819
5874
|
"""
|
|
5820
5875
|
|
|
@@ -5826,6 +5881,7 @@ class CLIP_PT_camera_presets(bpy_types._GenericUI):
|
|
|
5826
5881
|
:param filter_path:
|
|
5827
5882
|
:param display_name:
|
|
5828
5883
|
:param add_operator:
|
|
5884
|
+
:param add_operator_props:
|
|
5829
5885
|
"""
|
|
5830
5886
|
...
|
|
5831
5887
|
|
|
@@ -10408,6 +10464,7 @@ class CLIP_PT_track_color_presets(bpy_types._GenericUI):
|
|
|
10408
10464
|
filter_path,
|
|
10409
10465
|
display_name,
|
|
10410
10466
|
add_operator,
|
|
10467
|
+
add_operator_props,
|
|
10411
10468
|
):
|
|
10412
10469
|
"""
|
|
10413
10470
|
|
|
@@ -10419,6 +10476,7 @@ class CLIP_PT_track_color_presets(bpy_types._GenericUI):
|
|
|
10419
10476
|
:param filter_path:
|
|
10420
10477
|
:param display_name:
|
|
10421
10478
|
:param add_operator:
|
|
10479
|
+
:param add_operator_props:
|
|
10422
10480
|
"""
|
|
10423
10481
|
...
|
|
10424
10482
|
|
|
@@ -11586,6 +11644,7 @@ class CLIP_PT_tracking_settings_presets(bpy_types._GenericUI):
|
|
|
11586
11644
|
filter_path,
|
|
11587
11645
|
display_name,
|
|
11588
11646
|
add_operator,
|
|
11647
|
+
add_operator_props,
|
|
11589
11648
|
):
|
|
11590
11649
|
"""
|
|
11591
11650
|
|
|
@@ -11597,6 +11656,7 @@ class CLIP_PT_tracking_settings_presets(bpy_types._GenericUI):
|
|
|
11597
11656
|
:param filter_path:
|
|
11598
11657
|
:param display_name:
|
|
11599
11658
|
:param add_operator:
|
|
11659
|
+
:param add_operator_props:
|
|
11600
11660
|
"""
|
|
11601
11661
|
...
|
|
11602
11662
|
|
bl_ui/space_console/__init__.pyi
CHANGED
|
@@ -270,6 +270,7 @@ class CONSOLE_MT_console(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 CONSOLE_MT_console(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 CONSOLE_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 CONSOLE_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
|
|
|
@@ -631,6 +635,7 @@ class CONSOLE_MT_editor_menus(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 CONSOLE_MT_editor_menus(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
|
|
|
@@ -810,6 +816,7 @@ class CONSOLE_MT_language(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 CONSOLE_MT_language(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 CONSOLE_MT_view(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 CONSOLE_MT_view(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
|
|