fake-bpy-module 20240524__py3-none-any.whl → 20240529__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_console_utils/autocomplete/complete_calltip/__init__.pyi +3 -3
- bl_operators/__init__.pyi +3 -0
- bl_operators/connect_to_output/__init__.pyi +325 -0
- bl_operators/image_as_planes/__init__.pyi +463 -0
- bl_operators/node_editor/__init__.pyi +6 -0
- bl_operators/node_editor/node_functions/__init__.pyi +23 -0
- bl_operators/presets/__init__.pyi +12 -12
- bl_operators/userpref/__init__.pyi +0 -214
- bl_operators/wm/__init__.pyi +24 -24
- bl_ui/__init__.pyi +12 -12
- bl_ui/anim/__init__.pyi +6 -6
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +6 -6
- bl_ui/node_add_menu_compositor/__init__.pyi +108 -108
- bl_ui/node_add_menu_geometry/__init__.pyi +288 -288
- bl_ui/node_add_menu_shader/__init__.pyi +60 -60
- bl_ui/node_add_menu_texture/__init__.pyi +54 -54
- bl_ui/properties_collection/__init__.pyi +6 -6
- bl_ui/properties_data_armature/__init__.pyi +12 -12
- bl_ui/properties_data_camera/__init__.pyi +12 -12
- bl_ui/properties_data_curves/__init__.pyi +6 -6
- bl_ui/properties_data_gpencil/__init__.pyi +12 -12
- bl_ui/properties_data_grease_pencil/__init__.pyi +18 -18
- bl_ui/properties_data_mesh/__init__.pyi +24 -24
- bl_ui/properties_data_modifier/__init__.pyi +42 -42
- bl_ui/properties_data_pointcloud/__init__.pyi +6 -6
- bl_ui/properties_freestyle/__init__.pyi +6 -6
- bl_ui/properties_grease_pencil_common/__init__.pyi +72 -72
- bl_ui/properties_mask_common/__init__.pyi +36 -36
- bl_ui/properties_material/__init__.pyi +6 -6
- bl_ui/properties_material_gpencil/__init__.pyi +12 -12
- bl_ui/properties_object/__init__.pyi +6 -6
- bl_ui/properties_output/__init__.pyi +18 -18
- bl_ui/properties_paint_common/__init__.pyi +6 -6
- bl_ui/properties_particle/__init__.pyi +12 -12
- bl_ui/properties_physics_cloth/__init__.pyi +6 -6
- bl_ui/properties_physics_fluid/__init__.pyi +6 -6
- bl_ui/properties_render/__init__.pyi +7 -7
- bl_ui/properties_texture/__init__.pyi +6 -6
- bl_ui/properties_view_layer/__init__.pyi +6 -6
- bl_ui/space_clip/__init__.pyi +186 -186
- bl_ui/space_console/__init__.pyi +30 -30
- bl_ui/space_dopesheet/__init__.pyi +84 -84
- bl_ui/space_filebrowser/__init__.pyi +78 -78
- bl_ui/space_graph/__init__.pyi +96 -96
- bl_ui/space_image/__init__.pyi +138 -138
- bl_ui/space_info/__init__.pyi +30 -30
- bl_ui/space_nla/__init__.pyi +78 -78
- bl_ui/space_node/__init__.pyi +72 -72
- bl_ui/space_outliner/__init__.pyi +72 -72
- bl_ui/space_sequencer/__init__.pyi +204 -204
- bl_ui/space_text/__init__.pyi +72 -72
- bl_ui/space_time/__init__.pyi +24 -24
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -0
- bl_ui/space_topbar/__init__.pyi +114 -114
- bl_ui/space_userpref/__init__.pyi +36 -36
- bl_ui/space_view3d/__init__.pyi +1446 -1176
- bl_ui/space_view3d_toolbar/__init__.pyi +30 -30
- bl_ui/utils/__init__.pyi +6 -6
- bmesh/geometry/__init__.pyi +2 -2
- bmesh/ops/__init__.pyi +55 -54
- bmesh/types/__init__.pyi +43 -33
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +5 -1
- bpy/app/handlers/__init__.pyi +37 -37
- bpy/app/icons/__init__.pyi +4 -4
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +32 -21
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +65 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +105 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +28 -16
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +151 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +27 -15
- bpy/types/__init__.pyi +662 -388
- bpy/utils/__init__.pyi +12 -10
- bpy_extras/anim_utils/__init__.pyi +7 -7
- bpy_extras/io_utils/__init__.pyi +4 -4
- bpy_extras/mesh_utils/__init__.pyi +4 -4
- bpy_extras/object_utils/__init__.pyi +8 -8
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- bpy_types/__init__.pyi +12 -12
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/RECORD +167 -163
- freestyle/shaders/__init__.pyi +2 -2
- freestyle/types/__init__.pyi +64 -56
- gpu/matrix/__init__.pyi +6 -6
- gpu/types/__init__.pyi +14 -10
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- imbuf/__init__.pyi +2 -2
- mathutils/__init__.pyi +176 -137
- mathutils/bvhtree/__init__.pyi +4 -4
- mathutils/geometry/__init__.pyi +139 -139
- mathutils/kdtree/__init__.pyi +14 -10
- mathutils/noise/__init__.pyi +26 -26
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/top_level.txt +0 -0
bl_ui/space_info/__init__.pyi
CHANGED
|
@@ -410,10 +410,10 @@ class INFO_MT_area(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
410
410
|
searchpaths: list[str],
|
|
411
411
|
operator: str,
|
|
412
412
|
props_default: dict = None,
|
|
413
|
-
prop_filepath: str = "filepath",
|
|
414
|
-
filter_ext:
|
|
413
|
+
prop_filepath: str | None = "filepath",
|
|
414
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
415
415
|
filter_path=None,
|
|
416
|
-
display_name:
|
|
416
|
+
display_name: collections.abc.Callable | None = None,
|
|
417
417
|
add_operator=None,
|
|
418
418
|
add_operator_props=None,
|
|
419
419
|
):
|
|
@@ -426,14 +426,14 @@ class INFO_MT_area(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
426
426
|
:param props_default: Properties to assign to each operator.
|
|
427
427
|
:type props_default: dict
|
|
428
428
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
429
|
-
:type prop_filepath: str
|
|
429
|
+
:type prop_filepath: str | None
|
|
430
430
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
431
431
|
|
|
432
432
|
Returning false excludes the file from the list.
|
|
433
|
-
:type filter_ext:
|
|
433
|
+
:type filter_ext: collections.abc.Callable | None
|
|
434
434
|
:param filter_path:
|
|
435
435
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
436
|
-
:type display_name:
|
|
436
|
+
:type display_name: collections.abc.Callable | None
|
|
437
437
|
:param add_operator:
|
|
438
438
|
:param add_operator_props:
|
|
439
439
|
"""
|
|
@@ -680,10 +680,10 @@ class INFO_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
680
680
|
searchpaths: list[str],
|
|
681
681
|
operator: str,
|
|
682
682
|
props_default: dict = None,
|
|
683
|
-
prop_filepath: str = "filepath",
|
|
684
|
-
filter_ext:
|
|
683
|
+
prop_filepath: str | None = "filepath",
|
|
684
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
685
685
|
filter_path=None,
|
|
686
|
-
display_name:
|
|
686
|
+
display_name: collections.abc.Callable | None = None,
|
|
687
687
|
add_operator=None,
|
|
688
688
|
add_operator_props=None,
|
|
689
689
|
):
|
|
@@ -696,14 +696,14 @@ class INFO_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
696
696
|
:param props_default: Properties to assign to each operator.
|
|
697
697
|
:type props_default: dict
|
|
698
698
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
699
|
-
:type prop_filepath: str
|
|
699
|
+
:type prop_filepath: str | None
|
|
700
700
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
701
701
|
|
|
702
702
|
Returning false excludes the file from the list.
|
|
703
|
-
:type filter_ext:
|
|
703
|
+
:type filter_ext: collections.abc.Callable | None
|
|
704
704
|
:param filter_path:
|
|
705
705
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
706
|
-
:type display_name:
|
|
706
|
+
:type display_name: collections.abc.Callable | None
|
|
707
707
|
:param add_operator:
|
|
708
708
|
:param add_operator_props:
|
|
709
709
|
"""
|
|
@@ -951,10 +951,10 @@ class INFO_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
951
951
|
searchpaths: list[str],
|
|
952
952
|
operator: str,
|
|
953
953
|
props_default: dict = None,
|
|
954
|
-
prop_filepath: str = "filepath",
|
|
955
|
-
filter_ext:
|
|
954
|
+
prop_filepath: str | None = "filepath",
|
|
955
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
956
956
|
filter_path=None,
|
|
957
|
-
display_name:
|
|
957
|
+
display_name: collections.abc.Callable | None = None,
|
|
958
958
|
add_operator=None,
|
|
959
959
|
add_operator_props=None,
|
|
960
960
|
):
|
|
@@ -967,14 +967,14 @@ class INFO_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
967
967
|
:param props_default: Properties to assign to each operator.
|
|
968
968
|
:type props_default: dict
|
|
969
969
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
970
|
-
:type prop_filepath: str
|
|
970
|
+
:type prop_filepath: str | None
|
|
971
971
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
972
972
|
|
|
973
973
|
Returning false excludes the file from the list.
|
|
974
|
-
:type filter_ext:
|
|
974
|
+
:type filter_ext: collections.abc.Callable | None
|
|
975
975
|
:param filter_path:
|
|
976
976
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
977
|
-
:type display_name:
|
|
977
|
+
:type display_name: collections.abc.Callable | None
|
|
978
978
|
:param add_operator:
|
|
979
979
|
:param add_operator_props:
|
|
980
980
|
"""
|
|
@@ -1221,10 +1221,10 @@ class INFO_MT_info(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1221
1221
|
searchpaths: list[str],
|
|
1222
1222
|
operator: str,
|
|
1223
1223
|
props_default: dict = None,
|
|
1224
|
-
prop_filepath: str = "filepath",
|
|
1225
|
-
filter_ext:
|
|
1224
|
+
prop_filepath: str | None = "filepath",
|
|
1225
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
1226
1226
|
filter_path=None,
|
|
1227
|
-
display_name:
|
|
1227
|
+
display_name: collections.abc.Callable | None = None,
|
|
1228
1228
|
add_operator=None,
|
|
1229
1229
|
add_operator_props=None,
|
|
1230
1230
|
):
|
|
@@ -1237,14 +1237,14 @@ class INFO_MT_info(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1237
1237
|
:param props_default: Properties to assign to each operator.
|
|
1238
1238
|
:type props_default: dict
|
|
1239
1239
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
1240
|
-
:type prop_filepath: str
|
|
1240
|
+
:type prop_filepath: str | None
|
|
1241
1241
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
1242
1242
|
|
|
1243
1243
|
Returning false excludes the file from the list.
|
|
1244
|
-
:type filter_ext:
|
|
1244
|
+
:type filter_ext: collections.abc.Callable | None
|
|
1245
1245
|
:param filter_path:
|
|
1246
1246
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
1247
|
-
:type display_name:
|
|
1247
|
+
:type display_name: collections.abc.Callable | None
|
|
1248
1248
|
:param add_operator:
|
|
1249
1249
|
:param add_operator_props:
|
|
1250
1250
|
"""
|
|
@@ -1491,10 +1491,10 @@ class INFO_MT_view(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1491
1491
|
searchpaths: list[str],
|
|
1492
1492
|
operator: str,
|
|
1493
1493
|
props_default: dict = None,
|
|
1494
|
-
prop_filepath: str = "filepath",
|
|
1495
|
-
filter_ext:
|
|
1494
|
+
prop_filepath: str | None = "filepath",
|
|
1495
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
1496
1496
|
filter_path=None,
|
|
1497
|
-
display_name:
|
|
1497
|
+
display_name: collections.abc.Callable | None = None,
|
|
1498
1498
|
add_operator=None,
|
|
1499
1499
|
add_operator_props=None,
|
|
1500
1500
|
):
|
|
@@ -1507,14 +1507,14 @@ class INFO_MT_view(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1507
1507
|
:param props_default: Properties to assign to each operator.
|
|
1508
1508
|
:type props_default: dict
|
|
1509
1509
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
1510
|
-
:type prop_filepath: str
|
|
1510
|
+
:type prop_filepath: str | None
|
|
1511
1511
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
1512
1512
|
|
|
1513
1513
|
Returning false excludes the file from the list.
|
|
1514
|
-
:type filter_ext:
|
|
1514
|
+
:type filter_ext: collections.abc.Callable | None
|
|
1515
1515
|
:param filter_path:
|
|
1516
1516
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
1517
|
-
:type display_name:
|
|
1517
|
+
:type display_name: collections.abc.Callable | None
|
|
1518
1518
|
:param add_operator:
|
|
1519
1519
|
:param add_operator_props:
|
|
1520
1520
|
"""
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -411,10 +411,10 @@ class NLA_MT_add(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
411
411
|
searchpaths: list[str],
|
|
412
412
|
operator: str,
|
|
413
413
|
props_default: dict = None,
|
|
414
|
-
prop_filepath: str = "filepath",
|
|
415
|
-
filter_ext:
|
|
414
|
+
prop_filepath: str | None = "filepath",
|
|
415
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
416
416
|
filter_path=None,
|
|
417
|
-
display_name:
|
|
417
|
+
display_name: collections.abc.Callable | None = None,
|
|
418
418
|
add_operator=None,
|
|
419
419
|
add_operator_props=None,
|
|
420
420
|
):
|
|
@@ -427,14 +427,14 @@ class NLA_MT_add(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
427
427
|
:param props_default: Properties to assign to each operator.
|
|
428
428
|
:type props_default: dict
|
|
429
429
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
430
|
-
:type prop_filepath: str
|
|
430
|
+
:type prop_filepath: str | None
|
|
431
431
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
432
432
|
|
|
433
433
|
Returning false excludes the file from the list.
|
|
434
|
-
:type filter_ext:
|
|
434
|
+
:type filter_ext: collections.abc.Callable | None
|
|
435
435
|
:param filter_path:
|
|
436
436
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
437
|
-
:type display_name:
|
|
437
|
+
:type display_name: collections.abc.Callable | None
|
|
438
438
|
:param add_operator:
|
|
439
439
|
:param add_operator_props:
|
|
440
440
|
"""
|
|
@@ -681,10 +681,10 @@ class NLA_MT_channel_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
681
681
|
searchpaths: list[str],
|
|
682
682
|
operator: str,
|
|
683
683
|
props_default: dict = None,
|
|
684
|
-
prop_filepath: str = "filepath",
|
|
685
|
-
filter_ext:
|
|
684
|
+
prop_filepath: str | None = "filepath",
|
|
685
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
686
686
|
filter_path=None,
|
|
687
|
-
display_name:
|
|
687
|
+
display_name: collections.abc.Callable | None = None,
|
|
688
688
|
add_operator=None,
|
|
689
689
|
add_operator_props=None,
|
|
690
690
|
):
|
|
@@ -697,14 +697,14 @@ class NLA_MT_channel_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
697
697
|
:param props_default: Properties to assign to each operator.
|
|
698
698
|
:type props_default: dict
|
|
699
699
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
700
|
-
:type prop_filepath: str
|
|
700
|
+
:type prop_filepath: str | None
|
|
701
701
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
702
702
|
|
|
703
703
|
Returning false excludes the file from the list.
|
|
704
|
-
:type filter_ext:
|
|
704
|
+
:type filter_ext: collections.abc.Callable | None
|
|
705
705
|
:param filter_path:
|
|
706
706
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
707
|
-
:type display_name:
|
|
707
|
+
:type display_name: collections.abc.Callable | None
|
|
708
708
|
:param add_operator:
|
|
709
709
|
:param add_operator_props:
|
|
710
710
|
"""
|
|
@@ -951,10 +951,10 @@ class NLA_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
951
951
|
searchpaths: list[str],
|
|
952
952
|
operator: str,
|
|
953
953
|
props_default: dict = None,
|
|
954
|
-
prop_filepath: str = "filepath",
|
|
955
|
-
filter_ext:
|
|
954
|
+
prop_filepath: str | None = "filepath",
|
|
955
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
956
956
|
filter_path=None,
|
|
957
|
-
display_name:
|
|
957
|
+
display_name: collections.abc.Callable | None = None,
|
|
958
958
|
add_operator=None,
|
|
959
959
|
add_operator_props=None,
|
|
960
960
|
):
|
|
@@ -967,14 +967,14 @@ class NLA_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
967
967
|
:param props_default: Properties to assign to each operator.
|
|
968
968
|
:type props_default: dict
|
|
969
969
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
970
|
-
:type prop_filepath: str
|
|
970
|
+
:type prop_filepath: str | None
|
|
971
971
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
972
972
|
|
|
973
973
|
Returning false excludes the file from the list.
|
|
974
|
-
:type filter_ext:
|
|
974
|
+
:type filter_ext: collections.abc.Callable | None
|
|
975
975
|
:param filter_path:
|
|
976
976
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
977
|
-
:type display_name:
|
|
977
|
+
:type display_name: collections.abc.Callable | None
|
|
978
978
|
:param add_operator:
|
|
979
979
|
:param add_operator_props:
|
|
980
980
|
"""
|
|
@@ -1222,10 +1222,10 @@ class NLA_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1222
1222
|
searchpaths: list[str],
|
|
1223
1223
|
operator: str,
|
|
1224
1224
|
props_default: dict = None,
|
|
1225
|
-
prop_filepath: str = "filepath",
|
|
1226
|
-
filter_ext:
|
|
1225
|
+
prop_filepath: str | None = "filepath",
|
|
1226
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
1227
1227
|
filter_path=None,
|
|
1228
|
-
display_name:
|
|
1228
|
+
display_name: collections.abc.Callable | None = None,
|
|
1229
1229
|
add_operator=None,
|
|
1230
1230
|
add_operator_props=None,
|
|
1231
1231
|
):
|
|
@@ -1238,14 +1238,14 @@ class NLA_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1238
1238
|
:param props_default: Properties to assign to each operator.
|
|
1239
1239
|
:type props_default: dict
|
|
1240
1240
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
1241
|
-
:type prop_filepath: str
|
|
1241
|
+
:type prop_filepath: str | None
|
|
1242
1242
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
1243
1243
|
|
|
1244
1244
|
Returning false excludes the file from the list.
|
|
1245
|
-
:type filter_ext:
|
|
1245
|
+
:type filter_ext: collections.abc.Callable | None
|
|
1246
1246
|
:param filter_path:
|
|
1247
1247
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
1248
|
-
:type display_name:
|
|
1248
|
+
:type display_name: collections.abc.Callable | None
|
|
1249
1249
|
:param add_operator:
|
|
1250
1250
|
:param add_operator_props:
|
|
1251
1251
|
"""
|
|
@@ -1492,10 +1492,10 @@ class NLA_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1492
1492
|
searchpaths: list[str],
|
|
1493
1493
|
operator: str,
|
|
1494
1494
|
props_default: dict = None,
|
|
1495
|
-
prop_filepath: str = "filepath",
|
|
1496
|
-
filter_ext:
|
|
1495
|
+
prop_filepath: str | None = "filepath",
|
|
1496
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
1497
1497
|
filter_path=None,
|
|
1498
|
-
display_name:
|
|
1498
|
+
display_name: collections.abc.Callable | None = None,
|
|
1499
1499
|
add_operator=None,
|
|
1500
1500
|
add_operator_props=None,
|
|
1501
1501
|
):
|
|
@@ -1508,14 +1508,14 @@ class NLA_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1508
1508
|
:param props_default: Properties to assign to each operator.
|
|
1509
1509
|
:type props_default: dict
|
|
1510
1510
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
1511
|
-
:type prop_filepath: str
|
|
1511
|
+
:type prop_filepath: str | None
|
|
1512
1512
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
1513
1513
|
|
|
1514
1514
|
Returning false excludes the file from the list.
|
|
1515
|
-
:type filter_ext:
|
|
1515
|
+
:type filter_ext: collections.abc.Callable | None
|
|
1516
1516
|
:param filter_path:
|
|
1517
1517
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
1518
|
-
:type display_name:
|
|
1518
|
+
:type display_name: collections.abc.Callable | None
|
|
1519
1519
|
:param add_operator:
|
|
1520
1520
|
:param add_operator_props:
|
|
1521
1521
|
"""
|
|
@@ -1762,10 +1762,10 @@ class NLA_MT_marker_select(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1762
1762
|
searchpaths: list[str],
|
|
1763
1763
|
operator: str,
|
|
1764
1764
|
props_default: dict = None,
|
|
1765
|
-
prop_filepath: str = "filepath",
|
|
1766
|
-
filter_ext:
|
|
1765
|
+
prop_filepath: str | None = "filepath",
|
|
1766
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
1767
1767
|
filter_path=None,
|
|
1768
|
-
display_name:
|
|
1768
|
+
display_name: collections.abc.Callable | None = None,
|
|
1769
1769
|
add_operator=None,
|
|
1770
1770
|
add_operator_props=None,
|
|
1771
1771
|
):
|
|
@@ -1778,14 +1778,14 @@ class NLA_MT_marker_select(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
1778
1778
|
:param props_default: Properties to assign to each operator.
|
|
1779
1779
|
:type props_default: dict
|
|
1780
1780
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
1781
|
-
:type prop_filepath: str
|
|
1781
|
+
:type prop_filepath: str | None
|
|
1782
1782
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
1783
1783
|
|
|
1784
1784
|
Returning false excludes the file from the list.
|
|
1785
|
-
:type filter_ext:
|
|
1785
|
+
:type filter_ext: collections.abc.Callable | None
|
|
1786
1786
|
:param filter_path:
|
|
1787
1787
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
1788
|
-
:type display_name:
|
|
1788
|
+
:type display_name: collections.abc.Callable | None
|
|
1789
1789
|
:param add_operator:
|
|
1790
1790
|
:param add_operator_props:
|
|
1791
1791
|
"""
|
|
@@ -2032,10 +2032,10 @@ class NLA_MT_select(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2032
2032
|
searchpaths: list[str],
|
|
2033
2033
|
operator: str,
|
|
2034
2034
|
props_default: dict = None,
|
|
2035
|
-
prop_filepath: str = "filepath",
|
|
2036
|
-
filter_ext:
|
|
2035
|
+
prop_filepath: str | None = "filepath",
|
|
2036
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2037
2037
|
filter_path=None,
|
|
2038
|
-
display_name:
|
|
2038
|
+
display_name: collections.abc.Callable | None = None,
|
|
2039
2039
|
add_operator=None,
|
|
2040
2040
|
add_operator_props=None,
|
|
2041
2041
|
):
|
|
@@ -2048,14 +2048,14 @@ class NLA_MT_select(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2048
2048
|
:param props_default: Properties to assign to each operator.
|
|
2049
2049
|
:type props_default: dict
|
|
2050
2050
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2051
|
-
:type prop_filepath: str
|
|
2051
|
+
:type prop_filepath: str | None
|
|
2052
2052
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2053
2053
|
|
|
2054
2054
|
Returning false excludes the file from the list.
|
|
2055
|
-
:type filter_ext:
|
|
2055
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2056
2056
|
:param filter_path:
|
|
2057
2057
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2058
|
-
:type display_name:
|
|
2058
|
+
:type display_name: collections.abc.Callable | None
|
|
2059
2059
|
:param add_operator:
|
|
2060
2060
|
:param add_operator_props:
|
|
2061
2061
|
"""
|
|
@@ -2302,10 +2302,10 @@ class NLA_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2302
2302
|
searchpaths: list[str],
|
|
2303
2303
|
operator: str,
|
|
2304
2304
|
props_default: dict = None,
|
|
2305
|
-
prop_filepath: str = "filepath",
|
|
2306
|
-
filter_ext:
|
|
2305
|
+
prop_filepath: str | None = "filepath",
|
|
2306
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2307
2307
|
filter_path=None,
|
|
2308
|
-
display_name:
|
|
2308
|
+
display_name: collections.abc.Callable | None = None,
|
|
2309
2309
|
add_operator=None,
|
|
2310
2310
|
add_operator_props=None,
|
|
2311
2311
|
):
|
|
@@ -2318,14 +2318,14 @@ class NLA_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2318
2318
|
:param props_default: Properties to assign to each operator.
|
|
2319
2319
|
:type props_default: dict
|
|
2320
2320
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2321
|
-
:type prop_filepath: str
|
|
2321
|
+
:type prop_filepath: str | None
|
|
2322
2322
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2323
2323
|
|
|
2324
2324
|
Returning false excludes the file from the list.
|
|
2325
|
-
:type filter_ext:
|
|
2325
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2326
2326
|
:param filter_path:
|
|
2327
2327
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2328
|
-
:type display_name:
|
|
2328
|
+
:type display_name: collections.abc.Callable | None
|
|
2329
2329
|
:param add_operator:
|
|
2330
2330
|
:param add_operator_props:
|
|
2331
2331
|
"""
|
|
@@ -2572,10 +2572,10 @@ class NLA_MT_strips(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2572
2572
|
searchpaths: list[str],
|
|
2573
2573
|
operator: str,
|
|
2574
2574
|
props_default: dict = None,
|
|
2575
|
-
prop_filepath: str = "filepath",
|
|
2576
|
-
filter_ext:
|
|
2575
|
+
prop_filepath: str | None = "filepath",
|
|
2576
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2577
2577
|
filter_path=None,
|
|
2578
|
-
display_name:
|
|
2578
|
+
display_name: collections.abc.Callable | None = None,
|
|
2579
2579
|
add_operator=None,
|
|
2580
2580
|
add_operator_props=None,
|
|
2581
2581
|
):
|
|
@@ -2588,14 +2588,14 @@ class NLA_MT_strips(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2588
2588
|
:param props_default: Properties to assign to each operator.
|
|
2589
2589
|
:type props_default: dict
|
|
2590
2590
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2591
|
-
:type prop_filepath: str
|
|
2591
|
+
:type prop_filepath: str | None
|
|
2592
2592
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2593
2593
|
|
|
2594
2594
|
Returning false excludes the file from the list.
|
|
2595
|
-
:type filter_ext:
|
|
2595
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2596
2596
|
:param filter_path:
|
|
2597
2597
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2598
|
-
:type display_name:
|
|
2598
|
+
:type display_name: collections.abc.Callable | None
|
|
2599
2599
|
:param add_operator:
|
|
2600
2600
|
:param add_operator_props:
|
|
2601
2601
|
"""
|
|
@@ -2842,10 +2842,10 @@ class NLA_MT_strips_transform(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2842
2842
|
searchpaths: list[str],
|
|
2843
2843
|
operator: str,
|
|
2844
2844
|
props_default: dict = None,
|
|
2845
|
-
prop_filepath: str = "filepath",
|
|
2846
|
-
filter_ext:
|
|
2845
|
+
prop_filepath: str | None = "filepath",
|
|
2846
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2847
2847
|
filter_path=None,
|
|
2848
|
-
display_name:
|
|
2848
|
+
display_name: collections.abc.Callable | None = None,
|
|
2849
2849
|
add_operator=None,
|
|
2850
2850
|
add_operator_props=None,
|
|
2851
2851
|
):
|
|
@@ -2858,14 +2858,14 @@ class NLA_MT_strips_transform(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2858
2858
|
:param props_default: Properties to assign to each operator.
|
|
2859
2859
|
:type props_default: dict
|
|
2860
2860
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2861
|
-
:type prop_filepath: str
|
|
2861
|
+
:type prop_filepath: str | None
|
|
2862
2862
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2863
2863
|
|
|
2864
2864
|
Returning false excludes the file from the list.
|
|
2865
|
-
:type filter_ext:
|
|
2865
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2866
2866
|
:param filter_path:
|
|
2867
2867
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2868
|
-
:type display_name:
|
|
2868
|
+
:type display_name: collections.abc.Callable | None
|
|
2869
2869
|
:param add_operator:
|
|
2870
2870
|
:param add_operator_props:
|
|
2871
2871
|
"""
|
|
@@ -3113,10 +3113,10 @@ class NLA_MT_tracks(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3113
3113
|
searchpaths: list[str],
|
|
3114
3114
|
operator: str,
|
|
3115
3115
|
props_default: dict = None,
|
|
3116
|
-
prop_filepath: str = "filepath",
|
|
3117
|
-
filter_ext:
|
|
3116
|
+
prop_filepath: str | None = "filepath",
|
|
3117
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
3118
3118
|
filter_path=None,
|
|
3119
|
-
display_name:
|
|
3119
|
+
display_name: collections.abc.Callable | None = None,
|
|
3120
3120
|
add_operator=None,
|
|
3121
3121
|
add_operator_props=None,
|
|
3122
3122
|
):
|
|
@@ -3129,14 +3129,14 @@ class NLA_MT_tracks(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3129
3129
|
:param props_default: Properties to assign to each operator.
|
|
3130
3130
|
:type props_default: dict
|
|
3131
3131
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
3132
|
-
:type prop_filepath: str
|
|
3132
|
+
:type prop_filepath: str | None
|
|
3133
3133
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
3134
3134
|
|
|
3135
3135
|
Returning false excludes the file from the list.
|
|
3136
|
-
:type filter_ext:
|
|
3136
|
+
:type filter_ext: collections.abc.Callable | None
|
|
3137
3137
|
:param filter_path:
|
|
3138
3138
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
3139
|
-
:type display_name:
|
|
3139
|
+
:type display_name: collections.abc.Callable | None
|
|
3140
3140
|
:param add_operator:
|
|
3141
3141
|
:param add_operator_props:
|
|
3142
3142
|
"""
|
|
@@ -3383,10 +3383,10 @@ class NLA_MT_view(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3383
3383
|
searchpaths: list[str],
|
|
3384
3384
|
operator: str,
|
|
3385
3385
|
props_default: dict = None,
|
|
3386
|
-
prop_filepath: str = "filepath",
|
|
3387
|
-
filter_ext:
|
|
3386
|
+
prop_filepath: str | None = "filepath",
|
|
3387
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
3388
3388
|
filter_path=None,
|
|
3389
|
-
display_name:
|
|
3389
|
+
display_name: collections.abc.Callable | None = None,
|
|
3390
3390
|
add_operator=None,
|
|
3391
3391
|
add_operator_props=None,
|
|
3392
3392
|
):
|
|
@@ -3399,14 +3399,14 @@ class NLA_MT_view(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3399
3399
|
:param props_default: Properties to assign to each operator.
|
|
3400
3400
|
:type props_default: dict
|
|
3401
3401
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
3402
|
-
:type prop_filepath: str
|
|
3402
|
+
:type prop_filepath: str | None
|
|
3403
3403
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
3404
3404
|
|
|
3405
3405
|
Returning false excludes the file from the list.
|
|
3406
|
-
:type filter_ext:
|
|
3406
|
+
:type filter_ext: collections.abc.Callable | None
|
|
3407
3407
|
:param filter_path:
|
|
3408
3408
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
3409
|
-
:type display_name:
|
|
3409
|
+
:type display_name: collections.abc.Callable | None
|
|
3410
3410
|
:param add_operator:
|
|
3411
3411
|
:param add_operator_props:
|
|
3412
3412
|
"""
|
|
@@ -3653,10 +3653,10 @@ class NLA_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3653
3653
|
searchpaths: list[str],
|
|
3654
3654
|
operator: str,
|
|
3655
3655
|
props_default: dict = None,
|
|
3656
|
-
prop_filepath: str = "filepath",
|
|
3657
|
-
filter_ext:
|
|
3656
|
+
prop_filepath: str | None = "filepath",
|
|
3657
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
3658
3658
|
filter_path=None,
|
|
3659
|
-
display_name:
|
|
3659
|
+
display_name: collections.abc.Callable | None = None,
|
|
3660
3660
|
add_operator=None,
|
|
3661
3661
|
add_operator_props=None,
|
|
3662
3662
|
):
|
|
@@ -3669,14 +3669,14 @@ class NLA_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3669
3669
|
:param props_default: Properties to assign to each operator.
|
|
3670
3670
|
:type props_default: dict
|
|
3671
3671
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
3672
|
-
:type prop_filepath: str
|
|
3672
|
+
:type prop_filepath: str | None
|
|
3673
3673
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
3674
3674
|
|
|
3675
3675
|
Returning false excludes the file from the list.
|
|
3676
|
-
:type filter_ext:
|
|
3676
|
+
:type filter_ext: collections.abc.Callable | None
|
|
3677
3677
|
:param filter_path:
|
|
3678
3678
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
3679
|
-
:type display_name:
|
|
3679
|
+
:type display_name: collections.abc.Callable | None
|
|
3680
3680
|
:param add_operator:
|
|
3681
3681
|
:param add_operator_props:
|
|
3682
3682
|
"""
|