fake-bpy-module 20240122__py3-none-any.whl → 20240125__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.
- bl_console_utils/autocomplete/__init__.pyi +1 -1
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +22 -22
- bl_operators/anim/__init__.pyi +39 -1
- bl_operators/wm/__init__.pyi +0 -1
- bl_ui/__init__.pyi +62 -62
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -1
- bl_ui/space_topbar/__init__.pyi +1 -0
- bl_ui/space_userpref/__init__.pyi +39 -0
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +63 -63
- bpy/ops/armature/__init__.pyi +18 -6
- bpy/ops/geometry/__init__.pyi +3 -3
- bpy/ops/graph/__init__.pyi +7 -3
- bpy/ops/node/__init__.pyi +18 -18
- bpy/ops/object/__init__.pyi +36 -36
- bpy/ops/outliner/__init__.pyi +1 -1
- bpy/ops/ui/__init__.pyi +3 -3
- bpy/ops/view3d/__init__.pyi +6 -6
- bpy/ops/wm/__init__.pyi +2 -2
- bpy/types/__init__.pyi +609 -244
- bpy_extras/__init__.pyi +1 -1
- bpy_types/__init__.pyi +29 -0
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/RECORD +29 -29
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -14,7 +14,7 @@ def add_collection(
|
|
|
14
14
|
undo: typing.Optional[bool] = None,
|
|
15
15
|
*,
|
|
16
16
|
name: typing.Union[str, typing.Any] = "",
|
|
17
|
-
|
|
17
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
18
18
|
):
|
|
19
19
|
"""Add a collection info node to the current node editor
|
|
20
20
|
|
|
@@ -23,8 +23,8 @@ def add_collection(
|
|
|
23
23
|
:type undo: typing.Optional[bool]
|
|
24
24
|
:param name: Name, Name of the data-block to use by the operator
|
|
25
25
|
:type name: typing.Union[str, typing.Any]
|
|
26
|
-
:param
|
|
27
|
-
:type
|
|
26
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
27
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
...
|
|
@@ -63,7 +63,7 @@ def add_file(
|
|
|
63
63
|
display_type: typing.Optional[typing.Any] = "DEFAULT",
|
|
64
64
|
sort_method: typing.Optional[typing.Any] = "",
|
|
65
65
|
name: typing.Union[str, typing.Any] = "",
|
|
66
|
-
|
|
66
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
67
67
|
):
|
|
68
68
|
"""Add a file node to the current node editor
|
|
69
69
|
|
|
@@ -124,8 +124,8 @@ def add_file(
|
|
|
124
124
|
:type sort_method: typing.Optional[typing.Any]
|
|
125
125
|
:param name: Name, Name of the data-block to use by the operator
|
|
126
126
|
:type name: typing.Union[str, typing.Any]
|
|
127
|
-
:param
|
|
128
|
-
:type
|
|
127
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
128
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
129
129
|
"""
|
|
130
130
|
|
|
131
131
|
...
|
|
@@ -138,7 +138,7 @@ def add_group(
|
|
|
138
138
|
undo: typing.Optional[bool] = None,
|
|
139
139
|
*,
|
|
140
140
|
name: typing.Union[str, typing.Any] = "",
|
|
141
|
-
|
|
141
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
142
142
|
show_datablock_in_node: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
143
143
|
):
|
|
144
144
|
"""Add an existing node group to the current node editor
|
|
@@ -148,8 +148,8 @@ def add_group(
|
|
|
148
148
|
:type undo: typing.Optional[bool]
|
|
149
149
|
:param name: Name, Name of the data-block to use by the operator
|
|
150
150
|
:type name: typing.Union[str, typing.Any]
|
|
151
|
-
:param
|
|
152
|
-
:type
|
|
151
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
152
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
153
153
|
:param show_datablock_in_node: Show the datablock selector in the node
|
|
154
154
|
:type show_datablock_in_node: typing.Optional[typing.Union[bool, typing.Any]]
|
|
155
155
|
"""
|
|
@@ -190,7 +190,7 @@ def add_mask(
|
|
|
190
190
|
undo: typing.Optional[bool] = None,
|
|
191
191
|
*,
|
|
192
192
|
name: typing.Union[str, typing.Any] = "",
|
|
193
|
-
|
|
193
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
194
194
|
):
|
|
195
195
|
"""Add a mask node to the current node editor
|
|
196
196
|
|
|
@@ -199,8 +199,8 @@ def add_mask(
|
|
|
199
199
|
:type undo: typing.Optional[bool]
|
|
200
200
|
:param name: Name, Name of the data-block to use by the operator
|
|
201
201
|
:type name: typing.Union[str, typing.Any]
|
|
202
|
-
:param
|
|
203
|
-
:type
|
|
202
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
203
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
204
204
|
"""
|
|
205
205
|
|
|
206
206
|
...
|
|
@@ -213,7 +213,7 @@ def add_material(
|
|
|
213
213
|
undo: typing.Optional[bool] = None,
|
|
214
214
|
*,
|
|
215
215
|
name: typing.Union[str, typing.Any] = "",
|
|
216
|
-
|
|
216
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
217
217
|
):
|
|
218
218
|
"""Add a material node to the current node editor
|
|
219
219
|
|
|
@@ -222,8 +222,8 @@ def add_material(
|
|
|
222
222
|
:type undo: typing.Optional[bool]
|
|
223
223
|
:param name: Name, Name of the data-block to use by the operator
|
|
224
224
|
:type name: typing.Union[str, typing.Any]
|
|
225
|
-
:param
|
|
226
|
-
:type
|
|
225
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
226
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
227
227
|
"""
|
|
228
228
|
|
|
229
229
|
...
|
|
@@ -264,7 +264,7 @@ def add_object(
|
|
|
264
264
|
undo: typing.Optional[bool] = None,
|
|
265
265
|
*,
|
|
266
266
|
name: typing.Union[str, typing.Any] = "",
|
|
267
|
-
|
|
267
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
268
268
|
):
|
|
269
269
|
"""Add an object info node to the current node editor
|
|
270
270
|
|
|
@@ -273,8 +273,8 @@ def add_object(
|
|
|
273
273
|
:type undo: typing.Optional[bool]
|
|
274
274
|
:param name: Name, Name of the data-block to use by the operator
|
|
275
275
|
:type name: typing.Union[str, typing.Any]
|
|
276
|
-
:param
|
|
277
|
-
:type
|
|
276
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
277
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
278
278
|
"""
|
|
279
279
|
|
|
280
280
|
...
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -50,7 +50,7 @@ def add_modifier_menu(
|
|
|
50
50
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
51
|
undo: typing.Optional[bool] = None,
|
|
52
52
|
):
|
|
53
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_ui/properties_data_modifier.py\:
|
|
53
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_ui/properties_data_modifier.py\:258 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_ui/properties_data_modifier.py#L258>`__
|
|
54
54
|
|
|
55
55
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
56
56
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -68,7 +68,7 @@ def add_named(
|
|
|
68
68
|
*,
|
|
69
69
|
linked: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
70
70
|
name: typing.Union[str, typing.Any] = "",
|
|
71
|
-
|
|
71
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
72
72
|
matrix: typing.Optional[typing.Any] = (
|
|
73
73
|
(0.0, 0.0, 0.0, 0.0),
|
|
74
74
|
(0.0, 0.0, 0.0, 0.0),
|
|
@@ -87,8 +87,8 @@ def add_named(
|
|
|
87
87
|
:type linked: typing.Optional[typing.Union[bool, typing.Any]]
|
|
88
88
|
:param name: Name, Name of the data-block to use by the operator
|
|
89
89
|
:type name: typing.Union[str, typing.Any]
|
|
90
|
-
:param
|
|
91
|
-
:type
|
|
90
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
91
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
92
92
|
:param matrix: Matrix
|
|
93
93
|
:type matrix: typing.Optional[typing.Any]
|
|
94
94
|
:param drop_x: Drop X, X-coordinate (screen space) to place the new object under
|
|
@@ -372,7 +372,7 @@ def collection_external_asset_drop(
|
|
|
372
372
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
373
373
|
undo: typing.Optional[bool] = None,
|
|
374
374
|
*,
|
|
375
|
-
|
|
375
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
376
376
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
377
377
|
location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
378
378
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
@@ -387,8 +387,8 @@ def collection_external_asset_drop(
|
|
|
387
387
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
388
388
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
389
389
|
:type undo: typing.Optional[bool]
|
|
390
|
-
:param
|
|
391
|
-
:type
|
|
390
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
391
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
392
392
|
:param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
393
393
|
:type align: typing.Optional[typing.Any]
|
|
394
394
|
:param location: Location, Location for the newly added object
|
|
@@ -422,7 +422,7 @@ def collection_instance_add(
|
|
|
422
422
|
location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
423
423
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
424
424
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
425
|
-
|
|
425
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
426
426
|
drop_x: typing.Optional[typing.Any] = 0,
|
|
427
427
|
drop_y: typing.Optional[typing.Any] = 0,
|
|
428
428
|
):
|
|
@@ -443,8 +443,8 @@ def collection_instance_add(
|
|
|
443
443
|
:type rotation: typing.Optional[typing.Any]
|
|
444
444
|
:param scale: Scale, Scale for the newly added object
|
|
445
445
|
:type scale: typing.Optional[typing.Any]
|
|
446
|
-
:param
|
|
447
|
-
:type
|
|
446
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
447
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
448
448
|
:param drop_x: Drop X, X-coordinate (screen space) to place the new object under
|
|
449
449
|
:type drop_x: typing.Optional[typing.Any]
|
|
450
450
|
:param drop_y: Drop Y, Y-coordinate (screen space) to place the new object under
|
|
@@ -720,7 +720,7 @@ def data_instance_add(
|
|
|
720
720
|
undo: typing.Optional[bool] = None,
|
|
721
721
|
*,
|
|
722
722
|
name: typing.Union[str, typing.Any] = "",
|
|
723
|
-
|
|
723
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
724
724
|
type: typing.Optional[typing.Union[str, int]] = "ACTION",
|
|
725
725
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
726
726
|
location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
@@ -736,8 +736,8 @@ def data_instance_add(
|
|
|
736
736
|
:type undo: typing.Optional[bool]
|
|
737
737
|
:param name: Name, Name of the data-block to use by the operator
|
|
738
738
|
:type name: typing.Union[str, typing.Any]
|
|
739
|
-
:param
|
|
740
|
-
:type
|
|
739
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
740
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
741
741
|
:param type: Type
|
|
742
742
|
:type type: typing.Optional[typing.Union[str, int]]
|
|
743
743
|
:param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
@@ -889,7 +889,7 @@ def drop_geometry_nodes(
|
|
|
889
889
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
890
890
|
undo: typing.Optional[bool] = None,
|
|
891
891
|
*,
|
|
892
|
-
|
|
892
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
893
893
|
show_datablock_in_modifier: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
894
894
|
):
|
|
895
895
|
"""Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
@@ -897,8 +897,8 @@ def drop_geometry_nodes(
|
|
|
897
897
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
898
898
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
899
899
|
:type undo: typing.Optional[bool]
|
|
900
|
-
:param
|
|
901
|
-
:type
|
|
900
|
+
:param session_uid: Session UID, Session UID of the geometry node group being dropped
|
|
901
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
902
902
|
:param show_datablock_in_modifier: Show the datablock selector in the modifier
|
|
903
903
|
:type show_datablock_in_modifier: typing.Optional[typing.Union[bool, typing.Any]]
|
|
904
904
|
"""
|
|
@@ -915,7 +915,7 @@ def drop_named_image(
|
|
|
915
915
|
filepath: typing.Union[str, typing.Any] = "",
|
|
916
916
|
relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
917
917
|
name: typing.Union[str, typing.Any] = "",
|
|
918
|
-
|
|
918
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
919
919
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
920
920
|
location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
921
921
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
@@ -932,8 +932,8 @@ def drop_named_image(
|
|
|
932
932
|
:type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
|
|
933
933
|
:param name: Name, Name of the data-block to use by the operator
|
|
934
934
|
:type name: typing.Union[str, typing.Any]
|
|
935
|
-
:param
|
|
936
|
-
:type
|
|
935
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
936
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
937
937
|
:param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
938
938
|
:type align: typing.Optional[typing.Any]
|
|
939
939
|
:param location: Location, Location for the newly added object
|
|
@@ -954,7 +954,7 @@ def drop_named_material(
|
|
|
954
954
|
undo: typing.Optional[bool] = None,
|
|
955
955
|
*,
|
|
956
956
|
name: typing.Union[str, typing.Any] = "",
|
|
957
|
-
|
|
957
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
958
958
|
):
|
|
959
959
|
"""Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
960
960
|
|
|
@@ -963,8 +963,8 @@ def drop_named_material(
|
|
|
963
963
|
:type undo: typing.Optional[bool]
|
|
964
964
|
:param name: Name, Name of the data-block to use by the operator
|
|
965
965
|
:type name: typing.Union[str, typing.Any]
|
|
966
|
-
:param
|
|
967
|
-
:type
|
|
966
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
967
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
968
968
|
"""
|
|
969
969
|
|
|
970
970
|
...
|
|
@@ -1193,7 +1193,7 @@ def geometry_node_bake_delete_single(
|
|
|
1193
1193
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1194
1194
|
undo: typing.Optional[bool] = None,
|
|
1195
1195
|
*,
|
|
1196
|
-
|
|
1196
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
1197
1197
|
modifier_name: typing.Union[str, typing.Any] = "",
|
|
1198
1198
|
bake_id: typing.Optional[typing.Any] = 0,
|
|
1199
1199
|
):
|
|
@@ -1202,8 +1202,8 @@ def geometry_node_bake_delete_single(
|
|
|
1202
1202
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1203
1203
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1204
1204
|
:type undo: typing.Optional[bool]
|
|
1205
|
-
:param
|
|
1206
|
-
:type
|
|
1205
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
1206
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
1207
1207
|
:param modifier_name: Modifier Name, Name of the modifier that contains the node
|
|
1208
1208
|
:type modifier_name: typing.Union[str, typing.Any]
|
|
1209
1209
|
:param bake_id: Bake ID, Nested node id of the node
|
|
@@ -1219,7 +1219,7 @@ def geometry_node_bake_single(
|
|
|
1219
1219
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1220
1220
|
undo: typing.Optional[bool] = None,
|
|
1221
1221
|
*,
|
|
1222
|
-
|
|
1222
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
1223
1223
|
modifier_name: typing.Union[str, typing.Any] = "",
|
|
1224
1224
|
bake_id: typing.Optional[typing.Any] = 0,
|
|
1225
1225
|
):
|
|
@@ -1228,8 +1228,8 @@ def geometry_node_bake_single(
|
|
|
1228
1228
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1229
1229
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1230
1230
|
:type undo: typing.Optional[bool]
|
|
1231
|
-
:param
|
|
1232
|
-
:type
|
|
1231
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
1232
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
1233
1233
|
:param modifier_name: Modifier Name, Name of the modifier that contains the node
|
|
1234
1234
|
:type modifier_name: typing.Union[str, typing.Any]
|
|
1235
1235
|
:param bake_id: Bake ID, Nested node id of the node
|
|
@@ -2397,7 +2397,7 @@ def make_override_library(
|
|
|
2397
2397
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2398
2398
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2399
2399
|
:type undo: typing.Optional[bool]
|
|
2400
|
-
:param collection: Override Collection, Session
|
|
2400
|
+
:param collection: Override Collection, Session UID of the directly linked collection containing the selected object, to make an override from
|
|
2401
2401
|
:type collection: typing.Optional[typing.Any]
|
|
2402
2402
|
"""
|
|
2403
2403
|
|
|
@@ -2707,7 +2707,7 @@ def modifier_add_node_group(
|
|
|
2707
2707
|
asset_library_type: typing.Optional[typing.Union[str, int]] = "LOCAL",
|
|
2708
2708
|
asset_library_identifier: typing.Union[str, typing.Any] = "",
|
|
2709
2709
|
relative_asset_identifier: typing.Union[str, typing.Any] = "",
|
|
2710
|
-
|
|
2710
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
2711
2711
|
):
|
|
2712
2712
|
"""Add a procedural operation/effect to the active object
|
|
2713
2713
|
|
|
@@ -2720,8 +2720,8 @@ def modifier_add_node_group(
|
|
|
2720
2720
|
:type asset_library_identifier: typing.Union[str, typing.Any]
|
|
2721
2721
|
:param relative_asset_identifier: Relative Asset Identifier
|
|
2722
2722
|
:type relative_asset_identifier: typing.Union[str, typing.Any]
|
|
2723
|
-
:param
|
|
2724
|
-
:type
|
|
2723
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
2724
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
2725
2725
|
"""
|
|
2726
2726
|
|
|
2727
2727
|
...
|
|
@@ -4733,7 +4733,7 @@ def transform_to_mouse(
|
|
|
4733
4733
|
undo: typing.Optional[bool] = None,
|
|
4734
4734
|
*,
|
|
4735
4735
|
name: typing.Union[str, typing.Any] = "",
|
|
4736
|
-
|
|
4736
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
4737
4737
|
matrix: typing.Optional[typing.Any] = (
|
|
4738
4738
|
(0.0, 0.0, 0.0, 0.0),
|
|
4739
4739
|
(0.0, 0.0, 0.0, 0.0),
|
|
@@ -4748,10 +4748,10 @@ def transform_to_mouse(
|
|
|
4748
4748
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
4749
4749
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4750
4750
|
:type undo: typing.Optional[bool]
|
|
4751
|
-
:param name: Name, Object name to place (uses the active object when this and '
|
|
4751
|
+
:param name: Name, Object name to place (uses the active object when this and 'session_uid' are unset)
|
|
4752
4752
|
:type name: typing.Union[str, typing.Any]
|
|
4753
|
-
:param
|
|
4754
|
-
:type
|
|
4753
|
+
:param session_uid: Session UUID, Session UUID of the object to place (uses the active object when this and 'name' are unset)
|
|
4754
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
4755
4755
|
:param matrix: Matrix
|
|
4756
4756
|
:type matrix: typing.Optional[typing.Any]
|
|
4757
4757
|
:param drop_x: Drop X, X-coordinate (screen space) to place the new object under
|
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -928,7 +928,7 @@ def modifier_operation(
|
|
|
928
928
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
929
929
|
undo: typing.Optional[bool] = None,
|
|
930
930
|
*,
|
|
931
|
-
type: typing.Optional[typing.Any] = "
|
|
931
|
+
type: typing.Optional[typing.Any] = "APPLY",
|
|
932
932
|
):
|
|
933
933
|
"""Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
934
934
|
|
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -158,15 +158,15 @@ def drop_material(
|
|
|
158
158
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
159
159
|
undo: typing.Optional[bool] = None,
|
|
160
160
|
*,
|
|
161
|
-
|
|
161
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
162
162
|
):
|
|
163
163
|
"""Drag material to Material slots in Properties
|
|
164
164
|
|
|
165
165
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
166
166
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
167
167
|
:type undo: typing.Optional[bool]
|
|
168
|
-
:param
|
|
169
|
-
:type
|
|
168
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
169
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
170
170
|
"""
|
|
171
171
|
|
|
172
172
|
...
|
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -12,7 +12,7 @@ def background_image_add(
|
|
|
12
12
|
undo: typing.Optional[bool] = None,
|
|
13
13
|
*,
|
|
14
14
|
name: typing.Union[str, typing.Any] = "",
|
|
15
|
-
|
|
15
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
16
16
|
filepath: typing.Union[str, typing.Any] = "",
|
|
17
17
|
hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
18
18
|
check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -47,8 +47,8 @@ def background_image_add(
|
|
|
47
47
|
:type undo: typing.Optional[bool]
|
|
48
48
|
:param name: Name, Name of the data-block to use by the operator
|
|
49
49
|
:type name: typing.Union[str, typing.Any]
|
|
50
|
-
:param
|
|
51
|
-
:type
|
|
50
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
51
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
52
52
|
:param filepath: File Path, Path to file
|
|
53
53
|
:type filepath: typing.Union[str, typing.Any]
|
|
54
54
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
@@ -310,7 +310,7 @@ def drop_world(
|
|
|
310
310
|
undo: typing.Optional[bool] = None,
|
|
311
311
|
*,
|
|
312
312
|
name: typing.Union[str, typing.Any] = "",
|
|
313
|
-
|
|
313
|
+
session_uid: typing.Optional[typing.Any] = 0,
|
|
314
314
|
):
|
|
315
315
|
"""Drop a world into the scene
|
|
316
316
|
|
|
@@ -319,8 +319,8 @@ def drop_world(
|
|
|
319
319
|
:type undo: typing.Optional[bool]
|
|
320
320
|
:param name: Name, Name of the data-block to use by the operator
|
|
321
321
|
:type name: typing.Union[str, typing.Any]
|
|
322
|
-
:param
|
|
323
|
-
:type
|
|
322
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
323
|
+
:type session_uid: typing.Optional[typing.Any]
|
|
324
324
|
"""
|
|
325
325
|
|
|
326
326
|
...
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -416,7 +416,7 @@ def batch_rename(
|
|
|
416
416
|
bpy.types.bpy_prop_collection["bl_operators.wm.BatchRenameAction"]
|
|
417
417
|
] = None,
|
|
418
418
|
):
|
|
419
|
-
"""Rename multiple items at once :File: `startup/bl_operators/wm.py\:
|
|
419
|
+
"""Rename multiple items at once :File: `startup/bl_operators/wm.py\:3160 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/wm.py#L3160>`__
|
|
420
420
|
|
|
421
421
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
422
422
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1341,7 +1341,7 @@ def drop_blend_file(
|
|
|
1341
1341
|
*,
|
|
1342
1342
|
filepath: typing.Union[str, typing.Any] = "",
|
|
1343
1343
|
):
|
|
1344
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/wm.py\:
|
|
1344
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/wm.py\:3509 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/wm.py#L3509>`__
|
|
1345
1345
|
|
|
1346
1346
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1347
1347
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|