fake-bpy-module 20240117__py3-none-any.whl → 20240120__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.
- addon_utils/__init__.pyi +1 -1
- bl_console_utils/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +2 -2
- bl_i18n_utils/utils/__init__.pyi +1 -1
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +20 -20
- bl_operators/view3d/__init__.pyi +4 -2
- bl_ui/__init__.pyi +62 -61
- bl_ui/properties_data_modifier/__init__.pyi +55 -0
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +2 -2
- bpy/app/handlers/__init__.pyi +4 -0
- bpy/ops/__init__.pyi +64 -64
- bpy/ops/font/__init__.pyi +16 -0
- bpy/ops/object/__init__.pyi +21 -1
- bpy/ops/outliner/__init__.pyi +2 -34
- bpy/ops/view3d/__init__.pyi +4 -4
- bpy/types/__init__.pyi +625 -166
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- bpy_extras/object_utils/__init__.pyi +13 -0
- {fake_bpy_module-20240117.dist-info → fake_bpy_module-20240120.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240117.dist-info → fake_bpy_module-20240120.dist-info}/RECORD +26 -26
- {fake_bpy_module-20240117.dist-info → fake_bpy_module-20240120.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240117.dist-info → fake_bpy_module-20240120.dist-info}/top_level.txt +0 -0
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -348,7 +348,7 @@ def edit_mesh_extrude_manifold_normal(
|
|
|
348
348
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
349
349
|
undo: typing.Optional[bool] = None,
|
|
350
350
|
):
|
|
351
|
-
"""Extrude manifold region along normals :File: `startup/bl_operators/view3d.py\:
|
|
351
|
+
"""Extrude manifold region along normals :File: `startup/bl_operators/view3d.py\:192 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/view3d.py#L192>`__
|
|
352
352
|
|
|
353
353
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
354
354
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -366,7 +366,7 @@ def edit_mesh_extrude_move_normal(
|
|
|
366
366
|
*,
|
|
367
367
|
dissolve_and_intersect: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
368
368
|
):
|
|
369
|
-
"""Extrude region together along the average normal :File: `startup/bl_operators/view3d.py\:
|
|
369
|
+
"""Extrude region together along the average normal :File: `startup/bl_operators/view3d.py\:157 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/view3d.py#L157>`__
|
|
370
370
|
|
|
371
371
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
372
372
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -384,7 +384,7 @@ def edit_mesh_extrude_move_shrink_fatten(
|
|
|
384
384
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
385
385
|
undo: typing.Optional[bool] = None,
|
|
386
386
|
):
|
|
387
|
-
"""Extrude region together along local normals :File: `startup/bl_operators/view3d.py\:
|
|
387
|
+
"""Extrude region together along local normals :File: `startup/bl_operators/view3d.py\:175 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/view3d.py#L175>`__
|
|
388
388
|
|
|
389
389
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
390
390
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1078,7 +1078,7 @@ def transform_gizmo_set(
|
|
|
1078
1078
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1079
1079
|
type: typing.Optional[typing.Any] = {},
|
|
1080
1080
|
):
|
|
1081
|
-
"""Set the current transform gizmo :File: `startup/bl_operators/view3d.py\:
|
|
1081
|
+
"""Set the current transform gizmo :File: `startup/bl_operators/view3d.py\:239 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/view3d.py#L239>`__
|
|
1082
1082
|
|
|
1083
1083
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1084
1084
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|