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_view3d/__init__.pyi
CHANGED
|
@@ -161,6 +161,7 @@ class TOPBAR_MT_edit_armature_add(bpy_types._GenericUI):
|
|
|
161
161
|
filter_path,
|
|
162
162
|
display_name,
|
|
163
163
|
add_operator,
|
|
164
|
+
add_operator_props,
|
|
164
165
|
):
|
|
165
166
|
"""
|
|
166
167
|
|
|
@@ -172,6 +173,7 @@ class TOPBAR_MT_edit_armature_add(bpy_types._GenericUI):
|
|
|
172
173
|
:param filter_path:
|
|
173
174
|
:param display_name:
|
|
174
175
|
:param add_operator:
|
|
176
|
+
:param add_operator_props:
|
|
175
177
|
"""
|
|
176
178
|
...
|
|
177
179
|
|
|
@@ -349,6 +351,7 @@ class TOPBAR_MT_edit_curve_add(bpy_types._GenericUI):
|
|
|
349
351
|
filter_path,
|
|
350
352
|
display_name,
|
|
351
353
|
add_operator,
|
|
354
|
+
add_operator_props,
|
|
352
355
|
):
|
|
353
356
|
"""
|
|
354
357
|
|
|
@@ -360,6 +363,7 @@ class TOPBAR_MT_edit_curve_add(bpy_types._GenericUI):
|
|
|
360
363
|
:param filter_path:
|
|
361
364
|
:param display_name:
|
|
362
365
|
:param add_operator:
|
|
366
|
+
:param add_operator_props:
|
|
363
367
|
"""
|
|
364
368
|
...
|
|
365
369
|
|
|
@@ -1443,6 +1447,7 @@ class VIEW3D_MT_add(bpy_types._GenericUI):
|
|
|
1443
1447
|
filter_path,
|
|
1444
1448
|
display_name,
|
|
1445
1449
|
add_operator,
|
|
1450
|
+
add_operator_props,
|
|
1446
1451
|
):
|
|
1447
1452
|
"""
|
|
1448
1453
|
|
|
@@ -1454,6 +1459,7 @@ class VIEW3D_MT_add(bpy_types._GenericUI):
|
|
|
1454
1459
|
:param filter_path:
|
|
1455
1460
|
:param display_name:
|
|
1456
1461
|
:param add_operator:
|
|
1462
|
+
:param add_operator_props:
|
|
1457
1463
|
"""
|
|
1458
1464
|
...
|
|
1459
1465
|
|
|
@@ -1628,6 +1634,7 @@ class VIEW3D_MT_armature_add(bpy_types._GenericUI):
|
|
|
1628
1634
|
filter_path,
|
|
1629
1635
|
display_name,
|
|
1630
1636
|
add_operator,
|
|
1637
|
+
add_operator_props,
|
|
1631
1638
|
):
|
|
1632
1639
|
"""
|
|
1633
1640
|
|
|
@@ -1639,6 +1646,7 @@ class VIEW3D_MT_armature_add(bpy_types._GenericUI):
|
|
|
1639
1646
|
:param filter_path:
|
|
1640
1647
|
:param display_name:
|
|
1641
1648
|
:param add_operator:
|
|
1649
|
+
:param add_operator_props:
|
|
1642
1650
|
"""
|
|
1643
1651
|
...
|
|
1644
1652
|
|
|
@@ -1807,6 +1815,7 @@ class VIEW3D_MT_armature_context_menu(bpy_types._GenericUI):
|
|
|
1807
1815
|
filter_path,
|
|
1808
1816
|
display_name,
|
|
1809
1817
|
add_operator,
|
|
1818
|
+
add_operator_props,
|
|
1810
1819
|
):
|
|
1811
1820
|
"""
|
|
1812
1821
|
|
|
@@ -1818,6 +1827,7 @@ class VIEW3D_MT_armature_context_menu(bpy_types._GenericUI):
|
|
|
1818
1827
|
:param filter_path:
|
|
1819
1828
|
:param display_name:
|
|
1820
1829
|
:param add_operator:
|
|
1830
|
+
:param add_operator_props:
|
|
1821
1831
|
"""
|
|
1822
1832
|
...
|
|
1823
1833
|
|
|
@@ -1986,6 +1996,7 @@ class VIEW3D_MT_assign_material(bpy_types._GenericUI):
|
|
|
1986
1996
|
filter_path,
|
|
1987
1997
|
display_name,
|
|
1988
1998
|
add_operator,
|
|
1999
|
+
add_operator_props,
|
|
1989
2000
|
):
|
|
1990
2001
|
"""
|
|
1991
2002
|
|
|
@@ -1997,6 +2008,7 @@ class VIEW3D_MT_assign_material(bpy_types._GenericUI):
|
|
|
1997
2008
|
:param filter_path:
|
|
1998
2009
|
:param display_name:
|
|
1999
2010
|
:param add_operator:
|
|
2011
|
+
:param add_operator_props:
|
|
2000
2012
|
"""
|
|
2001
2013
|
...
|
|
2002
2014
|
|
|
@@ -2165,6 +2177,7 @@ class VIEW3D_MT_bone_collections(bpy_types._GenericUI):
|
|
|
2165
2177
|
filter_path,
|
|
2166
2178
|
display_name,
|
|
2167
2179
|
add_operator,
|
|
2180
|
+
add_operator_props,
|
|
2168
2181
|
):
|
|
2169
2182
|
"""
|
|
2170
2183
|
|
|
@@ -2176,6 +2189,7 @@ class VIEW3D_MT_bone_collections(bpy_types._GenericUI):
|
|
|
2176
2189
|
:param filter_path:
|
|
2177
2190
|
:param display_name:
|
|
2178
2191
|
:param add_operator:
|
|
2192
|
+
:param add_operator_props:
|
|
2179
2193
|
"""
|
|
2180
2194
|
...
|
|
2181
2195
|
|
|
@@ -2351,6 +2365,7 @@ class VIEW3D_MT_brush_paint_modes(bpy_types._GenericUI):
|
|
|
2351
2365
|
filter_path,
|
|
2352
2366
|
display_name,
|
|
2353
2367
|
add_operator,
|
|
2368
|
+
add_operator_props,
|
|
2354
2369
|
):
|
|
2355
2370
|
"""
|
|
2356
2371
|
|
|
@@ -2362,6 +2377,7 @@ class VIEW3D_MT_brush_paint_modes(bpy_types._GenericUI):
|
|
|
2362
2377
|
:param filter_path:
|
|
2363
2378
|
:param display_name:
|
|
2364
2379
|
:param add_operator:
|
|
2380
|
+
:param add_operator_props:
|
|
2365
2381
|
"""
|
|
2366
2382
|
...
|
|
2367
2383
|
|
|
@@ -2536,6 +2552,7 @@ class VIEW3D_MT_camera_add(bpy_types._GenericUI):
|
|
|
2536
2552
|
filter_path,
|
|
2537
2553
|
display_name,
|
|
2538
2554
|
add_operator,
|
|
2555
|
+
add_operator_props,
|
|
2539
2556
|
):
|
|
2540
2557
|
"""
|
|
2541
2558
|
|
|
@@ -2547,6 +2564,7 @@ class VIEW3D_MT_camera_add(bpy_types._GenericUI):
|
|
|
2547
2564
|
:param filter_path:
|
|
2548
2565
|
:param display_name:
|
|
2549
2566
|
:param add_operator:
|
|
2567
|
+
:param add_operator_props:
|
|
2550
2568
|
"""
|
|
2551
2569
|
...
|
|
2552
2570
|
|
|
@@ -2721,6 +2739,7 @@ class VIEW3D_MT_curve_add(bpy_types._GenericUI):
|
|
|
2721
2739
|
filter_path,
|
|
2722
2740
|
display_name,
|
|
2723
2741
|
add_operator,
|
|
2742
|
+
add_operator_props,
|
|
2724
2743
|
):
|
|
2725
2744
|
"""
|
|
2726
2745
|
|
|
@@ -2732,6 +2751,7 @@ class VIEW3D_MT_curve_add(bpy_types._GenericUI):
|
|
|
2732
2751
|
:param filter_path:
|
|
2733
2752
|
:param display_name:
|
|
2734
2753
|
:param add_operator:
|
|
2754
|
+
:param add_operator_props:
|
|
2735
2755
|
"""
|
|
2736
2756
|
...
|
|
2737
2757
|
|
|
@@ -2900,6 +2920,7 @@ class VIEW3D_MT_draw_gpencil(bpy_types._GenericUI):
|
|
|
2900
2920
|
filter_path,
|
|
2901
2921
|
display_name,
|
|
2902
2922
|
add_operator,
|
|
2923
|
+
add_operator_props,
|
|
2903
2924
|
):
|
|
2904
2925
|
"""
|
|
2905
2926
|
|
|
@@ -2911,6 +2932,7 @@ class VIEW3D_MT_draw_gpencil(bpy_types._GenericUI):
|
|
|
2911
2932
|
:param filter_path:
|
|
2912
2933
|
:param display_name:
|
|
2913
2934
|
:param add_operator:
|
|
2935
|
+
:param add_operator_props:
|
|
2914
2936
|
"""
|
|
2915
2937
|
...
|
|
2916
2938
|
|
|
@@ -3079,6 +3101,7 @@ class VIEW3D_MT_edit_armature(bpy_types._GenericUI):
|
|
|
3079
3101
|
filter_path,
|
|
3080
3102
|
display_name,
|
|
3081
3103
|
add_operator,
|
|
3104
|
+
add_operator_props,
|
|
3082
3105
|
):
|
|
3083
3106
|
"""
|
|
3084
3107
|
|
|
@@ -3090,6 +3113,7 @@ class VIEW3D_MT_edit_armature(bpy_types._GenericUI):
|
|
|
3090
3113
|
:param filter_path:
|
|
3091
3114
|
:param display_name:
|
|
3092
3115
|
:param add_operator:
|
|
3116
|
+
:param add_operator_props:
|
|
3093
3117
|
"""
|
|
3094
3118
|
...
|
|
3095
3119
|
|
|
@@ -3258,6 +3282,7 @@ class VIEW3D_MT_edit_armature_delete(bpy_types._GenericUI):
|
|
|
3258
3282
|
filter_path,
|
|
3259
3283
|
display_name,
|
|
3260
3284
|
add_operator,
|
|
3285
|
+
add_operator_props,
|
|
3261
3286
|
):
|
|
3262
3287
|
"""
|
|
3263
3288
|
|
|
@@ -3269,6 +3294,7 @@ class VIEW3D_MT_edit_armature_delete(bpy_types._GenericUI):
|
|
|
3269
3294
|
:param filter_path:
|
|
3270
3295
|
:param display_name:
|
|
3271
3296
|
:param add_operator:
|
|
3297
|
+
:param add_operator_props:
|
|
3272
3298
|
"""
|
|
3273
3299
|
...
|
|
3274
3300
|
|
|
@@ -3437,6 +3463,7 @@ class VIEW3D_MT_edit_armature_names(bpy_types._GenericUI):
|
|
|
3437
3463
|
filter_path,
|
|
3438
3464
|
display_name,
|
|
3439
3465
|
add_operator,
|
|
3466
|
+
add_operator_props,
|
|
3440
3467
|
):
|
|
3441
3468
|
"""
|
|
3442
3469
|
|
|
@@ -3448,6 +3475,7 @@ class VIEW3D_MT_edit_armature_names(bpy_types._GenericUI):
|
|
|
3448
3475
|
:param filter_path:
|
|
3449
3476
|
:param display_name:
|
|
3450
3477
|
:param add_operator:
|
|
3478
|
+
:param add_operator_props:
|
|
3451
3479
|
"""
|
|
3452
3480
|
...
|
|
3453
3481
|
|
|
@@ -3616,6 +3644,7 @@ class VIEW3D_MT_edit_armature_parent(bpy_types._GenericUI):
|
|
|
3616
3644
|
filter_path,
|
|
3617
3645
|
display_name,
|
|
3618
3646
|
add_operator,
|
|
3647
|
+
add_operator_props,
|
|
3619
3648
|
):
|
|
3620
3649
|
"""
|
|
3621
3650
|
|
|
@@ -3627,6 +3656,7 @@ class VIEW3D_MT_edit_armature_parent(bpy_types._GenericUI):
|
|
|
3627
3656
|
:param filter_path:
|
|
3628
3657
|
:param display_name:
|
|
3629
3658
|
:param add_operator:
|
|
3659
|
+
:param add_operator_props:
|
|
3630
3660
|
"""
|
|
3631
3661
|
...
|
|
3632
3662
|
|
|
@@ -3795,6 +3825,7 @@ class VIEW3D_MT_edit_armature_roll(bpy_types._GenericUI):
|
|
|
3795
3825
|
filter_path,
|
|
3796
3826
|
display_name,
|
|
3797
3827
|
add_operator,
|
|
3828
|
+
add_operator_props,
|
|
3798
3829
|
):
|
|
3799
3830
|
"""
|
|
3800
3831
|
|
|
@@ -3806,6 +3837,7 @@ class VIEW3D_MT_edit_armature_roll(bpy_types._GenericUI):
|
|
|
3806
3837
|
:param filter_path:
|
|
3807
3838
|
:param display_name:
|
|
3808
3839
|
:param add_operator:
|
|
3840
|
+
:param add_operator_props:
|
|
3809
3841
|
"""
|
|
3810
3842
|
...
|
|
3811
3843
|
|
|
@@ -3974,6 +4006,7 @@ class VIEW3D_MT_edit_curve(bpy_types._GenericUI):
|
|
|
3974
4006
|
filter_path,
|
|
3975
4007
|
display_name,
|
|
3976
4008
|
add_operator,
|
|
4009
|
+
add_operator_props,
|
|
3977
4010
|
):
|
|
3978
4011
|
"""
|
|
3979
4012
|
|
|
@@ -3985,6 +4018,7 @@ class VIEW3D_MT_edit_curve(bpy_types._GenericUI):
|
|
|
3985
4018
|
:param filter_path:
|
|
3986
4019
|
:param display_name:
|
|
3987
4020
|
:param add_operator:
|
|
4021
|
+
:param add_operator_props:
|
|
3988
4022
|
"""
|
|
3989
4023
|
...
|
|
3990
4024
|
|
|
@@ -4153,6 +4187,7 @@ class VIEW3D_MT_edit_curve_clean(bpy_types._GenericUI):
|
|
|
4153
4187
|
filter_path,
|
|
4154
4188
|
display_name,
|
|
4155
4189
|
add_operator,
|
|
4190
|
+
add_operator_props,
|
|
4156
4191
|
):
|
|
4157
4192
|
"""
|
|
4158
4193
|
|
|
@@ -4164,6 +4199,7 @@ class VIEW3D_MT_edit_curve_clean(bpy_types._GenericUI):
|
|
|
4164
4199
|
:param filter_path:
|
|
4165
4200
|
:param display_name:
|
|
4166
4201
|
:param add_operator:
|
|
4202
|
+
:param add_operator_props:
|
|
4167
4203
|
"""
|
|
4168
4204
|
...
|
|
4169
4205
|
|
|
@@ -4332,6 +4368,7 @@ class VIEW3D_MT_edit_curve_context_menu(bpy_types._GenericUI):
|
|
|
4332
4368
|
filter_path,
|
|
4333
4369
|
display_name,
|
|
4334
4370
|
add_operator,
|
|
4371
|
+
add_operator_props,
|
|
4335
4372
|
):
|
|
4336
4373
|
"""
|
|
4337
4374
|
|
|
@@ -4343,6 +4380,7 @@ class VIEW3D_MT_edit_curve_context_menu(bpy_types._GenericUI):
|
|
|
4343
4380
|
:param filter_path:
|
|
4344
4381
|
:param display_name:
|
|
4345
4382
|
:param add_operator:
|
|
4383
|
+
:param add_operator_props:
|
|
4346
4384
|
"""
|
|
4347
4385
|
...
|
|
4348
4386
|
|
|
@@ -4511,6 +4549,7 @@ class VIEW3D_MT_edit_curve_ctrlpoints(bpy_types._GenericUI):
|
|
|
4511
4549
|
filter_path,
|
|
4512
4550
|
display_name,
|
|
4513
4551
|
add_operator,
|
|
4552
|
+
add_operator_props,
|
|
4514
4553
|
):
|
|
4515
4554
|
"""
|
|
4516
4555
|
|
|
@@ -4522,6 +4561,7 @@ class VIEW3D_MT_edit_curve_ctrlpoints(bpy_types._GenericUI):
|
|
|
4522
4561
|
:param filter_path:
|
|
4523
4562
|
:param display_name:
|
|
4524
4563
|
:param add_operator:
|
|
4564
|
+
:param add_operator_props:
|
|
4525
4565
|
"""
|
|
4526
4566
|
...
|
|
4527
4567
|
|
|
@@ -4690,6 +4730,7 @@ class VIEW3D_MT_edit_curve_delete(bpy_types._GenericUI):
|
|
|
4690
4730
|
filter_path,
|
|
4691
4731
|
display_name,
|
|
4692
4732
|
add_operator,
|
|
4733
|
+
add_operator_props,
|
|
4693
4734
|
):
|
|
4694
4735
|
"""
|
|
4695
4736
|
|
|
@@ -4701,6 +4742,7 @@ class VIEW3D_MT_edit_curve_delete(bpy_types._GenericUI):
|
|
|
4701
4742
|
:param filter_path:
|
|
4702
4743
|
:param display_name:
|
|
4703
4744
|
:param add_operator:
|
|
4745
|
+
:param add_operator_props:
|
|
4704
4746
|
"""
|
|
4705
4747
|
...
|
|
4706
4748
|
|
|
@@ -4869,6 +4911,7 @@ class VIEW3D_MT_edit_curve_segments(bpy_types._GenericUI):
|
|
|
4869
4911
|
filter_path,
|
|
4870
4912
|
display_name,
|
|
4871
4913
|
add_operator,
|
|
4914
|
+
add_operator_props,
|
|
4872
4915
|
):
|
|
4873
4916
|
"""
|
|
4874
4917
|
|
|
@@ -4880,6 +4923,7 @@ class VIEW3D_MT_edit_curve_segments(bpy_types._GenericUI):
|
|
|
4880
4923
|
:param filter_path:
|
|
4881
4924
|
:param display_name:
|
|
4882
4925
|
:param add_operator:
|
|
4926
|
+
:param add_operator_props:
|
|
4883
4927
|
"""
|
|
4884
4928
|
...
|
|
4885
4929
|
|
|
@@ -5048,6 +5092,7 @@ class VIEW3D_MT_edit_curve_showhide(bpy_types._GenericUI):
|
|
|
5048
5092
|
filter_path,
|
|
5049
5093
|
display_name,
|
|
5050
5094
|
add_operator,
|
|
5095
|
+
add_operator_props,
|
|
5051
5096
|
):
|
|
5052
5097
|
"""
|
|
5053
5098
|
|
|
@@ -5059,6 +5104,7 @@ class VIEW3D_MT_edit_curve_showhide(bpy_types._GenericUI):
|
|
|
5059
5104
|
:param filter_path:
|
|
5060
5105
|
:param display_name:
|
|
5061
5106
|
:param add_operator:
|
|
5107
|
+
:param add_operator_props:
|
|
5062
5108
|
"""
|
|
5063
5109
|
...
|
|
5064
5110
|
|
|
@@ -5227,6 +5273,7 @@ class VIEW3D_MT_edit_curves(bpy_types._GenericUI):
|
|
|
5227
5273
|
filter_path,
|
|
5228
5274
|
display_name,
|
|
5229
5275
|
add_operator,
|
|
5276
|
+
add_operator_props,
|
|
5230
5277
|
):
|
|
5231
5278
|
"""
|
|
5232
5279
|
|
|
@@ -5238,6 +5285,7 @@ class VIEW3D_MT_edit_curves(bpy_types._GenericUI):
|
|
|
5238
5285
|
:param filter_path:
|
|
5239
5286
|
:param display_name:
|
|
5240
5287
|
:param add_operator:
|
|
5288
|
+
:param add_operator_props:
|
|
5241
5289
|
"""
|
|
5242
5290
|
...
|
|
5243
5291
|
|
|
@@ -5406,6 +5454,7 @@ class VIEW3D_MT_edit_curves_segments(bpy_types._GenericUI):
|
|
|
5406
5454
|
filter_path,
|
|
5407
5455
|
display_name,
|
|
5408
5456
|
add_operator,
|
|
5457
|
+
add_operator_props,
|
|
5409
5458
|
):
|
|
5410
5459
|
"""
|
|
5411
5460
|
|
|
@@ -5417,6 +5466,7 @@ class VIEW3D_MT_edit_curves_segments(bpy_types._GenericUI):
|
|
|
5417
5466
|
:param filter_path:
|
|
5418
5467
|
:param display_name:
|
|
5419
5468
|
:param add_operator:
|
|
5469
|
+
:param add_operator_props:
|
|
5420
5470
|
"""
|
|
5421
5471
|
...
|
|
5422
5472
|
|
|
@@ -5585,6 +5635,7 @@ class VIEW3D_MT_edit_curves_select_more_less(bpy_types._GenericUI):
|
|
|
5585
5635
|
filter_path,
|
|
5586
5636
|
display_name,
|
|
5587
5637
|
add_operator,
|
|
5638
|
+
add_operator_props,
|
|
5588
5639
|
):
|
|
5589
5640
|
"""
|
|
5590
5641
|
|
|
@@ -5596,6 +5647,7 @@ class VIEW3D_MT_edit_curves_select_more_less(bpy_types._GenericUI):
|
|
|
5596
5647
|
:param filter_path:
|
|
5597
5648
|
:param display_name:
|
|
5598
5649
|
:param add_operator:
|
|
5650
|
+
:param add_operator_props:
|
|
5599
5651
|
"""
|
|
5600
5652
|
...
|
|
5601
5653
|
|
|
@@ -5764,6 +5816,7 @@ class VIEW3D_MT_edit_font(bpy_types._GenericUI):
|
|
|
5764
5816
|
filter_path,
|
|
5765
5817
|
display_name,
|
|
5766
5818
|
add_operator,
|
|
5819
|
+
add_operator_props,
|
|
5767
5820
|
):
|
|
5768
5821
|
"""
|
|
5769
5822
|
|
|
@@ -5775,6 +5828,7 @@ class VIEW3D_MT_edit_font(bpy_types._GenericUI):
|
|
|
5775
5828
|
:param filter_path:
|
|
5776
5829
|
:param display_name:
|
|
5777
5830
|
:param add_operator:
|
|
5831
|
+
:param add_operator_props:
|
|
5778
5832
|
"""
|
|
5779
5833
|
...
|
|
5780
5834
|
|
|
@@ -5943,6 +5997,7 @@ class VIEW3D_MT_edit_font_chars(bpy_types._GenericUI):
|
|
|
5943
5997
|
filter_path,
|
|
5944
5998
|
display_name,
|
|
5945
5999
|
add_operator,
|
|
6000
|
+
add_operator_props,
|
|
5946
6001
|
):
|
|
5947
6002
|
"""
|
|
5948
6003
|
|
|
@@ -5954,6 +6009,7 @@ class VIEW3D_MT_edit_font_chars(bpy_types._GenericUI):
|
|
|
5954
6009
|
:param filter_path:
|
|
5955
6010
|
:param display_name:
|
|
5956
6011
|
:param add_operator:
|
|
6012
|
+
:param add_operator_props:
|
|
5957
6013
|
"""
|
|
5958
6014
|
...
|
|
5959
6015
|
|
|
@@ -6122,6 +6178,7 @@ class VIEW3D_MT_edit_font_context_menu(bpy_types._GenericUI):
|
|
|
6122
6178
|
filter_path,
|
|
6123
6179
|
display_name,
|
|
6124
6180
|
add_operator,
|
|
6181
|
+
add_operator_props,
|
|
6125
6182
|
):
|
|
6126
6183
|
"""
|
|
6127
6184
|
|
|
@@ -6133,6 +6190,7 @@ class VIEW3D_MT_edit_font_context_menu(bpy_types._GenericUI):
|
|
|
6133
6190
|
:param filter_path:
|
|
6134
6191
|
:param display_name:
|
|
6135
6192
|
:param add_operator:
|
|
6193
|
+
:param add_operator_props:
|
|
6136
6194
|
"""
|
|
6137
6195
|
...
|
|
6138
6196
|
|
|
@@ -6301,6 +6359,7 @@ class VIEW3D_MT_edit_font_delete(bpy_types._GenericUI):
|
|
|
6301
6359
|
filter_path,
|
|
6302
6360
|
display_name,
|
|
6303
6361
|
add_operator,
|
|
6362
|
+
add_operator_props,
|
|
6304
6363
|
):
|
|
6305
6364
|
"""
|
|
6306
6365
|
|
|
@@ -6312,6 +6371,7 @@ class VIEW3D_MT_edit_font_delete(bpy_types._GenericUI):
|
|
|
6312
6371
|
:param filter_path:
|
|
6313
6372
|
:param display_name:
|
|
6314
6373
|
:param add_operator:
|
|
6374
|
+
:param add_operator_props:
|
|
6315
6375
|
"""
|
|
6316
6376
|
...
|
|
6317
6377
|
|
|
@@ -6480,6 +6540,7 @@ class VIEW3D_MT_edit_font_kerning(bpy_types._GenericUI):
|
|
|
6480
6540
|
filter_path,
|
|
6481
6541
|
display_name,
|
|
6482
6542
|
add_operator,
|
|
6543
|
+
add_operator_props,
|
|
6483
6544
|
):
|
|
6484
6545
|
"""
|
|
6485
6546
|
|
|
@@ -6491,6 +6552,7 @@ class VIEW3D_MT_edit_font_kerning(bpy_types._GenericUI):
|
|
|
6491
6552
|
:param filter_path:
|
|
6492
6553
|
:param display_name:
|
|
6493
6554
|
:param add_operator:
|
|
6555
|
+
:param add_operator_props:
|
|
6494
6556
|
"""
|
|
6495
6557
|
...
|
|
6496
6558
|
|
|
@@ -6659,6 +6721,7 @@ class VIEW3D_MT_edit_gpencil(bpy_types._GenericUI):
|
|
|
6659
6721
|
filter_path,
|
|
6660
6722
|
display_name,
|
|
6661
6723
|
add_operator,
|
|
6724
|
+
add_operator_props,
|
|
6662
6725
|
):
|
|
6663
6726
|
"""
|
|
6664
6727
|
|
|
@@ -6670,6 +6733,7 @@ class VIEW3D_MT_edit_gpencil(bpy_types._GenericUI):
|
|
|
6670
6733
|
:param filter_path:
|
|
6671
6734
|
:param display_name:
|
|
6672
6735
|
:param add_operator:
|
|
6736
|
+
:param add_operator_props:
|
|
6673
6737
|
"""
|
|
6674
6738
|
...
|
|
6675
6739
|
|
|
@@ -6838,6 +6902,7 @@ class VIEW3D_MT_edit_gpencil_delete(bpy_types._GenericUI):
|
|
|
6838
6902
|
filter_path,
|
|
6839
6903
|
display_name,
|
|
6840
6904
|
add_operator,
|
|
6905
|
+
add_operator_props,
|
|
6841
6906
|
):
|
|
6842
6907
|
"""
|
|
6843
6908
|
|
|
@@ -6849,6 +6914,7 @@ class VIEW3D_MT_edit_gpencil_delete(bpy_types._GenericUI):
|
|
|
6849
6914
|
:param filter_path:
|
|
6850
6915
|
:param display_name:
|
|
6851
6916
|
:param add_operator:
|
|
6917
|
+
:param add_operator_props:
|
|
6852
6918
|
"""
|
|
6853
6919
|
...
|
|
6854
6920
|
|
|
@@ -7017,6 +7083,7 @@ class VIEW3D_MT_edit_gpencil_point(bpy_types._GenericUI):
|
|
|
7017
7083
|
filter_path,
|
|
7018
7084
|
display_name,
|
|
7019
7085
|
add_operator,
|
|
7086
|
+
add_operator_props,
|
|
7020
7087
|
):
|
|
7021
7088
|
"""
|
|
7022
7089
|
|
|
@@ -7028,6 +7095,7 @@ class VIEW3D_MT_edit_gpencil_point(bpy_types._GenericUI):
|
|
|
7028
7095
|
:param filter_path:
|
|
7029
7096
|
:param display_name:
|
|
7030
7097
|
:param add_operator:
|
|
7098
|
+
:param add_operator_props:
|
|
7031
7099
|
"""
|
|
7032
7100
|
...
|
|
7033
7101
|
|
|
@@ -7196,6 +7264,7 @@ class VIEW3D_MT_edit_gpencil_showhide(bpy_types._GenericUI):
|
|
|
7196
7264
|
filter_path,
|
|
7197
7265
|
display_name,
|
|
7198
7266
|
add_operator,
|
|
7267
|
+
add_operator_props,
|
|
7199
7268
|
):
|
|
7200
7269
|
"""
|
|
7201
7270
|
|
|
@@ -7207,6 +7276,7 @@ class VIEW3D_MT_edit_gpencil_showhide(bpy_types._GenericUI):
|
|
|
7207
7276
|
:param filter_path:
|
|
7208
7277
|
:param display_name:
|
|
7209
7278
|
:param add_operator:
|
|
7279
|
+
:param add_operator_props:
|
|
7210
7280
|
"""
|
|
7211
7281
|
...
|
|
7212
7282
|
|
|
@@ -7375,6 +7445,7 @@ class VIEW3D_MT_edit_gpencil_stroke(bpy_types._GenericUI):
|
|
|
7375
7445
|
filter_path,
|
|
7376
7446
|
display_name,
|
|
7377
7447
|
add_operator,
|
|
7448
|
+
add_operator_props,
|
|
7378
7449
|
):
|
|
7379
7450
|
"""
|
|
7380
7451
|
|
|
@@ -7386,6 +7457,7 @@ class VIEW3D_MT_edit_gpencil_stroke(bpy_types._GenericUI):
|
|
|
7386
7457
|
:param filter_path:
|
|
7387
7458
|
:param display_name:
|
|
7388
7459
|
:param add_operator:
|
|
7460
|
+
:param add_operator_props:
|
|
7389
7461
|
"""
|
|
7390
7462
|
...
|
|
7391
7463
|
|
|
@@ -7554,6 +7626,7 @@ class VIEW3D_MT_edit_gpencil_transform(bpy_types._GenericUI):
|
|
|
7554
7626
|
filter_path,
|
|
7555
7627
|
display_name,
|
|
7556
7628
|
add_operator,
|
|
7629
|
+
add_operator_props,
|
|
7557
7630
|
):
|
|
7558
7631
|
"""
|
|
7559
7632
|
|
|
@@ -7565,6 +7638,7 @@ class VIEW3D_MT_edit_gpencil_transform(bpy_types._GenericUI):
|
|
|
7565
7638
|
:param filter_path:
|
|
7566
7639
|
:param display_name:
|
|
7567
7640
|
:param add_operator:
|
|
7641
|
+
:param add_operator_props:
|
|
7568
7642
|
"""
|
|
7569
7643
|
...
|
|
7570
7644
|
|
|
@@ -7733,6 +7807,7 @@ class VIEW3D_MT_edit_greasepencil(bpy_types._GenericUI):
|
|
|
7733
7807
|
filter_path,
|
|
7734
7808
|
display_name,
|
|
7735
7809
|
add_operator,
|
|
7810
|
+
add_operator_props,
|
|
7736
7811
|
):
|
|
7737
7812
|
"""
|
|
7738
7813
|
|
|
@@ -7744,6 +7819,7 @@ class VIEW3D_MT_edit_greasepencil(bpy_types._GenericUI):
|
|
|
7744
7819
|
:param filter_path:
|
|
7745
7820
|
:param display_name:
|
|
7746
7821
|
:param add_operator:
|
|
7822
|
+
:param add_operator_props:
|
|
7747
7823
|
"""
|
|
7748
7824
|
...
|
|
7749
7825
|
|
|
@@ -7912,6 +7988,7 @@ class VIEW3D_MT_edit_greasepencil_animation(bpy_types._GenericUI):
|
|
|
7912
7988
|
filter_path,
|
|
7913
7989
|
display_name,
|
|
7914
7990
|
add_operator,
|
|
7991
|
+
add_operator_props,
|
|
7915
7992
|
):
|
|
7916
7993
|
"""
|
|
7917
7994
|
|
|
@@ -7923,6 +8000,7 @@ class VIEW3D_MT_edit_greasepencil_animation(bpy_types._GenericUI):
|
|
|
7923
8000
|
:param filter_path:
|
|
7924
8001
|
:param display_name:
|
|
7925
8002
|
:param add_operator:
|
|
8003
|
+
:param add_operator_props:
|
|
7926
8004
|
"""
|
|
7927
8005
|
...
|
|
7928
8006
|
|
|
@@ -8091,6 +8169,7 @@ class VIEW3D_MT_edit_greasepencil_cleanup(bpy_types._GenericUI):
|
|
|
8091
8169
|
filter_path,
|
|
8092
8170
|
display_name,
|
|
8093
8171
|
add_operator,
|
|
8172
|
+
add_operator_props,
|
|
8094
8173
|
):
|
|
8095
8174
|
"""
|
|
8096
8175
|
|
|
@@ -8102,6 +8181,7 @@ class VIEW3D_MT_edit_greasepencil_cleanup(bpy_types._GenericUI):
|
|
|
8102
8181
|
:param filter_path:
|
|
8103
8182
|
:param display_name:
|
|
8104
8183
|
:param add_operator:
|
|
8184
|
+
:param add_operator_props:
|
|
8105
8185
|
"""
|
|
8106
8186
|
...
|
|
8107
8187
|
|
|
@@ -8270,6 +8350,7 @@ class VIEW3D_MT_edit_greasepencil_delete(bpy_types._GenericUI):
|
|
|
8270
8350
|
filter_path,
|
|
8271
8351
|
display_name,
|
|
8272
8352
|
add_operator,
|
|
8353
|
+
add_operator_props,
|
|
8273
8354
|
):
|
|
8274
8355
|
"""
|
|
8275
8356
|
|
|
@@ -8281,6 +8362,7 @@ class VIEW3D_MT_edit_greasepencil_delete(bpy_types._GenericUI):
|
|
|
8281
8362
|
:param filter_path:
|
|
8282
8363
|
:param display_name:
|
|
8283
8364
|
:param add_operator:
|
|
8365
|
+
:param add_operator_props:
|
|
8284
8366
|
"""
|
|
8285
8367
|
...
|
|
8286
8368
|
|
|
@@ -8449,6 +8531,7 @@ class VIEW3D_MT_edit_greasepencil_point(bpy_types._GenericUI):
|
|
|
8449
8531
|
filter_path,
|
|
8450
8532
|
display_name,
|
|
8451
8533
|
add_operator,
|
|
8534
|
+
add_operator_props,
|
|
8452
8535
|
):
|
|
8453
8536
|
"""
|
|
8454
8537
|
|
|
@@ -8460,6 +8543,7 @@ class VIEW3D_MT_edit_greasepencil_point(bpy_types._GenericUI):
|
|
|
8460
8543
|
:param filter_path:
|
|
8461
8544
|
:param display_name:
|
|
8462
8545
|
:param add_operator:
|
|
8546
|
+
:param add_operator_props:
|
|
8463
8547
|
"""
|
|
8464
8548
|
...
|
|
8465
8549
|
|
|
@@ -8628,6 +8712,7 @@ class VIEW3D_MT_edit_greasepencil_showhide(bpy_types._GenericUI):
|
|
|
8628
8712
|
filter_path,
|
|
8629
8713
|
display_name,
|
|
8630
8714
|
add_operator,
|
|
8715
|
+
add_operator_props,
|
|
8631
8716
|
):
|
|
8632
8717
|
"""
|
|
8633
8718
|
|
|
@@ -8639,6 +8724,7 @@ class VIEW3D_MT_edit_greasepencil_showhide(bpy_types._GenericUI):
|
|
|
8639
8724
|
:param filter_path:
|
|
8640
8725
|
:param display_name:
|
|
8641
8726
|
:param add_operator:
|
|
8727
|
+
:param add_operator_props:
|
|
8642
8728
|
"""
|
|
8643
8729
|
...
|
|
8644
8730
|
|
|
@@ -8807,6 +8893,7 @@ class VIEW3D_MT_edit_greasepencil_stroke(bpy_types._GenericUI):
|
|
|
8807
8893
|
filter_path,
|
|
8808
8894
|
display_name,
|
|
8809
8895
|
add_operator,
|
|
8896
|
+
add_operator_props,
|
|
8810
8897
|
):
|
|
8811
8898
|
"""
|
|
8812
8899
|
|
|
@@ -8818,6 +8905,7 @@ class VIEW3D_MT_edit_greasepencil_stroke(bpy_types._GenericUI):
|
|
|
8818
8905
|
:param filter_path:
|
|
8819
8906
|
:param display_name:
|
|
8820
8907
|
:param add_operator:
|
|
8908
|
+
:param add_operator_props:
|
|
8821
8909
|
"""
|
|
8822
8910
|
...
|
|
8823
8911
|
|
|
@@ -8986,6 +9074,7 @@ class VIEW3D_MT_edit_lattice(bpy_types._GenericUI):
|
|
|
8986
9074
|
filter_path,
|
|
8987
9075
|
display_name,
|
|
8988
9076
|
add_operator,
|
|
9077
|
+
add_operator_props,
|
|
8989
9078
|
):
|
|
8990
9079
|
"""
|
|
8991
9080
|
|
|
@@ -8997,6 +9086,7 @@ class VIEW3D_MT_edit_lattice(bpy_types._GenericUI):
|
|
|
8997
9086
|
:param filter_path:
|
|
8998
9087
|
:param display_name:
|
|
8999
9088
|
:param add_operator:
|
|
9089
|
+
:param add_operator_props:
|
|
9000
9090
|
"""
|
|
9001
9091
|
...
|
|
9002
9092
|
|
|
@@ -9165,6 +9255,7 @@ class VIEW3D_MT_edit_lattice_context_menu(bpy_types._GenericUI):
|
|
|
9165
9255
|
filter_path,
|
|
9166
9256
|
display_name,
|
|
9167
9257
|
add_operator,
|
|
9258
|
+
add_operator_props,
|
|
9168
9259
|
):
|
|
9169
9260
|
"""
|
|
9170
9261
|
|
|
@@ -9176,6 +9267,7 @@ class VIEW3D_MT_edit_lattice_context_menu(bpy_types._GenericUI):
|
|
|
9176
9267
|
:param filter_path:
|
|
9177
9268
|
:param display_name:
|
|
9178
9269
|
:param add_operator:
|
|
9270
|
+
:param add_operator_props:
|
|
9179
9271
|
"""
|
|
9180
9272
|
...
|
|
9181
9273
|
|
|
@@ -9344,6 +9436,7 @@ class VIEW3D_MT_edit_mesh(bpy_types._GenericUI):
|
|
|
9344
9436
|
filter_path,
|
|
9345
9437
|
display_name,
|
|
9346
9438
|
add_operator,
|
|
9439
|
+
add_operator_props,
|
|
9347
9440
|
):
|
|
9348
9441
|
"""
|
|
9349
9442
|
|
|
@@ -9355,6 +9448,7 @@ class VIEW3D_MT_edit_mesh(bpy_types._GenericUI):
|
|
|
9355
9448
|
:param filter_path:
|
|
9356
9449
|
:param display_name:
|
|
9357
9450
|
:param add_operator:
|
|
9451
|
+
:param add_operator_props:
|
|
9358
9452
|
"""
|
|
9359
9453
|
...
|
|
9360
9454
|
|
|
@@ -9523,6 +9617,7 @@ class VIEW3D_MT_edit_mesh_clean(bpy_types._GenericUI):
|
|
|
9523
9617
|
filter_path,
|
|
9524
9618
|
display_name,
|
|
9525
9619
|
add_operator,
|
|
9620
|
+
add_operator_props,
|
|
9526
9621
|
):
|
|
9527
9622
|
"""
|
|
9528
9623
|
|
|
@@ -9534,6 +9629,7 @@ class VIEW3D_MT_edit_mesh_clean(bpy_types._GenericUI):
|
|
|
9534
9629
|
:param filter_path:
|
|
9535
9630
|
:param display_name:
|
|
9536
9631
|
:param add_operator:
|
|
9632
|
+
:param add_operator_props:
|
|
9537
9633
|
"""
|
|
9538
9634
|
...
|
|
9539
9635
|
|
|
@@ -9702,6 +9798,7 @@ class VIEW3D_MT_edit_mesh_context_menu(bpy_types._GenericUI):
|
|
|
9702
9798
|
filter_path,
|
|
9703
9799
|
display_name,
|
|
9704
9800
|
add_operator,
|
|
9801
|
+
add_operator_props,
|
|
9705
9802
|
):
|
|
9706
9803
|
"""
|
|
9707
9804
|
|
|
@@ -9713,6 +9810,7 @@ class VIEW3D_MT_edit_mesh_context_menu(bpy_types._GenericUI):
|
|
|
9713
9810
|
:param filter_path:
|
|
9714
9811
|
:param display_name:
|
|
9715
9812
|
:param add_operator:
|
|
9813
|
+
:param add_operator_props:
|
|
9716
9814
|
"""
|
|
9717
9815
|
...
|
|
9718
9816
|
|
|
@@ -9881,6 +9979,7 @@ class VIEW3D_MT_edit_mesh_delete(bpy_types._GenericUI):
|
|
|
9881
9979
|
filter_path,
|
|
9882
9980
|
display_name,
|
|
9883
9981
|
add_operator,
|
|
9982
|
+
add_operator_props,
|
|
9884
9983
|
):
|
|
9885
9984
|
"""
|
|
9886
9985
|
|
|
@@ -9892,6 +9991,7 @@ class VIEW3D_MT_edit_mesh_delete(bpy_types._GenericUI):
|
|
|
9892
9991
|
:param filter_path:
|
|
9893
9992
|
:param display_name:
|
|
9894
9993
|
:param add_operator:
|
|
9994
|
+
:param add_operator_props:
|
|
9895
9995
|
"""
|
|
9896
9996
|
...
|
|
9897
9997
|
|
|
@@ -10060,6 +10160,7 @@ class VIEW3D_MT_edit_mesh_edges(bpy_types._GenericUI):
|
|
|
10060
10160
|
filter_path,
|
|
10061
10161
|
display_name,
|
|
10062
10162
|
add_operator,
|
|
10163
|
+
add_operator_props,
|
|
10063
10164
|
):
|
|
10064
10165
|
"""
|
|
10065
10166
|
|
|
@@ -10071,6 +10172,7 @@ class VIEW3D_MT_edit_mesh_edges(bpy_types._GenericUI):
|
|
|
10071
10172
|
:param filter_path:
|
|
10072
10173
|
:param display_name:
|
|
10073
10174
|
:param add_operator:
|
|
10175
|
+
:param add_operator_props:
|
|
10074
10176
|
"""
|
|
10075
10177
|
...
|
|
10076
10178
|
|
|
@@ -10239,6 +10341,7 @@ class VIEW3D_MT_edit_mesh_extrude(bpy_types._GenericUI):
|
|
|
10239
10341
|
filter_path,
|
|
10240
10342
|
display_name,
|
|
10241
10343
|
add_operator,
|
|
10344
|
+
add_operator_props,
|
|
10242
10345
|
):
|
|
10243
10346
|
"""
|
|
10244
10347
|
|
|
@@ -10250,6 +10353,7 @@ class VIEW3D_MT_edit_mesh_extrude(bpy_types._GenericUI):
|
|
|
10250
10353
|
:param filter_path:
|
|
10251
10354
|
:param display_name:
|
|
10252
10355
|
:param add_operator:
|
|
10356
|
+
:param add_operator_props:
|
|
10253
10357
|
"""
|
|
10254
10358
|
...
|
|
10255
10359
|
|
|
@@ -10421,6 +10525,7 @@ class VIEW3D_MT_edit_mesh_faces(bpy_types._GenericUI):
|
|
|
10421
10525
|
filter_path,
|
|
10422
10526
|
display_name,
|
|
10423
10527
|
add_operator,
|
|
10528
|
+
add_operator_props,
|
|
10424
10529
|
):
|
|
10425
10530
|
"""
|
|
10426
10531
|
|
|
@@ -10432,6 +10537,7 @@ class VIEW3D_MT_edit_mesh_faces(bpy_types._GenericUI):
|
|
|
10432
10537
|
:param filter_path:
|
|
10433
10538
|
:param display_name:
|
|
10434
10539
|
:param add_operator:
|
|
10540
|
+
:param add_operator_props:
|
|
10435
10541
|
"""
|
|
10436
10542
|
...
|
|
10437
10543
|
|
|
@@ -10600,6 +10706,7 @@ class VIEW3D_MT_edit_mesh_faces_data(bpy_types._GenericUI):
|
|
|
10600
10706
|
filter_path,
|
|
10601
10707
|
display_name,
|
|
10602
10708
|
add_operator,
|
|
10709
|
+
add_operator_props,
|
|
10603
10710
|
):
|
|
10604
10711
|
"""
|
|
10605
10712
|
|
|
@@ -10611,6 +10718,7 @@ class VIEW3D_MT_edit_mesh_faces_data(bpy_types._GenericUI):
|
|
|
10611
10718
|
:param filter_path:
|
|
10612
10719
|
:param display_name:
|
|
10613
10720
|
:param add_operator:
|
|
10721
|
+
:param add_operator_props:
|
|
10614
10722
|
"""
|
|
10615
10723
|
...
|
|
10616
10724
|
|
|
@@ -10779,6 +10887,7 @@ class VIEW3D_MT_edit_mesh_merge(bpy_types._GenericUI):
|
|
|
10779
10887
|
filter_path,
|
|
10780
10888
|
display_name,
|
|
10781
10889
|
add_operator,
|
|
10890
|
+
add_operator_props,
|
|
10782
10891
|
):
|
|
10783
10892
|
"""
|
|
10784
10893
|
|
|
@@ -10790,6 +10899,7 @@ class VIEW3D_MT_edit_mesh_merge(bpy_types._GenericUI):
|
|
|
10790
10899
|
:param filter_path:
|
|
10791
10900
|
:param display_name:
|
|
10792
10901
|
:param add_operator:
|
|
10902
|
+
:param add_operator_props:
|
|
10793
10903
|
"""
|
|
10794
10904
|
...
|
|
10795
10905
|
|
|
@@ -10958,6 +11068,7 @@ class VIEW3D_MT_edit_mesh_normals(bpy_types._GenericUI):
|
|
|
10958
11068
|
filter_path,
|
|
10959
11069
|
display_name,
|
|
10960
11070
|
add_operator,
|
|
11071
|
+
add_operator_props,
|
|
10961
11072
|
):
|
|
10962
11073
|
"""
|
|
10963
11074
|
|
|
@@ -10969,6 +11080,7 @@ class VIEW3D_MT_edit_mesh_normals(bpy_types._GenericUI):
|
|
|
10969
11080
|
:param filter_path:
|
|
10970
11081
|
:param display_name:
|
|
10971
11082
|
:param add_operator:
|
|
11083
|
+
:param add_operator_props:
|
|
10972
11084
|
"""
|
|
10973
11085
|
...
|
|
10974
11086
|
|
|
@@ -11137,6 +11249,7 @@ class VIEW3D_MT_edit_mesh_normals_average(bpy_types._GenericUI):
|
|
|
11137
11249
|
filter_path,
|
|
11138
11250
|
display_name,
|
|
11139
11251
|
add_operator,
|
|
11252
|
+
add_operator_props,
|
|
11140
11253
|
):
|
|
11141
11254
|
"""
|
|
11142
11255
|
|
|
@@ -11148,6 +11261,7 @@ class VIEW3D_MT_edit_mesh_normals_average(bpy_types._GenericUI):
|
|
|
11148
11261
|
:param filter_path:
|
|
11149
11262
|
:param display_name:
|
|
11150
11263
|
:param add_operator:
|
|
11264
|
+
:param add_operator_props:
|
|
11151
11265
|
"""
|
|
11152
11266
|
...
|
|
11153
11267
|
|
|
@@ -11316,6 +11430,7 @@ class VIEW3D_MT_edit_mesh_normals_select_strength(bpy_types._GenericUI):
|
|
|
11316
11430
|
filter_path,
|
|
11317
11431
|
display_name,
|
|
11318
11432
|
add_operator,
|
|
11433
|
+
add_operator_props,
|
|
11319
11434
|
):
|
|
11320
11435
|
"""
|
|
11321
11436
|
|
|
@@ -11327,6 +11442,7 @@ class VIEW3D_MT_edit_mesh_normals_select_strength(bpy_types._GenericUI):
|
|
|
11327
11442
|
:param filter_path:
|
|
11328
11443
|
:param display_name:
|
|
11329
11444
|
:param add_operator:
|
|
11445
|
+
:param add_operator_props:
|
|
11330
11446
|
"""
|
|
11331
11447
|
...
|
|
11332
11448
|
|
|
@@ -11495,6 +11611,7 @@ class VIEW3D_MT_edit_mesh_normals_set_strength(bpy_types._GenericUI):
|
|
|
11495
11611
|
filter_path,
|
|
11496
11612
|
display_name,
|
|
11497
11613
|
add_operator,
|
|
11614
|
+
add_operator_props,
|
|
11498
11615
|
):
|
|
11499
11616
|
"""
|
|
11500
11617
|
|
|
@@ -11506,6 +11623,7 @@ class VIEW3D_MT_edit_mesh_normals_set_strength(bpy_types._GenericUI):
|
|
|
11506
11623
|
:param filter_path:
|
|
11507
11624
|
:param display_name:
|
|
11508
11625
|
:param add_operator:
|
|
11626
|
+
:param add_operator_props:
|
|
11509
11627
|
"""
|
|
11510
11628
|
...
|
|
11511
11629
|
|
|
@@ -11674,6 +11792,7 @@ class VIEW3D_MT_edit_mesh_select_by_trait(bpy_types._GenericUI):
|
|
|
11674
11792
|
filter_path,
|
|
11675
11793
|
display_name,
|
|
11676
11794
|
add_operator,
|
|
11795
|
+
add_operator_props,
|
|
11677
11796
|
):
|
|
11678
11797
|
"""
|
|
11679
11798
|
|
|
@@ -11685,6 +11804,7 @@ class VIEW3D_MT_edit_mesh_select_by_trait(bpy_types._GenericUI):
|
|
|
11685
11804
|
:param filter_path:
|
|
11686
11805
|
:param display_name:
|
|
11687
11806
|
:param add_operator:
|
|
11807
|
+
:param add_operator_props:
|
|
11688
11808
|
"""
|
|
11689
11809
|
...
|
|
11690
11810
|
|
|
@@ -11853,6 +11973,7 @@ class VIEW3D_MT_edit_mesh_select_linked(bpy_types._GenericUI):
|
|
|
11853
11973
|
filter_path,
|
|
11854
11974
|
display_name,
|
|
11855
11975
|
add_operator,
|
|
11976
|
+
add_operator_props,
|
|
11856
11977
|
):
|
|
11857
11978
|
"""
|
|
11858
11979
|
|
|
@@ -11864,6 +11985,7 @@ class VIEW3D_MT_edit_mesh_select_linked(bpy_types._GenericUI):
|
|
|
11864
11985
|
:param filter_path:
|
|
11865
11986
|
:param display_name:
|
|
11866
11987
|
:param add_operator:
|
|
11988
|
+
:param add_operator_props:
|
|
11867
11989
|
"""
|
|
11868
11990
|
...
|
|
11869
11991
|
|
|
@@ -12032,6 +12154,7 @@ class VIEW3D_MT_edit_mesh_select_loops(bpy_types._GenericUI):
|
|
|
12032
12154
|
filter_path,
|
|
12033
12155
|
display_name,
|
|
12034
12156
|
add_operator,
|
|
12157
|
+
add_operator_props,
|
|
12035
12158
|
):
|
|
12036
12159
|
"""
|
|
12037
12160
|
|
|
@@ -12043,6 +12166,7 @@ class VIEW3D_MT_edit_mesh_select_loops(bpy_types._GenericUI):
|
|
|
12043
12166
|
:param filter_path:
|
|
12044
12167
|
:param display_name:
|
|
12045
12168
|
:param add_operator:
|
|
12169
|
+
:param add_operator_props:
|
|
12046
12170
|
"""
|
|
12047
12171
|
...
|
|
12048
12172
|
|
|
@@ -12211,6 +12335,7 @@ class VIEW3D_MT_edit_mesh_select_mode(bpy_types._GenericUI):
|
|
|
12211
12335
|
filter_path,
|
|
12212
12336
|
display_name,
|
|
12213
12337
|
add_operator,
|
|
12338
|
+
add_operator_props,
|
|
12214
12339
|
):
|
|
12215
12340
|
"""
|
|
12216
12341
|
|
|
@@ -12222,6 +12347,7 @@ class VIEW3D_MT_edit_mesh_select_mode(bpy_types._GenericUI):
|
|
|
12222
12347
|
:param filter_path:
|
|
12223
12348
|
:param display_name:
|
|
12224
12349
|
:param add_operator:
|
|
12350
|
+
:param add_operator_props:
|
|
12225
12351
|
"""
|
|
12226
12352
|
...
|
|
12227
12353
|
|
|
@@ -12390,6 +12516,7 @@ class VIEW3D_MT_edit_mesh_select_more_less(bpy_types._GenericUI):
|
|
|
12390
12516
|
filter_path,
|
|
12391
12517
|
display_name,
|
|
12392
12518
|
add_operator,
|
|
12519
|
+
add_operator_props,
|
|
12393
12520
|
):
|
|
12394
12521
|
"""
|
|
12395
12522
|
|
|
@@ -12401,6 +12528,7 @@ class VIEW3D_MT_edit_mesh_select_more_less(bpy_types._GenericUI):
|
|
|
12401
12528
|
:param filter_path:
|
|
12402
12529
|
:param display_name:
|
|
12403
12530
|
:param add_operator:
|
|
12531
|
+
:param add_operator_props:
|
|
12404
12532
|
"""
|
|
12405
12533
|
...
|
|
12406
12534
|
|
|
@@ -12569,6 +12697,7 @@ class VIEW3D_MT_edit_mesh_select_similar(bpy_types._GenericUI):
|
|
|
12569
12697
|
filter_path,
|
|
12570
12698
|
display_name,
|
|
12571
12699
|
add_operator,
|
|
12700
|
+
add_operator_props,
|
|
12572
12701
|
):
|
|
12573
12702
|
"""
|
|
12574
12703
|
|
|
@@ -12580,6 +12709,7 @@ class VIEW3D_MT_edit_mesh_select_similar(bpy_types._GenericUI):
|
|
|
12580
12709
|
:param filter_path:
|
|
12581
12710
|
:param display_name:
|
|
12582
12711
|
:param add_operator:
|
|
12712
|
+
:param add_operator_props:
|
|
12583
12713
|
"""
|
|
12584
12714
|
...
|
|
12585
12715
|
|
|
@@ -12748,6 +12878,7 @@ class VIEW3D_MT_edit_mesh_shading(bpy_types._GenericUI):
|
|
|
12748
12878
|
filter_path,
|
|
12749
12879
|
display_name,
|
|
12750
12880
|
add_operator,
|
|
12881
|
+
add_operator_props,
|
|
12751
12882
|
):
|
|
12752
12883
|
"""
|
|
12753
12884
|
|
|
@@ -12759,6 +12890,7 @@ class VIEW3D_MT_edit_mesh_shading(bpy_types._GenericUI):
|
|
|
12759
12890
|
:param filter_path:
|
|
12760
12891
|
:param display_name:
|
|
12761
12892
|
:param add_operator:
|
|
12893
|
+
:param add_operator_props:
|
|
12762
12894
|
"""
|
|
12763
12895
|
...
|
|
12764
12896
|
|
|
@@ -12927,6 +13059,7 @@ class VIEW3D_MT_edit_mesh_showhide(bpy_types._GenericUI):
|
|
|
12927
13059
|
filter_path,
|
|
12928
13060
|
display_name,
|
|
12929
13061
|
add_operator,
|
|
13062
|
+
add_operator_props,
|
|
12930
13063
|
):
|
|
12931
13064
|
"""
|
|
12932
13065
|
|
|
@@ -12938,6 +13071,7 @@ class VIEW3D_MT_edit_mesh_showhide(bpy_types._GenericUI):
|
|
|
12938
13071
|
:param filter_path:
|
|
12939
13072
|
:param display_name:
|
|
12940
13073
|
:param add_operator:
|
|
13074
|
+
:param add_operator_props:
|
|
12941
13075
|
"""
|
|
12942
13076
|
...
|
|
12943
13077
|
|
|
@@ -13106,6 +13240,7 @@ class VIEW3D_MT_edit_mesh_split(bpy_types._GenericUI):
|
|
|
13106
13240
|
filter_path,
|
|
13107
13241
|
display_name,
|
|
13108
13242
|
add_operator,
|
|
13243
|
+
add_operator_props,
|
|
13109
13244
|
):
|
|
13110
13245
|
"""
|
|
13111
13246
|
|
|
@@ -13117,6 +13252,7 @@ class VIEW3D_MT_edit_mesh_split(bpy_types._GenericUI):
|
|
|
13117
13252
|
:param filter_path:
|
|
13118
13253
|
:param display_name:
|
|
13119
13254
|
:param add_operator:
|
|
13255
|
+
:param add_operator_props:
|
|
13120
13256
|
"""
|
|
13121
13257
|
...
|
|
13122
13258
|
|
|
@@ -13285,6 +13421,7 @@ class VIEW3D_MT_edit_mesh_vertices(bpy_types._GenericUI):
|
|
|
13285
13421
|
filter_path,
|
|
13286
13422
|
display_name,
|
|
13287
13423
|
add_operator,
|
|
13424
|
+
add_operator_props,
|
|
13288
13425
|
):
|
|
13289
13426
|
"""
|
|
13290
13427
|
|
|
@@ -13296,6 +13433,7 @@ class VIEW3D_MT_edit_mesh_vertices(bpy_types._GenericUI):
|
|
|
13296
13433
|
:param filter_path:
|
|
13297
13434
|
:param display_name:
|
|
13298
13435
|
:param add_operator:
|
|
13436
|
+
:param add_operator_props:
|
|
13299
13437
|
"""
|
|
13300
13438
|
...
|
|
13301
13439
|
|
|
@@ -13464,6 +13602,7 @@ class VIEW3D_MT_edit_mesh_weights(bpy_types._GenericUI):
|
|
|
13464
13602
|
filter_path,
|
|
13465
13603
|
display_name,
|
|
13466
13604
|
add_operator,
|
|
13605
|
+
add_operator_props,
|
|
13467
13606
|
):
|
|
13468
13607
|
"""
|
|
13469
13608
|
|
|
@@ -13475,6 +13614,7 @@ class VIEW3D_MT_edit_mesh_weights(bpy_types._GenericUI):
|
|
|
13475
13614
|
:param filter_path:
|
|
13476
13615
|
:param display_name:
|
|
13477
13616
|
:param add_operator:
|
|
13617
|
+
:param add_operator_props:
|
|
13478
13618
|
"""
|
|
13479
13619
|
...
|
|
13480
13620
|
|
|
@@ -13643,6 +13783,7 @@ class VIEW3D_MT_edit_meta(bpy_types._GenericUI):
|
|
|
13643
13783
|
filter_path,
|
|
13644
13784
|
display_name,
|
|
13645
13785
|
add_operator,
|
|
13786
|
+
add_operator_props,
|
|
13646
13787
|
):
|
|
13647
13788
|
"""
|
|
13648
13789
|
|
|
@@ -13654,6 +13795,7 @@ class VIEW3D_MT_edit_meta(bpy_types._GenericUI):
|
|
|
13654
13795
|
:param filter_path:
|
|
13655
13796
|
:param display_name:
|
|
13656
13797
|
:param add_operator:
|
|
13798
|
+
:param add_operator_props:
|
|
13657
13799
|
"""
|
|
13658
13800
|
...
|
|
13659
13801
|
|
|
@@ -13822,6 +13964,7 @@ class VIEW3D_MT_edit_meta_showhide(bpy_types._GenericUI):
|
|
|
13822
13964
|
filter_path,
|
|
13823
13965
|
display_name,
|
|
13824
13966
|
add_operator,
|
|
13967
|
+
add_operator_props,
|
|
13825
13968
|
):
|
|
13826
13969
|
"""
|
|
13827
13970
|
|
|
@@ -13833,6 +13976,7 @@ class VIEW3D_MT_edit_meta_showhide(bpy_types._GenericUI):
|
|
|
13833
13976
|
:param filter_path:
|
|
13834
13977
|
:param display_name:
|
|
13835
13978
|
:param add_operator:
|
|
13979
|
+
:param add_operator_props:
|
|
13836
13980
|
"""
|
|
13837
13981
|
...
|
|
13838
13982
|
|
|
@@ -14001,6 +14145,7 @@ class VIEW3D_MT_edit_metaball_context_menu(bpy_types._GenericUI):
|
|
|
14001
14145
|
filter_path,
|
|
14002
14146
|
display_name,
|
|
14003
14147
|
add_operator,
|
|
14148
|
+
add_operator_props,
|
|
14004
14149
|
):
|
|
14005
14150
|
"""
|
|
14006
14151
|
|
|
@@ -14012,6 +14157,7 @@ class VIEW3D_MT_edit_metaball_context_menu(bpy_types._GenericUI):
|
|
|
14012
14157
|
:param filter_path:
|
|
14013
14158
|
:param display_name:
|
|
14014
14159
|
:param add_operator:
|
|
14160
|
+
:param add_operator_props:
|
|
14015
14161
|
"""
|
|
14016
14162
|
...
|
|
14017
14163
|
|
|
@@ -14180,6 +14326,7 @@ class VIEW3D_MT_edit_pointcloud(bpy_types._GenericUI):
|
|
|
14180
14326
|
filter_path,
|
|
14181
14327
|
display_name,
|
|
14182
14328
|
add_operator,
|
|
14329
|
+
add_operator_props,
|
|
14183
14330
|
):
|
|
14184
14331
|
"""
|
|
14185
14332
|
|
|
@@ -14191,6 +14338,7 @@ class VIEW3D_MT_edit_pointcloud(bpy_types._GenericUI):
|
|
|
14191
14338
|
:param filter_path:
|
|
14192
14339
|
:param display_name:
|
|
14193
14340
|
:param add_operator:
|
|
14341
|
+
:param add_operator_props:
|
|
14194
14342
|
"""
|
|
14195
14343
|
...
|
|
14196
14344
|
|
|
@@ -14359,6 +14507,7 @@ class VIEW3D_MT_edit_surface(bpy_types._GenericUI):
|
|
|
14359
14507
|
filter_path,
|
|
14360
14508
|
display_name,
|
|
14361
14509
|
add_operator,
|
|
14510
|
+
add_operator_props,
|
|
14362
14511
|
):
|
|
14363
14512
|
"""
|
|
14364
14513
|
|
|
@@ -14370,6 +14519,7 @@ class VIEW3D_MT_edit_surface(bpy_types._GenericUI):
|
|
|
14370
14519
|
:param filter_path:
|
|
14371
14520
|
:param display_name:
|
|
14372
14521
|
:param add_operator:
|
|
14522
|
+
:param add_operator_props:
|
|
14373
14523
|
"""
|
|
14374
14524
|
...
|
|
14375
14525
|
|
|
@@ -14538,6 +14688,7 @@ class VIEW3D_MT_editor_menus(bpy_types._GenericUI):
|
|
|
14538
14688
|
filter_path,
|
|
14539
14689
|
display_name,
|
|
14540
14690
|
add_operator,
|
|
14691
|
+
add_operator_props,
|
|
14541
14692
|
):
|
|
14542
14693
|
"""
|
|
14543
14694
|
|
|
@@ -14549,6 +14700,7 @@ class VIEW3D_MT_editor_menus(bpy_types._GenericUI):
|
|
|
14549
14700
|
:param filter_path:
|
|
14550
14701
|
:param display_name:
|
|
14551
14702
|
:param add_operator:
|
|
14703
|
+
:param add_operator_props:
|
|
14552
14704
|
"""
|
|
14553
14705
|
...
|
|
14554
14706
|
|
|
@@ -14717,6 +14869,7 @@ class VIEW3D_MT_face_sets(bpy_types._GenericUI):
|
|
|
14717
14869
|
filter_path,
|
|
14718
14870
|
display_name,
|
|
14719
14871
|
add_operator,
|
|
14872
|
+
add_operator_props,
|
|
14720
14873
|
):
|
|
14721
14874
|
"""
|
|
14722
14875
|
|
|
@@ -14728,6 +14881,7 @@ class VIEW3D_MT_face_sets(bpy_types._GenericUI):
|
|
|
14728
14881
|
:param filter_path:
|
|
14729
14882
|
:param display_name:
|
|
14730
14883
|
:param add_operator:
|
|
14884
|
+
:param add_operator_props:
|
|
14731
14885
|
"""
|
|
14732
14886
|
...
|
|
14733
14887
|
|
|
@@ -14896,6 +15050,7 @@ class VIEW3D_MT_face_sets_init(bpy_types._GenericUI):
|
|
|
14896
15050
|
filter_path,
|
|
14897
15051
|
display_name,
|
|
14898
15052
|
add_operator,
|
|
15053
|
+
add_operator_props,
|
|
14899
15054
|
):
|
|
14900
15055
|
"""
|
|
14901
15056
|
|
|
@@ -14907,6 +15062,7 @@ class VIEW3D_MT_face_sets_init(bpy_types._GenericUI):
|
|
|
14907
15062
|
:param filter_path:
|
|
14908
15063
|
:param display_name:
|
|
14909
15064
|
:param add_operator:
|
|
15065
|
+
:param add_operator_props:
|
|
14910
15066
|
"""
|
|
14911
15067
|
...
|
|
14912
15068
|
|
|
@@ -15075,6 +15231,7 @@ class VIEW3D_MT_gpencil_animation(bpy_types._GenericUI):
|
|
|
15075
15231
|
filter_path,
|
|
15076
15232
|
display_name,
|
|
15077
15233
|
add_operator,
|
|
15234
|
+
add_operator_props,
|
|
15078
15235
|
):
|
|
15079
15236
|
"""
|
|
15080
15237
|
|
|
@@ -15086,6 +15243,7 @@ class VIEW3D_MT_gpencil_animation(bpy_types._GenericUI):
|
|
|
15086
15243
|
:param filter_path:
|
|
15087
15244
|
:param display_name:
|
|
15088
15245
|
:param add_operator:
|
|
15246
|
+
:param add_operator_props:
|
|
15089
15247
|
"""
|
|
15090
15248
|
...
|
|
15091
15249
|
|
|
@@ -15261,6 +15419,7 @@ class VIEW3D_MT_gpencil_autoweights(bpy_types._GenericUI):
|
|
|
15261
15419
|
filter_path,
|
|
15262
15420
|
display_name,
|
|
15263
15421
|
add_operator,
|
|
15422
|
+
add_operator_props,
|
|
15264
15423
|
):
|
|
15265
15424
|
"""
|
|
15266
15425
|
|
|
@@ -15272,6 +15431,7 @@ class VIEW3D_MT_gpencil_autoweights(bpy_types._GenericUI):
|
|
|
15272
15431
|
:param filter_path:
|
|
15273
15432
|
:param display_name:
|
|
15274
15433
|
:param add_operator:
|
|
15434
|
+
:param add_operator_props:
|
|
15275
15435
|
"""
|
|
15276
15436
|
...
|
|
15277
15437
|
|
|
@@ -15440,6 +15600,7 @@ class VIEW3D_MT_gpencil_edit_context_menu(bpy_types._GenericUI):
|
|
|
15440
15600
|
filter_path,
|
|
15441
15601
|
display_name,
|
|
15442
15602
|
add_operator,
|
|
15603
|
+
add_operator_props,
|
|
15443
15604
|
):
|
|
15444
15605
|
"""
|
|
15445
15606
|
|
|
@@ -15451,6 +15612,7 @@ class VIEW3D_MT_gpencil_edit_context_menu(bpy_types._GenericUI):
|
|
|
15451
15612
|
:param filter_path:
|
|
15452
15613
|
:param display_name:
|
|
15453
15614
|
:param add_operator:
|
|
15615
|
+
:param add_operator_props:
|
|
15454
15616
|
"""
|
|
15455
15617
|
...
|
|
15456
15618
|
|
|
@@ -15619,6 +15781,7 @@ class VIEW3D_MT_gpencil_simplify(bpy_types._GenericUI):
|
|
|
15619
15781
|
filter_path,
|
|
15620
15782
|
display_name,
|
|
15621
15783
|
add_operator,
|
|
15784
|
+
add_operator_props,
|
|
15622
15785
|
):
|
|
15623
15786
|
"""
|
|
15624
15787
|
|
|
@@ -15630,6 +15793,7 @@ class VIEW3D_MT_gpencil_simplify(bpy_types._GenericUI):
|
|
|
15630
15793
|
:param filter_path:
|
|
15631
15794
|
:param display_name:
|
|
15632
15795
|
:param add_operator:
|
|
15796
|
+
:param add_operator_props:
|
|
15633
15797
|
"""
|
|
15634
15798
|
...
|
|
15635
15799
|
|
|
@@ -15798,6 +15962,7 @@ class VIEW3D_MT_gpencil_vertex_group(bpy_types._GenericUI):
|
|
|
15798
15962
|
filter_path,
|
|
15799
15963
|
display_name,
|
|
15800
15964
|
add_operator,
|
|
15965
|
+
add_operator_props,
|
|
15801
15966
|
):
|
|
15802
15967
|
"""
|
|
15803
15968
|
|
|
@@ -15809,6 +15974,7 @@ class VIEW3D_MT_gpencil_vertex_group(bpy_types._GenericUI):
|
|
|
15809
15974
|
:param filter_path:
|
|
15810
15975
|
:param display_name:
|
|
15811
15976
|
:param add_operator:
|
|
15977
|
+
:param add_operator_props:
|
|
15812
15978
|
"""
|
|
15813
15979
|
...
|
|
15814
15980
|
|
|
@@ -15983,6 +16149,7 @@ class VIEW3D_MT_grease_pencil_add(bpy_types._GenericUI):
|
|
|
15983
16149
|
filter_path,
|
|
15984
16150
|
display_name,
|
|
15985
16151
|
add_operator,
|
|
16152
|
+
add_operator_props,
|
|
15986
16153
|
):
|
|
15987
16154
|
"""
|
|
15988
16155
|
|
|
@@ -15994,6 +16161,7 @@ class VIEW3D_MT_grease_pencil_add(bpy_types._GenericUI):
|
|
|
15994
16161
|
:param filter_path:
|
|
15995
16162
|
:param display_name:
|
|
15996
16163
|
:param add_operator:
|
|
16164
|
+
:param add_operator_props:
|
|
15997
16165
|
"""
|
|
15998
16166
|
...
|
|
15999
16167
|
|
|
@@ -16162,6 +16330,7 @@ class VIEW3D_MT_grease_pencil_assign_material(bpy_types._GenericUI):
|
|
|
16162
16330
|
filter_path,
|
|
16163
16331
|
display_name,
|
|
16164
16332
|
add_operator,
|
|
16333
|
+
add_operator_props,
|
|
16165
16334
|
):
|
|
16166
16335
|
"""
|
|
16167
16336
|
|
|
@@ -16173,6 +16342,7 @@ class VIEW3D_MT_grease_pencil_assign_material(bpy_types._GenericUI):
|
|
|
16173
16342
|
:param filter_path:
|
|
16174
16343
|
:param display_name:
|
|
16175
16344
|
:param add_operator:
|
|
16345
|
+
:param add_operator_props:
|
|
16176
16346
|
"""
|
|
16177
16347
|
...
|
|
16178
16348
|
|
|
@@ -16341,6 +16511,7 @@ class VIEW3D_MT_greasepencil_edit_context_menu(bpy_types._GenericUI):
|
|
|
16341
16511
|
filter_path,
|
|
16342
16512
|
display_name,
|
|
16343
16513
|
add_operator,
|
|
16514
|
+
add_operator_props,
|
|
16344
16515
|
):
|
|
16345
16516
|
"""
|
|
16346
16517
|
|
|
@@ -16352,6 +16523,7 @@ class VIEW3D_MT_greasepencil_edit_context_menu(bpy_types._GenericUI):
|
|
|
16352
16523
|
:param filter_path:
|
|
16353
16524
|
:param display_name:
|
|
16354
16525
|
:param add_operator:
|
|
16526
|
+
:param add_operator_props:
|
|
16355
16527
|
"""
|
|
16356
16528
|
...
|
|
16357
16529
|
|
|
@@ -16520,6 +16692,7 @@ class VIEW3D_MT_greasepencil_material_active(bpy_types._GenericUI):
|
|
|
16520
16692
|
filter_path,
|
|
16521
16693
|
display_name,
|
|
16522
16694
|
add_operator,
|
|
16695
|
+
add_operator_props,
|
|
16523
16696
|
):
|
|
16524
16697
|
"""
|
|
16525
16698
|
|
|
@@ -16531,6 +16704,7 @@ class VIEW3D_MT_greasepencil_material_active(bpy_types._GenericUI):
|
|
|
16531
16704
|
:param filter_path:
|
|
16532
16705
|
:param display_name:
|
|
16533
16706
|
:param add_operator:
|
|
16707
|
+
:param add_operator_props:
|
|
16534
16708
|
"""
|
|
16535
16709
|
...
|
|
16536
16710
|
|
|
@@ -16706,6 +16880,7 @@ class VIEW3D_MT_hook(bpy_types._GenericUI):
|
|
|
16706
16880
|
filter_path,
|
|
16707
16881
|
display_name,
|
|
16708
16882
|
add_operator,
|
|
16883
|
+
add_operator_props,
|
|
16709
16884
|
):
|
|
16710
16885
|
"""
|
|
16711
16886
|
|
|
@@ -16717,6 +16892,7 @@ class VIEW3D_MT_hook(bpy_types._GenericUI):
|
|
|
16717
16892
|
:param filter_path:
|
|
16718
16893
|
:param display_name:
|
|
16719
16894
|
:param add_operator:
|
|
16895
|
+
:param add_operator_props:
|
|
16720
16896
|
"""
|
|
16721
16897
|
...
|
|
16722
16898
|
|
|
@@ -16888,6 +17064,7 @@ class VIEW3D_MT_image_add(bpy_types._GenericUI):
|
|
|
16888
17064
|
filter_path,
|
|
16889
17065
|
display_name,
|
|
16890
17066
|
add_operator,
|
|
17067
|
+
add_operator_props,
|
|
16891
17068
|
):
|
|
16892
17069
|
"""
|
|
16893
17070
|
|
|
@@ -16899,6 +17076,7 @@ class VIEW3D_MT_image_add(bpy_types._GenericUI):
|
|
|
16899
17076
|
:param filter_path:
|
|
16900
17077
|
:param display_name:
|
|
16901
17078
|
:param add_operator:
|
|
17079
|
+
:param add_operator_props:
|
|
16902
17080
|
"""
|
|
16903
17081
|
...
|
|
16904
17082
|
|
|
@@ -17076,6 +17254,7 @@ class VIEW3D_MT_light_add(bpy_types._GenericUI):
|
|
|
17076
17254
|
filter_path,
|
|
17077
17255
|
display_name,
|
|
17078
17256
|
add_operator,
|
|
17257
|
+
add_operator_props,
|
|
17079
17258
|
):
|
|
17080
17259
|
"""
|
|
17081
17260
|
|
|
@@ -17087,6 +17266,7 @@ class VIEW3D_MT_light_add(bpy_types._GenericUI):
|
|
|
17087
17266
|
:param filter_path:
|
|
17088
17267
|
:param display_name:
|
|
17089
17268
|
:param add_operator:
|
|
17269
|
+
:param add_operator_props:
|
|
17090
17270
|
"""
|
|
17091
17271
|
...
|
|
17092
17272
|
|
|
@@ -17261,6 +17441,7 @@ class VIEW3D_MT_lightprobe_add(bpy_types._GenericUI):
|
|
|
17261
17441
|
filter_path,
|
|
17262
17442
|
display_name,
|
|
17263
17443
|
add_operator,
|
|
17444
|
+
add_operator_props,
|
|
17264
17445
|
):
|
|
17265
17446
|
"""
|
|
17266
17447
|
|
|
@@ -17272,6 +17453,7 @@ class VIEW3D_MT_lightprobe_add(bpy_types._GenericUI):
|
|
|
17272
17453
|
:param filter_path:
|
|
17273
17454
|
:param display_name:
|
|
17274
17455
|
:param add_operator:
|
|
17456
|
+
:param add_operator_props:
|
|
17275
17457
|
"""
|
|
17276
17458
|
...
|
|
17277
17459
|
|
|
@@ -17440,6 +17622,7 @@ class VIEW3D_MT_make_links(bpy_types._GenericUI):
|
|
|
17440
17622
|
filter_path,
|
|
17441
17623
|
display_name,
|
|
17442
17624
|
add_operator,
|
|
17625
|
+
add_operator_props,
|
|
17443
17626
|
):
|
|
17444
17627
|
"""
|
|
17445
17628
|
|
|
@@ -17451,6 +17634,7 @@ class VIEW3D_MT_make_links(bpy_types._GenericUI):
|
|
|
17451
17634
|
:param filter_path:
|
|
17452
17635
|
:param display_name:
|
|
17453
17636
|
:param add_operator:
|
|
17637
|
+
:param add_operator_props:
|
|
17454
17638
|
"""
|
|
17455
17639
|
...
|
|
17456
17640
|
|
|
@@ -17619,6 +17803,7 @@ class VIEW3D_MT_make_single_user(bpy_types._GenericUI):
|
|
|
17619
17803
|
filter_path,
|
|
17620
17804
|
display_name,
|
|
17621
17805
|
add_operator,
|
|
17806
|
+
add_operator_props,
|
|
17622
17807
|
):
|
|
17623
17808
|
"""
|
|
17624
17809
|
|
|
@@ -17630,6 +17815,7 @@ class VIEW3D_MT_make_single_user(bpy_types._GenericUI):
|
|
|
17630
17815
|
:param filter_path:
|
|
17631
17816
|
:param display_name:
|
|
17632
17817
|
:param add_operator:
|
|
17818
|
+
:param add_operator_props:
|
|
17633
17819
|
"""
|
|
17634
17820
|
...
|
|
17635
17821
|
|
|
@@ -17798,6 +17984,7 @@ class VIEW3D_MT_mask(bpy_types._GenericUI):
|
|
|
17798
17984
|
filter_path,
|
|
17799
17985
|
display_name,
|
|
17800
17986
|
add_operator,
|
|
17987
|
+
add_operator_props,
|
|
17801
17988
|
):
|
|
17802
17989
|
"""
|
|
17803
17990
|
|
|
@@ -17809,6 +17996,7 @@ class VIEW3D_MT_mask(bpy_types._GenericUI):
|
|
|
17809
17996
|
:param filter_path:
|
|
17810
17997
|
:param display_name:
|
|
17811
17998
|
:param add_operator:
|
|
17999
|
+
:param add_operator_props:
|
|
17812
18000
|
"""
|
|
17813
18001
|
...
|
|
17814
18002
|
|
|
@@ -17983,6 +18171,7 @@ class VIEW3D_MT_mesh_add(bpy_types._GenericUI):
|
|
|
17983
18171
|
filter_path,
|
|
17984
18172
|
display_name,
|
|
17985
18173
|
add_operator,
|
|
18174
|
+
add_operator_props,
|
|
17986
18175
|
):
|
|
17987
18176
|
"""
|
|
17988
18177
|
|
|
@@ -17994,6 +18183,7 @@ class VIEW3D_MT_mesh_add(bpy_types._GenericUI):
|
|
|
17994
18183
|
:param filter_path:
|
|
17995
18184
|
:param display_name:
|
|
17996
18185
|
:param add_operator:
|
|
18186
|
+
:param add_operator_props:
|
|
17997
18187
|
"""
|
|
17998
18188
|
...
|
|
17999
18189
|
|
|
@@ -18168,6 +18358,7 @@ class VIEW3D_MT_metaball_add(bpy_types._GenericUI):
|
|
|
18168
18358
|
filter_path,
|
|
18169
18359
|
display_name,
|
|
18170
18360
|
add_operator,
|
|
18361
|
+
add_operator_props,
|
|
18171
18362
|
):
|
|
18172
18363
|
"""
|
|
18173
18364
|
|
|
@@ -18179,6 +18370,7 @@ class VIEW3D_MT_metaball_add(bpy_types._GenericUI):
|
|
|
18179
18370
|
:param filter_path:
|
|
18180
18371
|
:param display_name:
|
|
18181
18372
|
:param add_operator:
|
|
18373
|
+
:param add_operator_props:
|
|
18182
18374
|
"""
|
|
18183
18375
|
...
|
|
18184
18376
|
|
|
@@ -18347,6 +18539,7 @@ class VIEW3D_MT_mirror(bpy_types._GenericUI):
|
|
|
18347
18539
|
filter_path,
|
|
18348
18540
|
display_name,
|
|
18349
18541
|
add_operator,
|
|
18542
|
+
add_operator_props,
|
|
18350
18543
|
):
|
|
18351
18544
|
"""
|
|
18352
18545
|
|
|
@@ -18358,6 +18551,7 @@ class VIEW3D_MT_mirror(bpy_types._GenericUI):
|
|
|
18358
18551
|
:param filter_path:
|
|
18359
18552
|
:param display_name:
|
|
18360
18553
|
:param add_operator:
|
|
18554
|
+
:param add_operator_props:
|
|
18361
18555
|
"""
|
|
18362
18556
|
...
|
|
18363
18557
|
|
|
@@ -18529,6 +18723,7 @@ class VIEW3D_MT_object(bpy_types._GenericUI):
|
|
|
18529
18723
|
filter_path,
|
|
18530
18724
|
display_name,
|
|
18531
18725
|
add_operator,
|
|
18726
|
+
add_operator_props,
|
|
18532
18727
|
):
|
|
18533
18728
|
"""
|
|
18534
18729
|
|
|
@@ -18540,6 +18735,7 @@ class VIEW3D_MT_object(bpy_types._GenericUI):
|
|
|
18540
18735
|
:param filter_path:
|
|
18541
18736
|
:param display_name:
|
|
18542
18737
|
:param add_operator:
|
|
18738
|
+
:param add_operator_props:
|
|
18543
18739
|
"""
|
|
18544
18740
|
...
|
|
18545
18741
|
|
|
@@ -18708,6 +18904,7 @@ class VIEW3D_MT_object_animation(bpy_types._GenericUI):
|
|
|
18708
18904
|
filter_path,
|
|
18709
18905
|
display_name,
|
|
18710
18906
|
add_operator,
|
|
18907
|
+
add_operator_props,
|
|
18711
18908
|
):
|
|
18712
18909
|
"""
|
|
18713
18910
|
|
|
@@ -18719,6 +18916,7 @@ class VIEW3D_MT_object_animation(bpy_types._GenericUI):
|
|
|
18719
18916
|
:param filter_path:
|
|
18720
18917
|
:param display_name:
|
|
18721
18918
|
:param add_operator:
|
|
18919
|
+
:param add_operator_props:
|
|
18722
18920
|
"""
|
|
18723
18921
|
...
|
|
18724
18922
|
|
|
@@ -18887,6 +19085,7 @@ class VIEW3D_MT_object_apply(bpy_types._GenericUI):
|
|
|
18887
19085
|
filter_path,
|
|
18888
19086
|
display_name,
|
|
18889
19087
|
add_operator,
|
|
19088
|
+
add_operator_props,
|
|
18890
19089
|
):
|
|
18891
19090
|
"""
|
|
18892
19091
|
|
|
@@ -18898,6 +19097,7 @@ class VIEW3D_MT_object_apply(bpy_types._GenericUI):
|
|
|
18898
19097
|
:param filter_path:
|
|
18899
19098
|
:param display_name:
|
|
18900
19099
|
:param add_operator:
|
|
19100
|
+
:param add_operator_props:
|
|
18901
19101
|
"""
|
|
18902
19102
|
...
|
|
18903
19103
|
|
|
@@ -19066,6 +19266,7 @@ class VIEW3D_MT_object_asset(bpy_types._GenericUI):
|
|
|
19066
19266
|
filter_path,
|
|
19067
19267
|
display_name,
|
|
19068
19268
|
add_operator,
|
|
19269
|
+
add_operator_props,
|
|
19069
19270
|
):
|
|
19070
19271
|
"""
|
|
19071
19272
|
|
|
@@ -19077,6 +19278,7 @@ class VIEW3D_MT_object_asset(bpy_types._GenericUI):
|
|
|
19077
19278
|
:param filter_path:
|
|
19078
19279
|
:param display_name:
|
|
19079
19280
|
:param add_operator:
|
|
19281
|
+
:param add_operator_props:
|
|
19080
19282
|
"""
|
|
19081
19283
|
...
|
|
19082
19284
|
|
|
@@ -19245,6 +19447,7 @@ class VIEW3D_MT_object_cleanup(bpy_types._GenericUI):
|
|
|
19245
19447
|
filter_path,
|
|
19246
19448
|
display_name,
|
|
19247
19449
|
add_operator,
|
|
19450
|
+
add_operator_props,
|
|
19248
19451
|
):
|
|
19249
19452
|
"""
|
|
19250
19453
|
|
|
@@ -19256,6 +19459,7 @@ class VIEW3D_MT_object_cleanup(bpy_types._GenericUI):
|
|
|
19256
19459
|
:param filter_path:
|
|
19257
19460
|
:param display_name:
|
|
19258
19461
|
:param add_operator:
|
|
19462
|
+
:param add_operator_props:
|
|
19259
19463
|
"""
|
|
19260
19464
|
...
|
|
19261
19465
|
|
|
@@ -19424,6 +19628,7 @@ class VIEW3D_MT_object_clear(bpy_types._GenericUI):
|
|
|
19424
19628
|
filter_path,
|
|
19425
19629
|
display_name,
|
|
19426
19630
|
add_operator,
|
|
19631
|
+
add_operator_props,
|
|
19427
19632
|
):
|
|
19428
19633
|
"""
|
|
19429
19634
|
|
|
@@ -19435,6 +19640,7 @@ class VIEW3D_MT_object_clear(bpy_types._GenericUI):
|
|
|
19435
19640
|
:param filter_path:
|
|
19436
19641
|
:param display_name:
|
|
19437
19642
|
:param add_operator:
|
|
19643
|
+
:param add_operator_props:
|
|
19438
19644
|
"""
|
|
19439
19645
|
...
|
|
19440
19646
|
|
|
@@ -19603,6 +19809,7 @@ class VIEW3D_MT_object_collection(bpy_types._GenericUI):
|
|
|
19603
19809
|
filter_path,
|
|
19604
19810
|
display_name,
|
|
19605
19811
|
add_operator,
|
|
19812
|
+
add_operator_props,
|
|
19606
19813
|
):
|
|
19607
19814
|
"""
|
|
19608
19815
|
|
|
@@ -19614,6 +19821,7 @@ class VIEW3D_MT_object_collection(bpy_types._GenericUI):
|
|
|
19614
19821
|
:param filter_path:
|
|
19615
19822
|
:param display_name:
|
|
19616
19823
|
:param add_operator:
|
|
19824
|
+
:param add_operator_props:
|
|
19617
19825
|
"""
|
|
19618
19826
|
...
|
|
19619
19827
|
|
|
@@ -19782,6 +19990,7 @@ class VIEW3D_MT_object_constraints(bpy_types._GenericUI):
|
|
|
19782
19990
|
filter_path,
|
|
19783
19991
|
display_name,
|
|
19784
19992
|
add_operator,
|
|
19993
|
+
add_operator_props,
|
|
19785
19994
|
):
|
|
19786
19995
|
"""
|
|
19787
19996
|
|
|
@@ -19793,6 +20002,7 @@ class VIEW3D_MT_object_constraints(bpy_types._GenericUI):
|
|
|
19793
20002
|
:param filter_path:
|
|
19794
20003
|
:param display_name:
|
|
19795
20004
|
:param add_operator:
|
|
20005
|
+
:param add_operator_props:
|
|
19796
20006
|
"""
|
|
19797
20007
|
...
|
|
19798
20008
|
|
|
@@ -19961,6 +20171,7 @@ class VIEW3D_MT_object_context_menu(bpy_types._GenericUI):
|
|
|
19961
20171
|
filter_path,
|
|
19962
20172
|
display_name,
|
|
19963
20173
|
add_operator,
|
|
20174
|
+
add_operator_props,
|
|
19964
20175
|
):
|
|
19965
20176
|
"""
|
|
19966
20177
|
|
|
@@ -19972,6 +20183,7 @@ class VIEW3D_MT_object_context_menu(bpy_types._GenericUI):
|
|
|
19972
20183
|
:param filter_path:
|
|
19973
20184
|
:param display_name:
|
|
19974
20185
|
:param add_operator:
|
|
20186
|
+
:param add_operator_props:
|
|
19975
20187
|
"""
|
|
19976
20188
|
...
|
|
19977
20189
|
|
|
@@ -20140,6 +20352,7 @@ class VIEW3D_MT_object_convert(bpy_types._GenericUI):
|
|
|
20140
20352
|
filter_path,
|
|
20141
20353
|
display_name,
|
|
20142
20354
|
add_operator,
|
|
20355
|
+
add_operator_props,
|
|
20143
20356
|
):
|
|
20144
20357
|
"""
|
|
20145
20358
|
|
|
@@ -20151,6 +20364,7 @@ class VIEW3D_MT_object_convert(bpy_types._GenericUI):
|
|
|
20151
20364
|
:param filter_path:
|
|
20152
20365
|
:param display_name:
|
|
20153
20366
|
:param add_operator:
|
|
20367
|
+
:param add_operator_props:
|
|
20154
20368
|
"""
|
|
20155
20369
|
...
|
|
20156
20370
|
|
|
@@ -20319,6 +20533,7 @@ class VIEW3D_MT_object_liboverride(bpy_types._GenericUI):
|
|
|
20319
20533
|
filter_path,
|
|
20320
20534
|
display_name,
|
|
20321
20535
|
add_operator,
|
|
20536
|
+
add_operator_props,
|
|
20322
20537
|
):
|
|
20323
20538
|
"""
|
|
20324
20539
|
|
|
@@ -20330,6 +20545,7 @@ class VIEW3D_MT_object_liboverride(bpy_types._GenericUI):
|
|
|
20330
20545
|
:param filter_path:
|
|
20331
20546
|
:param display_name:
|
|
20332
20547
|
:param add_operator:
|
|
20548
|
+
:param add_operator_props:
|
|
20333
20549
|
"""
|
|
20334
20550
|
...
|
|
20335
20551
|
|
|
@@ -20498,6 +20714,7 @@ class VIEW3D_MT_object_mode_pie(bpy_types._GenericUI):
|
|
|
20498
20714
|
filter_path,
|
|
20499
20715
|
display_name,
|
|
20500
20716
|
add_operator,
|
|
20717
|
+
add_operator_props,
|
|
20501
20718
|
):
|
|
20502
20719
|
"""
|
|
20503
20720
|
|
|
@@ -20509,6 +20726,7 @@ class VIEW3D_MT_object_mode_pie(bpy_types._GenericUI):
|
|
|
20509
20726
|
:param filter_path:
|
|
20510
20727
|
:param display_name:
|
|
20511
20728
|
:param add_operator:
|
|
20729
|
+
:param add_operator_props:
|
|
20512
20730
|
"""
|
|
20513
20731
|
...
|
|
20514
20732
|
|
|
@@ -20677,6 +20895,7 @@ class VIEW3D_MT_object_parent(bpy_types._GenericUI):
|
|
|
20677
20895
|
filter_path,
|
|
20678
20896
|
display_name,
|
|
20679
20897
|
add_operator,
|
|
20898
|
+
add_operator_props,
|
|
20680
20899
|
):
|
|
20681
20900
|
"""
|
|
20682
20901
|
|
|
@@ -20688,6 +20907,7 @@ class VIEW3D_MT_object_parent(bpy_types._GenericUI):
|
|
|
20688
20907
|
:param filter_path:
|
|
20689
20908
|
:param display_name:
|
|
20690
20909
|
:param add_operator:
|
|
20910
|
+
:param add_operator_props:
|
|
20691
20911
|
"""
|
|
20692
20912
|
...
|
|
20693
20913
|
|
|
@@ -20856,6 +21076,7 @@ class VIEW3D_MT_object_quick_effects(bpy_types._GenericUI):
|
|
|
20856
21076
|
filter_path,
|
|
20857
21077
|
display_name,
|
|
20858
21078
|
add_operator,
|
|
21079
|
+
add_operator_props,
|
|
20859
21080
|
):
|
|
20860
21081
|
"""
|
|
20861
21082
|
|
|
@@ -20867,6 +21088,7 @@ class VIEW3D_MT_object_quick_effects(bpy_types._GenericUI):
|
|
|
20867
21088
|
:param filter_path:
|
|
20868
21089
|
:param display_name:
|
|
20869
21090
|
:param add_operator:
|
|
21091
|
+
:param add_operator_props:
|
|
20870
21092
|
"""
|
|
20871
21093
|
...
|
|
20872
21094
|
|
|
@@ -21035,6 +21257,7 @@ class VIEW3D_MT_object_relations(bpy_types._GenericUI):
|
|
|
21035
21257
|
filter_path,
|
|
21036
21258
|
display_name,
|
|
21037
21259
|
add_operator,
|
|
21260
|
+
add_operator_props,
|
|
21038
21261
|
):
|
|
21039
21262
|
"""
|
|
21040
21263
|
|
|
@@ -21046,6 +21269,7 @@ class VIEW3D_MT_object_relations(bpy_types._GenericUI):
|
|
|
21046
21269
|
:param filter_path:
|
|
21047
21270
|
:param display_name:
|
|
21048
21271
|
:param add_operator:
|
|
21272
|
+
:param add_operator_props:
|
|
21049
21273
|
"""
|
|
21050
21274
|
...
|
|
21051
21275
|
|
|
@@ -21214,6 +21438,7 @@ class VIEW3D_MT_object_rigid_body(bpy_types._GenericUI):
|
|
|
21214
21438
|
filter_path,
|
|
21215
21439
|
display_name,
|
|
21216
21440
|
add_operator,
|
|
21441
|
+
add_operator_props,
|
|
21217
21442
|
):
|
|
21218
21443
|
"""
|
|
21219
21444
|
|
|
@@ -21225,6 +21450,7 @@ class VIEW3D_MT_object_rigid_body(bpy_types._GenericUI):
|
|
|
21225
21450
|
:param filter_path:
|
|
21226
21451
|
:param display_name:
|
|
21227
21452
|
:param add_operator:
|
|
21453
|
+
:param add_operator_props:
|
|
21228
21454
|
"""
|
|
21229
21455
|
...
|
|
21230
21456
|
|
|
@@ -21393,6 +21619,7 @@ class VIEW3D_MT_object_shading(bpy_types._GenericUI):
|
|
|
21393
21619
|
filter_path,
|
|
21394
21620
|
display_name,
|
|
21395
21621
|
add_operator,
|
|
21622
|
+
add_operator_props,
|
|
21396
21623
|
):
|
|
21397
21624
|
"""
|
|
21398
21625
|
|
|
@@ -21404,6 +21631,7 @@ class VIEW3D_MT_object_shading(bpy_types._GenericUI):
|
|
|
21404
21631
|
:param filter_path:
|
|
21405
21632
|
:param display_name:
|
|
21406
21633
|
:param add_operator:
|
|
21634
|
+
:param add_operator_props:
|
|
21407
21635
|
"""
|
|
21408
21636
|
...
|
|
21409
21637
|
|
|
@@ -21572,6 +21800,7 @@ class VIEW3D_MT_object_showhide(bpy_types._GenericUI):
|
|
|
21572
21800
|
filter_path,
|
|
21573
21801
|
display_name,
|
|
21574
21802
|
add_operator,
|
|
21803
|
+
add_operator_props,
|
|
21575
21804
|
):
|
|
21576
21805
|
"""
|
|
21577
21806
|
|
|
@@ -21583,6 +21812,7 @@ class VIEW3D_MT_object_showhide(bpy_types._GenericUI):
|
|
|
21583
21812
|
:param filter_path:
|
|
21584
21813
|
:param display_name:
|
|
21585
21814
|
:param add_operator:
|
|
21815
|
+
:param add_operator_props:
|
|
21586
21816
|
"""
|
|
21587
21817
|
...
|
|
21588
21818
|
|
|
@@ -21754,6 +21984,7 @@ class VIEW3D_MT_object_track(bpy_types._GenericUI):
|
|
|
21754
21984
|
filter_path,
|
|
21755
21985
|
display_name,
|
|
21756
21986
|
add_operator,
|
|
21987
|
+
add_operator_props,
|
|
21757
21988
|
):
|
|
21758
21989
|
"""
|
|
21759
21990
|
|
|
@@ -21765,6 +21996,7 @@ class VIEW3D_MT_object_track(bpy_types._GenericUI):
|
|
|
21765
21996
|
:param filter_path:
|
|
21766
21997
|
:param display_name:
|
|
21767
21998
|
:param add_operator:
|
|
21999
|
+
:param add_operator_props:
|
|
21768
22000
|
"""
|
|
21769
22001
|
...
|
|
21770
22002
|
|
|
@@ -21933,6 +22165,7 @@ class VIEW3D_MT_orientations_pie(bpy_types._GenericUI):
|
|
|
21933
22165
|
filter_path,
|
|
21934
22166
|
display_name,
|
|
21935
22167
|
add_operator,
|
|
22168
|
+
add_operator_props,
|
|
21936
22169
|
):
|
|
21937
22170
|
"""
|
|
21938
22171
|
|
|
@@ -21944,6 +22177,7 @@ class VIEW3D_MT_orientations_pie(bpy_types._GenericUI):
|
|
|
21944
22177
|
:param filter_path:
|
|
21945
22178
|
:param display_name:
|
|
21946
22179
|
:param add_operator:
|
|
22180
|
+
:param add_operator_props:
|
|
21947
22181
|
"""
|
|
21948
22182
|
...
|
|
21949
22183
|
|
|
@@ -22112,6 +22346,7 @@ class VIEW3D_MT_paint_gpencil(bpy_types._GenericUI):
|
|
|
22112
22346
|
filter_path,
|
|
22113
22347
|
display_name,
|
|
22114
22348
|
add_operator,
|
|
22349
|
+
add_operator_props,
|
|
22115
22350
|
):
|
|
22116
22351
|
"""
|
|
22117
22352
|
|
|
@@ -22123,6 +22358,7 @@ class VIEW3D_MT_paint_gpencil(bpy_types._GenericUI):
|
|
|
22123
22358
|
:param filter_path:
|
|
22124
22359
|
:param display_name:
|
|
22125
22360
|
:param add_operator:
|
|
22361
|
+
:param add_operator_props:
|
|
22126
22362
|
"""
|
|
22127
22363
|
...
|
|
22128
22364
|
|
|
@@ -22291,6 +22527,7 @@ class VIEW3D_MT_paint_grease_pencil(bpy_types._GenericUI):
|
|
|
22291
22527
|
filter_path,
|
|
22292
22528
|
display_name,
|
|
22293
22529
|
add_operator,
|
|
22530
|
+
add_operator_props,
|
|
22294
22531
|
):
|
|
22295
22532
|
"""
|
|
22296
22533
|
|
|
@@ -22302,6 +22539,7 @@ class VIEW3D_MT_paint_grease_pencil(bpy_types._GenericUI):
|
|
|
22302
22539
|
:param filter_path:
|
|
22303
22540
|
:param display_name:
|
|
22304
22541
|
:param add_operator:
|
|
22542
|
+
:param add_operator_props:
|
|
22305
22543
|
"""
|
|
22306
22544
|
...
|
|
22307
22545
|
|
|
@@ -22470,6 +22708,7 @@ class VIEW3D_MT_paint_vertex(bpy_types._GenericUI):
|
|
|
22470
22708
|
filter_path,
|
|
22471
22709
|
display_name,
|
|
22472
22710
|
add_operator,
|
|
22711
|
+
add_operator_props,
|
|
22473
22712
|
):
|
|
22474
22713
|
"""
|
|
22475
22714
|
|
|
@@ -22481,6 +22720,7 @@ class VIEW3D_MT_paint_vertex(bpy_types._GenericUI):
|
|
|
22481
22720
|
:param filter_path:
|
|
22482
22721
|
:param display_name:
|
|
22483
22722
|
:param add_operator:
|
|
22723
|
+
:param add_operator_props:
|
|
22484
22724
|
"""
|
|
22485
22725
|
...
|
|
22486
22726
|
|
|
@@ -22657,6 +22897,7 @@ class VIEW3D_MT_paint_weight(bpy_types._GenericUI):
|
|
|
22657
22897
|
filter_path,
|
|
22658
22898
|
display_name,
|
|
22659
22899
|
add_operator,
|
|
22900
|
+
add_operator_props,
|
|
22660
22901
|
):
|
|
22661
22902
|
"""
|
|
22662
22903
|
|
|
@@ -22668,6 +22909,7 @@ class VIEW3D_MT_paint_weight(bpy_types._GenericUI):
|
|
|
22668
22909
|
:param filter_path:
|
|
22669
22910
|
:param display_name:
|
|
22670
22911
|
:param add_operator:
|
|
22912
|
+
:param add_operator_props:
|
|
22671
22913
|
"""
|
|
22672
22914
|
...
|
|
22673
22915
|
|
|
@@ -22836,6 +23078,7 @@ class VIEW3D_MT_paint_weight_lock(bpy_types._GenericUI):
|
|
|
22836
23078
|
filter_path,
|
|
22837
23079
|
display_name,
|
|
22838
23080
|
add_operator,
|
|
23081
|
+
add_operator_props,
|
|
22839
23082
|
):
|
|
22840
23083
|
"""
|
|
22841
23084
|
|
|
@@ -22847,6 +23090,7 @@ class VIEW3D_MT_paint_weight_lock(bpy_types._GenericUI):
|
|
|
22847
23090
|
:param filter_path:
|
|
22848
23091
|
:param display_name:
|
|
22849
23092
|
:param add_operator:
|
|
23093
|
+
:param add_operator_props:
|
|
22850
23094
|
"""
|
|
22851
23095
|
...
|
|
22852
23096
|
|
|
@@ -23015,6 +23259,7 @@ class VIEW3D_MT_particle(bpy_types._GenericUI):
|
|
|
23015
23259
|
filter_path,
|
|
23016
23260
|
display_name,
|
|
23017
23261
|
add_operator,
|
|
23262
|
+
add_operator_props,
|
|
23018
23263
|
):
|
|
23019
23264
|
"""
|
|
23020
23265
|
|
|
@@ -23026,6 +23271,7 @@ class VIEW3D_MT_particle(bpy_types._GenericUI):
|
|
|
23026
23271
|
:param filter_path:
|
|
23027
23272
|
:param display_name:
|
|
23028
23273
|
:param add_operator:
|
|
23274
|
+
:param add_operator_props:
|
|
23029
23275
|
"""
|
|
23030
23276
|
...
|
|
23031
23277
|
|
|
@@ -23194,6 +23440,7 @@ class VIEW3D_MT_particle_context_menu(bpy_types._GenericUI):
|
|
|
23194
23440
|
filter_path,
|
|
23195
23441
|
display_name,
|
|
23196
23442
|
add_operator,
|
|
23443
|
+
add_operator_props,
|
|
23197
23444
|
):
|
|
23198
23445
|
"""
|
|
23199
23446
|
|
|
@@ -23205,6 +23452,7 @@ class VIEW3D_MT_particle_context_menu(bpy_types._GenericUI):
|
|
|
23205
23452
|
:param filter_path:
|
|
23206
23453
|
:param display_name:
|
|
23207
23454
|
:param add_operator:
|
|
23455
|
+
:param add_operator_props:
|
|
23208
23456
|
"""
|
|
23209
23457
|
...
|
|
23210
23458
|
|
|
@@ -23373,6 +23621,7 @@ class VIEW3D_MT_particle_showhide(bpy_types._GenericUI):
|
|
|
23373
23621
|
filter_path,
|
|
23374
23622
|
display_name,
|
|
23375
23623
|
add_operator,
|
|
23624
|
+
add_operator_props,
|
|
23376
23625
|
):
|
|
23377
23626
|
"""
|
|
23378
23627
|
|
|
@@ -23384,6 +23633,7 @@ class VIEW3D_MT_particle_showhide(bpy_types._GenericUI):
|
|
|
23384
23633
|
:param filter_path:
|
|
23385
23634
|
:param display_name:
|
|
23386
23635
|
:param add_operator:
|
|
23636
|
+
:param add_operator_props:
|
|
23387
23637
|
"""
|
|
23388
23638
|
...
|
|
23389
23639
|
|
|
@@ -23552,6 +23802,7 @@ class VIEW3D_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
23552
23802
|
filter_path,
|
|
23553
23803
|
display_name,
|
|
23554
23804
|
add_operator,
|
|
23805
|
+
add_operator_props,
|
|
23555
23806
|
):
|
|
23556
23807
|
"""
|
|
23557
23808
|
|
|
@@ -23563,6 +23814,7 @@ class VIEW3D_MT_pivot_pie(bpy_types._GenericUI):
|
|
|
23563
23814
|
:param filter_path:
|
|
23564
23815
|
:param display_name:
|
|
23565
23816
|
:param add_operator:
|
|
23817
|
+
:param add_operator_props:
|
|
23566
23818
|
"""
|
|
23567
23819
|
...
|
|
23568
23820
|
|
|
@@ -23731,6 +23983,7 @@ class VIEW3D_MT_pose(bpy_types._GenericUI):
|
|
|
23731
23983
|
filter_path,
|
|
23732
23984
|
display_name,
|
|
23733
23985
|
add_operator,
|
|
23986
|
+
add_operator_props,
|
|
23734
23987
|
):
|
|
23735
23988
|
"""
|
|
23736
23989
|
|
|
@@ -23742,6 +23995,7 @@ class VIEW3D_MT_pose(bpy_types._GenericUI):
|
|
|
23742
23995
|
:param filter_path:
|
|
23743
23996
|
:param display_name:
|
|
23744
23997
|
:param add_operator:
|
|
23998
|
+
:param add_operator_props:
|
|
23745
23999
|
"""
|
|
23746
24000
|
...
|
|
23747
24001
|
|
|
@@ -23910,6 +24164,7 @@ class VIEW3D_MT_pose_apply(bpy_types._GenericUI):
|
|
|
23910
24164
|
filter_path,
|
|
23911
24165
|
display_name,
|
|
23912
24166
|
add_operator,
|
|
24167
|
+
add_operator_props,
|
|
23913
24168
|
):
|
|
23914
24169
|
"""
|
|
23915
24170
|
|
|
@@ -23921,6 +24176,7 @@ class VIEW3D_MT_pose_apply(bpy_types._GenericUI):
|
|
|
23921
24176
|
:param filter_path:
|
|
23922
24177
|
:param display_name:
|
|
23923
24178
|
:param add_operator:
|
|
24179
|
+
:param add_operator_props:
|
|
23924
24180
|
"""
|
|
23925
24181
|
...
|
|
23926
24182
|
|
|
@@ -24089,6 +24345,7 @@ class VIEW3D_MT_pose_constraints(bpy_types._GenericUI):
|
|
|
24089
24345
|
filter_path,
|
|
24090
24346
|
display_name,
|
|
24091
24347
|
add_operator,
|
|
24348
|
+
add_operator_props,
|
|
24092
24349
|
):
|
|
24093
24350
|
"""
|
|
24094
24351
|
|
|
@@ -24100,6 +24357,7 @@ class VIEW3D_MT_pose_constraints(bpy_types._GenericUI):
|
|
|
24100
24357
|
:param filter_path:
|
|
24101
24358
|
:param display_name:
|
|
24102
24359
|
:param add_operator:
|
|
24360
|
+
:param add_operator_props:
|
|
24103
24361
|
"""
|
|
24104
24362
|
...
|
|
24105
24363
|
|
|
@@ -24268,6 +24526,7 @@ class VIEW3D_MT_pose_context_menu(bpy_types._GenericUI):
|
|
|
24268
24526
|
filter_path,
|
|
24269
24527
|
display_name,
|
|
24270
24528
|
add_operator,
|
|
24529
|
+
add_operator_props,
|
|
24271
24530
|
):
|
|
24272
24531
|
"""
|
|
24273
24532
|
|
|
@@ -24279,6 +24538,7 @@ class VIEW3D_MT_pose_context_menu(bpy_types._GenericUI):
|
|
|
24279
24538
|
:param filter_path:
|
|
24280
24539
|
:param display_name:
|
|
24281
24540
|
:param add_operator:
|
|
24541
|
+
:param add_operator_props:
|
|
24282
24542
|
"""
|
|
24283
24543
|
...
|
|
24284
24544
|
|
|
@@ -24447,6 +24707,7 @@ class VIEW3D_MT_pose_ik(bpy_types._GenericUI):
|
|
|
24447
24707
|
filter_path,
|
|
24448
24708
|
display_name,
|
|
24449
24709
|
add_operator,
|
|
24710
|
+
add_operator_props,
|
|
24450
24711
|
):
|
|
24451
24712
|
"""
|
|
24452
24713
|
|
|
@@ -24458,6 +24719,7 @@ class VIEW3D_MT_pose_ik(bpy_types._GenericUI):
|
|
|
24458
24719
|
:param filter_path:
|
|
24459
24720
|
:param display_name:
|
|
24460
24721
|
:param add_operator:
|
|
24722
|
+
:param add_operator_props:
|
|
24461
24723
|
"""
|
|
24462
24724
|
...
|
|
24463
24725
|
|
|
@@ -24626,6 +24888,7 @@ class VIEW3D_MT_pose_motion(bpy_types._GenericUI):
|
|
|
24626
24888
|
filter_path,
|
|
24627
24889
|
display_name,
|
|
24628
24890
|
add_operator,
|
|
24891
|
+
add_operator_props,
|
|
24629
24892
|
):
|
|
24630
24893
|
"""
|
|
24631
24894
|
|
|
@@ -24637,6 +24900,7 @@ class VIEW3D_MT_pose_motion(bpy_types._GenericUI):
|
|
|
24637
24900
|
:param filter_path:
|
|
24638
24901
|
:param display_name:
|
|
24639
24902
|
:param add_operator:
|
|
24903
|
+
:param add_operator_props:
|
|
24640
24904
|
"""
|
|
24641
24905
|
...
|
|
24642
24906
|
|
|
@@ -24805,6 +25069,7 @@ class VIEW3D_MT_pose_names(bpy_types._GenericUI):
|
|
|
24805
25069
|
filter_path,
|
|
24806
25070
|
display_name,
|
|
24807
25071
|
add_operator,
|
|
25072
|
+
add_operator_props,
|
|
24808
25073
|
):
|
|
24809
25074
|
"""
|
|
24810
25075
|
|
|
@@ -24816,6 +25081,7 @@ class VIEW3D_MT_pose_names(bpy_types._GenericUI):
|
|
|
24816
25081
|
:param filter_path:
|
|
24817
25082
|
:param display_name:
|
|
24818
25083
|
:param add_operator:
|
|
25084
|
+
:param add_operator_props:
|
|
24819
25085
|
"""
|
|
24820
25086
|
...
|
|
24821
25087
|
|
|
@@ -24984,6 +25250,7 @@ class VIEW3D_MT_pose_propagate(bpy_types._GenericUI):
|
|
|
24984
25250
|
filter_path,
|
|
24985
25251
|
display_name,
|
|
24986
25252
|
add_operator,
|
|
25253
|
+
add_operator_props,
|
|
24987
25254
|
):
|
|
24988
25255
|
"""
|
|
24989
25256
|
|
|
@@ -24995,6 +25262,7 @@ class VIEW3D_MT_pose_propagate(bpy_types._GenericUI):
|
|
|
24995
25262
|
:param filter_path:
|
|
24996
25263
|
:param display_name:
|
|
24997
25264
|
:param add_operator:
|
|
25265
|
+
:param add_operator_props:
|
|
24998
25266
|
"""
|
|
24999
25267
|
...
|
|
25000
25268
|
|
|
@@ -25163,6 +25431,7 @@ class VIEW3D_MT_pose_showhide(bpy_types._GenericUI):
|
|
|
25163
25431
|
filter_path,
|
|
25164
25432
|
display_name,
|
|
25165
25433
|
add_operator,
|
|
25434
|
+
add_operator_props,
|
|
25166
25435
|
):
|
|
25167
25436
|
"""
|
|
25168
25437
|
|
|
@@ -25174,6 +25443,7 @@ class VIEW3D_MT_pose_showhide(bpy_types._GenericUI):
|
|
|
25174
25443
|
:param filter_path:
|
|
25175
25444
|
:param display_name:
|
|
25176
25445
|
:param add_operator:
|
|
25446
|
+
:param add_operator_props:
|
|
25177
25447
|
"""
|
|
25178
25448
|
...
|
|
25179
25449
|
|
|
@@ -25342,6 +25612,7 @@ class VIEW3D_MT_pose_slide(bpy_types._GenericUI):
|
|
|
25342
25612
|
filter_path,
|
|
25343
25613
|
display_name,
|
|
25344
25614
|
add_operator,
|
|
25615
|
+
add_operator_props,
|
|
25345
25616
|
):
|
|
25346
25617
|
"""
|
|
25347
25618
|
|
|
@@ -25353,6 +25624,7 @@ class VIEW3D_MT_pose_slide(bpy_types._GenericUI):
|
|
|
25353
25624
|
:param filter_path:
|
|
25354
25625
|
:param display_name:
|
|
25355
25626
|
:param add_operator:
|
|
25627
|
+
:param add_operator_props:
|
|
25356
25628
|
"""
|
|
25357
25629
|
...
|
|
25358
25630
|
|
|
@@ -25521,6 +25793,7 @@ class VIEW3D_MT_pose_transform(bpy_types._GenericUI):
|
|
|
25521
25793
|
filter_path,
|
|
25522
25794
|
display_name,
|
|
25523
25795
|
add_operator,
|
|
25796
|
+
add_operator_props,
|
|
25524
25797
|
):
|
|
25525
25798
|
"""
|
|
25526
25799
|
|
|
@@ -25532,6 +25805,7 @@ class VIEW3D_MT_pose_transform(bpy_types._GenericUI):
|
|
|
25532
25805
|
:param filter_path:
|
|
25533
25806
|
:param display_name:
|
|
25534
25807
|
:param add_operator:
|
|
25808
|
+
:param add_operator_props:
|
|
25535
25809
|
"""
|
|
25536
25810
|
...
|
|
25537
25811
|
|
|
@@ -25700,6 +25974,7 @@ class VIEW3D_MT_proportional_editing_falloff_pie(bpy_types._GenericUI):
|
|
|
25700
25974
|
filter_path,
|
|
25701
25975
|
display_name,
|
|
25702
25976
|
add_operator,
|
|
25977
|
+
add_operator_props,
|
|
25703
25978
|
):
|
|
25704
25979
|
"""
|
|
25705
25980
|
|
|
@@ -25711,6 +25986,7 @@ class VIEW3D_MT_proportional_editing_falloff_pie(bpy_types._GenericUI):
|
|
|
25711
25986
|
:param filter_path:
|
|
25712
25987
|
:param display_name:
|
|
25713
25988
|
:param add_operator:
|
|
25989
|
+
:param add_operator_props:
|
|
25714
25990
|
"""
|
|
25715
25991
|
...
|
|
25716
25992
|
|
|
@@ -25879,6 +26155,7 @@ class VIEW3D_MT_random_mask(bpy_types._GenericUI):
|
|
|
25879
26155
|
filter_path,
|
|
25880
26156
|
display_name,
|
|
25881
26157
|
add_operator,
|
|
26158
|
+
add_operator_props,
|
|
25882
26159
|
):
|
|
25883
26160
|
"""
|
|
25884
26161
|
|
|
@@ -25890,6 +26167,7 @@ class VIEW3D_MT_random_mask(bpy_types._GenericUI):
|
|
|
25890
26167
|
:param filter_path:
|
|
25891
26168
|
:param display_name:
|
|
25892
26169
|
:param add_operator:
|
|
26170
|
+
:param add_operator_props:
|
|
25893
26171
|
"""
|
|
25894
26172
|
...
|
|
25895
26173
|
|
|
@@ -26058,6 +26336,7 @@ class VIEW3D_MT_sculpt(bpy_types._GenericUI):
|
|
|
26058
26336
|
filter_path,
|
|
26059
26337
|
display_name,
|
|
26060
26338
|
add_operator,
|
|
26339
|
+
add_operator_props,
|
|
26061
26340
|
):
|
|
26062
26341
|
"""
|
|
26063
26342
|
|
|
@@ -26069,6 +26348,7 @@ class VIEW3D_MT_sculpt(bpy_types._GenericUI):
|
|
|
26069
26348
|
:param filter_path:
|
|
26070
26349
|
:param display_name:
|
|
26071
26350
|
:param add_operator:
|
|
26351
|
+
:param add_operator_props:
|
|
26072
26352
|
"""
|
|
26073
26353
|
...
|
|
26074
26354
|
|
|
@@ -26237,6 +26517,7 @@ class VIEW3D_MT_sculpt_automasking_pie(bpy_types._GenericUI):
|
|
|
26237
26517
|
filter_path,
|
|
26238
26518
|
display_name,
|
|
26239
26519
|
add_operator,
|
|
26520
|
+
add_operator_props,
|
|
26240
26521
|
):
|
|
26241
26522
|
"""
|
|
26242
26523
|
|
|
@@ -26248,6 +26529,7 @@ class VIEW3D_MT_sculpt_automasking_pie(bpy_types._GenericUI):
|
|
|
26248
26529
|
:param filter_path:
|
|
26249
26530
|
:param display_name:
|
|
26250
26531
|
:param add_operator:
|
|
26532
|
+
:param add_operator_props:
|
|
26251
26533
|
"""
|
|
26252
26534
|
...
|
|
26253
26535
|
|
|
@@ -26416,6 +26698,7 @@ class VIEW3D_MT_sculpt_curves(bpy_types._GenericUI):
|
|
|
26416
26698
|
filter_path,
|
|
26417
26699
|
display_name,
|
|
26418
26700
|
add_operator,
|
|
26701
|
+
add_operator_props,
|
|
26419
26702
|
):
|
|
26420
26703
|
"""
|
|
26421
26704
|
|
|
@@ -26427,6 +26710,7 @@ class VIEW3D_MT_sculpt_curves(bpy_types._GenericUI):
|
|
|
26427
26710
|
:param filter_path:
|
|
26428
26711
|
:param display_name:
|
|
26429
26712
|
:param add_operator:
|
|
26713
|
+
:param add_operator_props:
|
|
26430
26714
|
"""
|
|
26431
26715
|
...
|
|
26432
26716
|
|
|
@@ -26595,6 +26879,7 @@ class VIEW3D_MT_sculpt_face_sets_edit_pie(bpy_types._GenericUI):
|
|
|
26595
26879
|
filter_path,
|
|
26596
26880
|
display_name,
|
|
26597
26881
|
add_operator,
|
|
26882
|
+
add_operator_props,
|
|
26598
26883
|
):
|
|
26599
26884
|
"""
|
|
26600
26885
|
|
|
@@ -26606,6 +26891,7 @@ class VIEW3D_MT_sculpt_face_sets_edit_pie(bpy_types._GenericUI):
|
|
|
26606
26891
|
:param filter_path:
|
|
26607
26892
|
:param display_name:
|
|
26608
26893
|
:param add_operator:
|
|
26894
|
+
:param add_operator_props:
|
|
26609
26895
|
"""
|
|
26610
26896
|
...
|
|
26611
26897
|
|
|
@@ -26774,6 +27060,7 @@ class VIEW3D_MT_sculpt_gpencil_automasking_pie(bpy_types._GenericUI):
|
|
|
26774
27060
|
filter_path,
|
|
26775
27061
|
display_name,
|
|
26776
27062
|
add_operator,
|
|
27063
|
+
add_operator_props,
|
|
26777
27064
|
):
|
|
26778
27065
|
"""
|
|
26779
27066
|
|
|
@@ -26785,6 +27072,7 @@ class VIEW3D_MT_sculpt_gpencil_automasking_pie(bpy_types._GenericUI):
|
|
|
26785
27072
|
:param filter_path:
|
|
26786
27073
|
:param display_name:
|
|
26787
27074
|
:param add_operator:
|
|
27075
|
+
:param add_operator_props:
|
|
26788
27076
|
"""
|
|
26789
27077
|
...
|
|
26790
27078
|
|
|
@@ -26953,6 +27241,7 @@ class VIEW3D_MT_sculpt_mask_edit_pie(bpy_types._GenericUI):
|
|
|
26953
27241
|
filter_path,
|
|
26954
27242
|
display_name,
|
|
26955
27243
|
add_operator,
|
|
27244
|
+
add_operator_props,
|
|
26956
27245
|
):
|
|
26957
27246
|
"""
|
|
26958
27247
|
|
|
@@ -26964,6 +27253,7 @@ class VIEW3D_MT_sculpt_mask_edit_pie(bpy_types._GenericUI):
|
|
|
26964
27253
|
:param filter_path:
|
|
26965
27254
|
:param display_name:
|
|
26966
27255
|
:param add_operator:
|
|
27256
|
+
:param add_operator_props:
|
|
26967
27257
|
"""
|
|
26968
27258
|
...
|
|
26969
27259
|
|
|
@@ -27132,6 +27422,7 @@ class VIEW3D_MT_sculpt_set_pivot(bpy_types._GenericUI):
|
|
|
27132
27422
|
filter_path,
|
|
27133
27423
|
display_name,
|
|
27134
27424
|
add_operator,
|
|
27425
|
+
add_operator_props,
|
|
27135
27426
|
):
|
|
27136
27427
|
"""
|
|
27137
27428
|
|
|
@@ -27143,6 +27434,7 @@ class VIEW3D_MT_sculpt_set_pivot(bpy_types._GenericUI):
|
|
|
27143
27434
|
:param filter_path:
|
|
27144
27435
|
:param display_name:
|
|
27145
27436
|
:param add_operator:
|
|
27437
|
+
:param add_operator_props:
|
|
27146
27438
|
"""
|
|
27147
27439
|
...
|
|
27148
27440
|
|
|
@@ -27311,6 +27603,7 @@ class VIEW3D_MT_select_edit_armature(bpy_types._GenericUI):
|
|
|
27311
27603
|
filter_path,
|
|
27312
27604
|
display_name,
|
|
27313
27605
|
add_operator,
|
|
27606
|
+
add_operator_props,
|
|
27314
27607
|
):
|
|
27315
27608
|
"""
|
|
27316
27609
|
|
|
@@ -27322,6 +27615,7 @@ class VIEW3D_MT_select_edit_armature(bpy_types._GenericUI):
|
|
|
27322
27615
|
:param filter_path:
|
|
27323
27616
|
:param display_name:
|
|
27324
27617
|
:param add_operator:
|
|
27618
|
+
:param add_operator_props:
|
|
27325
27619
|
"""
|
|
27326
27620
|
...
|
|
27327
27621
|
|
|
@@ -27490,6 +27784,7 @@ class VIEW3D_MT_select_edit_curve(bpy_types._GenericUI):
|
|
|
27490
27784
|
filter_path,
|
|
27491
27785
|
display_name,
|
|
27492
27786
|
add_operator,
|
|
27787
|
+
add_operator_props,
|
|
27493
27788
|
):
|
|
27494
27789
|
"""
|
|
27495
27790
|
|
|
@@ -27501,6 +27796,7 @@ class VIEW3D_MT_select_edit_curve(bpy_types._GenericUI):
|
|
|
27501
27796
|
:param filter_path:
|
|
27502
27797
|
:param display_name:
|
|
27503
27798
|
:param add_operator:
|
|
27799
|
+
:param add_operator_props:
|
|
27504
27800
|
"""
|
|
27505
27801
|
...
|
|
27506
27802
|
|
|
@@ -27669,6 +27965,7 @@ class VIEW3D_MT_select_edit_curves(bpy_types._GenericUI):
|
|
|
27669
27965
|
filter_path,
|
|
27670
27966
|
display_name,
|
|
27671
27967
|
add_operator,
|
|
27968
|
+
add_operator_props,
|
|
27672
27969
|
):
|
|
27673
27970
|
"""
|
|
27674
27971
|
|
|
@@ -27680,6 +27977,7 @@ class VIEW3D_MT_select_edit_curves(bpy_types._GenericUI):
|
|
|
27680
27977
|
:param filter_path:
|
|
27681
27978
|
:param display_name:
|
|
27682
27979
|
:param add_operator:
|
|
27980
|
+
:param add_operator_props:
|
|
27683
27981
|
"""
|
|
27684
27982
|
...
|
|
27685
27983
|
|
|
@@ -27848,6 +28146,7 @@ class VIEW3D_MT_select_edit_gpencil(bpy_types._GenericUI):
|
|
|
27848
28146
|
filter_path,
|
|
27849
28147
|
display_name,
|
|
27850
28148
|
add_operator,
|
|
28149
|
+
add_operator_props,
|
|
27851
28150
|
):
|
|
27852
28151
|
"""
|
|
27853
28152
|
|
|
@@ -27859,6 +28158,7 @@ class VIEW3D_MT_select_edit_gpencil(bpy_types._GenericUI):
|
|
|
27859
28158
|
:param filter_path:
|
|
27860
28159
|
:param display_name:
|
|
27861
28160
|
:param add_operator:
|
|
28161
|
+
:param add_operator_props:
|
|
27862
28162
|
"""
|
|
27863
28163
|
...
|
|
27864
28164
|
|
|
@@ -28027,6 +28327,7 @@ class VIEW3D_MT_select_edit_grease_pencil(bpy_types._GenericUI):
|
|
|
28027
28327
|
filter_path,
|
|
28028
28328
|
display_name,
|
|
28029
28329
|
add_operator,
|
|
28330
|
+
add_operator_props,
|
|
28030
28331
|
):
|
|
28031
28332
|
"""
|
|
28032
28333
|
|
|
@@ -28038,6 +28339,7 @@ class VIEW3D_MT_select_edit_grease_pencil(bpy_types._GenericUI):
|
|
|
28038
28339
|
:param filter_path:
|
|
28039
28340
|
:param display_name:
|
|
28040
28341
|
:param add_operator:
|
|
28342
|
+
:param add_operator_props:
|
|
28041
28343
|
"""
|
|
28042
28344
|
...
|
|
28043
28345
|
|
|
@@ -28206,6 +28508,7 @@ class VIEW3D_MT_select_edit_lattice(bpy_types._GenericUI):
|
|
|
28206
28508
|
filter_path,
|
|
28207
28509
|
display_name,
|
|
28208
28510
|
add_operator,
|
|
28511
|
+
add_operator_props,
|
|
28209
28512
|
):
|
|
28210
28513
|
"""
|
|
28211
28514
|
|
|
@@ -28217,6 +28520,7 @@ class VIEW3D_MT_select_edit_lattice(bpy_types._GenericUI):
|
|
|
28217
28520
|
:param filter_path:
|
|
28218
28521
|
:param display_name:
|
|
28219
28522
|
:param add_operator:
|
|
28523
|
+
:param add_operator_props:
|
|
28220
28524
|
"""
|
|
28221
28525
|
...
|
|
28222
28526
|
|
|
@@ -28385,6 +28689,7 @@ class VIEW3D_MT_select_edit_mesh(bpy_types._GenericUI):
|
|
|
28385
28689
|
filter_path,
|
|
28386
28690
|
display_name,
|
|
28387
28691
|
add_operator,
|
|
28692
|
+
add_operator_props,
|
|
28388
28693
|
):
|
|
28389
28694
|
"""
|
|
28390
28695
|
|
|
@@ -28396,6 +28701,7 @@ class VIEW3D_MT_select_edit_mesh(bpy_types._GenericUI):
|
|
|
28396
28701
|
:param filter_path:
|
|
28397
28702
|
:param display_name:
|
|
28398
28703
|
:param add_operator:
|
|
28704
|
+
:param add_operator_props:
|
|
28399
28705
|
"""
|
|
28400
28706
|
...
|
|
28401
28707
|
|
|
@@ -28564,6 +28870,7 @@ class VIEW3D_MT_select_edit_metaball(bpy_types._GenericUI):
|
|
|
28564
28870
|
filter_path,
|
|
28565
28871
|
display_name,
|
|
28566
28872
|
add_operator,
|
|
28873
|
+
add_operator_props,
|
|
28567
28874
|
):
|
|
28568
28875
|
"""
|
|
28569
28876
|
|
|
@@ -28575,6 +28882,7 @@ class VIEW3D_MT_select_edit_metaball(bpy_types._GenericUI):
|
|
|
28575
28882
|
:param filter_path:
|
|
28576
28883
|
:param display_name:
|
|
28577
28884
|
:param add_operator:
|
|
28885
|
+
:param add_operator_props:
|
|
28578
28886
|
"""
|
|
28579
28887
|
...
|
|
28580
28888
|
|
|
@@ -28743,6 +29051,7 @@ class VIEW3D_MT_select_edit_point_cloud(bpy_types._GenericUI):
|
|
|
28743
29051
|
filter_path,
|
|
28744
29052
|
display_name,
|
|
28745
29053
|
add_operator,
|
|
29054
|
+
add_operator_props,
|
|
28746
29055
|
):
|
|
28747
29056
|
"""
|
|
28748
29057
|
|
|
@@ -28754,6 +29063,7 @@ class VIEW3D_MT_select_edit_point_cloud(bpy_types._GenericUI):
|
|
|
28754
29063
|
:param filter_path:
|
|
28755
29064
|
:param display_name:
|
|
28756
29065
|
:param add_operator:
|
|
29066
|
+
:param add_operator_props:
|
|
28757
29067
|
"""
|
|
28758
29068
|
...
|
|
28759
29069
|
|
|
@@ -28922,6 +29232,7 @@ class VIEW3D_MT_select_edit_surface(bpy_types._GenericUI):
|
|
|
28922
29232
|
filter_path,
|
|
28923
29233
|
display_name,
|
|
28924
29234
|
add_operator,
|
|
29235
|
+
add_operator_props,
|
|
28925
29236
|
):
|
|
28926
29237
|
"""
|
|
28927
29238
|
|
|
@@ -28933,6 +29244,7 @@ class VIEW3D_MT_select_edit_surface(bpy_types._GenericUI):
|
|
|
28933
29244
|
:param filter_path:
|
|
28934
29245
|
:param display_name:
|
|
28935
29246
|
:param add_operator:
|
|
29247
|
+
:param add_operator_props:
|
|
28936
29248
|
"""
|
|
28937
29249
|
...
|
|
28938
29250
|
|
|
@@ -29101,6 +29413,7 @@ class VIEW3D_MT_select_edit_text(bpy_types._GenericUI):
|
|
|
29101
29413
|
filter_path,
|
|
29102
29414
|
display_name,
|
|
29103
29415
|
add_operator,
|
|
29416
|
+
add_operator_props,
|
|
29104
29417
|
):
|
|
29105
29418
|
"""
|
|
29106
29419
|
|
|
@@ -29112,6 +29425,7 @@ class VIEW3D_MT_select_edit_text(bpy_types._GenericUI):
|
|
|
29112
29425
|
:param filter_path:
|
|
29113
29426
|
:param display_name:
|
|
29114
29427
|
:param add_operator:
|
|
29428
|
+
:param add_operator_props:
|
|
29115
29429
|
"""
|
|
29116
29430
|
...
|
|
29117
29431
|
|
|
@@ -29280,6 +29594,7 @@ class VIEW3D_MT_select_object(bpy_types._GenericUI):
|
|
|
29280
29594
|
filter_path,
|
|
29281
29595
|
display_name,
|
|
29282
29596
|
add_operator,
|
|
29597
|
+
add_operator_props,
|
|
29283
29598
|
):
|
|
29284
29599
|
"""
|
|
29285
29600
|
|
|
@@ -29291,6 +29606,7 @@ class VIEW3D_MT_select_object(bpy_types._GenericUI):
|
|
|
29291
29606
|
:param filter_path:
|
|
29292
29607
|
:param display_name:
|
|
29293
29608
|
:param add_operator:
|
|
29609
|
+
:param add_operator_props:
|
|
29294
29610
|
"""
|
|
29295
29611
|
...
|
|
29296
29612
|
|
|
@@ -29459,6 +29775,7 @@ class VIEW3D_MT_select_object_more_less(bpy_types._GenericUI):
|
|
|
29459
29775
|
filter_path,
|
|
29460
29776
|
display_name,
|
|
29461
29777
|
add_operator,
|
|
29778
|
+
add_operator_props,
|
|
29462
29779
|
):
|
|
29463
29780
|
"""
|
|
29464
29781
|
|
|
@@ -29470,6 +29787,7 @@ class VIEW3D_MT_select_object_more_less(bpy_types._GenericUI):
|
|
|
29470
29787
|
:param filter_path:
|
|
29471
29788
|
:param display_name:
|
|
29472
29789
|
:param add_operator:
|
|
29790
|
+
:param add_operator_props:
|
|
29473
29791
|
"""
|
|
29474
29792
|
...
|
|
29475
29793
|
|
|
@@ -29638,6 +29956,7 @@ class VIEW3D_MT_select_paint_mask(bpy_types._GenericUI):
|
|
|
29638
29956
|
filter_path,
|
|
29639
29957
|
display_name,
|
|
29640
29958
|
add_operator,
|
|
29959
|
+
add_operator_props,
|
|
29641
29960
|
):
|
|
29642
29961
|
"""
|
|
29643
29962
|
|
|
@@ -29649,6 +29968,7 @@ class VIEW3D_MT_select_paint_mask(bpy_types._GenericUI):
|
|
|
29649
29968
|
:param filter_path:
|
|
29650
29969
|
:param display_name:
|
|
29651
29970
|
:param add_operator:
|
|
29971
|
+
:param add_operator_props:
|
|
29652
29972
|
"""
|
|
29653
29973
|
...
|
|
29654
29974
|
|
|
@@ -29817,6 +30137,7 @@ class VIEW3D_MT_select_paint_mask_vertex(bpy_types._GenericUI):
|
|
|
29817
30137
|
filter_path,
|
|
29818
30138
|
display_name,
|
|
29819
30139
|
add_operator,
|
|
30140
|
+
add_operator_props,
|
|
29820
30141
|
):
|
|
29821
30142
|
"""
|
|
29822
30143
|
|
|
@@ -29828,6 +30149,7 @@ class VIEW3D_MT_select_paint_mask_vertex(bpy_types._GenericUI):
|
|
|
29828
30149
|
:param filter_path:
|
|
29829
30150
|
:param display_name:
|
|
29830
30151
|
:param add_operator:
|
|
30152
|
+
:param add_operator_props:
|
|
29831
30153
|
"""
|
|
29832
30154
|
...
|
|
29833
30155
|
|
|
@@ -29996,6 +30318,7 @@ class VIEW3D_MT_select_particle(bpy_types._GenericUI):
|
|
|
29996
30318
|
filter_path,
|
|
29997
30319
|
display_name,
|
|
29998
30320
|
add_operator,
|
|
30321
|
+
add_operator_props,
|
|
29999
30322
|
):
|
|
30000
30323
|
"""
|
|
30001
30324
|
|
|
@@ -30007,6 +30330,7 @@ class VIEW3D_MT_select_particle(bpy_types._GenericUI):
|
|
|
30007
30330
|
:param filter_path:
|
|
30008
30331
|
:param display_name:
|
|
30009
30332
|
:param add_operator:
|
|
30333
|
+
:param add_operator_props:
|
|
30010
30334
|
"""
|
|
30011
30335
|
...
|
|
30012
30336
|
|
|
@@ -30175,6 +30499,7 @@ class VIEW3D_MT_select_pose(bpy_types._GenericUI):
|
|
|
30175
30499
|
filter_path,
|
|
30176
30500
|
display_name,
|
|
30177
30501
|
add_operator,
|
|
30502
|
+
add_operator_props,
|
|
30178
30503
|
):
|
|
30179
30504
|
"""
|
|
30180
30505
|
|
|
@@ -30186,6 +30511,7 @@ class VIEW3D_MT_select_pose(bpy_types._GenericUI):
|
|
|
30186
30511
|
:param filter_path:
|
|
30187
30512
|
:param display_name:
|
|
30188
30513
|
:param add_operator:
|
|
30514
|
+
:param add_operator_props:
|
|
30189
30515
|
"""
|
|
30190
30516
|
...
|
|
30191
30517
|
|
|
@@ -30354,6 +30680,7 @@ class VIEW3D_MT_select_pose_more_less(bpy_types._GenericUI):
|
|
|
30354
30680
|
filter_path,
|
|
30355
30681
|
display_name,
|
|
30356
30682
|
add_operator,
|
|
30683
|
+
add_operator_props,
|
|
30357
30684
|
):
|
|
30358
30685
|
"""
|
|
30359
30686
|
|
|
@@ -30365,6 +30692,7 @@ class VIEW3D_MT_select_pose_more_less(bpy_types._GenericUI):
|
|
|
30365
30692
|
:param filter_path:
|
|
30366
30693
|
:param display_name:
|
|
30367
30694
|
:param add_operator:
|
|
30695
|
+
:param add_operator_props:
|
|
30368
30696
|
"""
|
|
30369
30697
|
...
|
|
30370
30698
|
|
|
@@ -30533,6 +30861,7 @@ class VIEW3D_MT_select_sculpt_curves(bpy_types._GenericUI):
|
|
|
30533
30861
|
filter_path,
|
|
30534
30862
|
display_name,
|
|
30535
30863
|
add_operator,
|
|
30864
|
+
add_operator_props,
|
|
30536
30865
|
):
|
|
30537
30866
|
"""
|
|
30538
30867
|
|
|
@@ -30544,6 +30873,7 @@ class VIEW3D_MT_select_sculpt_curves(bpy_types._GenericUI):
|
|
|
30544
30873
|
:param filter_path:
|
|
30545
30874
|
:param display_name:
|
|
30546
30875
|
:param add_operator:
|
|
30876
|
+
:param add_operator_props:
|
|
30547
30877
|
"""
|
|
30548
30878
|
...
|
|
30549
30879
|
|
|
@@ -30712,6 +31042,7 @@ class VIEW3D_MT_shading_ex_pie(bpy_types._GenericUI):
|
|
|
30712
31042
|
filter_path,
|
|
30713
31043
|
display_name,
|
|
30714
31044
|
add_operator,
|
|
31045
|
+
add_operator_props,
|
|
30715
31046
|
):
|
|
30716
31047
|
"""
|
|
30717
31048
|
|
|
@@ -30723,6 +31054,7 @@ class VIEW3D_MT_shading_ex_pie(bpy_types._GenericUI):
|
|
|
30723
31054
|
:param filter_path:
|
|
30724
31055
|
:param display_name:
|
|
30725
31056
|
:param add_operator:
|
|
31057
|
+
:param add_operator_props:
|
|
30726
31058
|
"""
|
|
30727
31059
|
...
|
|
30728
31060
|
|
|
@@ -30891,6 +31223,7 @@ class VIEW3D_MT_shading_pie(bpy_types._GenericUI):
|
|
|
30891
31223
|
filter_path,
|
|
30892
31224
|
display_name,
|
|
30893
31225
|
add_operator,
|
|
31226
|
+
add_operator_props,
|
|
30894
31227
|
):
|
|
30895
31228
|
"""
|
|
30896
31229
|
|
|
@@ -30902,6 +31235,7 @@ class VIEW3D_MT_shading_pie(bpy_types._GenericUI):
|
|
|
30902
31235
|
:param filter_path:
|
|
30903
31236
|
:param display_name:
|
|
30904
31237
|
:param add_operator:
|
|
31238
|
+
:param add_operator_props:
|
|
30905
31239
|
"""
|
|
30906
31240
|
...
|
|
30907
31241
|
|
|
@@ -31070,6 +31404,7 @@ class VIEW3D_MT_snap(bpy_types._GenericUI):
|
|
|
31070
31404
|
filter_path,
|
|
31071
31405
|
display_name,
|
|
31072
31406
|
add_operator,
|
|
31407
|
+
add_operator_props,
|
|
31073
31408
|
):
|
|
31074
31409
|
"""
|
|
31075
31410
|
|
|
@@ -31081,6 +31416,7 @@ class VIEW3D_MT_snap(bpy_types._GenericUI):
|
|
|
31081
31416
|
:param filter_path:
|
|
31082
31417
|
:param display_name:
|
|
31083
31418
|
:param add_operator:
|
|
31419
|
+
:param add_operator_props:
|
|
31084
31420
|
"""
|
|
31085
31421
|
...
|
|
31086
31422
|
|
|
@@ -31249,6 +31585,7 @@ class VIEW3D_MT_snap_pie(bpy_types._GenericUI):
|
|
|
31249
31585
|
filter_path,
|
|
31250
31586
|
display_name,
|
|
31251
31587
|
add_operator,
|
|
31588
|
+
add_operator_props,
|
|
31252
31589
|
):
|
|
31253
31590
|
"""
|
|
31254
31591
|
|
|
@@ -31260,6 +31597,7 @@ class VIEW3D_MT_snap_pie(bpy_types._GenericUI):
|
|
|
31260
31597
|
:param filter_path:
|
|
31261
31598
|
:param display_name:
|
|
31262
31599
|
:param add_operator:
|
|
31600
|
+
:param add_operator_props:
|
|
31263
31601
|
"""
|
|
31264
31602
|
...
|
|
31265
31603
|
|
|
@@ -31434,6 +31772,7 @@ class VIEW3D_MT_surface_add(bpy_types._GenericUI):
|
|
|
31434
31772
|
filter_path,
|
|
31435
31773
|
display_name,
|
|
31436
31774
|
add_operator,
|
|
31775
|
+
add_operator_props,
|
|
31437
31776
|
):
|
|
31438
31777
|
"""
|
|
31439
31778
|
|
|
@@ -31445,6 +31784,7 @@ class VIEW3D_MT_surface_add(bpy_types._GenericUI):
|
|
|
31445
31784
|
:param filter_path:
|
|
31446
31785
|
:param display_name:
|
|
31447
31786
|
:param add_operator:
|
|
31787
|
+
:param add_operator_props:
|
|
31448
31788
|
"""
|
|
31449
31789
|
...
|
|
31450
31790
|
|
|
@@ -31616,6 +31956,7 @@ class VIEW3D_MT_transform(bpy_types._GenericUI):
|
|
|
31616
31956
|
filter_path,
|
|
31617
31957
|
display_name,
|
|
31618
31958
|
add_operator,
|
|
31959
|
+
add_operator_props,
|
|
31619
31960
|
):
|
|
31620
31961
|
"""
|
|
31621
31962
|
|
|
@@ -31627,6 +31968,7 @@ class VIEW3D_MT_transform(bpy_types._GenericUI):
|
|
|
31627
31968
|
:param filter_path:
|
|
31628
31969
|
:param display_name:
|
|
31629
31970
|
:param add_operator:
|
|
31971
|
+
:param add_operator_props:
|
|
31630
31972
|
"""
|
|
31631
31973
|
...
|
|
31632
31974
|
|
|
@@ -31798,6 +32140,7 @@ class VIEW3D_MT_transform_armature(bpy_types._GenericUI):
|
|
|
31798
32140
|
filter_path,
|
|
31799
32141
|
display_name,
|
|
31800
32142
|
add_operator,
|
|
32143
|
+
add_operator_props,
|
|
31801
32144
|
):
|
|
31802
32145
|
"""
|
|
31803
32146
|
|
|
@@ -31809,6 +32152,7 @@ class VIEW3D_MT_transform_armature(bpy_types._GenericUI):
|
|
|
31809
32152
|
:param filter_path:
|
|
31810
32153
|
:param display_name:
|
|
31811
32154
|
:param add_operator:
|
|
32155
|
+
:param add_operator_props:
|
|
31812
32156
|
"""
|
|
31813
32157
|
...
|
|
31814
32158
|
|
|
@@ -31993,6 +32337,7 @@ class VIEW3D_MT_transform_gizmo_pie(bpy_types._GenericUI):
|
|
|
31993
32337
|
filter_path,
|
|
31994
32338
|
display_name,
|
|
31995
32339
|
add_operator,
|
|
32340
|
+
add_operator_props,
|
|
31996
32341
|
):
|
|
31997
32342
|
"""
|
|
31998
32343
|
|
|
@@ -32004,6 +32349,7 @@ class VIEW3D_MT_transform_gizmo_pie(bpy_types._GenericUI):
|
|
|
32004
32349
|
:param filter_path:
|
|
32005
32350
|
:param display_name:
|
|
32006
32351
|
:param add_operator:
|
|
32352
|
+
:param add_operator_props:
|
|
32007
32353
|
"""
|
|
32008
32354
|
...
|
|
32009
32355
|
|
|
@@ -32175,6 +32521,7 @@ class VIEW3D_MT_transform_object(bpy_types._GenericUI):
|
|
|
32175
32521
|
filter_path,
|
|
32176
32522
|
display_name,
|
|
32177
32523
|
add_operator,
|
|
32524
|
+
add_operator_props,
|
|
32178
32525
|
):
|
|
32179
32526
|
"""
|
|
32180
32527
|
|
|
@@ -32186,6 +32533,7 @@ class VIEW3D_MT_transform_object(bpy_types._GenericUI):
|
|
|
32186
32533
|
:param filter_path:
|
|
32187
32534
|
:param display_name:
|
|
32188
32535
|
:param add_operator:
|
|
32536
|
+
:param add_operator_props:
|
|
32189
32537
|
"""
|
|
32190
32538
|
...
|
|
32191
32539
|
|
|
@@ -32354,6 +32702,7 @@ class VIEW3D_MT_uv_map(bpy_types._GenericUI):
|
|
|
32354
32702
|
filter_path,
|
|
32355
32703
|
display_name,
|
|
32356
32704
|
add_operator,
|
|
32705
|
+
add_operator_props,
|
|
32357
32706
|
):
|
|
32358
32707
|
"""
|
|
32359
32708
|
|
|
@@ -32365,6 +32714,7 @@ class VIEW3D_MT_uv_map(bpy_types._GenericUI):
|
|
|
32365
32714
|
:param filter_path:
|
|
32366
32715
|
:param display_name:
|
|
32367
32716
|
:param add_operator:
|
|
32717
|
+
:param add_operator_props:
|
|
32368
32718
|
"""
|
|
32369
32719
|
...
|
|
32370
32720
|
|
|
@@ -32533,6 +32883,7 @@ class VIEW3D_MT_vertex_group(bpy_types._GenericUI):
|
|
|
32533
32883
|
filter_path,
|
|
32534
32884
|
display_name,
|
|
32535
32885
|
add_operator,
|
|
32886
|
+
add_operator_props,
|
|
32536
32887
|
):
|
|
32537
32888
|
"""
|
|
32538
32889
|
|
|
@@ -32544,6 +32895,7 @@ class VIEW3D_MT_vertex_group(bpy_types._GenericUI):
|
|
|
32544
32895
|
:param filter_path:
|
|
32545
32896
|
:param display_name:
|
|
32546
32897
|
:param add_operator:
|
|
32898
|
+
:param add_operator_props:
|
|
32547
32899
|
"""
|
|
32548
32900
|
...
|
|
32549
32901
|
|
|
@@ -32712,6 +33064,7 @@ class VIEW3D_MT_view(bpy_types._GenericUI):
|
|
|
32712
33064
|
filter_path,
|
|
32713
33065
|
display_name,
|
|
32714
33066
|
add_operator,
|
|
33067
|
+
add_operator_props,
|
|
32715
33068
|
):
|
|
32716
33069
|
"""
|
|
32717
33070
|
|
|
@@ -32723,6 +33076,7 @@ class VIEW3D_MT_view(bpy_types._GenericUI):
|
|
|
32723
33076
|
:param filter_path:
|
|
32724
33077
|
:param display_name:
|
|
32725
33078
|
:param add_operator:
|
|
33079
|
+
:param add_operator_props:
|
|
32726
33080
|
"""
|
|
32727
33081
|
...
|
|
32728
33082
|
|
|
@@ -32891,6 +33245,7 @@ class VIEW3D_MT_view_align(bpy_types._GenericUI):
|
|
|
32891
33245
|
filter_path,
|
|
32892
33246
|
display_name,
|
|
32893
33247
|
add_operator,
|
|
33248
|
+
add_operator_props,
|
|
32894
33249
|
):
|
|
32895
33250
|
"""
|
|
32896
33251
|
|
|
@@ -32902,6 +33257,7 @@ class VIEW3D_MT_view_align(bpy_types._GenericUI):
|
|
|
32902
33257
|
:param filter_path:
|
|
32903
33258
|
:param display_name:
|
|
32904
33259
|
:param add_operator:
|
|
33260
|
+
:param add_operator_props:
|
|
32905
33261
|
"""
|
|
32906
33262
|
...
|
|
32907
33263
|
|
|
@@ -33070,6 +33426,7 @@ class VIEW3D_MT_view_align_selected(bpy_types._GenericUI):
|
|
|
33070
33426
|
filter_path,
|
|
33071
33427
|
display_name,
|
|
33072
33428
|
add_operator,
|
|
33429
|
+
add_operator_props,
|
|
33073
33430
|
):
|
|
33074
33431
|
"""
|
|
33075
33432
|
|
|
@@ -33081,6 +33438,7 @@ class VIEW3D_MT_view_align_selected(bpy_types._GenericUI):
|
|
|
33081
33438
|
:param filter_path:
|
|
33082
33439
|
:param display_name:
|
|
33083
33440
|
:param add_operator:
|
|
33441
|
+
:param add_operator_props:
|
|
33084
33442
|
"""
|
|
33085
33443
|
...
|
|
33086
33444
|
|
|
@@ -33249,6 +33607,7 @@ class VIEW3D_MT_view_cameras(bpy_types._GenericUI):
|
|
|
33249
33607
|
filter_path,
|
|
33250
33608
|
display_name,
|
|
33251
33609
|
add_operator,
|
|
33610
|
+
add_operator_props,
|
|
33252
33611
|
):
|
|
33253
33612
|
"""
|
|
33254
33613
|
|
|
@@ -33260,6 +33619,7 @@ class VIEW3D_MT_view_cameras(bpy_types._GenericUI):
|
|
|
33260
33619
|
:param filter_path:
|
|
33261
33620
|
:param display_name:
|
|
33262
33621
|
:param add_operator:
|
|
33622
|
+
:param add_operator_props:
|
|
33263
33623
|
"""
|
|
33264
33624
|
...
|
|
33265
33625
|
|
|
@@ -33428,6 +33788,7 @@ class VIEW3D_MT_view_local(bpy_types._GenericUI):
|
|
|
33428
33788
|
filter_path,
|
|
33429
33789
|
display_name,
|
|
33430
33790
|
add_operator,
|
|
33791
|
+
add_operator_props,
|
|
33431
33792
|
):
|
|
33432
33793
|
"""
|
|
33433
33794
|
|
|
@@ -33439,6 +33800,7 @@ class VIEW3D_MT_view_local(bpy_types._GenericUI):
|
|
|
33439
33800
|
:param filter_path:
|
|
33440
33801
|
:param display_name:
|
|
33441
33802
|
:param add_operator:
|
|
33803
|
+
:param add_operator_props:
|
|
33442
33804
|
"""
|
|
33443
33805
|
...
|
|
33444
33806
|
|
|
@@ -33607,6 +33969,7 @@ class VIEW3D_MT_view_navigation(bpy_types._GenericUI):
|
|
|
33607
33969
|
filter_path,
|
|
33608
33970
|
display_name,
|
|
33609
33971
|
add_operator,
|
|
33972
|
+
add_operator_props,
|
|
33610
33973
|
):
|
|
33611
33974
|
"""
|
|
33612
33975
|
|
|
@@ -33618,6 +33981,7 @@ class VIEW3D_MT_view_navigation(bpy_types._GenericUI):
|
|
|
33618
33981
|
:param filter_path:
|
|
33619
33982
|
:param display_name:
|
|
33620
33983
|
:param add_operator:
|
|
33984
|
+
:param add_operator_props:
|
|
33621
33985
|
"""
|
|
33622
33986
|
...
|
|
33623
33987
|
|
|
@@ -33789,6 +34153,7 @@ class VIEW3D_MT_view_pie(bpy_types._GenericUI):
|
|
|
33789
34153
|
filter_path,
|
|
33790
34154
|
display_name,
|
|
33791
34155
|
add_operator,
|
|
34156
|
+
add_operator_props,
|
|
33792
34157
|
):
|
|
33793
34158
|
"""
|
|
33794
34159
|
|
|
@@ -33800,6 +34165,7 @@ class VIEW3D_MT_view_pie(bpy_types._GenericUI):
|
|
|
33800
34165
|
:param filter_path:
|
|
33801
34166
|
:param display_name:
|
|
33802
34167
|
:param add_operator:
|
|
34168
|
+
:param add_operator_props:
|
|
33803
34169
|
"""
|
|
33804
34170
|
...
|
|
33805
34171
|
|
|
@@ -33968,6 +34334,7 @@ class VIEW3D_MT_view_regions(bpy_types._GenericUI):
|
|
|
33968
34334
|
filter_path,
|
|
33969
34335
|
display_name,
|
|
33970
34336
|
add_operator,
|
|
34337
|
+
add_operator_props,
|
|
33971
34338
|
):
|
|
33972
34339
|
"""
|
|
33973
34340
|
|
|
@@ -33979,6 +34346,7 @@ class VIEW3D_MT_view_regions(bpy_types._GenericUI):
|
|
|
33979
34346
|
:param filter_path:
|
|
33980
34347
|
:param display_name:
|
|
33981
34348
|
:param add_operator:
|
|
34349
|
+
:param add_operator_props:
|
|
33982
34350
|
"""
|
|
33983
34351
|
...
|
|
33984
34352
|
|
|
@@ -34147,6 +34515,7 @@ class VIEW3D_MT_view_viewpoint(bpy_types._GenericUI):
|
|
|
34147
34515
|
filter_path,
|
|
34148
34516
|
display_name,
|
|
34149
34517
|
add_operator,
|
|
34518
|
+
add_operator_props,
|
|
34150
34519
|
):
|
|
34151
34520
|
"""
|
|
34152
34521
|
|
|
@@ -34158,6 +34527,7 @@ class VIEW3D_MT_view_viewpoint(bpy_types._GenericUI):
|
|
|
34158
34527
|
:param filter_path:
|
|
34159
34528
|
:param display_name:
|
|
34160
34529
|
:param add_operator:
|
|
34530
|
+
:param add_operator_props:
|
|
34161
34531
|
"""
|
|
34162
34532
|
...
|
|
34163
34533
|
|
|
@@ -34335,6 +34705,7 @@ class VIEW3D_MT_volume_add(bpy_types._GenericUI):
|
|
|
34335
34705
|
filter_path,
|
|
34336
34706
|
display_name,
|
|
34337
34707
|
add_operator,
|
|
34708
|
+
add_operator_props,
|
|
34338
34709
|
):
|
|
34339
34710
|
"""
|
|
34340
34711
|
|
|
@@ -34346,6 +34717,7 @@ class VIEW3D_MT_volume_add(bpy_types._GenericUI):
|
|
|
34346
34717
|
:param filter_path:
|
|
34347
34718
|
:param display_name:
|
|
34348
34719
|
:param add_operator:
|
|
34720
|
+
:param add_operator_props:
|
|
34349
34721
|
"""
|
|
34350
34722
|
...
|
|
34351
34723
|
|
|
@@ -34514,6 +34886,7 @@ class VIEW3D_MT_weight_gpencil(bpy_types._GenericUI):
|
|
|
34514
34886
|
filter_path,
|
|
34515
34887
|
display_name,
|
|
34516
34888
|
add_operator,
|
|
34889
|
+
add_operator_props,
|
|
34517
34890
|
):
|
|
34518
34891
|
"""
|
|
34519
34892
|
|
|
@@ -34525,6 +34898,7 @@ class VIEW3D_MT_weight_gpencil(bpy_types._GenericUI):
|
|
|
34525
34898
|
:param filter_path:
|
|
34526
34899
|
:param display_name:
|
|
34527
34900
|
:param add_operator:
|
|
34901
|
+
:param add_operator_props:
|
|
34528
34902
|
"""
|
|
34529
34903
|
...
|
|
34530
34904
|
|
|
@@ -34693,6 +35067,7 @@ class VIEW3D_MT_wpaint_vgroup_lock_pie(bpy_types._GenericUI):
|
|
|
34693
35067
|
filter_path,
|
|
34694
35068
|
display_name,
|
|
34695
35069
|
add_operator,
|
|
35070
|
+
add_operator_props,
|
|
34696
35071
|
):
|
|
34697
35072
|
"""
|
|
34698
35073
|
|
|
@@ -34704,6 +35079,7 @@ class VIEW3D_MT_wpaint_vgroup_lock_pie(bpy_types._GenericUI):
|
|
|
34704
35079
|
:param filter_path:
|
|
34705
35080
|
:param display_name:
|
|
34706
35081
|
:param add_operator:
|
|
35082
|
+
:param add_operator_props:
|
|
34707
35083
|
"""
|
|
34708
35084
|
...
|
|
34709
35085
|
|
|
@@ -44719,6 +45095,7 @@ class VIEW3D_MT_bone_options_disable(BoneOptions):
|
|
|
44719
45095
|
filter_path,
|
|
44720
45096
|
display_name,
|
|
44721
45097
|
add_operator,
|
|
45098
|
+
add_operator_props,
|
|
44722
45099
|
):
|
|
44723
45100
|
"""
|
|
44724
45101
|
|
|
@@ -44730,6 +45107,7 @@ class VIEW3D_MT_bone_options_disable(BoneOptions):
|
|
|
44730
45107
|
:param filter_path:
|
|
44731
45108
|
:param display_name:
|
|
44732
45109
|
:param add_operator:
|
|
45110
|
+
:param add_operator_props:
|
|
44733
45111
|
"""
|
|
44734
45112
|
...
|
|
44735
45113
|
|
|
@@ -44901,6 +45279,7 @@ class VIEW3D_MT_bone_options_enable(BoneOptions):
|
|
|
44901
45279
|
filter_path,
|
|
44902
45280
|
display_name,
|
|
44903
45281
|
add_operator,
|
|
45282
|
+
add_operator_props,
|
|
44904
45283
|
):
|
|
44905
45284
|
"""
|
|
44906
45285
|
|
|
@@ -44912,6 +45291,7 @@ class VIEW3D_MT_bone_options_enable(BoneOptions):
|
|
|
44912
45291
|
:param filter_path:
|
|
44913
45292
|
:param display_name:
|
|
44914
45293
|
:param add_operator:
|
|
45294
|
+
:param add_operator_props:
|
|
44915
45295
|
"""
|
|
44916
45296
|
...
|
|
44917
45297
|
|
|
@@ -45083,6 +45463,7 @@ class VIEW3D_MT_bone_options_toggle(BoneOptions):
|
|
|
45083
45463
|
filter_path,
|
|
45084
45464
|
display_name,
|
|
45085
45465
|
add_operator,
|
|
45466
|
+
add_operator_props,
|
|
45086
45467
|
):
|
|
45087
45468
|
"""
|
|
45088
45469
|
|
|
@@ -45094,6 +45475,7 @@ class VIEW3D_MT_bone_options_toggle(BoneOptions):
|
|
|
45094
45475
|
:param filter_path:
|
|
45095
45476
|
:param display_name:
|
|
45096
45477
|
:param add_operator:
|
|
45478
|
+
:param add_operator_props:
|
|
45097
45479
|
"""
|
|
45098
45480
|
...
|
|
45099
45481
|
|