fake-bpy-module 20240514__py3-none-any.whl → 20240516__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_ui/properties_render/__init__.pyi +183 -0
- bl_ui/properties_world/__init__.pyi +499 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +3 -0
- bl_ui/space_userpref/__init__.pyi +2 -2
- bl_ui/space_view3d/__init__.pyi +329 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +170 -0
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +1 -2
- bpy/ops/bl_pkg/__init__.pyi +511 -0
- bpy/ops/export_scene/__init__.pyi +2 -81
- bpy/ops/grease_pencil/__init__.pyi +41 -0
- bpy/ops/import_scene/__init__.pyi +0 -28
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/preferences/__init__.pyi +6 -3
- bpy/types/__init__.pyi +50845 -50660
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/METADATA +2 -1
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/RECORD +23 -25
- mathutils/__init__.pyi +72 -71
- mathutils/geometry/__init__.pyi +4 -4
- bpy/ops/export_mesh/__init__.pyi +0 -67
- bpy/ops/import_mesh/__init__.pyi +0 -49
- bpy/ops/import_mesh/py.typed +0 -0
- /bpy/ops/{export_mesh → bl_pkg}/py.typed +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/top_level.txt +0 -0
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -113,11 +113,11 @@ def bake(
|
|
|
113
113
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
114
114
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
115
115
|
channel_types: typing.Optional[typing.Any] = {
|
|
116
|
-
'"BBONE"',
|
|
117
116
|
'"PROPS"',
|
|
117
|
+
'"SCALE"',
|
|
118
|
+
'"BBONE"',
|
|
118
119
|
'"ROTATION"',
|
|
119
120
|
'"LOCATION"',
|
|
120
|
-
'"SCALE"',
|
|
121
121
|
},
|
|
122
122
|
):
|
|
123
123
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -366,7 +366,8 @@ def extension_repo_add(
|
|
|
366
366
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
367
367
|
undo: typing.Optional[bool] = None,
|
|
368
368
|
name: typing.Union[str, typing.Any] = "",
|
|
369
|
-
|
|
369
|
+
remote_url: typing.Union[str, typing.Any] = "",
|
|
370
|
+
use_sync_on_startup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
370
371
|
use_custom_directory: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
371
372
|
custom_directory: typing.Union[str, typing.Any] = "",
|
|
372
373
|
type: typing.Optional[typing.Any] = "REMOTE",
|
|
@@ -378,8 +379,10 @@ def extension_repo_add(
|
|
|
378
379
|
:type undo: typing.Optional[bool]
|
|
379
380
|
:param name: Name, Unique repository name
|
|
380
381
|
:type name: typing.Union[str, typing.Any]
|
|
381
|
-
:param
|
|
382
|
-
:type
|
|
382
|
+
:param remote_url: URL, Remote URL or path for extension repository
|
|
383
|
+
:type remote_url: typing.Union[str, typing.Any]
|
|
384
|
+
:param use_sync_on_startup: Check for Updates on Startup, Allow Blender to check for updates upon launch
|
|
385
|
+
:type use_sync_on_startup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
383
386
|
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
|
|
384
387
|
:type use_custom_directory: typing.Optional[typing.Union[bool, typing.Any]]
|
|
385
388
|
:param custom_directory: Custom Directory, The local directory containing extensions
|