fake-bpy-module 20240511__py3-none-any.whl → 20240514__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_data_grease_pencil/__init__.pyi +66 -66
- bl_ui/properties_grease_pencil_common/__init__.pyi +362 -0
- bl_ui/space_clip/__init__.pyi +181 -0
- bl_ui/space_sequencer/__init__.pyi +228 -111
- bl_ui/space_toolsystem_toolbar/__init__.pyi +43 -43
- bpy/ops/anim/__init__.pyi +1 -1
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +51 -0
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/ui/__init__.pyi +3 -0
- bpy/types/__init__.pyi +1535 -1708
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240514.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240514.dist-info}/RECORD +15 -15
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240514.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240514.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def binding_unassign_object(
|
|
|
10
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
11
11
|
undo: typing.Optional[bool] = None,
|
|
12
12
|
):
|
|
13
|
-
"""Clear the assigned
|
|
13
|
+
"""Clear the assigned action binding, effectively making this data-block non-animated
|
|
14
14
|
|
|
15
15
|
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -23,10 +23,10 @@ def fbx(
|
|
|
23
23
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
24
24
|
object_types: typing.Optional[typing.Any] = {
|
|
25
25
|
'"CAMERA"',
|
|
26
|
-
'"LIGHT"',
|
|
27
26
|
'"ARMATURE"',
|
|
28
|
-
'"MESH"',
|
|
29
27
|
'"EMPTY"',
|
|
28
|
+
'"MESH"',
|
|
29
|
+
'"LIGHT"',
|
|
30
30
|
'"OTHER"',
|
|
31
31
|
},
|
|
32
32
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -1182,6 +1182,57 @@ def set_uniform_thickness(
|
|
|
1182
1182
|
|
|
1183
1183
|
...
|
|
1184
1184
|
|
|
1185
|
+
def snap_cursor_to_selected(
|
|
1186
|
+
override_context: typing.Optional[
|
|
1187
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1188
|
+
] = None,
|
|
1189
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1190
|
+
undo: typing.Optional[bool] = None,
|
|
1191
|
+
):
|
|
1192
|
+
"""Snap cursor to center of selected points
|
|
1193
|
+
|
|
1194
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1195
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1196
|
+
:type undo: typing.Optional[bool]
|
|
1197
|
+
"""
|
|
1198
|
+
|
|
1199
|
+
...
|
|
1200
|
+
|
|
1201
|
+
def snap_to_cursor(
|
|
1202
|
+
override_context: typing.Optional[
|
|
1203
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1204
|
+
] = None,
|
|
1205
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1206
|
+
undo: typing.Optional[bool] = None,
|
|
1207
|
+
use_offset: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1208
|
+
):
|
|
1209
|
+
"""Snap selected points/strokes to the cursor
|
|
1210
|
+
|
|
1211
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1212
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1213
|
+
:type undo: typing.Optional[bool]
|
|
1214
|
+
:param use_offset: With Offset, Offset the entire stroke instead of selected points only
|
|
1215
|
+
:type use_offset: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1216
|
+
"""
|
|
1217
|
+
|
|
1218
|
+
...
|
|
1219
|
+
|
|
1220
|
+
def snap_to_grid(
|
|
1221
|
+
override_context: typing.Optional[
|
|
1222
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1223
|
+
] = None,
|
|
1224
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1225
|
+
undo: typing.Optional[bool] = None,
|
|
1226
|
+
):
|
|
1227
|
+
"""Snap selected points to the nearest grid points
|
|
1228
|
+
|
|
1229
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1230
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1231
|
+
:type undo: typing.Optional[bool]
|
|
1232
|
+
"""
|
|
1233
|
+
|
|
1234
|
+
...
|
|
1235
|
+
|
|
1185
1236
|
def stroke_cutter(
|
|
1186
1237
|
override_context: typing.Optional[
|
|
1187
1238
|
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -113,10 +113,10 @@ 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
|
-
'"LOCATION"',
|
|
117
116
|
'"BBONE"',
|
|
118
|
-
'"ROTATION"',
|
|
119
117
|
'"PROPS"',
|
|
118
|
+
'"ROTATION"',
|
|
119
|
+
'"LOCATION"',
|
|
120
120
|
'"SCALE"',
|
|
121
121
|
},
|
|
122
122
|
):
|
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -289,12 +289,15 @@ def eyedropper_depth(
|
|
|
289
289
|
] = None,
|
|
290
290
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
291
291
|
undo: typing.Optional[bool] = None,
|
|
292
|
+
prop_data_path: typing.Union[str, typing.Any] = "",
|
|
292
293
|
):
|
|
293
294
|
"""Sample depth from the 3D view
|
|
294
295
|
|
|
295
296
|
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
296
297
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
297
298
|
:type undo: typing.Optional[bool]
|
|
299
|
+
:param prop_data_path: Data Path, Path of property to be set with the depth
|
|
300
|
+
:type prop_data_path: typing.Union[str, typing.Any]
|
|
298
301
|
"""
|
|
299
302
|
|
|
300
303
|
...
|