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
|
@@ -202,10 +202,10 @@ class ASSETBROWSER_MT_metadata_preview_menu(bpy_types.Menu, bpy_types._GenericUI
|
|
|
202
202
|
searchpaths: list[str],
|
|
203
203
|
operator: str,
|
|
204
204
|
props_default: dict = None,
|
|
205
|
-
prop_filepath: str = "filepath",
|
|
206
|
-
filter_ext:
|
|
205
|
+
prop_filepath: str | None = "filepath",
|
|
206
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
207
207
|
filter_path=None,
|
|
208
|
-
display_name:
|
|
208
|
+
display_name: collections.abc.Callable | None = None,
|
|
209
209
|
add_operator=None,
|
|
210
210
|
add_operator_props=None,
|
|
211
211
|
):
|
|
@@ -218,14 +218,14 @@ class ASSETBROWSER_MT_metadata_preview_menu(bpy_types.Menu, bpy_types._GenericUI
|
|
|
218
218
|
:param props_default: Properties to assign to each operator.
|
|
219
219
|
:type props_default: dict
|
|
220
220
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
221
|
-
:type prop_filepath: str
|
|
221
|
+
:type prop_filepath: str | None
|
|
222
222
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
223
223
|
|
|
224
224
|
Returning false excludes the file from the list.
|
|
225
|
-
:type filter_ext:
|
|
225
|
+
:type filter_ext: collections.abc.Callable | None
|
|
226
226
|
:param filter_path:
|
|
227
227
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
228
|
-
:type display_name:
|
|
228
|
+
:type display_name: collections.abc.Callable | None
|
|
229
229
|
:param add_operator:
|
|
230
230
|
:param add_operator_props:
|
|
231
231
|
"""
|
|
@@ -2096,10 +2096,10 @@ class FILEBROWSER_MT_bookmarks_context_menu(bpy_types.Menu, bpy_types._GenericUI
|
|
|
2096
2096
|
searchpaths: list[str],
|
|
2097
2097
|
operator: str,
|
|
2098
2098
|
props_default: dict = None,
|
|
2099
|
-
prop_filepath: str = "filepath",
|
|
2100
|
-
filter_ext:
|
|
2099
|
+
prop_filepath: str | None = "filepath",
|
|
2100
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2101
2101
|
filter_path=None,
|
|
2102
|
-
display_name:
|
|
2102
|
+
display_name: collections.abc.Callable | None = None,
|
|
2103
2103
|
add_operator=None,
|
|
2104
2104
|
add_operator_props=None,
|
|
2105
2105
|
):
|
|
@@ -2112,14 +2112,14 @@ class FILEBROWSER_MT_bookmarks_context_menu(bpy_types.Menu, bpy_types._GenericUI
|
|
|
2112
2112
|
:param props_default: Properties to assign to each operator.
|
|
2113
2113
|
:type props_default: dict
|
|
2114
2114
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2115
|
-
:type prop_filepath: str
|
|
2115
|
+
:type prop_filepath: str | None
|
|
2116
2116
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2117
2117
|
|
|
2118
2118
|
Returning false excludes the file from the list.
|
|
2119
|
-
:type filter_ext:
|
|
2119
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2120
2120
|
:param filter_path:
|
|
2121
2121
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2122
|
-
:type display_name:
|
|
2122
|
+
:type display_name: collections.abc.Callable | None
|
|
2123
2123
|
:param add_operator:
|
|
2124
2124
|
:param add_operator_props:
|
|
2125
2125
|
"""
|
|
@@ -2368,10 +2368,10 @@ class FILEBROWSER_MT_bookmarks_recents_specials_menu(
|
|
|
2368
2368
|
searchpaths: list[str],
|
|
2369
2369
|
operator: str,
|
|
2370
2370
|
props_default: dict = None,
|
|
2371
|
-
prop_filepath: str = "filepath",
|
|
2372
|
-
filter_ext:
|
|
2371
|
+
prop_filepath: str | None = "filepath",
|
|
2372
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2373
2373
|
filter_path=None,
|
|
2374
|
-
display_name:
|
|
2374
|
+
display_name: collections.abc.Callable | None = None,
|
|
2375
2375
|
add_operator=None,
|
|
2376
2376
|
add_operator_props=None,
|
|
2377
2377
|
):
|
|
@@ -2384,14 +2384,14 @@ class FILEBROWSER_MT_bookmarks_recents_specials_menu(
|
|
|
2384
2384
|
:param props_default: Properties to assign to each operator.
|
|
2385
2385
|
:type props_default: dict
|
|
2386
2386
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2387
|
-
:type prop_filepath: str
|
|
2387
|
+
:type prop_filepath: str | None
|
|
2388
2388
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2389
2389
|
|
|
2390
2390
|
Returning false excludes the file from the list.
|
|
2391
|
-
:type filter_ext:
|
|
2391
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2392
2392
|
:param filter_path:
|
|
2393
2393
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2394
|
-
:type display_name:
|
|
2394
|
+
:type display_name: collections.abc.Callable | None
|
|
2395
2395
|
:param add_operator:
|
|
2396
2396
|
:param add_operator_props:
|
|
2397
2397
|
"""
|
|
@@ -2647,10 +2647,10 @@ class FILEBROWSER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2647
2647
|
searchpaths: list[str],
|
|
2648
2648
|
operator: str,
|
|
2649
2649
|
props_default: dict = None,
|
|
2650
|
-
prop_filepath: str = "filepath",
|
|
2651
|
-
filter_ext:
|
|
2650
|
+
prop_filepath: str | None = "filepath",
|
|
2651
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
2652
2652
|
filter_path=None,
|
|
2653
|
-
display_name:
|
|
2653
|
+
display_name: collections.abc.Callable | None = None,
|
|
2654
2654
|
add_operator=None,
|
|
2655
2655
|
add_operator_props=None,
|
|
2656
2656
|
):
|
|
@@ -2663,14 +2663,14 @@ class FILEBROWSER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2663
2663
|
:param props_default: Properties to assign to each operator.
|
|
2664
2664
|
:type props_default: dict
|
|
2665
2665
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
2666
|
-
:type prop_filepath: str
|
|
2666
|
+
:type prop_filepath: str | None
|
|
2667
2667
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
2668
2668
|
|
|
2669
2669
|
Returning false excludes the file from the list.
|
|
2670
|
-
:type filter_ext:
|
|
2670
|
+
:type filter_ext: collections.abc.Callable | None
|
|
2671
2671
|
:param filter_path:
|
|
2672
2672
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
2673
|
-
:type display_name:
|
|
2673
|
+
:type display_name: collections.abc.Callable | None
|
|
2674
2674
|
:param add_operator:
|
|
2675
2675
|
:param add_operator_props:
|
|
2676
2676
|
"""
|
|
@@ -4298,10 +4298,10 @@ class ASSETBROWSER_MT_catalog(bpy_types.Menu, AssetBrowserMenu, bpy_types._Gener
|
|
|
4298
4298
|
searchpaths: list[str],
|
|
4299
4299
|
operator: str,
|
|
4300
4300
|
props_default: dict = None,
|
|
4301
|
-
prop_filepath: str = "filepath",
|
|
4302
|
-
filter_ext:
|
|
4301
|
+
prop_filepath: str | None = "filepath",
|
|
4302
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
4303
4303
|
filter_path=None,
|
|
4304
|
-
display_name:
|
|
4304
|
+
display_name: collections.abc.Callable | None = None,
|
|
4305
4305
|
add_operator=None,
|
|
4306
4306
|
add_operator_props=None,
|
|
4307
4307
|
):
|
|
@@ -4314,14 +4314,14 @@ class ASSETBROWSER_MT_catalog(bpy_types.Menu, AssetBrowserMenu, bpy_types._Gener
|
|
|
4314
4314
|
:param props_default: Properties to assign to each operator.
|
|
4315
4315
|
:type props_default: dict
|
|
4316
4316
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
4317
|
-
:type prop_filepath: str
|
|
4317
|
+
:type prop_filepath: str | None
|
|
4318
4318
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
4319
4319
|
|
|
4320
4320
|
Returning false excludes the file from the list.
|
|
4321
|
-
:type filter_ext:
|
|
4321
|
+
:type filter_ext: collections.abc.Callable | None
|
|
4322
4322
|
:param filter_path:
|
|
4323
4323
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
4324
|
-
:type display_name:
|
|
4324
|
+
:type display_name: collections.abc.Callable | None
|
|
4325
4325
|
:param add_operator:
|
|
4326
4326
|
:param add_operator_props:
|
|
4327
4327
|
"""
|
|
@@ -4577,10 +4577,10 @@ class ASSETBROWSER_MT_context_menu(
|
|
|
4577
4577
|
searchpaths: list[str],
|
|
4578
4578
|
operator: str,
|
|
4579
4579
|
props_default: dict = None,
|
|
4580
|
-
prop_filepath: str = "filepath",
|
|
4581
|
-
filter_ext:
|
|
4580
|
+
prop_filepath: str | None = "filepath",
|
|
4581
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
4582
4582
|
filter_path=None,
|
|
4583
|
-
display_name:
|
|
4583
|
+
display_name: collections.abc.Callable | None = None,
|
|
4584
4584
|
add_operator=None,
|
|
4585
4585
|
add_operator_props=None,
|
|
4586
4586
|
):
|
|
@@ -4593,14 +4593,14 @@ class ASSETBROWSER_MT_context_menu(
|
|
|
4593
4593
|
:param props_default: Properties to assign to each operator.
|
|
4594
4594
|
:type props_default: dict
|
|
4595
4595
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
4596
|
-
:type prop_filepath: str
|
|
4596
|
+
:type prop_filepath: str | None
|
|
4597
4597
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
4598
4598
|
|
|
4599
4599
|
Returning false excludes the file from the list.
|
|
4600
|
-
:type filter_ext:
|
|
4600
|
+
:type filter_ext: collections.abc.Callable | None
|
|
4601
4601
|
:param filter_path:
|
|
4602
4602
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
4603
|
-
:type display_name:
|
|
4603
|
+
:type display_name: collections.abc.Callable | None
|
|
4604
4604
|
:param add_operator:
|
|
4605
4605
|
:param add_operator_props:
|
|
4606
4606
|
"""
|
|
@@ -4857,10 +4857,10 @@ class ASSETBROWSER_MT_editor_menus(
|
|
|
4857
4857
|
searchpaths: list[str],
|
|
4858
4858
|
operator: str,
|
|
4859
4859
|
props_default: dict = None,
|
|
4860
|
-
prop_filepath: str = "filepath",
|
|
4861
|
-
filter_ext:
|
|
4860
|
+
prop_filepath: str | None = "filepath",
|
|
4861
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
4862
4862
|
filter_path=None,
|
|
4863
|
-
display_name:
|
|
4863
|
+
display_name: collections.abc.Callable | None = None,
|
|
4864
4864
|
add_operator=None,
|
|
4865
4865
|
add_operator_props=None,
|
|
4866
4866
|
):
|
|
@@ -4873,14 +4873,14 @@ class ASSETBROWSER_MT_editor_menus(
|
|
|
4873
4873
|
:param props_default: Properties to assign to each operator.
|
|
4874
4874
|
:type props_default: dict
|
|
4875
4875
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
4876
|
-
:type prop_filepath: str
|
|
4876
|
+
:type prop_filepath: str | None
|
|
4877
4877
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
4878
4878
|
|
|
4879
4879
|
Returning false excludes the file from the list.
|
|
4880
|
-
:type filter_ext:
|
|
4880
|
+
:type filter_ext: collections.abc.Callable | None
|
|
4881
4881
|
:param filter_path:
|
|
4882
4882
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
4883
|
-
:type display_name:
|
|
4883
|
+
:type display_name: collections.abc.Callable | None
|
|
4884
4884
|
:param add_operator:
|
|
4885
4885
|
:param add_operator_props:
|
|
4886
4886
|
"""
|
|
@@ -5134,10 +5134,10 @@ class ASSETBROWSER_MT_select(bpy_types.Menu, AssetBrowserMenu, bpy_types._Generi
|
|
|
5134
5134
|
searchpaths: list[str],
|
|
5135
5135
|
operator: str,
|
|
5136
5136
|
props_default: dict = None,
|
|
5137
|
-
prop_filepath: str = "filepath",
|
|
5138
|
-
filter_ext:
|
|
5137
|
+
prop_filepath: str | None = "filepath",
|
|
5138
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
5139
5139
|
filter_path=None,
|
|
5140
|
-
display_name:
|
|
5140
|
+
display_name: collections.abc.Callable | None = None,
|
|
5141
5141
|
add_operator=None,
|
|
5142
5142
|
add_operator_props=None,
|
|
5143
5143
|
):
|
|
@@ -5150,14 +5150,14 @@ class ASSETBROWSER_MT_select(bpy_types.Menu, AssetBrowserMenu, bpy_types._Generi
|
|
|
5150
5150
|
:param props_default: Properties to assign to each operator.
|
|
5151
5151
|
:type props_default: dict
|
|
5152
5152
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
5153
|
-
:type prop_filepath: str
|
|
5153
|
+
:type prop_filepath: str | None
|
|
5154
5154
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
5155
5155
|
|
|
5156
5156
|
Returning false excludes the file from the list.
|
|
5157
|
-
:type filter_ext:
|
|
5157
|
+
:type filter_ext: collections.abc.Callable | None
|
|
5158
5158
|
:param filter_path:
|
|
5159
5159
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
5160
|
-
:type display_name:
|
|
5160
|
+
:type display_name: collections.abc.Callable | None
|
|
5161
5161
|
:param add_operator:
|
|
5162
5162
|
:param add_operator_props:
|
|
5163
5163
|
"""
|
|
@@ -5411,10 +5411,10 @@ class ASSETBROWSER_MT_view(bpy_types.Menu, AssetBrowserMenu, bpy_types._GenericU
|
|
|
5411
5411
|
searchpaths: list[str],
|
|
5412
5412
|
operator: str,
|
|
5413
5413
|
props_default: dict = None,
|
|
5414
|
-
prop_filepath: str = "filepath",
|
|
5415
|
-
filter_ext:
|
|
5414
|
+
prop_filepath: str | None = "filepath",
|
|
5415
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
5416
5416
|
filter_path=None,
|
|
5417
|
-
display_name:
|
|
5417
|
+
display_name: collections.abc.Callable | None = None,
|
|
5418
5418
|
add_operator=None,
|
|
5419
5419
|
add_operator_props=None,
|
|
5420
5420
|
):
|
|
@@ -5427,14 +5427,14 @@ class ASSETBROWSER_MT_view(bpy_types.Menu, AssetBrowserMenu, bpy_types._GenericU
|
|
|
5427
5427
|
:param props_default: Properties to assign to each operator.
|
|
5428
5428
|
:type props_default: dict
|
|
5429
5429
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
5430
|
-
:type prop_filepath: str
|
|
5430
|
+
:type prop_filepath: str | None
|
|
5431
5431
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
5432
5432
|
|
|
5433
5433
|
Returning false excludes the file from the list.
|
|
5434
|
-
:type filter_ext:
|
|
5434
|
+
:type filter_ext: collections.abc.Callable | None
|
|
5435
5435
|
:param filter_path:
|
|
5436
5436
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
5437
|
-
:type display_name:
|
|
5437
|
+
:type display_name: collections.abc.Callable | None
|
|
5438
5438
|
:param add_operator:
|
|
5439
5439
|
:param add_operator_props:
|
|
5440
5440
|
"""
|
|
@@ -5690,10 +5690,10 @@ class FILEBROWSER_MT_context_menu(
|
|
|
5690
5690
|
searchpaths: list[str],
|
|
5691
5691
|
operator: str,
|
|
5692
5692
|
props_default: dict = None,
|
|
5693
|
-
prop_filepath: str = "filepath",
|
|
5694
|
-
filter_ext:
|
|
5693
|
+
prop_filepath: str | None = "filepath",
|
|
5694
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
5695
5695
|
filter_path=None,
|
|
5696
|
-
display_name:
|
|
5696
|
+
display_name: collections.abc.Callable | None = None,
|
|
5697
5697
|
add_operator=None,
|
|
5698
5698
|
add_operator_props=None,
|
|
5699
5699
|
):
|
|
@@ -5706,14 +5706,14 @@ class FILEBROWSER_MT_context_menu(
|
|
|
5706
5706
|
:param props_default: Properties to assign to each operator.
|
|
5707
5707
|
:type props_default: dict
|
|
5708
5708
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
5709
|
-
:type prop_filepath: str
|
|
5709
|
+
:type prop_filepath: str | None
|
|
5710
5710
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
5711
5711
|
|
|
5712
5712
|
Returning false excludes the file from the list.
|
|
5713
|
-
:type filter_ext:
|
|
5713
|
+
:type filter_ext: collections.abc.Callable | None
|
|
5714
5714
|
:param filter_path:
|
|
5715
5715
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
5716
|
-
:type display_name:
|
|
5716
|
+
:type display_name: collections.abc.Callable | None
|
|
5717
5717
|
:param add_operator:
|
|
5718
5718
|
:param add_operator_props:
|
|
5719
5719
|
"""
|
|
@@ -5970,10 +5970,10 @@ class FILEBROWSER_MT_editor_menus(
|
|
|
5970
5970
|
searchpaths: list[str],
|
|
5971
5971
|
operator: str,
|
|
5972
5972
|
props_default: dict = None,
|
|
5973
|
-
prop_filepath: str = "filepath",
|
|
5974
|
-
filter_ext:
|
|
5973
|
+
prop_filepath: str | None = "filepath",
|
|
5974
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
5975
5975
|
filter_path=None,
|
|
5976
|
-
display_name:
|
|
5976
|
+
display_name: collections.abc.Callable | None = None,
|
|
5977
5977
|
add_operator=None,
|
|
5978
5978
|
add_operator_props=None,
|
|
5979
5979
|
):
|
|
@@ -5986,14 +5986,14 @@ class FILEBROWSER_MT_editor_menus(
|
|
|
5986
5986
|
:param props_default: Properties to assign to each operator.
|
|
5987
5987
|
:type props_default: dict
|
|
5988
5988
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
5989
|
-
:type prop_filepath: str
|
|
5989
|
+
:type prop_filepath: str | None
|
|
5990
5990
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
5991
5991
|
|
|
5992
5992
|
Returning false excludes the file from the list.
|
|
5993
|
-
:type filter_ext:
|
|
5993
|
+
:type filter_ext: collections.abc.Callable | None
|
|
5994
5994
|
:param filter_path:
|
|
5995
5995
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
5996
|
-
:type display_name:
|
|
5996
|
+
:type display_name: collections.abc.Callable | None
|
|
5997
5997
|
:param add_operator:
|
|
5998
5998
|
:param add_operator_props:
|
|
5999
5999
|
"""
|
|
@@ -6247,10 +6247,10 @@ class FILEBROWSER_MT_select(bpy_types.Menu, FileBrowserMenu, bpy_types._GenericU
|
|
|
6247
6247
|
searchpaths: list[str],
|
|
6248
6248
|
operator: str,
|
|
6249
6249
|
props_default: dict = None,
|
|
6250
|
-
prop_filepath: str = "filepath",
|
|
6251
|
-
filter_ext:
|
|
6250
|
+
prop_filepath: str | None = "filepath",
|
|
6251
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
6252
6252
|
filter_path=None,
|
|
6253
|
-
display_name:
|
|
6253
|
+
display_name: collections.abc.Callable | None = None,
|
|
6254
6254
|
add_operator=None,
|
|
6255
6255
|
add_operator_props=None,
|
|
6256
6256
|
):
|
|
@@ -6263,14 +6263,14 @@ class FILEBROWSER_MT_select(bpy_types.Menu, FileBrowserMenu, bpy_types._GenericU
|
|
|
6263
6263
|
:param props_default: Properties to assign to each operator.
|
|
6264
6264
|
:type props_default: dict
|
|
6265
6265
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
6266
|
-
:type prop_filepath: str
|
|
6266
|
+
:type prop_filepath: str | None
|
|
6267
6267
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
6268
6268
|
|
|
6269
6269
|
Returning false excludes the file from the list.
|
|
6270
|
-
:type filter_ext:
|
|
6270
|
+
:type filter_ext: collections.abc.Callable | None
|
|
6271
6271
|
:param filter_path:
|
|
6272
6272
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
6273
|
-
:type display_name:
|
|
6273
|
+
:type display_name: collections.abc.Callable | None
|
|
6274
6274
|
:param add_operator:
|
|
6275
6275
|
:param add_operator_props:
|
|
6276
6276
|
"""
|
|
@@ -6524,10 +6524,10 @@ class FILEBROWSER_MT_view(bpy_types.Menu, FileBrowserMenu, bpy_types._GenericUI)
|
|
|
6524
6524
|
searchpaths: list[str],
|
|
6525
6525
|
operator: str,
|
|
6526
6526
|
props_default: dict = None,
|
|
6527
|
-
prop_filepath: str = "filepath",
|
|
6528
|
-
filter_ext:
|
|
6527
|
+
prop_filepath: str | None = "filepath",
|
|
6528
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
6529
6529
|
filter_path=None,
|
|
6530
|
-
display_name:
|
|
6530
|
+
display_name: collections.abc.Callable | None = None,
|
|
6531
6531
|
add_operator=None,
|
|
6532
6532
|
add_operator_props=None,
|
|
6533
6533
|
):
|
|
@@ -6540,14 +6540,14 @@ class FILEBROWSER_MT_view(bpy_types.Menu, FileBrowserMenu, bpy_types._GenericUI)
|
|
|
6540
6540
|
:param props_default: Properties to assign to each operator.
|
|
6541
6541
|
:type props_default: dict
|
|
6542
6542
|
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
6543
|
-
:type prop_filepath: str
|
|
6543
|
+
:type prop_filepath: str | None
|
|
6544
6544
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
6545
6545
|
|
|
6546
6546
|
Returning false excludes the file from the list.
|
|
6547
|
-
:type filter_ext:
|
|
6547
|
+
:type filter_ext: collections.abc.Callable | None
|
|
6548
6548
|
:param filter_path:
|
|
6549
6549
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
6550
|
-
:type display_name:
|
|
6550
|
+
:type display_name: collections.abc.Callable | None
|
|
6551
6551
|
:param add_operator:
|
|
6552
6552
|
:param add_operator_props:
|
|
6553
6553
|
"""
|