fake-bpy-module 20240408__py3-none-any.whl → 20240410__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- 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/graph/__init__.pyi +0 -3
- bpy/ops/nla/__init__.pyi +3 -3
- 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-20240410.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/RECORD +65 -63
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240410.dist-info}/top_level.txt +0 -0
|
@@ -3640,6 +3640,7 @@ class WM_MT_operator_presets(bpy_types._GenericUI):
|
|
|
3640
3640
|
filter_path,
|
|
3641
3641
|
display_name,
|
|
3642
3642
|
add_operator,
|
|
3643
|
+
add_operator_props,
|
|
3643
3644
|
):
|
|
3644
3645
|
"""
|
|
3645
3646
|
|
|
@@ -3651,6 +3652,7 @@ class WM_MT_operator_presets(bpy_types._GenericUI):
|
|
|
3651
3652
|
:param filter_path:
|
|
3652
3653
|
:param display_name:
|
|
3653
3654
|
:param add_operator:
|
|
3655
|
+
:param add_operator_props:
|
|
3654
3656
|
"""
|
|
3655
3657
|
...
|
|
3656
3658
|
|
|
@@ -3820,3 +3822,202 @@ class WM_OT_operator_presets_cleanup(bpy_types.Operator):
|
|
|
3820
3822
|
def values(self):
|
|
3821
3823
|
""" """
|
|
3822
3824
|
...
|
|
3825
|
+
|
|
3826
|
+
class WM_PT_operator_presets(bpy_types._GenericUI):
|
|
3827
|
+
""" """
|
|
3828
|
+
|
|
3829
|
+
bl_label: typing.Any
|
|
3830
|
+
""" """
|
|
3831
|
+
|
|
3832
|
+
bl_region_type: typing.Any
|
|
3833
|
+
""" """
|
|
3834
|
+
|
|
3835
|
+
bl_rna: typing.Any
|
|
3836
|
+
""" """
|
|
3837
|
+
|
|
3838
|
+
bl_space_type: typing.Any
|
|
3839
|
+
""" """
|
|
3840
|
+
|
|
3841
|
+
id_data: typing.Any
|
|
3842
|
+
""" """
|
|
3843
|
+
|
|
3844
|
+
preset_add_operator: typing.Any
|
|
3845
|
+
""" """
|
|
3846
|
+
|
|
3847
|
+
preset_add_operator_properties: typing.Any
|
|
3848
|
+
""" """
|
|
3849
|
+
|
|
3850
|
+
preset_operator: typing.Any
|
|
3851
|
+
""" """
|
|
3852
|
+
|
|
3853
|
+
preset_subdir: typing.Any
|
|
3854
|
+
""" """
|
|
3855
|
+
|
|
3856
|
+
def append(self, draw_func):
|
|
3857
|
+
"""
|
|
3858
|
+
|
|
3859
|
+
:param draw_func:
|
|
3860
|
+
"""
|
|
3861
|
+
...
|
|
3862
|
+
|
|
3863
|
+
def as_pointer(self):
|
|
3864
|
+
""" """
|
|
3865
|
+
...
|
|
3866
|
+
|
|
3867
|
+
def bl_rna_get_subclass(self):
|
|
3868
|
+
""" """
|
|
3869
|
+
...
|
|
3870
|
+
|
|
3871
|
+
def bl_rna_get_subclass_py(self):
|
|
3872
|
+
""" """
|
|
3873
|
+
...
|
|
3874
|
+
|
|
3875
|
+
def draw(self, context):
|
|
3876
|
+
"""
|
|
3877
|
+
|
|
3878
|
+
:param context:
|
|
3879
|
+
"""
|
|
3880
|
+
...
|
|
3881
|
+
|
|
3882
|
+
def draw_menu(self, layout, text):
|
|
3883
|
+
"""
|
|
3884
|
+
|
|
3885
|
+
:param layout:
|
|
3886
|
+
:param text:
|
|
3887
|
+
"""
|
|
3888
|
+
...
|
|
3889
|
+
|
|
3890
|
+
def draw_panel_header(self, layout):
|
|
3891
|
+
"""
|
|
3892
|
+
|
|
3893
|
+
:param layout:
|
|
3894
|
+
"""
|
|
3895
|
+
...
|
|
3896
|
+
|
|
3897
|
+
def driver_add(self):
|
|
3898
|
+
""" """
|
|
3899
|
+
...
|
|
3900
|
+
|
|
3901
|
+
def driver_remove(self):
|
|
3902
|
+
""" """
|
|
3903
|
+
...
|
|
3904
|
+
|
|
3905
|
+
def get(self):
|
|
3906
|
+
""" """
|
|
3907
|
+
...
|
|
3908
|
+
|
|
3909
|
+
def id_properties_clear(self):
|
|
3910
|
+
""" """
|
|
3911
|
+
...
|
|
3912
|
+
|
|
3913
|
+
def id_properties_ensure(self):
|
|
3914
|
+
""" """
|
|
3915
|
+
...
|
|
3916
|
+
|
|
3917
|
+
def id_properties_ui(self):
|
|
3918
|
+
""" """
|
|
3919
|
+
...
|
|
3920
|
+
|
|
3921
|
+
def is_extended(self):
|
|
3922
|
+
""" """
|
|
3923
|
+
...
|
|
3924
|
+
|
|
3925
|
+
def is_property_hidden(self):
|
|
3926
|
+
""" """
|
|
3927
|
+
...
|
|
3928
|
+
|
|
3929
|
+
def is_property_overridable_library(self):
|
|
3930
|
+
""" """
|
|
3931
|
+
...
|
|
3932
|
+
|
|
3933
|
+
def is_property_readonly(self):
|
|
3934
|
+
""" """
|
|
3935
|
+
...
|
|
3936
|
+
|
|
3937
|
+
def is_property_set(self):
|
|
3938
|
+
""" """
|
|
3939
|
+
...
|
|
3940
|
+
|
|
3941
|
+
def items(self):
|
|
3942
|
+
""" """
|
|
3943
|
+
...
|
|
3944
|
+
|
|
3945
|
+
def keyframe_delete(self):
|
|
3946
|
+
""" """
|
|
3947
|
+
...
|
|
3948
|
+
|
|
3949
|
+
def keyframe_insert(self):
|
|
3950
|
+
""" """
|
|
3951
|
+
...
|
|
3952
|
+
|
|
3953
|
+
def keys(self):
|
|
3954
|
+
""" """
|
|
3955
|
+
...
|
|
3956
|
+
|
|
3957
|
+
def path_from_id(self):
|
|
3958
|
+
""" """
|
|
3959
|
+
...
|
|
3960
|
+
|
|
3961
|
+
def path_menu(
|
|
3962
|
+
self,
|
|
3963
|
+
searchpaths,
|
|
3964
|
+
operator,
|
|
3965
|
+
props_default,
|
|
3966
|
+
prop_filepath,
|
|
3967
|
+
filter_ext,
|
|
3968
|
+
filter_path,
|
|
3969
|
+
display_name,
|
|
3970
|
+
add_operator,
|
|
3971
|
+
add_operator_props,
|
|
3972
|
+
):
|
|
3973
|
+
"""
|
|
3974
|
+
|
|
3975
|
+
:param searchpaths:
|
|
3976
|
+
:param operator:
|
|
3977
|
+
:param props_default:
|
|
3978
|
+
:param prop_filepath:
|
|
3979
|
+
:param filter_ext:
|
|
3980
|
+
:param filter_path:
|
|
3981
|
+
:param display_name:
|
|
3982
|
+
:param add_operator:
|
|
3983
|
+
:param add_operator_props:
|
|
3984
|
+
"""
|
|
3985
|
+
...
|
|
3986
|
+
|
|
3987
|
+
def path_resolve(self):
|
|
3988
|
+
""" """
|
|
3989
|
+
...
|
|
3990
|
+
|
|
3991
|
+
def pop(self):
|
|
3992
|
+
""" """
|
|
3993
|
+
...
|
|
3994
|
+
|
|
3995
|
+
def prepend(self, draw_func):
|
|
3996
|
+
"""
|
|
3997
|
+
|
|
3998
|
+
:param draw_func:
|
|
3999
|
+
"""
|
|
4000
|
+
...
|
|
4001
|
+
|
|
4002
|
+
def property_overridable_library_set(self):
|
|
4003
|
+
""" """
|
|
4004
|
+
...
|
|
4005
|
+
|
|
4006
|
+
def property_unset(self):
|
|
4007
|
+
""" """
|
|
4008
|
+
...
|
|
4009
|
+
|
|
4010
|
+
def remove(self, draw_func):
|
|
4011
|
+
"""
|
|
4012
|
+
|
|
4013
|
+
:param draw_func:
|
|
4014
|
+
"""
|
|
4015
|
+
...
|
|
4016
|
+
|
|
4017
|
+
def type_recast(self):
|
|
4018
|
+
""" """
|
|
4019
|
+
...
|
|
4020
|
+
|
|
4021
|
+
def values(self):
|
|
4022
|
+
""" """
|
|
4023
|
+
...
|
bl_operators/wm/__init__.pyi
CHANGED
|
@@ -235,6 +235,7 @@ class WM_MT_region_toggle_pie(bpy_types._GenericUI):
|
|
|
235
235
|
filter_path,
|
|
236
236
|
display_name,
|
|
237
237
|
add_operator,
|
|
238
|
+
add_operator_props,
|
|
238
239
|
):
|
|
239
240
|
"""
|
|
240
241
|
|
|
@@ -246,6 +247,7 @@ class WM_MT_region_toggle_pie(bpy_types._GenericUI):
|
|
|
246
247
|
:param filter_path:
|
|
247
248
|
:param display_name:
|
|
248
249
|
:param add_operator:
|
|
250
|
+
:param add_operator_props:
|
|
249
251
|
"""
|
|
250
252
|
...
|
|
251
253
|
|
|
@@ -421,6 +423,7 @@ class WM_MT_splash(bpy_types._GenericUI):
|
|
|
421
423
|
filter_path,
|
|
422
424
|
display_name,
|
|
423
425
|
add_operator,
|
|
426
|
+
add_operator_props,
|
|
424
427
|
):
|
|
425
428
|
"""
|
|
426
429
|
|
|
@@ -432,6 +435,7 @@ class WM_MT_splash(bpy_types._GenericUI):
|
|
|
432
435
|
:param filter_path:
|
|
433
436
|
:param display_name:
|
|
434
437
|
:param add_operator:
|
|
438
|
+
:param add_operator_props:
|
|
435
439
|
"""
|
|
436
440
|
...
|
|
437
441
|
|
|
@@ -600,6 +604,7 @@ class WM_MT_splash_about(bpy_types._GenericUI):
|
|
|
600
604
|
filter_path,
|
|
601
605
|
display_name,
|
|
602
606
|
add_operator,
|
|
607
|
+
add_operator_props,
|
|
603
608
|
):
|
|
604
609
|
"""
|
|
605
610
|
|
|
@@ -611,6 +616,7 @@ class WM_MT_splash_about(bpy_types._GenericUI):
|
|
|
611
616
|
:param filter_path:
|
|
612
617
|
:param display_name:
|
|
613
618
|
:param add_operator:
|
|
619
|
+
:param add_operator_props:
|
|
614
620
|
"""
|
|
615
621
|
...
|
|
616
622
|
|
|
@@ -779,6 +785,7 @@ class WM_MT_splash_quick_setup(bpy_types._GenericUI):
|
|
|
779
785
|
filter_path,
|
|
780
786
|
display_name,
|
|
781
787
|
add_operator,
|
|
788
|
+
add_operator_props,
|
|
782
789
|
):
|
|
783
790
|
"""
|
|
784
791
|
|
|
@@ -790,6 +797,7 @@ class WM_MT_splash_quick_setup(bpy_types._GenericUI):
|
|
|
790
797
|
:param filter_path:
|
|
791
798
|
:param display_name:
|
|
792
799
|
:param add_operator:
|
|
800
|
+
:param add_operator_props:
|
|
793
801
|
"""
|
|
794
802
|
...
|
|
795
803
|
|
bl_ui/__init__.pyi
CHANGED
|
@@ -76,6 +76,7 @@ from . import space_topbar
|
|
|
76
76
|
from . import space_userpref
|
|
77
77
|
from . import space_view3d
|
|
78
78
|
from . import space_view3d_toolbar
|
|
79
|
+
from . import temp_anim_layers
|
|
79
80
|
from . import utils
|
|
80
81
|
|
|
81
82
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -210,6 +211,7 @@ class UI_MT_button_context_menu(bpy_types._GenericUI):
|
|
|
210
211
|
filter_path,
|
|
211
212
|
display_name,
|
|
212
213
|
add_operator,
|
|
214
|
+
add_operator_props,
|
|
213
215
|
):
|
|
214
216
|
"""
|
|
215
217
|
|
|
@@ -221,6 +223,7 @@ class UI_MT_button_context_menu(bpy_types._GenericUI):
|
|
|
221
223
|
:param filter_path:
|
|
222
224
|
:param display_name:
|
|
223
225
|
:param add_operator:
|
|
226
|
+
:param add_operator_props:
|
|
224
227
|
"""
|
|
225
228
|
...
|
|
226
229
|
|
|
@@ -392,6 +395,7 @@ class UI_MT_list_item_context_menu(bpy_types._GenericUI):
|
|
|
392
395
|
filter_path,
|
|
393
396
|
display_name,
|
|
394
397
|
add_operator,
|
|
398
|
+
add_operator_props,
|
|
395
399
|
):
|
|
396
400
|
"""
|
|
397
401
|
|
|
@@ -403,6 +407,7 @@ class UI_MT_list_item_context_menu(bpy_types._GenericUI):
|
|
|
403
407
|
:param filter_path:
|
|
404
408
|
:param display_name:
|
|
405
409
|
:param add_operator:
|
|
410
|
+
:param add_operator_props:
|
|
406
411
|
"""
|
|
407
412
|
...
|
|
408
413
|
|
bl_ui/anim/__init__.pyi
CHANGED
|
@@ -130,6 +130,7 @@ class ANIM_MT_keyframe_insert_pie(bpy_types._GenericUI):
|
|
|
130
130
|
filter_path,
|
|
131
131
|
display_name,
|
|
132
132
|
add_operator,
|
|
133
|
+
add_operator_props,
|
|
133
134
|
):
|
|
134
135
|
"""
|
|
135
136
|
|
|
@@ -141,6 +142,7 @@ class ANIM_MT_keyframe_insert_pie(bpy_types._GenericUI):
|
|
|
141
142
|
:param filter_path:
|
|
142
143
|
:param display_name:
|
|
143
144
|
:param add_operator:
|
|
145
|
+
:param add_operator_props:
|
|
144
146
|
"""
|
|
145
147
|
...
|
|
146
148
|
|
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -133,6 +133,7 @@ class NODE_MT_category_layout(bpy_types._GenericUI):
|
|
|
133
133
|
filter_path,
|
|
134
134
|
display_name,
|
|
135
135
|
add_operator,
|
|
136
|
+
add_operator_props,
|
|
136
137
|
):
|
|
137
138
|
"""
|
|
138
139
|
|
|
@@ -144,6 +145,7 @@ class NODE_MT_category_layout(bpy_types._GenericUI):
|
|
|
144
145
|
:param filter_path:
|
|
145
146
|
:param display_name:
|
|
146
147
|
:param add_operator:
|
|
148
|
+
:param add_operator_props:
|
|
147
149
|
"""
|
|
148
150
|
...
|
|
149
151
|
|
|
@@ -133,6 +133,7 @@ class NODE_MT_category_compositor_LAYOUT(bpy_types._GenericUI):
|
|
|
133
133
|
filter_path,
|
|
134
134
|
display_name,
|
|
135
135
|
add_operator,
|
|
136
|
+
add_operator_props,
|
|
136
137
|
):
|
|
137
138
|
"""
|
|
138
139
|
|
|
@@ -144,6 +145,7 @@ class NODE_MT_category_compositor_LAYOUT(bpy_types._GenericUI):
|
|
|
144
145
|
:param filter_path:
|
|
145
146
|
:param display_name:
|
|
146
147
|
:param add_operator:
|
|
148
|
+
:param add_operator_props:
|
|
147
149
|
"""
|
|
148
150
|
...
|
|
149
151
|
|
|
@@ -315,6 +317,7 @@ class NODE_MT_category_compositor_color(bpy_types._GenericUI):
|
|
|
315
317
|
filter_path,
|
|
316
318
|
display_name,
|
|
317
319
|
add_operator,
|
|
320
|
+
add_operator_props,
|
|
318
321
|
):
|
|
319
322
|
"""
|
|
320
323
|
|
|
@@ -326,6 +329,7 @@ class NODE_MT_category_compositor_color(bpy_types._GenericUI):
|
|
|
326
329
|
:param filter_path:
|
|
327
330
|
:param display_name:
|
|
328
331
|
:param add_operator:
|
|
332
|
+
:param add_operator_props:
|
|
329
333
|
"""
|
|
330
334
|
...
|
|
331
335
|
|
|
@@ -497,6 +501,7 @@ class NODE_MT_category_compositor_color_adjust(bpy_types._GenericUI):
|
|
|
497
501
|
filter_path,
|
|
498
502
|
display_name,
|
|
499
503
|
add_operator,
|
|
504
|
+
add_operator_props,
|
|
500
505
|
):
|
|
501
506
|
"""
|
|
502
507
|
|
|
@@ -508,6 +513,7 @@ class NODE_MT_category_compositor_color_adjust(bpy_types._GenericUI):
|
|
|
508
513
|
:param filter_path:
|
|
509
514
|
:param display_name:
|
|
510
515
|
:param add_operator:
|
|
516
|
+
:param add_operator_props:
|
|
511
517
|
"""
|
|
512
518
|
...
|
|
513
519
|
|
|
@@ -679,6 +685,7 @@ class NODE_MT_category_compositor_color_mix(bpy_types._GenericUI):
|
|
|
679
685
|
filter_path,
|
|
680
686
|
display_name,
|
|
681
687
|
add_operator,
|
|
688
|
+
add_operator_props,
|
|
682
689
|
):
|
|
683
690
|
"""
|
|
684
691
|
|
|
@@ -690,6 +697,7 @@ class NODE_MT_category_compositor_color_mix(bpy_types._GenericUI):
|
|
|
690
697
|
:param filter_path:
|
|
691
698
|
:param display_name:
|
|
692
699
|
:param add_operator:
|
|
700
|
+
:param add_operator_props:
|
|
693
701
|
"""
|
|
694
702
|
...
|
|
695
703
|
|
|
@@ -861,6 +869,7 @@ class NODE_MT_category_compositor_filter(bpy_types._GenericUI):
|
|
|
861
869
|
filter_path,
|
|
862
870
|
display_name,
|
|
863
871
|
add_operator,
|
|
872
|
+
add_operator_props,
|
|
864
873
|
):
|
|
865
874
|
"""
|
|
866
875
|
|
|
@@ -872,6 +881,7 @@ class NODE_MT_category_compositor_filter(bpy_types._GenericUI):
|
|
|
872
881
|
:param filter_path:
|
|
873
882
|
:param display_name:
|
|
874
883
|
:param add_operator:
|
|
884
|
+
:param add_operator_props:
|
|
875
885
|
"""
|
|
876
886
|
...
|
|
877
887
|
|
|
@@ -1043,6 +1053,7 @@ class NODE_MT_category_compositor_filter_blur(bpy_types._GenericUI):
|
|
|
1043
1053
|
filter_path,
|
|
1044
1054
|
display_name,
|
|
1045
1055
|
add_operator,
|
|
1056
|
+
add_operator_props,
|
|
1046
1057
|
):
|
|
1047
1058
|
"""
|
|
1048
1059
|
|
|
@@ -1054,6 +1065,7 @@ class NODE_MT_category_compositor_filter_blur(bpy_types._GenericUI):
|
|
|
1054
1065
|
:param filter_path:
|
|
1055
1066
|
:param display_name:
|
|
1056
1067
|
:param add_operator:
|
|
1068
|
+
:param add_operator_props:
|
|
1057
1069
|
"""
|
|
1058
1070
|
...
|
|
1059
1071
|
|
|
@@ -1225,6 +1237,7 @@ class NODE_MT_category_compositor_group(bpy_types._GenericUI):
|
|
|
1225
1237
|
filter_path,
|
|
1226
1238
|
display_name,
|
|
1227
1239
|
add_operator,
|
|
1240
|
+
add_operator_props,
|
|
1228
1241
|
):
|
|
1229
1242
|
"""
|
|
1230
1243
|
|
|
@@ -1236,6 +1249,7 @@ class NODE_MT_category_compositor_group(bpy_types._GenericUI):
|
|
|
1236
1249
|
:param filter_path:
|
|
1237
1250
|
:param display_name:
|
|
1238
1251
|
:param add_operator:
|
|
1252
|
+
:param add_operator_props:
|
|
1239
1253
|
"""
|
|
1240
1254
|
...
|
|
1241
1255
|
|
|
@@ -1407,6 +1421,7 @@ class NODE_MT_category_compositor_input(bpy_types._GenericUI):
|
|
|
1407
1421
|
filter_path,
|
|
1408
1422
|
display_name,
|
|
1409
1423
|
add_operator,
|
|
1424
|
+
add_operator_props,
|
|
1410
1425
|
):
|
|
1411
1426
|
"""
|
|
1412
1427
|
|
|
@@ -1418,6 +1433,7 @@ class NODE_MT_category_compositor_input(bpy_types._GenericUI):
|
|
|
1418
1433
|
:param filter_path:
|
|
1419
1434
|
:param display_name:
|
|
1420
1435
|
:param add_operator:
|
|
1436
|
+
:param add_operator_props:
|
|
1421
1437
|
"""
|
|
1422
1438
|
...
|
|
1423
1439
|
|
|
@@ -1589,6 +1605,7 @@ class NODE_MT_category_compositor_input_constant(bpy_types._GenericUI):
|
|
|
1589
1605
|
filter_path,
|
|
1590
1606
|
display_name,
|
|
1591
1607
|
add_operator,
|
|
1608
|
+
add_operator_props,
|
|
1592
1609
|
):
|
|
1593
1610
|
"""
|
|
1594
1611
|
|
|
@@ -1600,6 +1617,7 @@ class NODE_MT_category_compositor_input_constant(bpy_types._GenericUI):
|
|
|
1600
1617
|
:param filter_path:
|
|
1601
1618
|
:param display_name:
|
|
1602
1619
|
:param add_operator:
|
|
1620
|
+
:param add_operator_props:
|
|
1603
1621
|
"""
|
|
1604
1622
|
...
|
|
1605
1623
|
|
|
@@ -1771,6 +1789,7 @@ class NODE_MT_category_compositor_input_scene(bpy_types._GenericUI):
|
|
|
1771
1789
|
filter_path,
|
|
1772
1790
|
display_name,
|
|
1773
1791
|
add_operator,
|
|
1792
|
+
add_operator_props,
|
|
1774
1793
|
):
|
|
1775
1794
|
"""
|
|
1776
1795
|
|
|
@@ -1782,6 +1801,7 @@ class NODE_MT_category_compositor_input_scene(bpy_types._GenericUI):
|
|
|
1782
1801
|
:param filter_path:
|
|
1783
1802
|
:param display_name:
|
|
1784
1803
|
:param add_operator:
|
|
1804
|
+
:param add_operator_props:
|
|
1785
1805
|
"""
|
|
1786
1806
|
...
|
|
1787
1807
|
|
|
@@ -1953,6 +1973,7 @@ class NODE_MT_category_compositor_keying(bpy_types._GenericUI):
|
|
|
1953
1973
|
filter_path,
|
|
1954
1974
|
display_name,
|
|
1955
1975
|
add_operator,
|
|
1976
|
+
add_operator_props,
|
|
1956
1977
|
):
|
|
1957
1978
|
"""
|
|
1958
1979
|
|
|
@@ -1964,6 +1985,7 @@ class NODE_MT_category_compositor_keying(bpy_types._GenericUI):
|
|
|
1964
1985
|
:param filter_path:
|
|
1965
1986
|
:param display_name:
|
|
1966
1987
|
:param add_operator:
|
|
1988
|
+
:param add_operator_props:
|
|
1967
1989
|
"""
|
|
1968
1990
|
...
|
|
1969
1991
|
|
|
@@ -2135,6 +2157,7 @@ class NODE_MT_category_compositor_mask(bpy_types._GenericUI):
|
|
|
2135
2157
|
filter_path,
|
|
2136
2158
|
display_name,
|
|
2137
2159
|
add_operator,
|
|
2160
|
+
add_operator_props,
|
|
2138
2161
|
):
|
|
2139
2162
|
"""
|
|
2140
2163
|
|
|
@@ -2146,6 +2169,7 @@ class NODE_MT_category_compositor_mask(bpy_types._GenericUI):
|
|
|
2146
2169
|
:param filter_path:
|
|
2147
2170
|
:param display_name:
|
|
2148
2171
|
:param add_operator:
|
|
2172
|
+
:param add_operator_props:
|
|
2149
2173
|
"""
|
|
2150
2174
|
...
|
|
2151
2175
|
|
|
@@ -2317,6 +2341,7 @@ class NODE_MT_category_compositor_output(bpy_types._GenericUI):
|
|
|
2317
2341
|
filter_path,
|
|
2318
2342
|
display_name,
|
|
2319
2343
|
add_operator,
|
|
2344
|
+
add_operator_props,
|
|
2320
2345
|
):
|
|
2321
2346
|
"""
|
|
2322
2347
|
|
|
@@ -2328,6 +2353,7 @@ class NODE_MT_category_compositor_output(bpy_types._GenericUI):
|
|
|
2328
2353
|
:param filter_path:
|
|
2329
2354
|
:param display_name:
|
|
2330
2355
|
:param add_operator:
|
|
2356
|
+
:param add_operator_props:
|
|
2331
2357
|
"""
|
|
2332
2358
|
...
|
|
2333
2359
|
|
|
@@ -2502,6 +2528,7 @@ class NODE_MT_category_compositor_tracking(bpy_types._GenericUI):
|
|
|
2502
2528
|
filter_path,
|
|
2503
2529
|
display_name,
|
|
2504
2530
|
add_operator,
|
|
2531
|
+
add_operator_props,
|
|
2505
2532
|
):
|
|
2506
2533
|
"""
|
|
2507
2534
|
|
|
@@ -2513,6 +2540,7 @@ class NODE_MT_category_compositor_tracking(bpy_types._GenericUI):
|
|
|
2513
2540
|
:param filter_path:
|
|
2514
2541
|
:param display_name:
|
|
2515
2542
|
:param add_operator:
|
|
2543
|
+
:param add_operator_props:
|
|
2516
2544
|
"""
|
|
2517
2545
|
...
|
|
2518
2546
|
|
|
@@ -2684,6 +2712,7 @@ class NODE_MT_category_compositor_transform(bpy_types._GenericUI):
|
|
|
2684
2712
|
filter_path,
|
|
2685
2713
|
display_name,
|
|
2686
2714
|
add_operator,
|
|
2715
|
+
add_operator_props,
|
|
2687
2716
|
):
|
|
2688
2717
|
"""
|
|
2689
2718
|
|
|
@@ -2695,6 +2724,7 @@ class NODE_MT_category_compositor_transform(bpy_types._GenericUI):
|
|
|
2695
2724
|
:param filter_path:
|
|
2696
2725
|
:param display_name:
|
|
2697
2726
|
:param add_operator:
|
|
2727
|
+
:param add_operator_props:
|
|
2698
2728
|
"""
|
|
2699
2729
|
...
|
|
2700
2730
|
|
|
@@ -2866,6 +2896,7 @@ class NODE_MT_category_compositor_utilities(bpy_types._GenericUI):
|
|
|
2866
2896
|
filter_path,
|
|
2867
2897
|
display_name,
|
|
2868
2898
|
add_operator,
|
|
2899
|
+
add_operator_props,
|
|
2869
2900
|
):
|
|
2870
2901
|
"""
|
|
2871
2902
|
|
|
@@ -2877,6 +2908,7 @@ class NODE_MT_category_compositor_utilities(bpy_types._GenericUI):
|
|
|
2877
2908
|
:param filter_path:
|
|
2878
2909
|
:param display_name:
|
|
2879
2910
|
:param add_operator:
|
|
2911
|
+
:param add_operator_props:
|
|
2880
2912
|
"""
|
|
2881
2913
|
...
|
|
2882
2914
|
|
|
@@ -3048,6 +3080,7 @@ class NODE_MT_category_compositor_vector(bpy_types._GenericUI):
|
|
|
3048
3080
|
filter_path,
|
|
3049
3081
|
display_name,
|
|
3050
3082
|
add_operator,
|
|
3083
|
+
add_operator_props,
|
|
3051
3084
|
):
|
|
3052
3085
|
"""
|
|
3053
3086
|
|
|
@@ -3059,6 +3092,7 @@ class NODE_MT_category_compositor_vector(bpy_types._GenericUI):
|
|
|
3059
3092
|
:param filter_path:
|
|
3060
3093
|
:param display_name:
|
|
3061
3094
|
:param add_operator:
|
|
3095
|
+
:param add_operator_props:
|
|
3062
3096
|
"""
|
|
3063
3097
|
...
|
|
3064
3098
|
|
|
@@ -3230,6 +3264,7 @@ class NODE_MT_compositor_node_add_all(bpy_types._GenericUI):
|
|
|
3230
3264
|
filter_path,
|
|
3231
3265
|
display_name,
|
|
3232
3266
|
add_operator,
|
|
3267
|
+
add_operator_props,
|
|
3233
3268
|
):
|
|
3234
3269
|
"""
|
|
3235
3270
|
|
|
@@ -3241,6 +3276,7 @@ class NODE_MT_compositor_node_add_all(bpy_types._GenericUI):
|
|
|
3241
3276
|
:param filter_path:
|
|
3242
3277
|
:param display_name:
|
|
3243
3278
|
:param add_operator:
|
|
3279
|
+
:param add_operator_props:
|
|
3244
3280
|
"""
|
|
3245
3281
|
...
|
|
3246
3282
|
|