fake-bpy-module 20240507__py3-none-any.whl → 20240509__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.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -5,7 +5,9 @@ import bpy.types
|
|
|
5
5
|
GenericType = typing.TypeVar("GenericType")
|
|
6
6
|
|
|
7
7
|
def add(
|
|
8
|
-
override_context: typing.Optional[
|
|
8
|
+
override_context: typing.Optional[
|
|
9
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
10
|
+
] = None,
|
|
9
11
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
10
12
|
undo: typing.Optional[bool] = None,
|
|
11
13
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -18,7 +20,7 @@ def add(
|
|
|
18
20
|
):
|
|
19
21
|
"""Add an object to the scene
|
|
20
22
|
|
|
21
|
-
:type override_context: typing.Optional[typing.Union[
|
|
23
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
22
24
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
23
25
|
:type undo: typing.Optional[bool]
|
|
24
26
|
:param radius: Radius
|
|
@@ -49,13 +51,15 @@ def add(
|
|
|
49
51
|
...
|
|
50
52
|
|
|
51
53
|
def add_modifier_menu(
|
|
52
|
-
override_context: typing.Optional[
|
|
54
|
+
override_context: typing.Optional[
|
|
55
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
56
|
+
] = None,
|
|
53
57
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
54
58
|
undo: typing.Optional[bool] = None,
|
|
55
59
|
):
|
|
56
60
|
"""Undocumented, consider contributing.
|
|
57
61
|
|
|
58
|
-
:type override_context: typing.Optional[typing.Union[
|
|
62
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
59
63
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
60
64
|
:type undo: typing.Optional[bool]
|
|
61
65
|
"""
|
|
@@ -63,7 +67,9 @@ def add_modifier_menu(
|
|
|
63
67
|
...
|
|
64
68
|
|
|
65
69
|
def add_named(
|
|
66
|
-
override_context: typing.Optional[
|
|
70
|
+
override_context: typing.Optional[
|
|
71
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
72
|
+
] = None,
|
|
67
73
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
68
74
|
undo: typing.Optional[bool] = None,
|
|
69
75
|
linked: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -80,7 +86,7 @@ def add_named(
|
|
|
80
86
|
):
|
|
81
87
|
"""Add named object
|
|
82
88
|
|
|
83
|
-
:type override_context: typing.Optional[typing.Union[
|
|
89
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
84
90
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
85
91
|
:type undo: typing.Optional[bool]
|
|
86
92
|
:param linked: Linked, Duplicate object but not object data, linking to the original data
|
|
@@ -100,7 +106,9 @@ def add_named(
|
|
|
100
106
|
...
|
|
101
107
|
|
|
102
108
|
def align(
|
|
103
|
-
override_context: typing.Optional[
|
|
109
|
+
override_context: typing.Optional[
|
|
110
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
111
|
+
] = None,
|
|
104
112
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
105
113
|
undo: typing.Optional[bool] = None,
|
|
106
114
|
bb_quality: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -110,7 +118,7 @@ def align(
|
|
|
110
118
|
):
|
|
111
119
|
"""Align objects
|
|
112
120
|
|
|
113
|
-
:type override_context: typing.Optional[typing.Union[
|
|
121
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
114
122
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
115
123
|
:type undo: typing.Optional[bool]
|
|
116
124
|
:param bb_quality: High Quality, Enables high quality but slow calculation of the bounding box for perfect results on complex shape meshes with rotation/scale
|
|
@@ -138,13 +146,15 @@ def align(
|
|
|
138
146
|
...
|
|
139
147
|
|
|
140
148
|
def anim_transforms_to_deltas(
|
|
141
|
-
override_context: typing.Optional[
|
|
149
|
+
override_context: typing.Optional[
|
|
150
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
151
|
+
] = None,
|
|
142
152
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
143
153
|
undo: typing.Optional[bool] = None,
|
|
144
154
|
):
|
|
145
155
|
"""Convert object animation for normal transforms to delta transforms
|
|
146
156
|
|
|
147
|
-
:type override_context: typing.Optional[typing.Union[
|
|
157
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
148
158
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
149
159
|
:type undo: typing.Optional[bool]
|
|
150
160
|
"""
|
|
@@ -152,7 +162,9 @@ def anim_transforms_to_deltas(
|
|
|
152
162
|
...
|
|
153
163
|
|
|
154
164
|
def armature_add(
|
|
155
|
-
override_context: typing.Optional[
|
|
165
|
+
override_context: typing.Optional[
|
|
166
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
167
|
+
] = None,
|
|
156
168
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
157
169
|
undo: typing.Optional[bool] = None,
|
|
158
170
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -164,7 +176,7 @@ def armature_add(
|
|
|
164
176
|
):
|
|
165
177
|
"""Add an armature object to the scene
|
|
166
178
|
|
|
167
|
-
:type override_context: typing.Optional[typing.Union[
|
|
179
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
168
180
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
169
181
|
:type undo: typing.Optional[bool]
|
|
170
182
|
:param radius: Radius
|
|
@@ -193,7 +205,9 @@ def armature_add(
|
|
|
193
205
|
...
|
|
194
206
|
|
|
195
207
|
def assign_property_defaults(
|
|
196
|
-
override_context: typing.Optional[
|
|
208
|
+
override_context: typing.Optional[
|
|
209
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
210
|
+
] = None,
|
|
197
211
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
198
212
|
undo: typing.Optional[bool] = None,
|
|
199
213
|
process_data: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -201,7 +215,7 @@ def assign_property_defaults(
|
|
|
201
215
|
):
|
|
202
216
|
"""Assign the current values of custom properties as their defaults, for use as part of the rest pose state in NLA track mixing
|
|
203
217
|
|
|
204
|
-
:type override_context: typing.Optional[typing.Union[
|
|
218
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
205
219
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
206
220
|
:type undo: typing.Optional[bool]
|
|
207
221
|
:param process_data: Process data properties
|
|
@@ -213,7 +227,9 @@ def assign_property_defaults(
|
|
|
213
227
|
...
|
|
214
228
|
|
|
215
229
|
def bake(
|
|
216
|
-
override_context: typing.Optional[
|
|
230
|
+
override_context: typing.Optional[
|
|
231
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
232
|
+
] = None,
|
|
217
233
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
218
234
|
undo: typing.Optional[bool] = None,
|
|
219
235
|
type: typing.Optional[typing.Union[str, int]] = "COMBINED",
|
|
@@ -241,7 +257,7 @@ def bake(
|
|
|
241
257
|
):
|
|
242
258
|
"""Bake image textures of selected objects
|
|
243
259
|
|
|
244
|
-
:type override_context: typing.Optional[typing.Union[
|
|
260
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
245
261
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
246
262
|
:type undo: typing.Optional[bool]
|
|
247
263
|
:param type: Type, Type of pass to bake, some of them may not be supported by the current render engine
|
|
@@ -293,13 +309,15 @@ def bake(
|
|
|
293
309
|
...
|
|
294
310
|
|
|
295
311
|
def bake_image(
|
|
296
|
-
override_context: typing.Optional[
|
|
312
|
+
override_context: typing.Optional[
|
|
313
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
314
|
+
] = None,
|
|
297
315
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
298
316
|
undo: typing.Optional[bool] = None,
|
|
299
317
|
):
|
|
300
318
|
"""Bake image textures of selected objects
|
|
301
319
|
|
|
302
|
-
:type override_context: typing.Optional[typing.Union[
|
|
320
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
303
321
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
304
322
|
:type undo: typing.Optional[bool]
|
|
305
323
|
"""
|
|
@@ -307,7 +325,9 @@ def bake_image(
|
|
|
307
325
|
...
|
|
308
326
|
|
|
309
327
|
def camera_add(
|
|
310
|
-
override_context: typing.Optional[
|
|
328
|
+
override_context: typing.Optional[
|
|
329
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
330
|
+
] = None,
|
|
311
331
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
312
332
|
undo: typing.Optional[bool] = None,
|
|
313
333
|
enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -318,7 +338,7 @@ def camera_add(
|
|
|
318
338
|
):
|
|
319
339
|
"""Add a camera object to the scene
|
|
320
340
|
|
|
321
|
-
:type override_context: typing.Optional[typing.Union[
|
|
341
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
322
342
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
323
343
|
:type undo: typing.Optional[bool]
|
|
324
344
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
@@ -345,13 +365,15 @@ def camera_add(
|
|
|
345
365
|
...
|
|
346
366
|
|
|
347
367
|
def clear_override_library(
|
|
348
|
-
override_context: typing.Optional[
|
|
368
|
+
override_context: typing.Optional[
|
|
369
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
370
|
+
] = None,
|
|
349
371
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
350
372
|
undo: typing.Optional[bool] = None,
|
|
351
373
|
):
|
|
352
374
|
"""Delete the selected local overrides and relink their usages to the linked data-blocks if possible, else reset them and mark them as non editable
|
|
353
375
|
|
|
354
|
-
:type override_context: typing.Optional[typing.Union[
|
|
376
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
355
377
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
356
378
|
:type undo: typing.Optional[bool]
|
|
357
379
|
"""
|
|
@@ -359,13 +381,15 @@ def clear_override_library(
|
|
|
359
381
|
...
|
|
360
382
|
|
|
361
383
|
def collection_add(
|
|
362
|
-
override_context: typing.Optional[
|
|
384
|
+
override_context: typing.Optional[
|
|
385
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
386
|
+
] = None,
|
|
363
387
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
364
388
|
undo: typing.Optional[bool] = None,
|
|
365
389
|
):
|
|
366
390
|
"""Add an object to a new collection
|
|
367
391
|
|
|
368
|
-
:type override_context: typing.Optional[typing.Union[
|
|
392
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
369
393
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
370
394
|
:type undo: typing.Optional[bool]
|
|
371
395
|
"""
|
|
@@ -373,7 +397,9 @@ def collection_add(
|
|
|
373
397
|
...
|
|
374
398
|
|
|
375
399
|
def collection_external_asset_drop(
|
|
376
|
-
override_context: typing.Optional[
|
|
400
|
+
override_context: typing.Optional[
|
|
401
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
402
|
+
] = None,
|
|
377
403
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
378
404
|
undo: typing.Optional[bool] = None,
|
|
379
405
|
session_uid: typing.Optional[typing.Any] = 0,
|
|
@@ -388,7 +414,7 @@ def collection_external_asset_drop(
|
|
|
388
414
|
):
|
|
389
415
|
"""Add the dragged collection to the scene
|
|
390
416
|
|
|
391
|
-
:type override_context: typing.Optional[typing.Union[
|
|
417
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
392
418
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
393
419
|
:type undo: typing.Optional[bool]
|
|
394
420
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -423,7 +449,9 @@ def collection_external_asset_drop(
|
|
|
423
449
|
...
|
|
424
450
|
|
|
425
451
|
def collection_instance_add(
|
|
426
|
-
override_context: typing.Optional[
|
|
452
|
+
override_context: typing.Optional[
|
|
453
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
454
|
+
] = None,
|
|
427
455
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
428
456
|
undo: typing.Optional[bool] = None,
|
|
429
457
|
name: typing.Union[str, typing.Any] = "Collection",
|
|
@@ -438,7 +466,7 @@ def collection_instance_add(
|
|
|
438
466
|
):
|
|
439
467
|
"""Add a collection instance
|
|
440
468
|
|
|
441
|
-
:type override_context: typing.Optional[typing.Union[
|
|
469
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
442
470
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
443
471
|
:type undo: typing.Optional[bool]
|
|
444
472
|
:param name: Name, Collection name to add
|
|
@@ -473,14 +501,16 @@ def collection_instance_add(
|
|
|
473
501
|
...
|
|
474
502
|
|
|
475
503
|
def collection_link(
|
|
476
|
-
override_context: typing.Optional[
|
|
504
|
+
override_context: typing.Optional[
|
|
505
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
506
|
+
] = None,
|
|
477
507
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
478
508
|
undo: typing.Optional[bool] = None,
|
|
479
509
|
collection: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
480
510
|
):
|
|
481
511
|
"""Add an object to an existing collection
|
|
482
512
|
|
|
483
|
-
:type override_context: typing.Optional[typing.Union[
|
|
513
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
484
514
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
485
515
|
:type undo: typing.Optional[bool]
|
|
486
516
|
:param collection: Collection
|
|
@@ -490,13 +520,15 @@ def collection_link(
|
|
|
490
520
|
...
|
|
491
521
|
|
|
492
522
|
def collection_objects_select(
|
|
493
|
-
override_context: typing.Optional[
|
|
523
|
+
override_context: typing.Optional[
|
|
524
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
525
|
+
] = None,
|
|
494
526
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
495
527
|
undo: typing.Optional[bool] = None,
|
|
496
528
|
):
|
|
497
529
|
"""Select all objects in collection
|
|
498
530
|
|
|
499
|
-
:type override_context: typing.Optional[typing.Union[
|
|
531
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
500
532
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
501
533
|
:type undo: typing.Optional[bool]
|
|
502
534
|
"""
|
|
@@ -504,13 +536,15 @@ def collection_objects_select(
|
|
|
504
536
|
...
|
|
505
537
|
|
|
506
538
|
def collection_remove(
|
|
507
|
-
override_context: typing.Optional[
|
|
539
|
+
override_context: typing.Optional[
|
|
540
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
541
|
+
] = None,
|
|
508
542
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
509
543
|
undo: typing.Optional[bool] = None,
|
|
510
544
|
):
|
|
511
545
|
"""Remove the active object from this collection
|
|
512
546
|
|
|
513
|
-
:type override_context: typing.Optional[typing.Union[
|
|
547
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
514
548
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
515
549
|
:type undo: typing.Optional[bool]
|
|
516
550
|
"""
|
|
@@ -518,13 +552,15 @@ def collection_remove(
|
|
|
518
552
|
...
|
|
519
553
|
|
|
520
554
|
def collection_unlink(
|
|
521
|
-
override_context: typing.Optional[
|
|
555
|
+
override_context: typing.Optional[
|
|
556
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
557
|
+
] = None,
|
|
522
558
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
523
559
|
undo: typing.Optional[bool] = None,
|
|
524
560
|
):
|
|
525
561
|
"""Unlink the collection from all objects
|
|
526
562
|
|
|
527
|
-
:type override_context: typing.Optional[typing.Union[
|
|
563
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
528
564
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
529
565
|
:type undo: typing.Optional[bool]
|
|
530
566
|
"""
|
|
@@ -532,14 +568,16 @@ def collection_unlink(
|
|
|
532
568
|
...
|
|
533
569
|
|
|
534
570
|
def constraint_add(
|
|
535
|
-
override_context: typing.Optional[
|
|
571
|
+
override_context: typing.Optional[
|
|
572
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
573
|
+
] = None,
|
|
536
574
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
537
575
|
undo: typing.Optional[bool] = None,
|
|
538
576
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
539
577
|
):
|
|
540
578
|
"""Add a constraint to the active object
|
|
541
579
|
|
|
542
|
-
:type override_context: typing.Optional[typing.Union[
|
|
580
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
543
581
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
544
582
|
:type undo: typing.Optional[bool]
|
|
545
583
|
:param type: Type
|
|
@@ -549,14 +587,16 @@ def constraint_add(
|
|
|
549
587
|
...
|
|
550
588
|
|
|
551
589
|
def constraint_add_with_targets(
|
|
552
|
-
override_context: typing.Optional[
|
|
590
|
+
override_context: typing.Optional[
|
|
591
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
592
|
+
] = None,
|
|
553
593
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
554
594
|
undo: typing.Optional[bool] = None,
|
|
555
595
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
556
596
|
):
|
|
557
597
|
"""Add a constraint to the active object, with target (where applicable) set to the selected objects/bones
|
|
558
598
|
|
|
559
|
-
:type override_context: typing.Optional[typing.Union[
|
|
599
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
560
600
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
561
601
|
:type undo: typing.Optional[bool]
|
|
562
602
|
:param type: Type
|
|
@@ -566,13 +606,15 @@ def constraint_add_with_targets(
|
|
|
566
606
|
...
|
|
567
607
|
|
|
568
608
|
def constraints_clear(
|
|
569
|
-
override_context: typing.Optional[
|
|
609
|
+
override_context: typing.Optional[
|
|
610
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
611
|
+
] = None,
|
|
570
612
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
571
613
|
undo: typing.Optional[bool] = None,
|
|
572
614
|
):
|
|
573
615
|
"""Clear all constraints from the selected objects
|
|
574
616
|
|
|
575
|
-
:type override_context: typing.Optional[typing.Union[
|
|
617
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
576
618
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
577
619
|
:type undo: typing.Optional[bool]
|
|
578
620
|
"""
|
|
@@ -580,13 +622,15 @@ def constraints_clear(
|
|
|
580
622
|
...
|
|
581
623
|
|
|
582
624
|
def constraints_copy(
|
|
583
|
-
override_context: typing.Optional[
|
|
625
|
+
override_context: typing.Optional[
|
|
626
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
627
|
+
] = None,
|
|
584
628
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
585
629
|
undo: typing.Optional[bool] = None,
|
|
586
630
|
):
|
|
587
631
|
"""Copy constraints to other selected objects
|
|
588
632
|
|
|
589
|
-
:type override_context: typing.Optional[typing.Union[
|
|
633
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
590
634
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
591
635
|
:type undo: typing.Optional[bool]
|
|
592
636
|
"""
|
|
@@ -594,7 +638,9 @@ def constraints_copy(
|
|
|
594
638
|
...
|
|
595
639
|
|
|
596
640
|
def convert(
|
|
597
|
-
override_context: typing.Optional[
|
|
641
|
+
override_context: typing.Optional[
|
|
642
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
643
|
+
] = None,
|
|
598
644
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
599
645
|
undo: typing.Optional[bool] = None,
|
|
600
646
|
target: typing.Optional[typing.Any] = "MESH",
|
|
@@ -608,7 +654,7 @@ def convert(
|
|
|
608
654
|
):
|
|
609
655
|
"""Convert selected objects to another type
|
|
610
656
|
|
|
611
|
-
:type override_context: typing.Optional[typing.Union[
|
|
657
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
612
658
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
613
659
|
:type undo: typing.Optional[bool]
|
|
614
660
|
:param target: Target, Type of object to convert to
|
|
@@ -650,14 +696,16 @@ def convert(
|
|
|
650
696
|
...
|
|
651
697
|
|
|
652
698
|
def correctivesmooth_bind(
|
|
653
|
-
override_context: typing.Optional[
|
|
699
|
+
override_context: typing.Optional[
|
|
700
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
701
|
+
] = None,
|
|
654
702
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
655
703
|
undo: typing.Optional[bool] = None,
|
|
656
704
|
modifier: typing.Union[str, typing.Any] = "",
|
|
657
705
|
):
|
|
658
706
|
"""Bind base pose in Corrective Smooth modifier
|
|
659
707
|
|
|
660
|
-
:type override_context: typing.Optional[typing.Union[
|
|
708
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
661
709
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
662
710
|
:type undo: typing.Optional[bool]
|
|
663
711
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -667,7 +715,9 @@ def correctivesmooth_bind(
|
|
|
667
715
|
...
|
|
668
716
|
|
|
669
717
|
def curves_empty_hair_add(
|
|
670
|
-
override_context: typing.Optional[
|
|
718
|
+
override_context: typing.Optional[
|
|
719
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
720
|
+
] = None,
|
|
671
721
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
672
722
|
undo: typing.Optional[bool] = None,
|
|
673
723
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
@@ -677,7 +727,7 @@ def curves_empty_hair_add(
|
|
|
677
727
|
):
|
|
678
728
|
"""Add an empty curve object to the scene with the selected mesh as surface
|
|
679
729
|
|
|
680
|
-
:type override_context: typing.Optional[typing.Union[
|
|
730
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
681
731
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
682
732
|
:type undo: typing.Optional[bool]
|
|
683
733
|
:param align: Align, The alignment of the new object
|
|
@@ -702,7 +752,9 @@ def curves_empty_hair_add(
|
|
|
702
752
|
...
|
|
703
753
|
|
|
704
754
|
def curves_random_add(
|
|
705
|
-
override_context: typing.Optional[
|
|
755
|
+
override_context: typing.Optional[
|
|
756
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
757
|
+
] = None,
|
|
706
758
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
707
759
|
undo: typing.Optional[bool] = None,
|
|
708
760
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
@@ -712,7 +764,7 @@ def curves_random_add(
|
|
|
712
764
|
):
|
|
713
765
|
"""Add a curves object with random curves to the scene
|
|
714
766
|
|
|
715
|
-
:type override_context: typing.Optional[typing.Union[
|
|
767
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
716
768
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
717
769
|
:type undo: typing.Optional[bool]
|
|
718
770
|
:param align: Align, The alignment of the new object
|
|
@@ -737,7 +789,9 @@ def curves_random_add(
|
|
|
737
789
|
...
|
|
738
790
|
|
|
739
791
|
def data_instance_add(
|
|
740
|
-
override_context: typing.Optional[
|
|
792
|
+
override_context: typing.Optional[
|
|
793
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
794
|
+
] = None,
|
|
741
795
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
742
796
|
undo: typing.Optional[bool] = None,
|
|
743
797
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -752,7 +806,7 @@ def data_instance_add(
|
|
|
752
806
|
):
|
|
753
807
|
"""Add an object data instance
|
|
754
808
|
|
|
755
|
-
:type override_context: typing.Optional[typing.Union[
|
|
809
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
756
810
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
757
811
|
:type undo: typing.Optional[bool]
|
|
758
812
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -787,7 +841,9 @@ def data_instance_add(
|
|
|
787
841
|
...
|
|
788
842
|
|
|
789
843
|
def data_transfer(
|
|
790
|
-
override_context: typing.Optional[
|
|
844
|
+
override_context: typing.Optional[
|
|
845
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
846
|
+
] = None,
|
|
791
847
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
792
848
|
undo: typing.Optional[bool] = None,
|
|
793
849
|
use_reverse_transfer: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -811,7 +867,7 @@ def data_transfer(
|
|
|
811
867
|
):
|
|
812
868
|
"""Transfer data layer(s) (weights, edge sharp, etc.) from active to selected meshes
|
|
813
869
|
|
|
814
|
-
:type override_context: typing.Optional[typing.Union[
|
|
870
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
815
871
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
816
872
|
:type undo: typing.Optional[bool]
|
|
817
873
|
:param use_reverse_transfer: Reverse Transfer, Transfer from selected objects to active one
|
|
@@ -894,7 +950,9 @@ def data_transfer(
|
|
|
894
950
|
...
|
|
895
951
|
|
|
896
952
|
def datalayout_transfer(
|
|
897
|
-
override_context: typing.Optional[
|
|
953
|
+
override_context: typing.Optional[
|
|
954
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
955
|
+
] = None,
|
|
898
956
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
899
957
|
undo: typing.Optional[bool] = None,
|
|
900
958
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -905,7 +963,7 @@ def datalayout_transfer(
|
|
|
905
963
|
):
|
|
906
964
|
"""Transfer layout of data layer(s) from active to selected meshes
|
|
907
965
|
|
|
908
|
-
:type override_context: typing.Optional[typing.Union[
|
|
966
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
909
967
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
910
968
|
:type undo: typing.Optional[bool]
|
|
911
969
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -962,7 +1020,9 @@ def datalayout_transfer(
|
|
|
962
1020
|
...
|
|
963
1021
|
|
|
964
1022
|
def delete(
|
|
965
|
-
override_context: typing.Optional[
|
|
1023
|
+
override_context: typing.Optional[
|
|
1024
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1025
|
+
] = None,
|
|
966
1026
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
967
1027
|
undo: typing.Optional[bool] = None,
|
|
968
1028
|
use_global: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -970,7 +1030,7 @@ def delete(
|
|
|
970
1030
|
):
|
|
971
1031
|
"""Delete selected objects
|
|
972
1032
|
|
|
973
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1033
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
974
1034
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
975
1035
|
:type undo: typing.Optional[bool]
|
|
976
1036
|
:param use_global: Delete Globally, Remove object from all scenes
|
|
@@ -982,7 +1042,9 @@ def delete(
|
|
|
982
1042
|
...
|
|
983
1043
|
|
|
984
1044
|
def drop_geometry_nodes(
|
|
985
|
-
override_context: typing.Optional[
|
|
1045
|
+
override_context: typing.Optional[
|
|
1046
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1047
|
+
] = None,
|
|
986
1048
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
987
1049
|
undo: typing.Optional[bool] = None,
|
|
988
1050
|
session_uid: typing.Optional[typing.Any] = 0,
|
|
@@ -990,7 +1052,7 @@ def drop_geometry_nodes(
|
|
|
990
1052
|
):
|
|
991
1053
|
"""Undocumented, consider contributing.
|
|
992
1054
|
|
|
993
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1055
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
994
1056
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
995
1057
|
:type undo: typing.Optional[bool]
|
|
996
1058
|
:param session_uid: Session UID, Session UID of the geometry node group being dropped
|
|
@@ -1002,7 +1064,9 @@ def drop_geometry_nodes(
|
|
|
1002
1064
|
...
|
|
1003
1065
|
|
|
1004
1066
|
def drop_named_material(
|
|
1005
|
-
override_context: typing.Optional[
|
|
1067
|
+
override_context: typing.Optional[
|
|
1068
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1069
|
+
] = None,
|
|
1006
1070
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1007
1071
|
undo: typing.Optional[bool] = None,
|
|
1008
1072
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -1010,7 +1074,7 @@ def drop_named_material(
|
|
|
1010
1074
|
):
|
|
1011
1075
|
"""Undocumented, consider contributing.
|
|
1012
1076
|
|
|
1013
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1077
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1014
1078
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1015
1079
|
:type undo: typing.Optional[bool]
|
|
1016
1080
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -1022,7 +1086,9 @@ def drop_named_material(
|
|
|
1022
1086
|
...
|
|
1023
1087
|
|
|
1024
1088
|
def duplicate(
|
|
1025
|
-
override_context: typing.Optional[
|
|
1089
|
+
override_context: typing.Optional[
|
|
1090
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1091
|
+
] = None,
|
|
1026
1092
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1027
1093
|
undo: typing.Optional[bool] = None,
|
|
1028
1094
|
linked: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1030,7 +1096,7 @@ def duplicate(
|
|
|
1030
1096
|
):
|
|
1031
1097
|
"""Duplicate selected objects
|
|
1032
1098
|
|
|
1033
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1099
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1034
1100
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1035
1101
|
:type undo: typing.Optional[bool]
|
|
1036
1102
|
:param linked: Linked, Duplicate object but not object data, linking to the original data
|
|
@@ -1042,7 +1108,9 @@ def duplicate(
|
|
|
1042
1108
|
...
|
|
1043
1109
|
|
|
1044
1110
|
def duplicate_move(
|
|
1045
|
-
override_context: typing.Optional[
|
|
1111
|
+
override_context: typing.Optional[
|
|
1112
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1113
|
+
] = None,
|
|
1046
1114
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1047
1115
|
undo: typing.Optional[bool] = None,
|
|
1048
1116
|
OBJECT_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -1050,7 +1118,7 @@ def duplicate_move(
|
|
|
1050
1118
|
):
|
|
1051
1119
|
"""Duplicate the selected objects and move them
|
|
1052
1120
|
|
|
1053
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1121
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1054
1122
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1055
1123
|
:type undo: typing.Optional[bool]
|
|
1056
1124
|
:param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
|
|
@@ -1062,7 +1130,9 @@ def duplicate_move(
|
|
|
1062
1130
|
...
|
|
1063
1131
|
|
|
1064
1132
|
def duplicate_move_linked(
|
|
1065
|
-
override_context: typing.Optional[
|
|
1133
|
+
override_context: typing.Optional[
|
|
1134
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1135
|
+
] = None,
|
|
1066
1136
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1067
1137
|
undo: typing.Optional[bool] = None,
|
|
1068
1138
|
OBJECT_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -1070,7 +1140,7 @@ def duplicate_move_linked(
|
|
|
1070
1140
|
):
|
|
1071
1141
|
"""Duplicate the selected objects, but not their object data, and move them
|
|
1072
1142
|
|
|
1073
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1143
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1074
1144
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1075
1145
|
:type undo: typing.Optional[bool]
|
|
1076
1146
|
:param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
|
|
@@ -1082,7 +1152,9 @@ def duplicate_move_linked(
|
|
|
1082
1152
|
...
|
|
1083
1153
|
|
|
1084
1154
|
def duplicates_make_real(
|
|
1085
|
-
override_context: typing.Optional[
|
|
1155
|
+
override_context: typing.Optional[
|
|
1156
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1157
|
+
] = None,
|
|
1086
1158
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1087
1159
|
undo: typing.Optional[bool] = None,
|
|
1088
1160
|
use_base_parent: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1090,7 +1162,7 @@ def duplicates_make_real(
|
|
|
1090
1162
|
):
|
|
1091
1163
|
"""Make instanced objects attached to this object real
|
|
1092
1164
|
|
|
1093
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1165
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1094
1166
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1095
1167
|
:type undo: typing.Optional[bool]
|
|
1096
1168
|
:param use_base_parent: Parent, Parent newly created objects to the original instancer
|
|
@@ -1102,13 +1174,15 @@ def duplicates_make_real(
|
|
|
1102
1174
|
...
|
|
1103
1175
|
|
|
1104
1176
|
def editmode_toggle(
|
|
1105
|
-
override_context: typing.Optional[
|
|
1177
|
+
override_context: typing.Optional[
|
|
1178
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1179
|
+
] = None,
|
|
1106
1180
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1107
1181
|
undo: typing.Optional[bool] = None,
|
|
1108
1182
|
):
|
|
1109
1183
|
"""Toggle object's edit mode
|
|
1110
1184
|
|
|
1111
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1185
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1112
1186
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1113
1187
|
:type undo: typing.Optional[bool]
|
|
1114
1188
|
"""
|
|
@@ -1116,7 +1190,9 @@ def editmode_toggle(
|
|
|
1116
1190
|
...
|
|
1117
1191
|
|
|
1118
1192
|
def effector_add(
|
|
1119
|
-
override_context: typing.Optional[
|
|
1193
|
+
override_context: typing.Optional[
|
|
1194
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1195
|
+
] = None,
|
|
1120
1196
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1121
1197
|
undo: typing.Optional[bool] = None,
|
|
1122
1198
|
type: typing.Optional[typing.Any] = "FORCE",
|
|
@@ -1129,7 +1205,7 @@ def effector_add(
|
|
|
1129
1205
|
):
|
|
1130
1206
|
"""Add an empty object with a physics effector to the scene
|
|
1131
1207
|
|
|
1132
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1208
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1133
1209
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1134
1210
|
:type undo: typing.Optional[bool]
|
|
1135
1211
|
:param type: Type
|
|
@@ -1160,7 +1236,9 @@ def effector_add(
|
|
|
1160
1236
|
...
|
|
1161
1237
|
|
|
1162
1238
|
def empty_add(
|
|
1163
|
-
override_context: typing.Optional[
|
|
1239
|
+
override_context: typing.Optional[
|
|
1240
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1241
|
+
] = None,
|
|
1164
1242
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1165
1243
|
undo: typing.Optional[bool] = None,
|
|
1166
1244
|
type: typing.Optional[typing.Union[str, int]] = "PLAIN_AXES",
|
|
@@ -1172,7 +1250,7 @@ def empty_add(
|
|
|
1172
1250
|
):
|
|
1173
1251
|
"""Add an empty object to the scene
|
|
1174
1252
|
|
|
1175
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1253
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1176
1254
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1177
1255
|
:type undo: typing.Optional[bool]
|
|
1178
1256
|
:param type: Type
|
|
@@ -1201,7 +1279,9 @@ def empty_add(
|
|
|
1201
1279
|
...
|
|
1202
1280
|
|
|
1203
1281
|
def empty_image_add(
|
|
1204
|
-
override_context: typing.Optional[
|
|
1282
|
+
override_context: typing.Optional[
|
|
1283
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1284
|
+
] = None,
|
|
1205
1285
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1206
1286
|
undo: typing.Optional[bool] = None,
|
|
1207
1287
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -1240,7 +1320,7 @@ def empty_image_add(
|
|
|
1240
1320
|
):
|
|
1241
1321
|
"""Add an empty image type to scene with data
|
|
1242
1322
|
|
|
1243
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1323
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1244
1324
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1245
1325
|
:type undo: typing.Optional[bool]
|
|
1246
1326
|
:param filepath: File Path, Path to file
|
|
@@ -1350,14 +1430,16 @@ def empty_image_add(
|
|
|
1350
1430
|
...
|
|
1351
1431
|
|
|
1352
1432
|
def explode_refresh(
|
|
1353
|
-
override_context: typing.Optional[
|
|
1433
|
+
override_context: typing.Optional[
|
|
1434
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1435
|
+
] = None,
|
|
1354
1436
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1355
1437
|
undo: typing.Optional[bool] = None,
|
|
1356
1438
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1357
1439
|
):
|
|
1358
1440
|
"""Refresh data in the Explode modifier
|
|
1359
1441
|
|
|
1360
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1442
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1361
1443
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1362
1444
|
:type undo: typing.Optional[bool]
|
|
1363
1445
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1367,13 +1449,15 @@ def explode_refresh(
|
|
|
1367
1449
|
...
|
|
1368
1450
|
|
|
1369
1451
|
def forcefield_toggle(
|
|
1370
|
-
override_context: typing.Optional[
|
|
1452
|
+
override_context: typing.Optional[
|
|
1453
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1454
|
+
] = None,
|
|
1371
1455
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1372
1456
|
undo: typing.Optional[bool] = None,
|
|
1373
1457
|
):
|
|
1374
1458
|
"""Toggle object's force field
|
|
1375
1459
|
|
|
1376
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1460
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1377
1461
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1378
1462
|
:type undo: typing.Optional[bool]
|
|
1379
1463
|
"""
|
|
@@ -1381,7 +1465,9 @@ def forcefield_toggle(
|
|
|
1381
1465
|
...
|
|
1382
1466
|
|
|
1383
1467
|
def geometry_node_bake_delete_single(
|
|
1384
|
-
override_context: typing.Optional[
|
|
1468
|
+
override_context: typing.Optional[
|
|
1469
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1470
|
+
] = None,
|
|
1385
1471
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1386
1472
|
undo: typing.Optional[bool] = None,
|
|
1387
1473
|
session_uid: typing.Optional[typing.Any] = 0,
|
|
@@ -1390,7 +1476,7 @@ def geometry_node_bake_delete_single(
|
|
|
1390
1476
|
):
|
|
1391
1477
|
"""Delete baked data of a single bake node or simulation
|
|
1392
1478
|
|
|
1393
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1479
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1394
1480
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1395
1481
|
:type undo: typing.Optional[bool]
|
|
1396
1482
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1404,7 +1490,9 @@ def geometry_node_bake_delete_single(
|
|
|
1404
1490
|
...
|
|
1405
1491
|
|
|
1406
1492
|
def geometry_node_bake_single(
|
|
1407
|
-
override_context: typing.Optional[
|
|
1493
|
+
override_context: typing.Optional[
|
|
1494
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1495
|
+
] = None,
|
|
1408
1496
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1409
1497
|
undo: typing.Optional[bool] = None,
|
|
1410
1498
|
session_uid: typing.Optional[typing.Any] = 0,
|
|
@@ -1413,7 +1501,7 @@ def geometry_node_bake_single(
|
|
|
1413
1501
|
):
|
|
1414
1502
|
"""Bake a single bake node or simulation
|
|
1415
1503
|
|
|
1416
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1504
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1417
1505
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1418
1506
|
:type undo: typing.Optional[bool]
|
|
1419
1507
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1427,13 +1515,15 @@ def geometry_node_bake_single(
|
|
|
1427
1515
|
...
|
|
1428
1516
|
|
|
1429
1517
|
def geometry_node_tree_copy_assign(
|
|
1430
|
-
override_context: typing.Optional[
|
|
1518
|
+
override_context: typing.Optional[
|
|
1519
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1520
|
+
] = None,
|
|
1431
1521
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1432
1522
|
undo: typing.Optional[bool] = None,
|
|
1433
1523
|
):
|
|
1434
1524
|
"""Copy the active geometry node group and assign it to the active modifier
|
|
1435
1525
|
|
|
1436
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1526
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1437
1527
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1438
1528
|
:type undo: typing.Optional[bool]
|
|
1439
1529
|
"""
|
|
@@ -1441,7 +1531,9 @@ def geometry_node_tree_copy_assign(
|
|
|
1441
1531
|
...
|
|
1442
1532
|
|
|
1443
1533
|
def geometry_nodes_input_attribute_toggle(
|
|
1444
|
-
override_context: typing.Optional[
|
|
1534
|
+
override_context: typing.Optional[
|
|
1535
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1536
|
+
] = None,
|
|
1445
1537
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1446
1538
|
undo: typing.Optional[bool] = None,
|
|
1447
1539
|
input_name: typing.Union[str, typing.Any] = "",
|
|
@@ -1449,7 +1541,7 @@ def geometry_nodes_input_attribute_toggle(
|
|
|
1449
1541
|
):
|
|
1450
1542
|
"""Switch between an attribute and a single value to define the data for every element
|
|
1451
1543
|
|
|
1452
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1544
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1453
1545
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1454
1546
|
:type undo: typing.Optional[bool]
|
|
1455
1547
|
:param input_name: Input Name
|
|
@@ -1461,14 +1553,16 @@ def geometry_nodes_input_attribute_toggle(
|
|
|
1461
1553
|
...
|
|
1462
1554
|
|
|
1463
1555
|
def geometry_nodes_move_to_nodes(
|
|
1464
|
-
override_context: typing.Optional[
|
|
1556
|
+
override_context: typing.Optional[
|
|
1557
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1558
|
+
] = None,
|
|
1465
1559
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1466
1560
|
undo: typing.Optional[bool] = None,
|
|
1467
1561
|
use_selected_objects: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1468
1562
|
):
|
|
1469
1563
|
"""Move inputs and outputs from in the modifier to a new node group
|
|
1470
1564
|
|
|
1471
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1565
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1472
1566
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1473
1567
|
:type undo: typing.Optional[bool]
|
|
1474
1568
|
:param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
|
|
@@ -1478,7 +1572,9 @@ def geometry_nodes_move_to_nodes(
|
|
|
1478
1572
|
...
|
|
1479
1573
|
|
|
1480
1574
|
def gpencil_add(
|
|
1481
|
-
override_context: typing.Optional[
|
|
1575
|
+
override_context: typing.Optional[
|
|
1576
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1577
|
+
] = None,
|
|
1482
1578
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1483
1579
|
undo: typing.Optional[bool] = None,
|
|
1484
1580
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -1494,7 +1590,7 @@ def gpencil_add(
|
|
|
1494
1590
|
):
|
|
1495
1591
|
"""Add a Grease Pencil object to the scene
|
|
1496
1592
|
|
|
1497
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1593
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1498
1594
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1499
1595
|
:type undo: typing.Optional[bool]
|
|
1500
1596
|
:param radius: Radius
|
|
@@ -1537,14 +1633,16 @@ def gpencil_add(
|
|
|
1537
1633
|
...
|
|
1538
1634
|
|
|
1539
1635
|
def gpencil_modifier_add(
|
|
1540
|
-
override_context: typing.Optional[
|
|
1636
|
+
override_context: typing.Optional[
|
|
1637
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1638
|
+
] = None,
|
|
1541
1639
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1542
1640
|
undo: typing.Optional[bool] = None,
|
|
1543
1641
|
type: typing.Optional[typing.Union[str, int]] = "GP_THICK",
|
|
1544
1642
|
):
|
|
1545
1643
|
"""Add a procedural operation/effect to the active grease pencil object
|
|
1546
1644
|
|
|
1547
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1645
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1548
1646
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1549
1647
|
:type undo: typing.Optional[bool]
|
|
1550
1648
|
:param type: Type
|
|
@@ -1554,7 +1652,9 @@ def gpencil_modifier_add(
|
|
|
1554
1652
|
...
|
|
1555
1653
|
|
|
1556
1654
|
def gpencil_modifier_apply(
|
|
1557
|
-
override_context: typing.Optional[
|
|
1655
|
+
override_context: typing.Optional[
|
|
1656
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1657
|
+
] = None,
|
|
1558
1658
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1559
1659
|
undo: typing.Optional[bool] = None,
|
|
1560
1660
|
apply_as: typing.Optional[typing.Any] = "DATA",
|
|
@@ -1563,7 +1663,7 @@ def gpencil_modifier_apply(
|
|
|
1563
1663
|
):
|
|
1564
1664
|
"""Apply modifier and remove from the stack
|
|
1565
1665
|
|
|
1566
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1666
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1567
1667
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1568
1668
|
:type undo: typing.Optional[bool]
|
|
1569
1669
|
:param apply_as: Apply As, How to apply the modifier to the geometry
|
|
@@ -1583,14 +1683,16 @@ def gpencil_modifier_apply(
|
|
|
1583
1683
|
...
|
|
1584
1684
|
|
|
1585
1685
|
def gpencil_modifier_copy(
|
|
1586
|
-
override_context: typing.Optional[
|
|
1686
|
+
override_context: typing.Optional[
|
|
1687
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1688
|
+
] = None,
|
|
1587
1689
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1588
1690
|
undo: typing.Optional[bool] = None,
|
|
1589
1691
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1590
1692
|
):
|
|
1591
1693
|
"""Duplicate modifier at the same position in the stack
|
|
1592
1694
|
|
|
1593
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1695
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1594
1696
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1595
1697
|
:type undo: typing.Optional[bool]
|
|
1596
1698
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1600,14 +1702,16 @@ def gpencil_modifier_copy(
|
|
|
1600
1702
|
...
|
|
1601
1703
|
|
|
1602
1704
|
def gpencil_modifier_copy_to_selected(
|
|
1603
|
-
override_context: typing.Optional[
|
|
1705
|
+
override_context: typing.Optional[
|
|
1706
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1707
|
+
] = None,
|
|
1604
1708
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1605
1709
|
undo: typing.Optional[bool] = None,
|
|
1606
1710
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1607
1711
|
):
|
|
1608
1712
|
"""Copy the modifier from the active object to all selected objects
|
|
1609
1713
|
|
|
1610
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1714
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1611
1715
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1612
1716
|
:type undo: typing.Optional[bool]
|
|
1613
1717
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1617,14 +1721,16 @@ def gpencil_modifier_copy_to_selected(
|
|
|
1617
1721
|
...
|
|
1618
1722
|
|
|
1619
1723
|
def gpencil_modifier_move_down(
|
|
1620
|
-
override_context: typing.Optional[
|
|
1724
|
+
override_context: typing.Optional[
|
|
1725
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1726
|
+
] = None,
|
|
1621
1727
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1622
1728
|
undo: typing.Optional[bool] = None,
|
|
1623
1729
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1624
1730
|
):
|
|
1625
1731
|
"""Move modifier down in the stack
|
|
1626
1732
|
|
|
1627
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1733
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1628
1734
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1629
1735
|
:type undo: typing.Optional[bool]
|
|
1630
1736
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1634,7 +1740,9 @@ def gpencil_modifier_move_down(
|
|
|
1634
1740
|
...
|
|
1635
1741
|
|
|
1636
1742
|
def gpencil_modifier_move_to_index(
|
|
1637
|
-
override_context: typing.Optional[
|
|
1743
|
+
override_context: typing.Optional[
|
|
1744
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1745
|
+
] = None,
|
|
1638
1746
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1639
1747
|
undo: typing.Optional[bool] = None,
|
|
1640
1748
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -1642,7 +1750,7 @@ def gpencil_modifier_move_to_index(
|
|
|
1642
1750
|
):
|
|
1643
1751
|
"""Change the modifier's position in the list so it evaluates after the set number of others
|
|
1644
1752
|
|
|
1645
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1753
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1646
1754
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1647
1755
|
:type undo: typing.Optional[bool]
|
|
1648
1756
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1654,14 +1762,16 @@ def gpencil_modifier_move_to_index(
|
|
|
1654
1762
|
...
|
|
1655
1763
|
|
|
1656
1764
|
def gpencil_modifier_move_up(
|
|
1657
|
-
override_context: typing.Optional[
|
|
1765
|
+
override_context: typing.Optional[
|
|
1766
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1767
|
+
] = None,
|
|
1658
1768
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1659
1769
|
undo: typing.Optional[bool] = None,
|
|
1660
1770
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1661
1771
|
):
|
|
1662
1772
|
"""Move modifier up in the stack
|
|
1663
1773
|
|
|
1664
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1774
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1665
1775
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1666
1776
|
:type undo: typing.Optional[bool]
|
|
1667
1777
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1671,7 +1781,9 @@ def gpencil_modifier_move_up(
|
|
|
1671
1781
|
...
|
|
1672
1782
|
|
|
1673
1783
|
def gpencil_modifier_remove(
|
|
1674
|
-
override_context: typing.Optional[
|
|
1784
|
+
override_context: typing.Optional[
|
|
1785
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1786
|
+
] = None,
|
|
1675
1787
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1676
1788
|
undo: typing.Optional[bool] = None,
|
|
1677
1789
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -1679,7 +1791,7 @@ def gpencil_modifier_remove(
|
|
|
1679
1791
|
):
|
|
1680
1792
|
"""Remove a modifier from the active grease pencil object
|
|
1681
1793
|
|
|
1682
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1794
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1683
1795
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1684
1796
|
:type undo: typing.Optional[bool]
|
|
1685
1797
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1691,7 +1803,9 @@ def gpencil_modifier_remove(
|
|
|
1691
1803
|
...
|
|
1692
1804
|
|
|
1693
1805
|
def grease_pencil_add(
|
|
1694
|
-
override_context: typing.Optional[
|
|
1806
|
+
override_context: typing.Optional[
|
|
1807
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1808
|
+
] = None,
|
|
1695
1809
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1696
1810
|
undo: typing.Optional[bool] = None,
|
|
1697
1811
|
type: typing.Optional[typing.Union[str, int]] = "EMPTY",
|
|
@@ -1707,7 +1821,7 @@ def grease_pencil_add(
|
|
|
1707
1821
|
):
|
|
1708
1822
|
"""Add a Grease Pencil object to the scene
|
|
1709
1823
|
|
|
1710
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1824
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1711
1825
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1712
1826
|
:type undo: typing.Optional[bool]
|
|
1713
1827
|
:param type: Type
|
|
@@ -1750,14 +1864,16 @@ def grease_pencil_add(
|
|
|
1750
1864
|
...
|
|
1751
1865
|
|
|
1752
1866
|
def grease_pencil_dash_modifier_segment_add(
|
|
1753
|
-
override_context: typing.Optional[
|
|
1867
|
+
override_context: typing.Optional[
|
|
1868
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1869
|
+
] = None,
|
|
1754
1870
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1755
1871
|
undo: typing.Optional[bool] = None,
|
|
1756
1872
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1757
1873
|
):
|
|
1758
1874
|
"""Add a segment to the dash modifier
|
|
1759
1875
|
|
|
1760
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1876
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1761
1877
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1762
1878
|
:type undo: typing.Optional[bool]
|
|
1763
1879
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1767,7 +1883,9 @@ def grease_pencil_dash_modifier_segment_add(
|
|
|
1767
1883
|
...
|
|
1768
1884
|
|
|
1769
1885
|
def grease_pencil_dash_modifier_segment_move(
|
|
1770
|
-
override_context: typing.Optional[
|
|
1886
|
+
override_context: typing.Optional[
|
|
1887
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1888
|
+
] = None,
|
|
1771
1889
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1772
1890
|
undo: typing.Optional[bool] = None,
|
|
1773
1891
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -1775,7 +1893,7 @@ def grease_pencil_dash_modifier_segment_move(
|
|
|
1775
1893
|
):
|
|
1776
1894
|
"""Move the active dash segment up or down
|
|
1777
1895
|
|
|
1778
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1896
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1779
1897
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1780
1898
|
:type undo: typing.Optional[bool]
|
|
1781
1899
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1787,7 +1905,9 @@ def grease_pencil_dash_modifier_segment_move(
|
|
|
1787
1905
|
...
|
|
1788
1906
|
|
|
1789
1907
|
def grease_pencil_dash_modifier_segment_remove(
|
|
1790
|
-
override_context: typing.Optional[
|
|
1908
|
+
override_context: typing.Optional[
|
|
1909
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1910
|
+
] = None,
|
|
1791
1911
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1792
1912
|
undo: typing.Optional[bool] = None,
|
|
1793
1913
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -1795,7 +1915,7 @@ def grease_pencil_dash_modifier_segment_remove(
|
|
|
1795
1915
|
):
|
|
1796
1916
|
"""Remove the active segment from the dash modifier
|
|
1797
1917
|
|
|
1798
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1918
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1799
1919
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1800
1920
|
:type undo: typing.Optional[bool]
|
|
1801
1921
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1807,14 +1927,16 @@ def grease_pencil_dash_modifier_segment_remove(
|
|
|
1807
1927
|
...
|
|
1808
1928
|
|
|
1809
1929
|
def grease_pencil_time_modifier_segment_add(
|
|
1810
|
-
override_context: typing.Optional[
|
|
1930
|
+
override_context: typing.Optional[
|
|
1931
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1932
|
+
] = None,
|
|
1811
1933
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1812
1934
|
undo: typing.Optional[bool] = None,
|
|
1813
1935
|
modifier: typing.Union[str, typing.Any] = "",
|
|
1814
1936
|
):
|
|
1815
1937
|
"""Add a segment to the time modifier
|
|
1816
1938
|
|
|
1817
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1939
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1818
1940
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1819
1941
|
:type undo: typing.Optional[bool]
|
|
1820
1942
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1824,7 +1946,9 @@ def grease_pencil_time_modifier_segment_add(
|
|
|
1824
1946
|
...
|
|
1825
1947
|
|
|
1826
1948
|
def grease_pencil_time_modifier_segment_move(
|
|
1827
|
-
override_context: typing.Optional[
|
|
1949
|
+
override_context: typing.Optional[
|
|
1950
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1951
|
+
] = None,
|
|
1828
1952
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1829
1953
|
undo: typing.Optional[bool] = None,
|
|
1830
1954
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -1832,7 +1956,7 @@ def grease_pencil_time_modifier_segment_move(
|
|
|
1832
1956
|
):
|
|
1833
1957
|
"""Move the active time segment up or down
|
|
1834
1958
|
|
|
1835
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1959
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1836
1960
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1837
1961
|
:type undo: typing.Optional[bool]
|
|
1838
1962
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1844,7 +1968,9 @@ def grease_pencil_time_modifier_segment_move(
|
|
|
1844
1968
|
...
|
|
1845
1969
|
|
|
1846
1970
|
def grease_pencil_time_modifier_segment_remove(
|
|
1847
|
-
override_context: typing.Optional[
|
|
1971
|
+
override_context: typing.Optional[
|
|
1972
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1973
|
+
] = None,
|
|
1848
1974
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1849
1975
|
undo: typing.Optional[bool] = None,
|
|
1850
1976
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -1852,7 +1978,7 @@ def grease_pencil_time_modifier_segment_remove(
|
|
|
1852
1978
|
):
|
|
1853
1979
|
"""Remove the active segment from the time modifier
|
|
1854
1980
|
|
|
1855
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1981
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1856
1982
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1857
1983
|
:type undo: typing.Optional[bool]
|
|
1858
1984
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1864,7 +1990,9 @@ def grease_pencil_time_modifier_segment_remove(
|
|
|
1864
1990
|
...
|
|
1865
1991
|
|
|
1866
1992
|
def hide_collection(
|
|
1867
|
-
override_context: typing.Optional[
|
|
1993
|
+
override_context: typing.Optional[
|
|
1994
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1995
|
+
] = None,
|
|
1868
1996
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1869
1997
|
undo: typing.Optional[bool] = None,
|
|
1870
1998
|
collection_index: typing.Optional[typing.Any] = -1,
|
|
@@ -1873,7 +2001,7 @@ def hide_collection(
|
|
|
1873
2001
|
):
|
|
1874
2002
|
"""Show only objects in collection (Shift to extend)
|
|
1875
2003
|
|
|
1876
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2004
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1877
2005
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1878
2006
|
:type undo: typing.Optional[bool]
|
|
1879
2007
|
:param collection_index: Collection Index, Index of the collection to change visibility
|
|
@@ -1887,13 +2015,15 @@ def hide_collection(
|
|
|
1887
2015
|
...
|
|
1888
2016
|
|
|
1889
2017
|
def hide_render_clear_all(
|
|
1890
|
-
override_context: typing.Optional[
|
|
2018
|
+
override_context: typing.Optional[
|
|
2019
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2020
|
+
] = None,
|
|
1891
2021
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1892
2022
|
undo: typing.Optional[bool] = None,
|
|
1893
2023
|
):
|
|
1894
2024
|
"""Reveal all render objects by setting the hide render flag
|
|
1895
2025
|
|
|
1896
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2026
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1897
2027
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1898
2028
|
:type undo: typing.Optional[bool]
|
|
1899
2029
|
"""
|
|
@@ -1901,14 +2031,16 @@ def hide_render_clear_all(
|
|
|
1901
2031
|
...
|
|
1902
2032
|
|
|
1903
2033
|
def hide_view_clear(
|
|
1904
|
-
override_context: typing.Optional[
|
|
2034
|
+
override_context: typing.Optional[
|
|
2035
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2036
|
+
] = None,
|
|
1905
2037
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1906
2038
|
undo: typing.Optional[bool] = None,
|
|
1907
2039
|
select: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1908
2040
|
):
|
|
1909
2041
|
"""Reveal temporarily hidden objects
|
|
1910
2042
|
|
|
1911
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2043
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1912
2044
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1913
2045
|
:type undo: typing.Optional[bool]
|
|
1914
2046
|
:param select: Select
|
|
@@ -1918,14 +2050,16 @@ def hide_view_clear(
|
|
|
1918
2050
|
...
|
|
1919
2051
|
|
|
1920
2052
|
def hide_view_set(
|
|
1921
|
-
override_context: typing.Optional[
|
|
2053
|
+
override_context: typing.Optional[
|
|
2054
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2055
|
+
] = None,
|
|
1922
2056
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1923
2057
|
undo: typing.Optional[bool] = None,
|
|
1924
2058
|
unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1925
2059
|
):
|
|
1926
2060
|
"""Temporarily hide objects from the viewport
|
|
1927
2061
|
|
|
1928
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2062
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1929
2063
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1930
2064
|
:type undo: typing.Optional[bool]
|
|
1931
2065
|
:param unselected: Unselected, Hide unselected rather than selected objects
|
|
@@ -1935,13 +2069,15 @@ def hide_view_set(
|
|
|
1935
2069
|
...
|
|
1936
2070
|
|
|
1937
2071
|
def hook_add_newob(
|
|
1938
|
-
override_context: typing.Optional[
|
|
2072
|
+
override_context: typing.Optional[
|
|
2073
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2074
|
+
] = None,
|
|
1939
2075
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1940
2076
|
undo: typing.Optional[bool] = None,
|
|
1941
2077
|
):
|
|
1942
2078
|
"""Hook selected vertices to a newly created object
|
|
1943
2079
|
|
|
1944
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2080
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1945
2081
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1946
2082
|
:type undo: typing.Optional[bool]
|
|
1947
2083
|
"""
|
|
@@ -1949,14 +2085,16 @@ def hook_add_newob(
|
|
|
1949
2085
|
...
|
|
1950
2086
|
|
|
1951
2087
|
def hook_add_selob(
|
|
1952
|
-
override_context: typing.Optional[
|
|
2088
|
+
override_context: typing.Optional[
|
|
2089
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2090
|
+
] = None,
|
|
1953
2091
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1954
2092
|
undo: typing.Optional[bool] = None,
|
|
1955
2093
|
use_bone: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1956
2094
|
):
|
|
1957
2095
|
"""Hook selected vertices to the first selected object
|
|
1958
2096
|
|
|
1959
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2097
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1960
2098
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1961
2099
|
:type undo: typing.Optional[bool]
|
|
1962
2100
|
:param use_bone: Active Bone, Assign the hook to the hook object's active bone
|
|
@@ -1966,14 +2104,16 @@ def hook_add_selob(
|
|
|
1966
2104
|
...
|
|
1967
2105
|
|
|
1968
2106
|
def hook_assign(
|
|
1969
|
-
override_context: typing.Optional[
|
|
2107
|
+
override_context: typing.Optional[
|
|
2108
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2109
|
+
] = None,
|
|
1970
2110
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1971
2111
|
undo: typing.Optional[bool] = None,
|
|
1972
2112
|
modifier: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
1973
2113
|
):
|
|
1974
2114
|
"""Assign the selected vertices to a hook
|
|
1975
2115
|
|
|
1976
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2116
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1977
2117
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1978
2118
|
:type undo: typing.Optional[bool]
|
|
1979
2119
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -1983,14 +2123,16 @@ def hook_assign(
|
|
|
1983
2123
|
...
|
|
1984
2124
|
|
|
1985
2125
|
def hook_recenter(
|
|
1986
|
-
override_context: typing.Optional[
|
|
2126
|
+
override_context: typing.Optional[
|
|
2127
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2128
|
+
] = None,
|
|
1987
2129
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1988
2130
|
undo: typing.Optional[bool] = None,
|
|
1989
2131
|
modifier: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
1990
2132
|
):
|
|
1991
2133
|
"""Set hook center to cursor position
|
|
1992
2134
|
|
|
1993
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2135
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1994
2136
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1995
2137
|
:type undo: typing.Optional[bool]
|
|
1996
2138
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -2000,14 +2142,16 @@ def hook_recenter(
|
|
|
2000
2142
|
...
|
|
2001
2143
|
|
|
2002
2144
|
def hook_remove(
|
|
2003
|
-
override_context: typing.Optional[
|
|
2145
|
+
override_context: typing.Optional[
|
|
2146
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2147
|
+
] = None,
|
|
2004
2148
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2005
2149
|
undo: typing.Optional[bool] = None,
|
|
2006
2150
|
modifier: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
2007
2151
|
):
|
|
2008
2152
|
"""Remove a hook from the active object
|
|
2009
2153
|
|
|
2010
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2154
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2011
2155
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2012
2156
|
:type undo: typing.Optional[bool]
|
|
2013
2157
|
:param modifier: Modifier, Modifier number to remove
|
|
@@ -2017,14 +2161,16 @@ def hook_remove(
|
|
|
2017
2161
|
...
|
|
2018
2162
|
|
|
2019
2163
|
def hook_reset(
|
|
2020
|
-
override_context: typing.Optional[
|
|
2164
|
+
override_context: typing.Optional[
|
|
2165
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2166
|
+
] = None,
|
|
2021
2167
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2022
2168
|
undo: typing.Optional[bool] = None,
|
|
2023
2169
|
modifier: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
2024
2170
|
):
|
|
2025
2171
|
"""Recalculate and clear offset transformation
|
|
2026
2172
|
|
|
2027
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2173
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2028
2174
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2029
2175
|
:type undo: typing.Optional[bool]
|
|
2030
2176
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -2034,14 +2180,16 @@ def hook_reset(
|
|
|
2034
2180
|
...
|
|
2035
2181
|
|
|
2036
2182
|
def hook_select(
|
|
2037
|
-
override_context: typing.Optional[
|
|
2183
|
+
override_context: typing.Optional[
|
|
2184
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2185
|
+
] = None,
|
|
2038
2186
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2039
2187
|
undo: typing.Optional[bool] = None,
|
|
2040
2188
|
modifier: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
2041
2189
|
):
|
|
2042
2190
|
"""Select affected vertices on mesh
|
|
2043
2191
|
|
|
2044
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2192
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2045
2193
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2046
2194
|
:type undo: typing.Optional[bool]
|
|
2047
2195
|
:param modifier: Modifier, Modifier number to remove
|
|
@@ -2051,13 +2199,15 @@ def hook_select(
|
|
|
2051
2199
|
...
|
|
2052
2200
|
|
|
2053
2201
|
def instance_offset_from_cursor(
|
|
2054
|
-
override_context: typing.Optional[
|
|
2202
|
+
override_context: typing.Optional[
|
|
2203
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2204
|
+
] = None,
|
|
2055
2205
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2056
2206
|
undo: typing.Optional[bool] = None,
|
|
2057
2207
|
):
|
|
2058
2208
|
"""Set offset used for collection instances based on cursor position
|
|
2059
2209
|
|
|
2060
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2210
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2061
2211
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2062
2212
|
:type undo: typing.Optional[bool]
|
|
2063
2213
|
"""
|
|
@@ -2065,13 +2215,15 @@ def instance_offset_from_cursor(
|
|
|
2065
2215
|
...
|
|
2066
2216
|
|
|
2067
2217
|
def instance_offset_from_object(
|
|
2068
|
-
override_context: typing.Optional[
|
|
2218
|
+
override_context: typing.Optional[
|
|
2219
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2220
|
+
] = None,
|
|
2069
2221
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2070
2222
|
undo: typing.Optional[bool] = None,
|
|
2071
2223
|
):
|
|
2072
2224
|
"""Set offset used for collection instances based on the active object position
|
|
2073
2225
|
|
|
2074
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2226
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2075
2227
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2076
2228
|
:type undo: typing.Optional[bool]
|
|
2077
2229
|
"""
|
|
@@ -2079,13 +2231,15 @@ def instance_offset_from_object(
|
|
|
2079
2231
|
...
|
|
2080
2232
|
|
|
2081
2233
|
def instance_offset_to_cursor(
|
|
2082
|
-
override_context: typing.Optional[
|
|
2234
|
+
override_context: typing.Optional[
|
|
2235
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2236
|
+
] = None,
|
|
2083
2237
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2084
2238
|
undo: typing.Optional[bool] = None,
|
|
2085
2239
|
):
|
|
2086
2240
|
"""Set cursor position to the offset used for collection instances
|
|
2087
2241
|
|
|
2088
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2242
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2089
2243
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2090
2244
|
:type undo: typing.Optional[bool]
|
|
2091
2245
|
"""
|
|
@@ -2093,13 +2247,15 @@ def instance_offset_to_cursor(
|
|
|
2093
2247
|
...
|
|
2094
2248
|
|
|
2095
2249
|
def isolate_type_render(
|
|
2096
|
-
override_context: typing.Optional[
|
|
2250
|
+
override_context: typing.Optional[
|
|
2251
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2252
|
+
] = None,
|
|
2097
2253
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2098
2254
|
undo: typing.Optional[bool] = None,
|
|
2099
2255
|
):
|
|
2100
2256
|
"""Hide unselected render objects of same type as active by setting the hide render flag
|
|
2101
2257
|
|
|
2102
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2258
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2103
2259
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2104
2260
|
:type undo: typing.Optional[bool]
|
|
2105
2261
|
"""
|
|
@@ -2107,13 +2263,15 @@ def isolate_type_render(
|
|
|
2107
2263
|
...
|
|
2108
2264
|
|
|
2109
2265
|
def join(
|
|
2110
|
-
override_context: typing.Optional[
|
|
2266
|
+
override_context: typing.Optional[
|
|
2267
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2268
|
+
] = None,
|
|
2111
2269
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2112
2270
|
undo: typing.Optional[bool] = None,
|
|
2113
2271
|
):
|
|
2114
2272
|
"""Join selected objects into active object
|
|
2115
2273
|
|
|
2116
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2274
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2117
2275
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2118
2276
|
:type undo: typing.Optional[bool]
|
|
2119
2277
|
"""
|
|
@@ -2121,13 +2279,15 @@ def join(
|
|
|
2121
2279
|
...
|
|
2122
2280
|
|
|
2123
2281
|
def join_shapes(
|
|
2124
|
-
override_context: typing.Optional[
|
|
2282
|
+
override_context: typing.Optional[
|
|
2283
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2284
|
+
] = None,
|
|
2125
2285
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2126
2286
|
undo: typing.Optional[bool] = None,
|
|
2127
2287
|
):
|
|
2128
2288
|
"""Copy the current resulting shape of another selected object to this one
|
|
2129
2289
|
|
|
2130
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2290
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2131
2291
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2132
2292
|
:type undo: typing.Optional[bool]
|
|
2133
2293
|
"""
|
|
@@ -2135,13 +2295,15 @@ def join_shapes(
|
|
|
2135
2295
|
...
|
|
2136
2296
|
|
|
2137
2297
|
def join_uvs(
|
|
2138
|
-
override_context: typing.Optional[
|
|
2298
|
+
override_context: typing.Optional[
|
|
2299
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2300
|
+
] = None,
|
|
2139
2301
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2140
2302
|
undo: typing.Optional[bool] = None,
|
|
2141
2303
|
):
|
|
2142
2304
|
"""Transfer UV Maps from active to selected objects (needs matching geometry)
|
|
2143
2305
|
|
|
2144
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2306
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2145
2307
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2146
2308
|
:type undo: typing.Optional[bool]
|
|
2147
2309
|
"""
|
|
@@ -2149,14 +2311,16 @@ def join_uvs(
|
|
|
2149
2311
|
...
|
|
2150
2312
|
|
|
2151
2313
|
def laplaciandeform_bind(
|
|
2152
|
-
override_context: typing.Optional[
|
|
2314
|
+
override_context: typing.Optional[
|
|
2315
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2316
|
+
] = None,
|
|
2153
2317
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2154
2318
|
undo: typing.Optional[bool] = None,
|
|
2155
2319
|
modifier: typing.Union[str, typing.Any] = "",
|
|
2156
2320
|
):
|
|
2157
2321
|
"""Bind mesh to system in laplacian deform modifier
|
|
2158
2322
|
|
|
2159
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2323
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2160
2324
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2161
2325
|
:type undo: typing.Optional[bool]
|
|
2162
2326
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2166,7 +2330,9 @@ def laplaciandeform_bind(
|
|
|
2166
2330
|
...
|
|
2167
2331
|
|
|
2168
2332
|
def light_add(
|
|
2169
|
-
override_context: typing.Optional[
|
|
2333
|
+
override_context: typing.Optional[
|
|
2334
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2335
|
+
] = None,
|
|
2170
2336
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2171
2337
|
undo: typing.Optional[bool] = None,
|
|
2172
2338
|
type: typing.Optional[typing.Union[str, int]] = "POINT",
|
|
@@ -2178,7 +2344,7 @@ def light_add(
|
|
|
2178
2344
|
):
|
|
2179
2345
|
"""Add a light object to the scene
|
|
2180
2346
|
|
|
2181
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2347
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2182
2348
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2183
2349
|
:type undo: typing.Optional[bool]
|
|
2184
2350
|
:param type: Type
|
|
@@ -2207,13 +2373,15 @@ def light_add(
|
|
|
2207
2373
|
...
|
|
2208
2374
|
|
|
2209
2375
|
def light_linking_blocker_collection_new(
|
|
2210
|
-
override_context: typing.Optional[
|
|
2376
|
+
override_context: typing.Optional[
|
|
2377
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2378
|
+
] = None,
|
|
2211
2379
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2212
2380
|
undo: typing.Optional[bool] = None,
|
|
2213
2381
|
):
|
|
2214
2382
|
"""Create new light linking collection used by the active emitter
|
|
2215
2383
|
|
|
2216
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2384
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2217
2385
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2218
2386
|
:type undo: typing.Optional[bool]
|
|
2219
2387
|
"""
|
|
@@ -2221,14 +2389,16 @@ def light_linking_blocker_collection_new(
|
|
|
2221
2389
|
...
|
|
2222
2390
|
|
|
2223
2391
|
def light_linking_blockers_link(
|
|
2224
|
-
override_context: typing.Optional[
|
|
2392
|
+
override_context: typing.Optional[
|
|
2393
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2394
|
+
] = None,
|
|
2225
2395
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2226
2396
|
undo: typing.Optional[bool] = None,
|
|
2227
2397
|
link_state: typing.Optional[typing.Any] = "INCLUDE",
|
|
2228
2398
|
):
|
|
2229
2399
|
"""Light link selected blockers to the active emitter object
|
|
2230
2400
|
|
|
2231
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2401
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2232
2402
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2233
2403
|
:type undo: typing.Optional[bool]
|
|
2234
2404
|
:param link_state: Link State, State of the shadow linking
|
|
@@ -2244,13 +2414,15 @@ def light_linking_blockers_link(
|
|
|
2244
2414
|
...
|
|
2245
2415
|
|
|
2246
2416
|
def light_linking_blockers_select(
|
|
2247
|
-
override_context: typing.Optional[
|
|
2417
|
+
override_context: typing.Optional[
|
|
2418
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2419
|
+
] = None,
|
|
2248
2420
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2249
2421
|
undo: typing.Optional[bool] = None,
|
|
2250
2422
|
):
|
|
2251
2423
|
"""Select all objects which block light from this emitter
|
|
2252
2424
|
|
|
2253
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2425
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2254
2426
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2255
2427
|
:type undo: typing.Optional[bool]
|
|
2256
2428
|
"""
|
|
@@ -2258,13 +2430,15 @@ def light_linking_blockers_select(
|
|
|
2258
2430
|
...
|
|
2259
2431
|
|
|
2260
2432
|
def light_linking_receiver_collection_new(
|
|
2261
|
-
override_context: typing.Optional[
|
|
2433
|
+
override_context: typing.Optional[
|
|
2434
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2435
|
+
] = None,
|
|
2262
2436
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2263
2437
|
undo: typing.Optional[bool] = None,
|
|
2264
2438
|
):
|
|
2265
2439
|
"""Create new light linking collection used by the active emitter
|
|
2266
2440
|
|
|
2267
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2441
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2268
2442
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2269
2443
|
:type undo: typing.Optional[bool]
|
|
2270
2444
|
"""
|
|
@@ -2272,14 +2446,16 @@ def light_linking_receiver_collection_new(
|
|
|
2272
2446
|
...
|
|
2273
2447
|
|
|
2274
2448
|
def light_linking_receivers_link(
|
|
2275
|
-
override_context: typing.Optional[
|
|
2449
|
+
override_context: typing.Optional[
|
|
2450
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2451
|
+
] = None,
|
|
2276
2452
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2277
2453
|
undo: typing.Optional[bool] = None,
|
|
2278
2454
|
link_state: typing.Optional[typing.Any] = "INCLUDE",
|
|
2279
2455
|
):
|
|
2280
2456
|
"""Light link selected receivers to the active emitter object
|
|
2281
2457
|
|
|
2282
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2458
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2283
2459
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2284
2460
|
:type undo: typing.Optional[bool]
|
|
2285
2461
|
:param link_state: Link State, State of the light linking
|
|
@@ -2295,13 +2471,15 @@ def light_linking_receivers_link(
|
|
|
2295
2471
|
...
|
|
2296
2472
|
|
|
2297
2473
|
def light_linking_receivers_select(
|
|
2298
|
-
override_context: typing.Optional[
|
|
2474
|
+
override_context: typing.Optional[
|
|
2475
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2476
|
+
] = None,
|
|
2299
2477
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2300
2478
|
undo: typing.Optional[bool] = None,
|
|
2301
2479
|
):
|
|
2302
2480
|
"""Select all objects which receive light from this emitter
|
|
2303
2481
|
|
|
2304
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2482
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2305
2483
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2306
2484
|
:type undo: typing.Optional[bool]
|
|
2307
2485
|
"""
|
|
@@ -2309,13 +2487,15 @@ def light_linking_receivers_select(
|
|
|
2309
2487
|
...
|
|
2310
2488
|
|
|
2311
2489
|
def light_linking_unlink_from_collection(
|
|
2312
|
-
override_context: typing.Optional[
|
|
2490
|
+
override_context: typing.Optional[
|
|
2491
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2492
|
+
] = None,
|
|
2313
2493
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2314
2494
|
undo: typing.Optional[bool] = None,
|
|
2315
2495
|
):
|
|
2316
2496
|
"""Remove this object or collection from the light linking collection
|
|
2317
2497
|
|
|
2318
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2498
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2319
2499
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2320
2500
|
:type undo: typing.Optional[bool]
|
|
2321
2501
|
"""
|
|
@@ -2323,7 +2503,9 @@ def light_linking_unlink_from_collection(
|
|
|
2323
2503
|
...
|
|
2324
2504
|
|
|
2325
2505
|
def lightprobe_add(
|
|
2326
|
-
override_context: typing.Optional[
|
|
2506
|
+
override_context: typing.Optional[
|
|
2507
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2508
|
+
] = None,
|
|
2327
2509
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2328
2510
|
undo: typing.Optional[bool] = None,
|
|
2329
2511
|
type: typing.Optional[typing.Any] = "SPHERE",
|
|
@@ -2336,7 +2518,7 @@ def lightprobe_add(
|
|
|
2336
2518
|
):
|
|
2337
2519
|
"""Add a light probe object
|
|
2338
2520
|
|
|
2339
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2521
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2340
2522
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2341
2523
|
:type undo: typing.Optional[bool]
|
|
2342
2524
|
:param type: Type
|
|
@@ -2376,7 +2558,9 @@ def lightprobe_add(
|
|
|
2376
2558
|
...
|
|
2377
2559
|
|
|
2378
2560
|
def lightprobe_cache_bake(
|
|
2379
|
-
override_context: typing.Optional[
|
|
2561
|
+
override_context: typing.Optional[
|
|
2562
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2563
|
+
] = None,
|
|
2380
2564
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2381
2565
|
undo: typing.Optional[bool] = None,
|
|
2382
2566
|
delay: typing.Optional[typing.Any] = 0,
|
|
@@ -2384,7 +2568,7 @@ def lightprobe_cache_bake(
|
|
|
2384
2568
|
):
|
|
2385
2569
|
"""Bake irradiance volume light cache
|
|
2386
2570
|
|
|
2387
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2571
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2388
2572
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2389
2573
|
:type undo: typing.Optional[bool]
|
|
2390
2574
|
:param delay: Delay, Delay in millisecond before baking starts
|
|
@@ -2405,14 +2589,16 @@ def lightprobe_cache_bake(
|
|
|
2405
2589
|
...
|
|
2406
2590
|
|
|
2407
2591
|
def lightprobe_cache_free(
|
|
2408
|
-
override_context: typing.Optional[
|
|
2592
|
+
override_context: typing.Optional[
|
|
2593
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2594
|
+
] = None,
|
|
2409
2595
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2410
2596
|
undo: typing.Optional[bool] = None,
|
|
2411
2597
|
subset: typing.Optional[typing.Any] = "SELECTED",
|
|
2412
2598
|
):
|
|
2413
2599
|
"""Delete cached indirect lighting
|
|
2414
2600
|
|
|
2415
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2601
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2416
2602
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2417
2603
|
:type undo: typing.Optional[bool]
|
|
2418
2604
|
:param subset: Subset, Subset of probes to update
|
|
@@ -2431,13 +2617,15 @@ def lightprobe_cache_free(
|
|
|
2431
2617
|
...
|
|
2432
2618
|
|
|
2433
2619
|
def lineart_bake_strokes(
|
|
2434
|
-
override_context: typing.Optional[
|
|
2620
|
+
override_context: typing.Optional[
|
|
2621
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2622
|
+
] = None,
|
|
2435
2623
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2436
2624
|
undo: typing.Optional[bool] = None,
|
|
2437
2625
|
):
|
|
2438
2626
|
"""Bake Line Art for current Grease Pencil object
|
|
2439
2627
|
|
|
2440
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2628
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2441
2629
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2442
2630
|
:type undo: typing.Optional[bool]
|
|
2443
2631
|
"""
|
|
@@ -2445,13 +2633,15 @@ def lineart_bake_strokes(
|
|
|
2445
2633
|
...
|
|
2446
2634
|
|
|
2447
2635
|
def lineart_bake_strokes_all(
|
|
2448
|
-
override_context: typing.Optional[
|
|
2636
|
+
override_context: typing.Optional[
|
|
2637
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2638
|
+
] = None,
|
|
2449
2639
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2450
2640
|
undo: typing.Optional[bool] = None,
|
|
2451
2641
|
):
|
|
2452
2642
|
"""Bake all Grease Pencil objects that have a Line Art modifier
|
|
2453
2643
|
|
|
2454
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2644
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2455
2645
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2456
2646
|
:type undo: typing.Optional[bool]
|
|
2457
2647
|
"""
|
|
@@ -2459,13 +2649,15 @@ def lineart_bake_strokes_all(
|
|
|
2459
2649
|
...
|
|
2460
2650
|
|
|
2461
2651
|
def lineart_clear(
|
|
2462
|
-
override_context: typing.Optional[
|
|
2652
|
+
override_context: typing.Optional[
|
|
2653
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2654
|
+
] = None,
|
|
2463
2655
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2464
2656
|
undo: typing.Optional[bool] = None,
|
|
2465
2657
|
):
|
|
2466
2658
|
"""Clear all strokes in current Grease Pencil object
|
|
2467
2659
|
|
|
2468
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2660
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2469
2661
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2470
2662
|
:type undo: typing.Optional[bool]
|
|
2471
2663
|
"""
|
|
@@ -2473,13 +2665,15 @@ def lineart_clear(
|
|
|
2473
2665
|
...
|
|
2474
2666
|
|
|
2475
2667
|
def lineart_clear_all(
|
|
2476
|
-
override_context: typing.Optional[
|
|
2668
|
+
override_context: typing.Optional[
|
|
2669
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2670
|
+
] = None,
|
|
2477
2671
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2478
2672
|
undo: typing.Optional[bool] = None,
|
|
2479
2673
|
):
|
|
2480
2674
|
"""Clear all strokes in all Grease Pencil objects that have a Line Art modifier
|
|
2481
2675
|
|
|
2482
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2676
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2483
2677
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2484
2678
|
:type undo: typing.Optional[bool]
|
|
2485
2679
|
"""
|
|
@@ -2487,7 +2681,9 @@ def lineart_clear_all(
|
|
|
2487
2681
|
...
|
|
2488
2682
|
|
|
2489
2683
|
def link_to_collection(
|
|
2490
|
-
override_context: typing.Optional[
|
|
2684
|
+
override_context: typing.Optional[
|
|
2685
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2686
|
+
] = None,
|
|
2491
2687
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2492
2688
|
undo: typing.Optional[bool] = None,
|
|
2493
2689
|
collection_index: typing.Optional[typing.Any] = -1,
|
|
@@ -2496,7 +2692,7 @@ def link_to_collection(
|
|
|
2496
2692
|
):
|
|
2497
2693
|
"""Link objects to a collection
|
|
2498
2694
|
|
|
2499
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2695
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2500
2696
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2501
2697
|
:type undo: typing.Optional[bool]
|
|
2502
2698
|
:param collection_index: Collection Index, Index of the collection to move to
|
|
@@ -2510,14 +2706,16 @@ def link_to_collection(
|
|
|
2510
2706
|
...
|
|
2511
2707
|
|
|
2512
2708
|
def location_clear(
|
|
2513
|
-
override_context: typing.Optional[
|
|
2709
|
+
override_context: typing.Optional[
|
|
2710
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2711
|
+
] = None,
|
|
2514
2712
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2515
2713
|
undo: typing.Optional[bool] = None,
|
|
2516
2714
|
clear_delta: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
2517
2715
|
):
|
|
2518
2716
|
"""Clear the object's location
|
|
2519
2717
|
|
|
2520
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2718
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2521
2719
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2522
2720
|
:type undo: typing.Optional[bool]
|
|
2523
2721
|
:param clear_delta: Clear Delta, Clear delta location in addition to clearing the normal location transform
|
|
@@ -2527,13 +2725,15 @@ def location_clear(
|
|
|
2527
2725
|
...
|
|
2528
2726
|
|
|
2529
2727
|
def make_dupli_face(
|
|
2530
|
-
override_context: typing.Optional[
|
|
2728
|
+
override_context: typing.Optional[
|
|
2729
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2730
|
+
] = None,
|
|
2531
2731
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2532
2732
|
undo: typing.Optional[bool] = None,
|
|
2533
2733
|
):
|
|
2534
2734
|
"""Convert objects into instanced faces
|
|
2535
2735
|
|
|
2536
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2736
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2537
2737
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2538
2738
|
:type undo: typing.Optional[bool]
|
|
2539
2739
|
"""
|
|
@@ -2541,14 +2741,16 @@ def make_dupli_face(
|
|
|
2541
2741
|
...
|
|
2542
2742
|
|
|
2543
2743
|
def make_links_data(
|
|
2544
|
-
override_context: typing.Optional[
|
|
2744
|
+
override_context: typing.Optional[
|
|
2745
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2746
|
+
] = None,
|
|
2545
2747
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2546
2748
|
undo: typing.Optional[bool] = None,
|
|
2547
2749
|
type: typing.Optional[typing.Any] = "OBDATA",
|
|
2548
2750
|
):
|
|
2549
2751
|
"""Transfer data from active object to selected objects
|
|
2550
2752
|
|
|
2551
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2753
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2552
2754
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2553
2755
|
:type undo: typing.Optional[bool]
|
|
2554
2756
|
:param type: Type
|
|
@@ -2582,14 +2784,16 @@ def make_links_data(
|
|
|
2582
2784
|
...
|
|
2583
2785
|
|
|
2584
2786
|
def make_links_scene(
|
|
2585
|
-
override_context: typing.Optional[
|
|
2787
|
+
override_context: typing.Optional[
|
|
2788
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2789
|
+
] = None,
|
|
2586
2790
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2587
2791
|
undo: typing.Optional[bool] = None,
|
|
2588
2792
|
scene: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
2589
2793
|
):
|
|
2590
2794
|
"""Link selection to another scene
|
|
2591
2795
|
|
|
2592
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2796
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2593
2797
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2594
2798
|
:type undo: typing.Optional[bool]
|
|
2595
2799
|
:param scene: Scene
|
|
@@ -2599,14 +2803,16 @@ def make_links_scene(
|
|
|
2599
2803
|
...
|
|
2600
2804
|
|
|
2601
2805
|
def make_local(
|
|
2602
|
-
override_context: typing.Optional[
|
|
2806
|
+
override_context: typing.Optional[
|
|
2807
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2808
|
+
] = None,
|
|
2603
2809
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2604
2810
|
undo: typing.Optional[bool] = None,
|
|
2605
2811
|
type: typing.Optional[typing.Any] = "SELECT_OBJECT",
|
|
2606
2812
|
):
|
|
2607
2813
|
"""Make library linked data-blocks local to this file
|
|
2608
2814
|
|
|
2609
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2815
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2610
2816
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2611
2817
|
:type undo: typing.Optional[bool]
|
|
2612
2818
|
:param type: Type
|
|
@@ -2616,14 +2822,16 @@ def make_local(
|
|
|
2616
2822
|
...
|
|
2617
2823
|
|
|
2618
2824
|
def make_override_library(
|
|
2619
|
-
override_context: typing.Optional[
|
|
2825
|
+
override_context: typing.Optional[
|
|
2826
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2827
|
+
] = None,
|
|
2620
2828
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2621
2829
|
undo: typing.Optional[bool] = None,
|
|
2622
2830
|
collection: typing.Optional[typing.Any] = 0,
|
|
2623
2831
|
):
|
|
2624
2832
|
"""Create a local override of the selected linked objects, and their hierarchy of dependencies
|
|
2625
2833
|
|
|
2626
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2834
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2627
2835
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2628
2836
|
:type undo: typing.Optional[bool]
|
|
2629
2837
|
:param collection: Override Collection, Session UID of the directly linked collection containing the selected object, to make an override from
|
|
@@ -2633,7 +2841,9 @@ def make_override_library(
|
|
|
2633
2841
|
...
|
|
2634
2842
|
|
|
2635
2843
|
def make_single_user(
|
|
2636
|
-
override_context: typing.Optional[
|
|
2844
|
+
override_context: typing.Optional[
|
|
2845
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2846
|
+
] = None,
|
|
2637
2847
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2638
2848
|
undo: typing.Optional[bool] = None,
|
|
2639
2849
|
type: typing.Optional[typing.Any] = "SELECTED_OBJECTS",
|
|
@@ -2645,7 +2855,7 @@ def make_single_user(
|
|
|
2645
2855
|
):
|
|
2646
2856
|
"""Make linked data local to each object
|
|
2647
2857
|
|
|
2648
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2858
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2649
2859
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2650
2860
|
:type undo: typing.Optional[bool]
|
|
2651
2861
|
:param type: Type
|
|
@@ -2665,13 +2875,15 @@ def make_single_user(
|
|
|
2665
2875
|
...
|
|
2666
2876
|
|
|
2667
2877
|
def material_slot_add(
|
|
2668
|
-
override_context: typing.Optional[
|
|
2878
|
+
override_context: typing.Optional[
|
|
2879
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2880
|
+
] = None,
|
|
2669
2881
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2670
2882
|
undo: typing.Optional[bool] = None,
|
|
2671
2883
|
):
|
|
2672
2884
|
"""Add a new material slot
|
|
2673
2885
|
|
|
2674
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2886
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2675
2887
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2676
2888
|
:type undo: typing.Optional[bool]
|
|
2677
2889
|
"""
|
|
@@ -2679,13 +2891,15 @@ def material_slot_add(
|
|
|
2679
2891
|
...
|
|
2680
2892
|
|
|
2681
2893
|
def material_slot_assign(
|
|
2682
|
-
override_context: typing.Optional[
|
|
2894
|
+
override_context: typing.Optional[
|
|
2895
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2896
|
+
] = None,
|
|
2683
2897
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2684
2898
|
undo: typing.Optional[bool] = None,
|
|
2685
2899
|
):
|
|
2686
2900
|
"""Assign active material slot to selection
|
|
2687
2901
|
|
|
2688
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2902
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2689
2903
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2690
2904
|
:type undo: typing.Optional[bool]
|
|
2691
2905
|
"""
|
|
@@ -2693,13 +2907,15 @@ def material_slot_assign(
|
|
|
2693
2907
|
...
|
|
2694
2908
|
|
|
2695
2909
|
def material_slot_copy(
|
|
2696
|
-
override_context: typing.Optional[
|
|
2910
|
+
override_context: typing.Optional[
|
|
2911
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2912
|
+
] = None,
|
|
2697
2913
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2698
2914
|
undo: typing.Optional[bool] = None,
|
|
2699
2915
|
):
|
|
2700
2916
|
"""Copy material to selected objects
|
|
2701
2917
|
|
|
2702
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2918
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2703
2919
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2704
2920
|
:type undo: typing.Optional[bool]
|
|
2705
2921
|
"""
|
|
@@ -2707,13 +2923,15 @@ def material_slot_copy(
|
|
|
2707
2923
|
...
|
|
2708
2924
|
|
|
2709
2925
|
def material_slot_deselect(
|
|
2710
|
-
override_context: typing.Optional[
|
|
2926
|
+
override_context: typing.Optional[
|
|
2927
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2928
|
+
] = None,
|
|
2711
2929
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2712
2930
|
undo: typing.Optional[bool] = None,
|
|
2713
2931
|
):
|
|
2714
2932
|
"""Deselect by active material slot
|
|
2715
2933
|
|
|
2716
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2934
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2717
2935
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2718
2936
|
:type undo: typing.Optional[bool]
|
|
2719
2937
|
"""
|
|
@@ -2721,14 +2939,16 @@ def material_slot_deselect(
|
|
|
2721
2939
|
...
|
|
2722
2940
|
|
|
2723
2941
|
def material_slot_move(
|
|
2724
|
-
override_context: typing.Optional[
|
|
2942
|
+
override_context: typing.Optional[
|
|
2943
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2944
|
+
] = None,
|
|
2725
2945
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2726
2946
|
undo: typing.Optional[bool] = None,
|
|
2727
2947
|
direction: typing.Optional[typing.Any] = "UP",
|
|
2728
2948
|
):
|
|
2729
2949
|
"""Move the active material up/down in the list
|
|
2730
2950
|
|
|
2731
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2951
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2732
2952
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2733
2953
|
:type undo: typing.Optional[bool]
|
|
2734
2954
|
:param direction: Direction, Direction to move the active material towards
|
|
@@ -2738,13 +2958,15 @@ def material_slot_move(
|
|
|
2738
2958
|
...
|
|
2739
2959
|
|
|
2740
2960
|
def material_slot_remove(
|
|
2741
|
-
override_context: typing.Optional[
|
|
2961
|
+
override_context: typing.Optional[
|
|
2962
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2963
|
+
] = None,
|
|
2742
2964
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2743
2965
|
undo: typing.Optional[bool] = None,
|
|
2744
2966
|
):
|
|
2745
2967
|
"""Remove the selected material slot
|
|
2746
2968
|
|
|
2747
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2969
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2748
2970
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2749
2971
|
:type undo: typing.Optional[bool]
|
|
2750
2972
|
"""
|
|
@@ -2752,13 +2974,15 @@ def material_slot_remove(
|
|
|
2752
2974
|
...
|
|
2753
2975
|
|
|
2754
2976
|
def material_slot_remove_unused(
|
|
2755
|
-
override_context: typing.Optional[
|
|
2977
|
+
override_context: typing.Optional[
|
|
2978
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2979
|
+
] = None,
|
|
2756
2980
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2757
2981
|
undo: typing.Optional[bool] = None,
|
|
2758
2982
|
):
|
|
2759
2983
|
"""Remove unused material slots
|
|
2760
2984
|
|
|
2761
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2985
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2762
2986
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2763
2987
|
:type undo: typing.Optional[bool]
|
|
2764
2988
|
"""
|
|
@@ -2766,13 +2990,15 @@ def material_slot_remove_unused(
|
|
|
2766
2990
|
...
|
|
2767
2991
|
|
|
2768
2992
|
def material_slot_select(
|
|
2769
|
-
override_context: typing.Optional[
|
|
2993
|
+
override_context: typing.Optional[
|
|
2994
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2995
|
+
] = None,
|
|
2770
2996
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2771
2997
|
undo: typing.Optional[bool] = None,
|
|
2772
2998
|
):
|
|
2773
2999
|
"""Select by active material slot
|
|
2774
3000
|
|
|
2775
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3001
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2776
3002
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2777
3003
|
:type undo: typing.Optional[bool]
|
|
2778
3004
|
"""
|
|
@@ -2780,14 +3006,16 @@ def material_slot_select(
|
|
|
2780
3006
|
...
|
|
2781
3007
|
|
|
2782
3008
|
def meshdeform_bind(
|
|
2783
|
-
override_context: typing.Optional[
|
|
3009
|
+
override_context: typing.Optional[
|
|
3010
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3011
|
+
] = None,
|
|
2784
3012
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2785
3013
|
undo: typing.Optional[bool] = None,
|
|
2786
3014
|
modifier: typing.Union[str, typing.Any] = "",
|
|
2787
3015
|
):
|
|
2788
3016
|
"""Bind mesh to cage in mesh deform modifier
|
|
2789
3017
|
|
|
2790
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3018
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2791
3019
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2792
3020
|
:type undo: typing.Optional[bool]
|
|
2793
3021
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2797,7 +3025,9 @@ def meshdeform_bind(
|
|
|
2797
3025
|
...
|
|
2798
3026
|
|
|
2799
3027
|
def metaball_add(
|
|
2800
|
-
override_context: typing.Optional[
|
|
3028
|
+
override_context: typing.Optional[
|
|
3029
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3030
|
+
] = None,
|
|
2801
3031
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2802
3032
|
undo: typing.Optional[bool] = None,
|
|
2803
3033
|
type: typing.Optional[typing.Union[str, int]] = "BALL",
|
|
@@ -2810,7 +3040,7 @@ def metaball_add(
|
|
|
2810
3040
|
):
|
|
2811
3041
|
"""Add an metaball object to the scene
|
|
2812
3042
|
|
|
2813
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3043
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2814
3044
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2815
3045
|
:type undo: typing.Optional[bool]
|
|
2816
3046
|
:param type: Primitive
|
|
@@ -2841,7 +3071,9 @@ def metaball_add(
|
|
|
2841
3071
|
...
|
|
2842
3072
|
|
|
2843
3073
|
def mode_set(
|
|
2844
|
-
override_context: typing.Optional[
|
|
3074
|
+
override_context: typing.Optional[
|
|
3075
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3076
|
+
] = None,
|
|
2845
3077
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2846
3078
|
undo: typing.Optional[bool] = None,
|
|
2847
3079
|
mode: typing.Optional[typing.Union[str, int]] = "OBJECT",
|
|
@@ -2849,7 +3081,7 @@ def mode_set(
|
|
|
2849
3081
|
):
|
|
2850
3082
|
"""Sets the object interaction mode
|
|
2851
3083
|
|
|
2852
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3084
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2853
3085
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2854
3086
|
:type undo: typing.Optional[bool]
|
|
2855
3087
|
:param mode: Mode
|
|
@@ -2861,7 +3093,9 @@ def mode_set(
|
|
|
2861
3093
|
...
|
|
2862
3094
|
|
|
2863
3095
|
def mode_set_with_submode(
|
|
2864
|
-
override_context: typing.Optional[
|
|
3096
|
+
override_context: typing.Optional[
|
|
3097
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3098
|
+
] = None,
|
|
2865
3099
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2866
3100
|
undo: typing.Optional[bool] = None,
|
|
2867
3101
|
mode: typing.Optional[typing.Union[str, int]] = "OBJECT",
|
|
@@ -2870,7 +3104,7 @@ def mode_set_with_submode(
|
|
|
2870
3104
|
):
|
|
2871
3105
|
"""Sets the object interaction mode
|
|
2872
3106
|
|
|
2873
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3107
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2874
3108
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2875
3109
|
:type undo: typing.Optional[bool]
|
|
2876
3110
|
:param mode: Mode
|
|
@@ -2884,7 +3118,9 @@ def mode_set_with_submode(
|
|
|
2884
3118
|
...
|
|
2885
3119
|
|
|
2886
3120
|
def modifier_add(
|
|
2887
|
-
override_context: typing.Optional[
|
|
3121
|
+
override_context: typing.Optional[
|
|
3122
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3123
|
+
] = None,
|
|
2888
3124
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2889
3125
|
undo: typing.Optional[bool] = None,
|
|
2890
3126
|
type: typing.Optional[typing.Union[str, int]] = "SUBSURF",
|
|
@@ -2892,7 +3128,7 @@ def modifier_add(
|
|
|
2892
3128
|
):
|
|
2893
3129
|
"""Add a procedural operation/effect to the active object
|
|
2894
3130
|
|
|
2895
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3131
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2896
3132
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2897
3133
|
:type undo: typing.Optional[bool]
|
|
2898
3134
|
:param type: Type
|
|
@@ -2904,7 +3140,9 @@ def modifier_add(
|
|
|
2904
3140
|
...
|
|
2905
3141
|
|
|
2906
3142
|
def modifier_add_node_group(
|
|
2907
|
-
override_context: typing.Optional[
|
|
3143
|
+
override_context: typing.Optional[
|
|
3144
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3145
|
+
] = None,
|
|
2908
3146
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2909
3147
|
undo: typing.Optional[bool] = None,
|
|
2910
3148
|
asset_library_type: typing.Optional[typing.Union[str, int]] = "LOCAL",
|
|
@@ -2915,7 +3153,7 @@ def modifier_add_node_group(
|
|
|
2915
3153
|
):
|
|
2916
3154
|
"""Add a procedural operation/effect to the active object
|
|
2917
3155
|
|
|
2918
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3156
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2919
3157
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2920
3158
|
:type undo: typing.Optional[bool]
|
|
2921
3159
|
:param asset_library_type: Asset Library Type
|
|
@@ -2933,7 +3171,9 @@ def modifier_add_node_group(
|
|
|
2933
3171
|
...
|
|
2934
3172
|
|
|
2935
3173
|
def modifier_apply(
|
|
2936
|
-
override_context: typing.Optional[
|
|
3174
|
+
override_context: typing.Optional[
|
|
3175
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3176
|
+
] = None,
|
|
2937
3177
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2938
3178
|
undo: typing.Optional[bool] = None,
|
|
2939
3179
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -2944,7 +3184,7 @@ def modifier_apply(
|
|
|
2944
3184
|
):
|
|
2945
3185
|
"""Apply modifier and remove from the stack
|
|
2946
3186
|
|
|
2947
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3187
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2948
3188
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2949
3189
|
:type undo: typing.Optional[bool]
|
|
2950
3190
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2962,7 +3202,9 @@ def modifier_apply(
|
|
|
2962
3202
|
...
|
|
2963
3203
|
|
|
2964
3204
|
def modifier_apply_as_shapekey(
|
|
2965
|
-
override_context: typing.Optional[
|
|
3205
|
+
override_context: typing.Optional[
|
|
3206
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3207
|
+
] = None,
|
|
2966
3208
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2967
3209
|
undo: typing.Optional[bool] = None,
|
|
2968
3210
|
keep_modifier: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -2971,7 +3213,7 @@ def modifier_apply_as_shapekey(
|
|
|
2971
3213
|
):
|
|
2972
3214
|
"""Apply modifier as a new shape key and remove from the stack
|
|
2973
3215
|
|
|
2974
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3216
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2975
3217
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2976
3218
|
:type undo: typing.Optional[bool]
|
|
2977
3219
|
:param keep_modifier: Keep Modifier, Do not remove the modifier from stack
|
|
@@ -2985,14 +3227,16 @@ def modifier_apply_as_shapekey(
|
|
|
2985
3227
|
...
|
|
2986
3228
|
|
|
2987
3229
|
def modifier_convert(
|
|
2988
|
-
override_context: typing.Optional[
|
|
3230
|
+
override_context: typing.Optional[
|
|
3231
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3232
|
+
] = None,
|
|
2989
3233
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2990
3234
|
undo: typing.Optional[bool] = None,
|
|
2991
3235
|
modifier: typing.Union[str, typing.Any] = "",
|
|
2992
3236
|
):
|
|
2993
3237
|
"""Convert particles to a mesh object
|
|
2994
3238
|
|
|
2995
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3239
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2996
3240
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2997
3241
|
:type undo: typing.Optional[bool]
|
|
2998
3242
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3002,7 +3246,9 @@ def modifier_convert(
|
|
|
3002
3246
|
...
|
|
3003
3247
|
|
|
3004
3248
|
def modifier_copy(
|
|
3005
|
-
override_context: typing.Optional[
|
|
3249
|
+
override_context: typing.Optional[
|
|
3250
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3251
|
+
] = None,
|
|
3006
3252
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3007
3253
|
undo: typing.Optional[bool] = None,
|
|
3008
3254
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -3010,7 +3256,7 @@ def modifier_copy(
|
|
|
3010
3256
|
):
|
|
3011
3257
|
"""Duplicate modifier at the same position in the stack
|
|
3012
3258
|
|
|
3013
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3259
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3014
3260
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3015
3261
|
:type undo: typing.Optional[bool]
|
|
3016
3262
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3022,14 +3268,16 @@ def modifier_copy(
|
|
|
3022
3268
|
...
|
|
3023
3269
|
|
|
3024
3270
|
def modifier_copy_to_selected(
|
|
3025
|
-
override_context: typing.Optional[
|
|
3271
|
+
override_context: typing.Optional[
|
|
3272
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3273
|
+
] = None,
|
|
3026
3274
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3027
3275
|
undo: typing.Optional[bool] = None,
|
|
3028
3276
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3029
3277
|
):
|
|
3030
3278
|
"""Copy the modifier from the active object to all selected objects
|
|
3031
3279
|
|
|
3032
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3280
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3033
3281
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3034
3282
|
:type undo: typing.Optional[bool]
|
|
3035
3283
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3039,14 +3287,16 @@ def modifier_copy_to_selected(
|
|
|
3039
3287
|
...
|
|
3040
3288
|
|
|
3041
3289
|
def modifier_move_down(
|
|
3042
|
-
override_context: typing.Optional[
|
|
3290
|
+
override_context: typing.Optional[
|
|
3291
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3292
|
+
] = None,
|
|
3043
3293
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3044
3294
|
undo: typing.Optional[bool] = None,
|
|
3045
3295
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3046
3296
|
):
|
|
3047
3297
|
"""Move modifier down in the stack
|
|
3048
3298
|
|
|
3049
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3299
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3050
3300
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3051
3301
|
:type undo: typing.Optional[bool]
|
|
3052
3302
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3056,7 +3306,9 @@ def modifier_move_down(
|
|
|
3056
3306
|
...
|
|
3057
3307
|
|
|
3058
3308
|
def modifier_move_to_index(
|
|
3059
|
-
override_context: typing.Optional[
|
|
3309
|
+
override_context: typing.Optional[
|
|
3310
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3311
|
+
] = None,
|
|
3060
3312
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3061
3313
|
undo: typing.Optional[bool] = None,
|
|
3062
3314
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -3065,7 +3317,7 @@ def modifier_move_to_index(
|
|
|
3065
3317
|
):
|
|
3066
3318
|
"""Change the modifier's index in the stack so it evaluates after the set number of others
|
|
3067
3319
|
|
|
3068
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3320
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3069
3321
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3070
3322
|
:type undo: typing.Optional[bool]
|
|
3071
3323
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3079,14 +3331,16 @@ def modifier_move_to_index(
|
|
|
3079
3331
|
...
|
|
3080
3332
|
|
|
3081
3333
|
def modifier_move_up(
|
|
3082
|
-
override_context: typing.Optional[
|
|
3334
|
+
override_context: typing.Optional[
|
|
3335
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3336
|
+
] = None,
|
|
3083
3337
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3084
3338
|
undo: typing.Optional[bool] = None,
|
|
3085
3339
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3086
3340
|
):
|
|
3087
3341
|
"""Move modifier up in the stack
|
|
3088
3342
|
|
|
3089
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3343
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3090
3344
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3091
3345
|
:type undo: typing.Optional[bool]
|
|
3092
3346
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3096,7 +3350,9 @@ def modifier_move_up(
|
|
|
3096
3350
|
...
|
|
3097
3351
|
|
|
3098
3352
|
def modifier_remove(
|
|
3099
|
-
override_context: typing.Optional[
|
|
3353
|
+
override_context: typing.Optional[
|
|
3354
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3355
|
+
] = None,
|
|
3100
3356
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3101
3357
|
undo: typing.Optional[bool] = None,
|
|
3102
3358
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -3105,7 +3361,7 @@ def modifier_remove(
|
|
|
3105
3361
|
):
|
|
3106
3362
|
"""Remove a modifier from the active object
|
|
3107
3363
|
|
|
3108
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3364
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3109
3365
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3110
3366
|
:type undo: typing.Optional[bool]
|
|
3111
3367
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3119,14 +3375,16 @@ def modifier_remove(
|
|
|
3119
3375
|
...
|
|
3120
3376
|
|
|
3121
3377
|
def modifier_set_active(
|
|
3122
|
-
override_context: typing.Optional[
|
|
3378
|
+
override_context: typing.Optional[
|
|
3379
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3380
|
+
] = None,
|
|
3123
3381
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3124
3382
|
undo: typing.Optional[bool] = None,
|
|
3125
3383
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3126
3384
|
):
|
|
3127
3385
|
"""Activate the modifier to use as the context
|
|
3128
3386
|
|
|
3129
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3387
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3130
3388
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3131
3389
|
:type undo: typing.Optional[bool]
|
|
3132
3390
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3136,13 +3394,15 @@ def modifier_set_active(
|
|
|
3136
3394
|
...
|
|
3137
3395
|
|
|
3138
3396
|
def modifiers_clear(
|
|
3139
|
-
override_context: typing.Optional[
|
|
3397
|
+
override_context: typing.Optional[
|
|
3398
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3399
|
+
] = None,
|
|
3140
3400
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3141
3401
|
undo: typing.Optional[bool] = None,
|
|
3142
3402
|
):
|
|
3143
3403
|
"""Clear all modifiers from the selected objects
|
|
3144
3404
|
|
|
3145
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3405
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3146
3406
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3147
3407
|
:type undo: typing.Optional[bool]
|
|
3148
3408
|
"""
|
|
@@ -3150,13 +3410,15 @@ def modifiers_clear(
|
|
|
3150
3410
|
...
|
|
3151
3411
|
|
|
3152
3412
|
def modifiers_copy_to_selected(
|
|
3153
|
-
override_context: typing.Optional[
|
|
3413
|
+
override_context: typing.Optional[
|
|
3414
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3415
|
+
] = None,
|
|
3154
3416
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3155
3417
|
undo: typing.Optional[bool] = None,
|
|
3156
3418
|
):
|
|
3157
3419
|
"""Copy modifiers to other selected objects
|
|
3158
3420
|
|
|
3159
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3421
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3160
3422
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3161
3423
|
:type undo: typing.Optional[bool]
|
|
3162
3424
|
"""
|
|
@@ -3164,7 +3426,9 @@ def modifiers_copy_to_selected(
|
|
|
3164
3426
|
...
|
|
3165
3427
|
|
|
3166
3428
|
def move_to_collection(
|
|
3167
|
-
override_context: typing.Optional[
|
|
3429
|
+
override_context: typing.Optional[
|
|
3430
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3431
|
+
] = None,
|
|
3168
3432
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3169
3433
|
undo: typing.Optional[bool] = None,
|
|
3170
3434
|
collection_index: typing.Optional[typing.Any] = -1,
|
|
@@ -3173,7 +3437,7 @@ def move_to_collection(
|
|
|
3173
3437
|
):
|
|
3174
3438
|
"""Move objects to a collection
|
|
3175
3439
|
|
|
3176
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3440
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3177
3441
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3178
3442
|
:type undo: typing.Optional[bool]
|
|
3179
3443
|
:param collection_index: Collection Index, Index of the collection to move to
|
|
@@ -3187,14 +3451,16 @@ def move_to_collection(
|
|
|
3187
3451
|
...
|
|
3188
3452
|
|
|
3189
3453
|
def multires_base_apply(
|
|
3190
|
-
override_context: typing.Optional[
|
|
3454
|
+
override_context: typing.Optional[
|
|
3455
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3456
|
+
] = None,
|
|
3191
3457
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3192
3458
|
undo: typing.Optional[bool] = None,
|
|
3193
3459
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3194
3460
|
):
|
|
3195
3461
|
"""Modify the base mesh to conform to the displaced mesh
|
|
3196
3462
|
|
|
3197
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3463
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3198
3464
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3199
3465
|
:type undo: typing.Optional[bool]
|
|
3200
3466
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3204,13 +3470,15 @@ def multires_base_apply(
|
|
|
3204
3470
|
...
|
|
3205
3471
|
|
|
3206
3472
|
def multires_external_pack(
|
|
3207
|
-
override_context: typing.Optional[
|
|
3473
|
+
override_context: typing.Optional[
|
|
3474
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3475
|
+
] = None,
|
|
3208
3476
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3209
3477
|
undo: typing.Optional[bool] = None,
|
|
3210
3478
|
):
|
|
3211
3479
|
"""Pack displacements from an external file
|
|
3212
3480
|
|
|
3213
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3481
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3214
3482
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3215
3483
|
:type undo: typing.Optional[bool]
|
|
3216
3484
|
"""
|
|
@@ -3218,7 +3486,9 @@ def multires_external_pack(
|
|
|
3218
3486
|
...
|
|
3219
3487
|
|
|
3220
3488
|
def multires_external_save(
|
|
3221
|
-
override_context: typing.Optional[
|
|
3489
|
+
override_context: typing.Optional[
|
|
3490
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3491
|
+
] = None,
|
|
3222
3492
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3223
3493
|
undo: typing.Optional[bool] = None,
|
|
3224
3494
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -3249,7 +3519,7 @@ def multires_external_save(
|
|
|
3249
3519
|
):
|
|
3250
3520
|
"""Save displacements to an external file
|
|
3251
3521
|
|
|
3252
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3522
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3253
3523
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3254
3524
|
:type undo: typing.Optional[bool]
|
|
3255
3525
|
:param filepath: File Path, Path to file
|
|
@@ -3319,14 +3589,16 @@ def multires_external_save(
|
|
|
3319
3589
|
...
|
|
3320
3590
|
|
|
3321
3591
|
def multires_higher_levels_delete(
|
|
3322
|
-
override_context: typing.Optional[
|
|
3592
|
+
override_context: typing.Optional[
|
|
3593
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3594
|
+
] = None,
|
|
3323
3595
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3324
3596
|
undo: typing.Optional[bool] = None,
|
|
3325
3597
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3326
3598
|
):
|
|
3327
3599
|
"""Deletes the higher resolution mesh, potential loss of detail
|
|
3328
3600
|
|
|
3329
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3601
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3330
3602
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3331
3603
|
:type undo: typing.Optional[bool]
|
|
3332
3604
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3336,14 +3608,16 @@ def multires_higher_levels_delete(
|
|
|
3336
3608
|
...
|
|
3337
3609
|
|
|
3338
3610
|
def multires_rebuild_subdiv(
|
|
3339
|
-
override_context: typing.Optional[
|
|
3611
|
+
override_context: typing.Optional[
|
|
3612
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3613
|
+
] = None,
|
|
3340
3614
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3341
3615
|
undo: typing.Optional[bool] = None,
|
|
3342
3616
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3343
3617
|
):
|
|
3344
3618
|
"""Rebuilds all possible subdivisions levels to generate a lower resolution base mesh
|
|
3345
3619
|
|
|
3346
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3620
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3347
3621
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3348
3622
|
:type undo: typing.Optional[bool]
|
|
3349
3623
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3353,14 +3627,16 @@ def multires_rebuild_subdiv(
|
|
|
3353
3627
|
...
|
|
3354
3628
|
|
|
3355
3629
|
def multires_reshape(
|
|
3356
|
-
override_context: typing.Optional[
|
|
3630
|
+
override_context: typing.Optional[
|
|
3631
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3632
|
+
] = None,
|
|
3357
3633
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3358
3634
|
undo: typing.Optional[bool] = None,
|
|
3359
3635
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3360
3636
|
):
|
|
3361
3637
|
"""Copy vertex coordinates from other object
|
|
3362
3638
|
|
|
3363
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3639
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3364
3640
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3365
3641
|
:type undo: typing.Optional[bool]
|
|
3366
3642
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3370,7 +3646,9 @@ def multires_reshape(
|
|
|
3370
3646
|
...
|
|
3371
3647
|
|
|
3372
3648
|
def multires_subdivide(
|
|
3373
|
-
override_context: typing.Optional[
|
|
3649
|
+
override_context: typing.Optional[
|
|
3650
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3651
|
+
] = None,
|
|
3374
3652
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3375
3653
|
undo: typing.Optional[bool] = None,
|
|
3376
3654
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -3378,7 +3656,7 @@ def multires_subdivide(
|
|
|
3378
3656
|
):
|
|
3379
3657
|
"""Add a new level of subdivision
|
|
3380
3658
|
|
|
3381
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3659
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3382
3660
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3383
3661
|
:type undo: typing.Optional[bool]
|
|
3384
3662
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3399,14 +3677,16 @@ def multires_subdivide(
|
|
|
3399
3677
|
...
|
|
3400
3678
|
|
|
3401
3679
|
def multires_unsubdivide(
|
|
3402
|
-
override_context: typing.Optional[
|
|
3680
|
+
override_context: typing.Optional[
|
|
3681
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3682
|
+
] = None,
|
|
3403
3683
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3404
3684
|
undo: typing.Optional[bool] = None,
|
|
3405
3685
|
modifier: typing.Union[str, typing.Any] = "",
|
|
3406
3686
|
):
|
|
3407
3687
|
"""Rebuild a lower subdivision level of the current base mesh
|
|
3408
3688
|
|
|
3409
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3689
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3410
3690
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3411
3691
|
:type undo: typing.Optional[bool]
|
|
3412
3692
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3416,7 +3696,9 @@ def multires_unsubdivide(
|
|
|
3416
3696
|
...
|
|
3417
3697
|
|
|
3418
3698
|
def ocean_bake(
|
|
3419
|
-
override_context: typing.Optional[
|
|
3699
|
+
override_context: typing.Optional[
|
|
3700
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3701
|
+
] = None,
|
|
3420
3702
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3421
3703
|
undo: typing.Optional[bool] = None,
|
|
3422
3704
|
modifier: typing.Union[str, typing.Any] = "",
|
|
@@ -3424,7 +3706,7 @@ def ocean_bake(
|
|
|
3424
3706
|
):
|
|
3425
3707
|
"""Bake an image sequence of ocean data
|
|
3426
3708
|
|
|
3427
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3709
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3428
3710
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3429
3711
|
:type undo: typing.Optional[bool]
|
|
3430
3712
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3436,13 +3718,15 @@ def ocean_bake(
|
|
|
3436
3718
|
...
|
|
3437
3719
|
|
|
3438
3720
|
def origin_clear(
|
|
3439
|
-
override_context: typing.Optional[
|
|
3721
|
+
override_context: typing.Optional[
|
|
3722
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3723
|
+
] = None,
|
|
3440
3724
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3441
3725
|
undo: typing.Optional[bool] = None,
|
|
3442
3726
|
):
|
|
3443
3727
|
"""Clear the object's origin
|
|
3444
3728
|
|
|
3445
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3729
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3446
3730
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3447
3731
|
:type undo: typing.Optional[bool]
|
|
3448
3732
|
"""
|
|
@@ -3450,7 +3734,9 @@ def origin_clear(
|
|
|
3450
3734
|
...
|
|
3451
3735
|
|
|
3452
3736
|
def origin_set(
|
|
3453
|
-
override_context: typing.Optional[
|
|
3737
|
+
override_context: typing.Optional[
|
|
3738
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3739
|
+
] = None,
|
|
3454
3740
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3455
3741
|
undo: typing.Optional[bool] = None,
|
|
3456
3742
|
type: typing.Optional[typing.Any] = "GEOMETRY_ORIGIN",
|
|
@@ -3458,7 +3744,7 @@ def origin_set(
|
|
|
3458
3744
|
):
|
|
3459
3745
|
"""Set the object's origin, by either moving the data, or set to center of data, or use 3D cursor
|
|
3460
3746
|
|
|
3461
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3747
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3462
3748
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3463
3749
|
:type undo: typing.Optional[bool]
|
|
3464
3750
|
:param type: Type
|
|
@@ -3485,14 +3771,16 @@ def origin_set(
|
|
|
3485
3771
|
...
|
|
3486
3772
|
|
|
3487
3773
|
def parent_clear(
|
|
3488
|
-
override_context: typing.Optional[
|
|
3774
|
+
override_context: typing.Optional[
|
|
3775
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3776
|
+
] = None,
|
|
3489
3777
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3490
3778
|
undo: typing.Optional[bool] = None,
|
|
3491
3779
|
type: typing.Optional[typing.Any] = "CLEAR",
|
|
3492
3780
|
):
|
|
3493
3781
|
"""Clear the object's parenting
|
|
3494
3782
|
|
|
3495
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3783
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3496
3784
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3497
3785
|
:type undo: typing.Optional[bool]
|
|
3498
3786
|
:param type: Type
|
|
@@ -3511,13 +3799,15 @@ def parent_clear(
|
|
|
3511
3799
|
...
|
|
3512
3800
|
|
|
3513
3801
|
def parent_inverse_apply(
|
|
3514
|
-
override_context: typing.Optional[
|
|
3802
|
+
override_context: typing.Optional[
|
|
3803
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3804
|
+
] = None,
|
|
3515
3805
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3516
3806
|
undo: typing.Optional[bool] = None,
|
|
3517
3807
|
):
|
|
3518
3808
|
"""Apply the object's parent inverse to its data
|
|
3519
3809
|
|
|
3520
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3810
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3521
3811
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3522
3812
|
:type undo: typing.Optional[bool]
|
|
3523
3813
|
"""
|
|
@@ -3525,14 +3815,16 @@ def parent_inverse_apply(
|
|
|
3525
3815
|
...
|
|
3526
3816
|
|
|
3527
3817
|
def parent_no_inverse_set(
|
|
3528
|
-
override_context: typing.Optional[
|
|
3818
|
+
override_context: typing.Optional[
|
|
3819
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3820
|
+
] = None,
|
|
3529
3821
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3530
3822
|
undo: typing.Optional[bool] = None,
|
|
3531
3823
|
keep_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3532
3824
|
):
|
|
3533
3825
|
"""Set the object's parenting without setting the inverse parent correction
|
|
3534
3826
|
|
|
3535
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3827
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3536
3828
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3537
3829
|
:type undo: typing.Optional[bool]
|
|
3538
3830
|
:param keep_transform: Keep Transform, Preserve the world transform throughout parenting
|
|
@@ -3542,7 +3834,9 @@ def parent_no_inverse_set(
|
|
|
3542
3834
|
...
|
|
3543
3835
|
|
|
3544
3836
|
def parent_set(
|
|
3545
|
-
override_context: typing.Optional[
|
|
3837
|
+
override_context: typing.Optional[
|
|
3838
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3839
|
+
] = None,
|
|
3546
3840
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3547
3841
|
undo: typing.Optional[bool] = None,
|
|
3548
3842
|
type: typing.Optional[typing.Any] = "OBJECT",
|
|
@@ -3551,7 +3845,7 @@ def parent_set(
|
|
|
3551
3845
|
):
|
|
3552
3846
|
"""Set the object's parenting
|
|
3553
3847
|
|
|
3554
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3848
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3555
3849
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3556
3850
|
:type undo: typing.Optional[bool]
|
|
3557
3851
|
:param type: Type
|
|
@@ -3565,13 +3859,15 @@ def parent_set(
|
|
|
3565
3859
|
...
|
|
3566
3860
|
|
|
3567
3861
|
def particle_system_add(
|
|
3568
|
-
override_context: typing.Optional[
|
|
3862
|
+
override_context: typing.Optional[
|
|
3863
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3864
|
+
] = None,
|
|
3569
3865
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3570
3866
|
undo: typing.Optional[bool] = None,
|
|
3571
3867
|
):
|
|
3572
3868
|
"""Add a particle system
|
|
3573
3869
|
|
|
3574
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3870
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3575
3871
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3576
3872
|
:type undo: typing.Optional[bool]
|
|
3577
3873
|
"""
|
|
@@ -3579,13 +3875,15 @@ def particle_system_add(
|
|
|
3579
3875
|
...
|
|
3580
3876
|
|
|
3581
3877
|
def particle_system_remove(
|
|
3582
|
-
override_context: typing.Optional[
|
|
3878
|
+
override_context: typing.Optional[
|
|
3879
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3880
|
+
] = None,
|
|
3583
3881
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3584
3882
|
undo: typing.Optional[bool] = None,
|
|
3585
3883
|
):
|
|
3586
3884
|
"""Remove the selected particle system
|
|
3587
3885
|
|
|
3588
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3886
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3589
3887
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3590
3888
|
:type undo: typing.Optional[bool]
|
|
3591
3889
|
"""
|
|
@@ -3593,7 +3891,9 @@ def particle_system_remove(
|
|
|
3593
3891
|
...
|
|
3594
3892
|
|
|
3595
3893
|
def paths_calculate(
|
|
3596
|
-
override_context: typing.Optional[
|
|
3894
|
+
override_context: typing.Optional[
|
|
3895
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3896
|
+
] = None,
|
|
3597
3897
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3598
3898
|
undo: typing.Optional[bool] = None,
|
|
3599
3899
|
display_type: typing.Optional[typing.Union[str, int]] = "RANGE",
|
|
@@ -3601,7 +3901,7 @@ def paths_calculate(
|
|
|
3601
3901
|
):
|
|
3602
3902
|
"""Generate motion paths for the selected objects
|
|
3603
3903
|
|
|
3604
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3904
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3605
3905
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3606
3906
|
:type undo: typing.Optional[bool]
|
|
3607
3907
|
:param display_type: Display type
|
|
@@ -3613,14 +3913,16 @@ def paths_calculate(
|
|
|
3613
3913
|
...
|
|
3614
3914
|
|
|
3615
3915
|
def paths_clear(
|
|
3616
|
-
override_context: typing.Optional[
|
|
3916
|
+
override_context: typing.Optional[
|
|
3917
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3918
|
+
] = None,
|
|
3617
3919
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3618
3920
|
undo: typing.Optional[bool] = None,
|
|
3619
3921
|
only_selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3620
3922
|
):
|
|
3621
3923
|
"""Undocumented, consider contributing.
|
|
3622
3924
|
|
|
3623
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3925
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3624
3926
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3625
3927
|
:type undo: typing.Optional[bool]
|
|
3626
3928
|
:param only_selected: Only Selected, Only clear motion paths of selected objects
|
|
@@ -3630,13 +3932,15 @@ def paths_clear(
|
|
|
3630
3932
|
...
|
|
3631
3933
|
|
|
3632
3934
|
def paths_update(
|
|
3633
|
-
override_context: typing.Optional[
|
|
3935
|
+
override_context: typing.Optional[
|
|
3936
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3937
|
+
] = None,
|
|
3634
3938
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3635
3939
|
undo: typing.Optional[bool] = None,
|
|
3636
3940
|
):
|
|
3637
3941
|
"""Recalculate motion paths for selected objects
|
|
3638
3942
|
|
|
3639
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3943
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3640
3944
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3641
3945
|
:type undo: typing.Optional[bool]
|
|
3642
3946
|
"""
|
|
@@ -3644,13 +3948,15 @@ def paths_update(
|
|
|
3644
3948
|
...
|
|
3645
3949
|
|
|
3646
3950
|
def paths_update_visible(
|
|
3647
|
-
override_context: typing.Optional[
|
|
3951
|
+
override_context: typing.Optional[
|
|
3952
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3953
|
+
] = None,
|
|
3648
3954
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3649
3955
|
undo: typing.Optional[bool] = None,
|
|
3650
3956
|
):
|
|
3651
3957
|
"""Recalculate all visible motion paths for objects and poses
|
|
3652
3958
|
|
|
3653
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3959
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3654
3960
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3655
3961
|
:type undo: typing.Optional[bool]
|
|
3656
3962
|
"""
|
|
@@ -3658,7 +3964,9 @@ def paths_update_visible(
|
|
|
3658
3964
|
...
|
|
3659
3965
|
|
|
3660
3966
|
def pointcloud_add(
|
|
3661
|
-
override_context: typing.Optional[
|
|
3967
|
+
override_context: typing.Optional[
|
|
3968
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3969
|
+
] = None,
|
|
3662
3970
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3663
3971
|
undo: typing.Optional[bool] = None,
|
|
3664
3972
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
@@ -3668,7 +3976,7 @@ def pointcloud_add(
|
|
|
3668
3976
|
):
|
|
3669
3977
|
"""Add a point cloud object to the scene
|
|
3670
3978
|
|
|
3671
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3979
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3672
3980
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3673
3981
|
:type undo: typing.Optional[bool]
|
|
3674
3982
|
:param align: Align, The alignment of the new object
|
|
@@ -3693,13 +4001,15 @@ def pointcloud_add(
|
|
|
3693
4001
|
...
|
|
3694
4002
|
|
|
3695
4003
|
def posemode_toggle(
|
|
3696
|
-
override_context: typing.Optional[
|
|
4004
|
+
override_context: typing.Optional[
|
|
4005
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4006
|
+
] = None,
|
|
3697
4007
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3698
4008
|
undo: typing.Optional[bool] = None,
|
|
3699
4009
|
):
|
|
3700
4010
|
"""Enable or disable posing/selecting bones
|
|
3701
4011
|
|
|
3702
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4012
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3703
4013
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3704
4014
|
:type undo: typing.Optional[bool]
|
|
3705
4015
|
"""
|
|
@@ -3707,7 +4017,9 @@ def posemode_toggle(
|
|
|
3707
4017
|
...
|
|
3708
4018
|
|
|
3709
4019
|
def quadriflow_remesh(
|
|
3710
|
-
override_context: typing.Optional[
|
|
4020
|
+
override_context: typing.Optional[
|
|
4021
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4022
|
+
] = None,
|
|
3711
4023
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3712
4024
|
undo: typing.Optional[bool] = None,
|
|
3713
4025
|
use_mesh_symmetry: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -3724,7 +4036,7 @@ def quadriflow_remesh(
|
|
|
3724
4036
|
):
|
|
3725
4037
|
"""Create a new quad based mesh using the surface data of the current mesh. All data layers will be lost
|
|
3726
4038
|
|
|
3727
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4039
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3728
4040
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3729
4041
|
:type undo: typing.Optional[bool]
|
|
3730
4042
|
:param use_mesh_symmetry: Use Mesh Symmetry, Generates a symmetrical mesh using the mesh symmetry configuration
|
|
@@ -3763,7 +4075,9 @@ def quadriflow_remesh(
|
|
|
3763
4075
|
...
|
|
3764
4076
|
|
|
3765
4077
|
def quick_explode(
|
|
3766
|
-
override_context: typing.Optional[
|
|
4078
|
+
override_context: typing.Optional[
|
|
4079
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4080
|
+
] = None,
|
|
3767
4081
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3768
4082
|
undo: typing.Optional[bool] = None,
|
|
3769
4083
|
style: typing.Optional[typing.Any] = "EXPLODE",
|
|
@@ -3776,7 +4090,7 @@ def quick_explode(
|
|
|
3776
4090
|
):
|
|
3777
4091
|
"""Make selected objects explode
|
|
3778
4092
|
|
|
3779
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4093
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3780
4094
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3781
4095
|
:type undo: typing.Optional[bool]
|
|
3782
4096
|
:param style: Explode Style
|
|
@@ -3798,7 +4112,9 @@ def quick_explode(
|
|
|
3798
4112
|
...
|
|
3799
4113
|
|
|
3800
4114
|
def quick_fur(
|
|
3801
|
-
override_context: typing.Optional[
|
|
4115
|
+
override_context: typing.Optional[
|
|
4116
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4117
|
+
] = None,
|
|
3802
4118
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3803
4119
|
undo: typing.Optional[bool] = None,
|
|
3804
4120
|
density: typing.Optional[typing.Any] = "MEDIUM",
|
|
@@ -3811,7 +4127,7 @@ def quick_fur(
|
|
|
3811
4127
|
):
|
|
3812
4128
|
"""Add a fur setup to the selected objects
|
|
3813
4129
|
|
|
3814
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4130
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3815
4131
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3816
4132
|
:type undo: typing.Optional[bool]
|
|
3817
4133
|
:param density: Density
|
|
@@ -3833,14 +4149,16 @@ def quick_fur(
|
|
|
3833
4149
|
...
|
|
3834
4150
|
|
|
3835
4151
|
def quick_liquid(
|
|
3836
|
-
override_context: typing.Optional[
|
|
4152
|
+
override_context: typing.Optional[
|
|
4153
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4154
|
+
] = None,
|
|
3837
4155
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3838
4156
|
undo: typing.Optional[bool] = None,
|
|
3839
4157
|
show_flows: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3840
4158
|
):
|
|
3841
4159
|
"""Make selected objects liquid
|
|
3842
4160
|
|
|
3843
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4161
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3844
4162
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3845
4163
|
:type undo: typing.Optional[bool]
|
|
3846
4164
|
:param show_flows: Render Liquid Objects, Keep the liquid objects visible during rendering
|
|
@@ -3850,7 +4168,9 @@ def quick_liquid(
|
|
|
3850
4168
|
...
|
|
3851
4169
|
|
|
3852
4170
|
def quick_smoke(
|
|
3853
|
-
override_context: typing.Optional[
|
|
4171
|
+
override_context: typing.Optional[
|
|
4172
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4173
|
+
] = None,
|
|
3854
4174
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3855
4175
|
undo: typing.Optional[bool] = None,
|
|
3856
4176
|
style: typing.Optional[typing.Any] = "SMOKE",
|
|
@@ -3858,7 +4178,7 @@ def quick_smoke(
|
|
|
3858
4178
|
):
|
|
3859
4179
|
"""Use selected objects as smoke emitters
|
|
3860
4180
|
|
|
3861
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4181
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3862
4182
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3863
4183
|
:type undo: typing.Optional[bool]
|
|
3864
4184
|
:param style: Smoke Style
|
|
@@ -3870,7 +4190,9 @@ def quick_smoke(
|
|
|
3870
4190
|
...
|
|
3871
4191
|
|
|
3872
4192
|
def randomize_transform(
|
|
3873
|
-
override_context: typing.Optional[
|
|
4193
|
+
override_context: typing.Optional[
|
|
4194
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4195
|
+
] = None,
|
|
3874
4196
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3875
4197
|
undo: typing.Optional[bool] = None,
|
|
3876
4198
|
random_seed: typing.Optional[typing.Any] = 0,
|
|
@@ -3885,7 +4207,7 @@ def randomize_transform(
|
|
|
3885
4207
|
):
|
|
3886
4208
|
"""Randomize objects location, rotation, and scale
|
|
3887
4209
|
|
|
3888
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4210
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3889
4211
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3890
4212
|
:type undo: typing.Optional[bool]
|
|
3891
4213
|
:param random_seed: Random Seed, Seed value for the random generator
|
|
@@ -3911,13 +4233,15 @@ def randomize_transform(
|
|
|
3911
4233
|
...
|
|
3912
4234
|
|
|
3913
4235
|
def reset_override_library(
|
|
3914
|
-
override_context: typing.Optional[
|
|
4236
|
+
override_context: typing.Optional[
|
|
4237
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4238
|
+
] = None,
|
|
3915
4239
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3916
4240
|
undo: typing.Optional[bool] = None,
|
|
3917
4241
|
):
|
|
3918
4242
|
"""Reset the selected local overrides to their linked references values
|
|
3919
4243
|
|
|
3920
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4244
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3921
4245
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3922
4246
|
:type undo: typing.Optional[bool]
|
|
3923
4247
|
"""
|
|
@@ -3925,14 +4249,16 @@ def reset_override_library(
|
|
|
3925
4249
|
...
|
|
3926
4250
|
|
|
3927
4251
|
def rotation_clear(
|
|
3928
|
-
override_context: typing.Optional[
|
|
4252
|
+
override_context: typing.Optional[
|
|
4253
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4254
|
+
] = None,
|
|
3929
4255
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3930
4256
|
undo: typing.Optional[bool] = None,
|
|
3931
4257
|
clear_delta: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3932
4258
|
):
|
|
3933
4259
|
"""Clear the object's rotation
|
|
3934
4260
|
|
|
3935
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4261
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3936
4262
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3937
4263
|
:type undo: typing.Optional[bool]
|
|
3938
4264
|
:param clear_delta: Clear Delta, Clear delta rotation in addition to clearing the normal rotation transform
|
|
@@ -3942,14 +4268,16 @@ def rotation_clear(
|
|
|
3942
4268
|
...
|
|
3943
4269
|
|
|
3944
4270
|
def scale_clear(
|
|
3945
|
-
override_context: typing.Optional[
|
|
4271
|
+
override_context: typing.Optional[
|
|
4272
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4273
|
+
] = None,
|
|
3946
4274
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3947
4275
|
undo: typing.Optional[bool] = None,
|
|
3948
4276
|
clear_delta: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3949
4277
|
):
|
|
3950
4278
|
"""Clear the object's scale
|
|
3951
4279
|
|
|
3952
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4280
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3953
4281
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3954
4282
|
:type undo: typing.Optional[bool]
|
|
3955
4283
|
:param clear_delta: Clear Delta, Clear delta scale in addition to clearing the normal scale transform
|
|
@@ -3959,14 +4287,16 @@ def scale_clear(
|
|
|
3959
4287
|
...
|
|
3960
4288
|
|
|
3961
4289
|
def select_all(
|
|
3962
|
-
override_context: typing.Optional[
|
|
4290
|
+
override_context: typing.Optional[
|
|
4291
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4292
|
+
] = None,
|
|
3963
4293
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3964
4294
|
undo: typing.Optional[bool] = None,
|
|
3965
4295
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
3966
4296
|
):
|
|
3967
4297
|
"""Change selection of all visible objects in scene
|
|
3968
4298
|
|
|
3969
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4299
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3970
4300
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3971
4301
|
:type undo: typing.Optional[bool]
|
|
3972
4302
|
:param action: Action, Selection action to execute
|
|
@@ -3988,7 +4318,9 @@ def select_all(
|
|
|
3988
4318
|
...
|
|
3989
4319
|
|
|
3990
4320
|
def select_by_type(
|
|
3991
|
-
override_context: typing.Optional[
|
|
4321
|
+
override_context: typing.Optional[
|
|
4322
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4323
|
+
] = None,
|
|
3992
4324
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3993
4325
|
undo: typing.Optional[bool] = None,
|
|
3994
4326
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -3996,7 +4328,7 @@ def select_by_type(
|
|
|
3996
4328
|
):
|
|
3997
4329
|
"""Select all visible objects that are of a type
|
|
3998
4330
|
|
|
3999
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4331
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4000
4332
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4001
4333
|
:type undo: typing.Optional[bool]
|
|
4002
4334
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4008,14 +4340,16 @@ def select_by_type(
|
|
|
4008
4340
|
...
|
|
4009
4341
|
|
|
4010
4342
|
def select_camera(
|
|
4011
|
-
override_context: typing.Optional[
|
|
4343
|
+
override_context: typing.Optional[
|
|
4344
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4345
|
+
] = None,
|
|
4012
4346
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4013
4347
|
undo: typing.Optional[bool] = None,
|
|
4014
4348
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4015
4349
|
):
|
|
4016
4350
|
"""Select the active camera
|
|
4017
4351
|
|
|
4018
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4352
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4019
4353
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4020
4354
|
:type undo: typing.Optional[bool]
|
|
4021
4355
|
:param extend: Extend, Extend the selection
|
|
@@ -4025,7 +4359,9 @@ def select_camera(
|
|
|
4025
4359
|
...
|
|
4026
4360
|
|
|
4027
4361
|
def select_grouped(
|
|
4028
|
-
override_context: typing.Optional[
|
|
4362
|
+
override_context: typing.Optional[
|
|
4363
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4364
|
+
] = None,
|
|
4029
4365
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4030
4366
|
undo: typing.Optional[bool] = None,
|
|
4031
4367
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -4033,7 +4369,7 @@ def select_grouped(
|
|
|
4033
4369
|
):
|
|
4034
4370
|
"""Select all visible objects grouped by various properties
|
|
4035
4371
|
|
|
4036
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4372
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4037
4373
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4038
4374
|
:type undo: typing.Optional[bool]
|
|
4039
4375
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4078,7 +4414,9 @@ def select_grouped(
|
|
|
4078
4414
|
...
|
|
4079
4415
|
|
|
4080
4416
|
def select_hierarchy(
|
|
4081
|
-
override_context: typing.Optional[
|
|
4417
|
+
override_context: typing.Optional[
|
|
4418
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4419
|
+
] = None,
|
|
4082
4420
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4083
4421
|
undo: typing.Optional[bool] = None,
|
|
4084
4422
|
direction: typing.Optional[typing.Any] = "PARENT",
|
|
@@ -4086,7 +4424,7 @@ def select_hierarchy(
|
|
|
4086
4424
|
):
|
|
4087
4425
|
"""Select object relative to the active object's position in the hierarchy
|
|
4088
4426
|
|
|
4089
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4427
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4090
4428
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4091
4429
|
:type undo: typing.Optional[bool]
|
|
4092
4430
|
:param direction: Direction, Direction to select in the hierarchy
|
|
@@ -4098,13 +4436,15 @@ def select_hierarchy(
|
|
|
4098
4436
|
...
|
|
4099
4437
|
|
|
4100
4438
|
def select_less(
|
|
4101
|
-
override_context: typing.Optional[
|
|
4439
|
+
override_context: typing.Optional[
|
|
4440
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4441
|
+
] = None,
|
|
4102
4442
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4103
4443
|
undo: typing.Optional[bool] = None,
|
|
4104
4444
|
):
|
|
4105
4445
|
"""Deselect objects at the boundaries of parent/child relationships
|
|
4106
4446
|
|
|
4107
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4447
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4108
4448
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4109
4449
|
:type undo: typing.Optional[bool]
|
|
4110
4450
|
"""
|
|
@@ -4112,7 +4452,9 @@ def select_less(
|
|
|
4112
4452
|
...
|
|
4113
4453
|
|
|
4114
4454
|
def select_linked(
|
|
4115
|
-
override_context: typing.Optional[
|
|
4455
|
+
override_context: typing.Optional[
|
|
4456
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4457
|
+
] = None,
|
|
4116
4458
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4117
4459
|
undo: typing.Optional[bool] = None,
|
|
4118
4460
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -4120,7 +4462,7 @@ def select_linked(
|
|
|
4120
4462
|
):
|
|
4121
4463
|
"""Select all visible objects that are linked
|
|
4122
4464
|
|
|
4123
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4465
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4124
4466
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4125
4467
|
:type undo: typing.Optional[bool]
|
|
4126
4468
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4132,14 +4474,16 @@ def select_linked(
|
|
|
4132
4474
|
...
|
|
4133
4475
|
|
|
4134
4476
|
def select_mirror(
|
|
4135
|
-
override_context: typing.Optional[
|
|
4477
|
+
override_context: typing.Optional[
|
|
4478
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4479
|
+
] = None,
|
|
4136
4480
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4137
4481
|
undo: typing.Optional[bool] = None,
|
|
4138
4482
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4139
4483
|
):
|
|
4140
4484
|
"""Select the mirror objects of the selected object e.g. "L.sword" and "R.sword"
|
|
4141
4485
|
|
|
4142
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4486
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4143
4487
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4144
4488
|
:type undo: typing.Optional[bool]
|
|
4145
4489
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4149,13 +4493,15 @@ def select_mirror(
|
|
|
4149
4493
|
...
|
|
4150
4494
|
|
|
4151
4495
|
def select_more(
|
|
4152
|
-
override_context: typing.Optional[
|
|
4496
|
+
override_context: typing.Optional[
|
|
4497
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4498
|
+
] = None,
|
|
4153
4499
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4154
4500
|
undo: typing.Optional[bool] = None,
|
|
4155
4501
|
):
|
|
4156
4502
|
"""Select connected parent/child objects
|
|
4157
4503
|
|
|
4158
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4504
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4159
4505
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4160
4506
|
:type undo: typing.Optional[bool]
|
|
4161
4507
|
"""
|
|
@@ -4163,7 +4509,9 @@ def select_more(
|
|
|
4163
4509
|
...
|
|
4164
4510
|
|
|
4165
4511
|
def select_pattern(
|
|
4166
|
-
override_context: typing.Optional[
|
|
4512
|
+
override_context: typing.Optional[
|
|
4513
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4514
|
+
] = None,
|
|
4167
4515
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4168
4516
|
undo: typing.Optional[bool] = None,
|
|
4169
4517
|
pattern: typing.Union[str, typing.Any] = "*",
|
|
@@ -4172,7 +4520,7 @@ def select_pattern(
|
|
|
4172
4520
|
):
|
|
4173
4521
|
"""Select objects matching a naming pattern
|
|
4174
4522
|
|
|
4175
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4523
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4176
4524
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4177
4525
|
:type undo: typing.Optional[bool]
|
|
4178
4526
|
:param pattern: Pattern, Name filter using '*', '?' and '[abc]' unix style wildcards
|
|
@@ -4186,7 +4534,9 @@ def select_pattern(
|
|
|
4186
4534
|
...
|
|
4187
4535
|
|
|
4188
4536
|
def select_random(
|
|
4189
|
-
override_context: typing.Optional[
|
|
4537
|
+
override_context: typing.Optional[
|
|
4538
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4539
|
+
] = None,
|
|
4190
4540
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4191
4541
|
undo: typing.Optional[bool] = None,
|
|
4192
4542
|
ratio: typing.Optional[typing.Any] = 0.5,
|
|
@@ -4195,7 +4545,7 @@ def select_random(
|
|
|
4195
4545
|
):
|
|
4196
4546
|
"""Select or deselect random visible objects
|
|
4197
4547
|
|
|
4198
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4548
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4199
4549
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4200
4550
|
:type undo: typing.Optional[bool]
|
|
4201
4551
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -4215,14 +4565,16 @@ def select_random(
|
|
|
4215
4565
|
...
|
|
4216
4566
|
|
|
4217
4567
|
def select_same_collection(
|
|
4218
|
-
override_context: typing.Optional[
|
|
4568
|
+
override_context: typing.Optional[
|
|
4569
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4570
|
+
] = None,
|
|
4219
4571
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4220
4572
|
undo: typing.Optional[bool] = None,
|
|
4221
4573
|
collection: typing.Union[str, typing.Any] = "",
|
|
4222
4574
|
):
|
|
4223
4575
|
"""Select object in the same collection
|
|
4224
4576
|
|
|
4225
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4577
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4226
4578
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4227
4579
|
:type undo: typing.Optional[bool]
|
|
4228
4580
|
:param collection: Collection, Name of the collection to select
|
|
@@ -4231,15 +4583,39 @@ def select_same_collection(
|
|
|
4231
4583
|
|
|
4232
4584
|
...
|
|
4233
4585
|
|
|
4586
|
+
def shade_auto_smooth(
|
|
4587
|
+
override_context: typing.Optional[
|
|
4588
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4589
|
+
] = None,
|
|
4590
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4591
|
+
undo: typing.Optional[bool] = None,
|
|
4592
|
+
use_auto_smooth: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4593
|
+
angle: typing.Optional[typing.Any] = 0.523599,
|
|
4594
|
+
):
|
|
4595
|
+
"""Add modifier to automatically set the sharpness of mesh edges based on the angle between the neighboring faces
|
|
4596
|
+
|
|
4597
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4598
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4599
|
+
:type undo: typing.Optional[bool]
|
|
4600
|
+
:param use_auto_smooth: Auto Smooth, Add modifier to set edge sharpness automatically
|
|
4601
|
+
:type use_auto_smooth: typing.Optional[typing.Union[bool, typing.Any]]
|
|
4602
|
+
:param angle: Angle, Maximum angle between face normals that will be considered as smooth
|
|
4603
|
+
:type angle: typing.Optional[typing.Any]
|
|
4604
|
+
"""
|
|
4605
|
+
|
|
4606
|
+
...
|
|
4607
|
+
|
|
4234
4608
|
def shade_flat(
|
|
4235
|
-
override_context: typing.Optional[
|
|
4609
|
+
override_context: typing.Optional[
|
|
4610
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4611
|
+
] = None,
|
|
4236
4612
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4237
4613
|
undo: typing.Optional[bool] = None,
|
|
4238
4614
|
keep_sharp_edges: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4239
4615
|
):
|
|
4240
4616
|
"""Render and display faces uniform, using face normals
|
|
4241
4617
|
|
|
4242
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4618
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4243
4619
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4244
4620
|
:type undo: typing.Optional[bool]
|
|
4245
4621
|
:param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges, which are redundant with faces shaded smooth
|
|
@@ -4249,14 +4625,16 @@ def shade_flat(
|
|
|
4249
4625
|
...
|
|
4250
4626
|
|
|
4251
4627
|
def shade_smooth(
|
|
4252
|
-
override_context: typing.Optional[
|
|
4628
|
+
override_context: typing.Optional[
|
|
4629
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4630
|
+
] = None,
|
|
4253
4631
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4254
4632
|
undo: typing.Optional[bool] = None,
|
|
4255
4633
|
keep_sharp_edges: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4256
4634
|
):
|
|
4257
4635
|
"""Render and display faces smooth, using interpolated vertex normals
|
|
4258
4636
|
|
|
4259
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4637
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4260
4638
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4261
4639
|
:type undo: typing.Optional[bool]
|
|
4262
4640
|
:param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges. Tagged edges will remain sharp
|
|
@@ -4266,7 +4644,9 @@ def shade_smooth(
|
|
|
4266
4644
|
...
|
|
4267
4645
|
|
|
4268
4646
|
def shade_smooth_by_angle(
|
|
4269
|
-
override_context: typing.Optional[
|
|
4647
|
+
override_context: typing.Optional[
|
|
4648
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4649
|
+
] = None,
|
|
4270
4650
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4271
4651
|
undo: typing.Optional[bool] = None,
|
|
4272
4652
|
angle: typing.Optional[typing.Any] = 0.523599,
|
|
@@ -4274,7 +4654,7 @@ def shade_smooth_by_angle(
|
|
|
4274
4654
|
):
|
|
4275
4655
|
"""Set the sharpness of mesh edges based on the angle between the neighboring faces
|
|
4276
4656
|
|
|
4277
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4657
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4278
4658
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4279
4659
|
:type undo: typing.Optional[bool]
|
|
4280
4660
|
:param angle: Angle, Maximum angle between face normals that will be considered as smooth
|
|
@@ -4286,14 +4666,16 @@ def shade_smooth_by_angle(
|
|
|
4286
4666
|
...
|
|
4287
4667
|
|
|
4288
4668
|
def shaderfx_add(
|
|
4289
|
-
override_context: typing.Optional[
|
|
4669
|
+
override_context: typing.Optional[
|
|
4670
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4671
|
+
] = None,
|
|
4290
4672
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4291
4673
|
undo: typing.Optional[bool] = None,
|
|
4292
4674
|
type: typing.Optional[typing.Union[str, int]] = "FX_BLUR",
|
|
4293
4675
|
):
|
|
4294
4676
|
"""Add a visual effect to the active object
|
|
4295
4677
|
|
|
4296
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4678
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4297
4679
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4298
4680
|
:type undo: typing.Optional[bool]
|
|
4299
4681
|
:param type: Type
|
|
@@ -4303,14 +4685,16 @@ def shaderfx_add(
|
|
|
4303
4685
|
...
|
|
4304
4686
|
|
|
4305
4687
|
def shaderfx_copy(
|
|
4306
|
-
override_context: typing.Optional[
|
|
4688
|
+
override_context: typing.Optional[
|
|
4689
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4690
|
+
] = None,
|
|
4307
4691
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4308
4692
|
undo: typing.Optional[bool] = None,
|
|
4309
4693
|
shaderfx: typing.Union[str, typing.Any] = "",
|
|
4310
4694
|
):
|
|
4311
4695
|
"""Duplicate effect at the same position in the stack
|
|
4312
4696
|
|
|
4313
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4697
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4314
4698
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4315
4699
|
:type undo: typing.Optional[bool]
|
|
4316
4700
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4320,14 +4704,16 @@ def shaderfx_copy(
|
|
|
4320
4704
|
...
|
|
4321
4705
|
|
|
4322
4706
|
def shaderfx_move_down(
|
|
4323
|
-
override_context: typing.Optional[
|
|
4707
|
+
override_context: typing.Optional[
|
|
4708
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4709
|
+
] = None,
|
|
4324
4710
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4325
4711
|
undo: typing.Optional[bool] = None,
|
|
4326
4712
|
shaderfx: typing.Union[str, typing.Any] = "",
|
|
4327
4713
|
):
|
|
4328
4714
|
"""Move effect down in the stack
|
|
4329
4715
|
|
|
4330
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4716
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4331
4717
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4332
4718
|
:type undo: typing.Optional[bool]
|
|
4333
4719
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4337,7 +4723,9 @@ def shaderfx_move_down(
|
|
|
4337
4723
|
...
|
|
4338
4724
|
|
|
4339
4725
|
def shaderfx_move_to_index(
|
|
4340
|
-
override_context: typing.Optional[
|
|
4726
|
+
override_context: typing.Optional[
|
|
4727
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4728
|
+
] = None,
|
|
4341
4729
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4342
4730
|
undo: typing.Optional[bool] = None,
|
|
4343
4731
|
shaderfx: typing.Union[str, typing.Any] = "",
|
|
@@ -4345,7 +4733,7 @@ def shaderfx_move_to_index(
|
|
|
4345
4733
|
):
|
|
4346
4734
|
"""Change the effect's position in the list so it evaluates after the set number of others
|
|
4347
4735
|
|
|
4348
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4736
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4349
4737
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4350
4738
|
:type undo: typing.Optional[bool]
|
|
4351
4739
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4357,14 +4745,16 @@ def shaderfx_move_to_index(
|
|
|
4357
4745
|
...
|
|
4358
4746
|
|
|
4359
4747
|
def shaderfx_move_up(
|
|
4360
|
-
override_context: typing.Optional[
|
|
4748
|
+
override_context: typing.Optional[
|
|
4749
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4750
|
+
] = None,
|
|
4361
4751
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4362
4752
|
undo: typing.Optional[bool] = None,
|
|
4363
4753
|
shaderfx: typing.Union[str, typing.Any] = "",
|
|
4364
4754
|
):
|
|
4365
4755
|
"""Move effect up in the stack
|
|
4366
4756
|
|
|
4367
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4757
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4368
4758
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4369
4759
|
:type undo: typing.Optional[bool]
|
|
4370
4760
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4374,7 +4764,9 @@ def shaderfx_move_up(
|
|
|
4374
4764
|
...
|
|
4375
4765
|
|
|
4376
4766
|
def shaderfx_remove(
|
|
4377
|
-
override_context: typing.Optional[
|
|
4767
|
+
override_context: typing.Optional[
|
|
4768
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4769
|
+
] = None,
|
|
4378
4770
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4379
4771
|
undo: typing.Optional[bool] = None,
|
|
4380
4772
|
shaderfx: typing.Union[str, typing.Any] = "",
|
|
@@ -4382,7 +4774,7 @@ def shaderfx_remove(
|
|
|
4382
4774
|
):
|
|
4383
4775
|
"""Remove a effect from the active grease pencil object
|
|
4384
4776
|
|
|
4385
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4777
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4386
4778
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4387
4779
|
:type undo: typing.Optional[bool]
|
|
4388
4780
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4394,14 +4786,16 @@ def shaderfx_remove(
|
|
|
4394
4786
|
...
|
|
4395
4787
|
|
|
4396
4788
|
def shape_key_add(
|
|
4397
|
-
override_context: typing.Optional[
|
|
4789
|
+
override_context: typing.Optional[
|
|
4790
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4791
|
+
] = None,
|
|
4398
4792
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4399
4793
|
undo: typing.Optional[bool] = None,
|
|
4400
4794
|
from_mix: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4401
4795
|
):
|
|
4402
4796
|
"""Add shape key to the object
|
|
4403
4797
|
|
|
4404
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4798
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4405
4799
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4406
4800
|
:type undo: typing.Optional[bool]
|
|
4407
4801
|
:param from_mix: From Mix, Create the new shape key from the existing mix of keys
|
|
@@ -4411,13 +4805,15 @@ def shape_key_add(
|
|
|
4411
4805
|
...
|
|
4412
4806
|
|
|
4413
4807
|
def shape_key_clear(
|
|
4414
|
-
override_context: typing.Optional[
|
|
4808
|
+
override_context: typing.Optional[
|
|
4809
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4810
|
+
] = None,
|
|
4415
4811
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4416
4812
|
undo: typing.Optional[bool] = None,
|
|
4417
4813
|
):
|
|
4418
4814
|
"""Clear weights for all shape keys
|
|
4419
4815
|
|
|
4420
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4816
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4421
4817
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4422
4818
|
:type undo: typing.Optional[bool]
|
|
4423
4819
|
"""
|
|
@@ -4425,14 +4821,16 @@ def shape_key_clear(
|
|
|
4425
4821
|
...
|
|
4426
4822
|
|
|
4427
4823
|
def shape_key_lock(
|
|
4428
|
-
override_context: typing.Optional[
|
|
4824
|
+
override_context: typing.Optional[
|
|
4825
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4826
|
+
] = None,
|
|
4429
4827
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4430
4828
|
undo: typing.Optional[bool] = None,
|
|
4431
4829
|
action: typing.Optional[typing.Any] = "LOCK",
|
|
4432
4830
|
):
|
|
4433
4831
|
"""Change the lock state of all shape keys of active object
|
|
4434
4832
|
|
|
4435
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4833
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4436
4834
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4437
4835
|
:type undo: typing.Optional[bool]
|
|
4438
4836
|
:param action: Action, Lock action to execute on vertex groups
|
|
@@ -4448,14 +4846,16 @@ def shape_key_lock(
|
|
|
4448
4846
|
...
|
|
4449
4847
|
|
|
4450
4848
|
def shape_key_mirror(
|
|
4451
|
-
override_context: typing.Optional[
|
|
4849
|
+
override_context: typing.Optional[
|
|
4850
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4851
|
+
] = None,
|
|
4452
4852
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4453
4853
|
undo: typing.Optional[bool] = None,
|
|
4454
4854
|
use_topology: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4455
4855
|
):
|
|
4456
4856
|
"""Mirror the current shape key along the local X axis
|
|
4457
4857
|
|
|
4458
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4858
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4459
4859
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4460
4860
|
:type undo: typing.Optional[bool]
|
|
4461
4861
|
:param use_topology: Topology Mirror, Use topology based mirroring (for when both sides of mesh have matching, unique topology)
|
|
@@ -4465,14 +4865,16 @@ def shape_key_mirror(
|
|
|
4465
4865
|
...
|
|
4466
4866
|
|
|
4467
4867
|
def shape_key_move(
|
|
4468
|
-
override_context: typing.Optional[
|
|
4868
|
+
override_context: typing.Optional[
|
|
4869
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4870
|
+
] = None,
|
|
4469
4871
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4470
4872
|
undo: typing.Optional[bool] = None,
|
|
4471
4873
|
type: typing.Optional[typing.Any] = "TOP",
|
|
4472
4874
|
):
|
|
4473
4875
|
"""Move the active shape key up/down in the list
|
|
4474
4876
|
|
|
4475
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4877
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4476
4878
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4477
4879
|
:type undo: typing.Optional[bool]
|
|
4478
4880
|
:param type: Type
|
|
@@ -4494,7 +4896,9 @@ def shape_key_move(
|
|
|
4494
4896
|
...
|
|
4495
4897
|
|
|
4496
4898
|
def shape_key_remove(
|
|
4497
|
-
override_context: typing.Optional[
|
|
4899
|
+
override_context: typing.Optional[
|
|
4900
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4901
|
+
] = None,
|
|
4498
4902
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4499
4903
|
undo: typing.Optional[bool] = None,
|
|
4500
4904
|
all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -4502,7 +4906,7 @@ def shape_key_remove(
|
|
|
4502
4906
|
):
|
|
4503
4907
|
"""Remove shape key from the object
|
|
4504
4908
|
|
|
4505
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4909
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4506
4910
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4507
4911
|
:type undo: typing.Optional[bool]
|
|
4508
4912
|
:param all: All, Remove all shape keys
|
|
@@ -4514,13 +4918,15 @@ def shape_key_remove(
|
|
|
4514
4918
|
...
|
|
4515
4919
|
|
|
4516
4920
|
def shape_key_retime(
|
|
4517
|
-
override_context: typing.Optional[
|
|
4921
|
+
override_context: typing.Optional[
|
|
4922
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4923
|
+
] = None,
|
|
4518
4924
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4519
4925
|
undo: typing.Optional[bool] = None,
|
|
4520
4926
|
):
|
|
4521
4927
|
"""Resets the timing for absolute shape keys
|
|
4522
4928
|
|
|
4523
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4929
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4524
4930
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4525
4931
|
:type undo: typing.Optional[bool]
|
|
4526
4932
|
"""
|
|
@@ -4528,7 +4934,9 @@ def shape_key_retime(
|
|
|
4528
4934
|
...
|
|
4529
4935
|
|
|
4530
4936
|
def shape_key_transfer(
|
|
4531
|
-
override_context: typing.Optional[
|
|
4937
|
+
override_context: typing.Optional[
|
|
4938
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4939
|
+
] = None,
|
|
4532
4940
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4533
4941
|
undo: typing.Optional[bool] = None,
|
|
4534
4942
|
mode: typing.Optional[typing.Any] = "OFFSET",
|
|
@@ -4536,7 +4944,7 @@ def shape_key_transfer(
|
|
|
4536
4944
|
):
|
|
4537
4945
|
"""Copy the active shape key of another selected object to this one
|
|
4538
4946
|
|
|
4539
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4947
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4540
4948
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4541
4949
|
:type undo: typing.Optional[bool]
|
|
4542
4950
|
:param mode: Transformation Mode, Relative shape positions to the new shape method
|
|
@@ -4557,14 +4965,16 @@ def shape_key_transfer(
|
|
|
4557
4965
|
...
|
|
4558
4966
|
|
|
4559
4967
|
def simulation_nodes_cache_bake(
|
|
4560
|
-
override_context: typing.Optional[
|
|
4968
|
+
override_context: typing.Optional[
|
|
4969
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4970
|
+
] = None,
|
|
4561
4971
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4562
4972
|
undo: typing.Optional[bool] = None,
|
|
4563
4973
|
selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4564
4974
|
):
|
|
4565
4975
|
"""Bake simulations in geometry nodes modifiers
|
|
4566
4976
|
|
|
4567
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4977
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4568
4978
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4569
4979
|
:type undo: typing.Optional[bool]
|
|
4570
4980
|
:param selected: Selected, Bake cache on all selected objects
|
|
@@ -4574,14 +4984,16 @@ def simulation_nodes_cache_bake(
|
|
|
4574
4984
|
...
|
|
4575
4985
|
|
|
4576
4986
|
def simulation_nodes_cache_calculate_to_frame(
|
|
4577
|
-
override_context: typing.Optional[
|
|
4987
|
+
override_context: typing.Optional[
|
|
4988
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4989
|
+
] = None,
|
|
4578
4990
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4579
4991
|
undo: typing.Optional[bool] = None,
|
|
4580
4992
|
selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4581
4993
|
):
|
|
4582
4994
|
"""Calculate simulations in geometry nodes modifiers from the start to current frame
|
|
4583
4995
|
|
|
4584
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4996
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4585
4997
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4586
4998
|
:type undo: typing.Optional[bool]
|
|
4587
4999
|
:param selected: Selected, Calculate all selected objects instead of just the active object
|
|
@@ -4591,14 +5003,16 @@ def simulation_nodes_cache_calculate_to_frame(
|
|
|
4591
5003
|
...
|
|
4592
5004
|
|
|
4593
5005
|
def simulation_nodes_cache_delete(
|
|
4594
|
-
override_context: typing.Optional[
|
|
5006
|
+
override_context: typing.Optional[
|
|
5007
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5008
|
+
] = None,
|
|
4595
5009
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4596
5010
|
undo: typing.Optional[bool] = None,
|
|
4597
5011
|
selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4598
5012
|
):
|
|
4599
5013
|
"""Delete cached/baked simulations in geometry nodes modifiers
|
|
4600
5014
|
|
|
4601
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5015
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4602
5016
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4603
5017
|
:type undo: typing.Optional[bool]
|
|
4604
5018
|
:param selected: Selected, Delete cache on all selected objects
|
|
@@ -4608,14 +5022,16 @@ def simulation_nodes_cache_delete(
|
|
|
4608
5022
|
...
|
|
4609
5023
|
|
|
4610
5024
|
def skin_armature_create(
|
|
4611
|
-
override_context: typing.Optional[
|
|
5025
|
+
override_context: typing.Optional[
|
|
5026
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5027
|
+
] = None,
|
|
4612
5028
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4613
5029
|
undo: typing.Optional[bool] = None,
|
|
4614
5030
|
modifier: typing.Union[str, typing.Any] = "",
|
|
4615
5031
|
):
|
|
4616
5032
|
"""Create an armature that parallels the skin layout
|
|
4617
5033
|
|
|
4618
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5034
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4619
5035
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4620
5036
|
:type undo: typing.Optional[bool]
|
|
4621
5037
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -4625,14 +5041,16 @@ def skin_armature_create(
|
|
|
4625
5041
|
...
|
|
4626
5042
|
|
|
4627
5043
|
def skin_loose_mark_clear(
|
|
4628
|
-
override_context: typing.Optional[
|
|
5044
|
+
override_context: typing.Optional[
|
|
5045
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5046
|
+
] = None,
|
|
4629
5047
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4630
5048
|
undo: typing.Optional[bool] = None,
|
|
4631
5049
|
action: typing.Optional[typing.Any] = "MARK",
|
|
4632
5050
|
):
|
|
4633
5051
|
"""Mark/clear selected vertices as loose
|
|
4634
5052
|
|
|
4635
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5053
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4636
5054
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4637
5055
|
:type undo: typing.Optional[bool]
|
|
4638
5056
|
:param action: Action
|
|
@@ -4648,13 +5066,15 @@ def skin_loose_mark_clear(
|
|
|
4648
5066
|
...
|
|
4649
5067
|
|
|
4650
5068
|
def skin_radii_equalize(
|
|
4651
|
-
override_context: typing.Optional[
|
|
5069
|
+
override_context: typing.Optional[
|
|
5070
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5071
|
+
] = None,
|
|
4652
5072
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4653
5073
|
undo: typing.Optional[bool] = None,
|
|
4654
5074
|
):
|
|
4655
5075
|
"""Make skin radii of selected vertices equal on each axis
|
|
4656
5076
|
|
|
4657
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5077
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4658
5078
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4659
5079
|
:type undo: typing.Optional[bool]
|
|
4660
5080
|
"""
|
|
@@ -4662,13 +5082,15 @@ def skin_radii_equalize(
|
|
|
4662
5082
|
...
|
|
4663
5083
|
|
|
4664
5084
|
def skin_root_mark(
|
|
4665
|
-
override_context: typing.Optional[
|
|
5085
|
+
override_context: typing.Optional[
|
|
5086
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5087
|
+
] = None,
|
|
4666
5088
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4667
5089
|
undo: typing.Optional[bool] = None,
|
|
4668
5090
|
):
|
|
4669
5091
|
"""Mark selected vertices as roots
|
|
4670
5092
|
|
|
4671
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5093
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4672
5094
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4673
5095
|
:type undo: typing.Optional[bool]
|
|
4674
5096
|
"""
|
|
@@ -4676,7 +5098,9 @@ def skin_root_mark(
|
|
|
4676
5098
|
...
|
|
4677
5099
|
|
|
4678
5100
|
def speaker_add(
|
|
4679
|
-
override_context: typing.Optional[
|
|
5101
|
+
override_context: typing.Optional[
|
|
5102
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5103
|
+
] = None,
|
|
4680
5104
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4681
5105
|
undo: typing.Optional[bool] = None,
|
|
4682
5106
|
enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -4687,7 +5111,7 @@ def speaker_add(
|
|
|
4687
5111
|
):
|
|
4688
5112
|
"""Add a speaker object to the scene
|
|
4689
5113
|
|
|
4690
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5114
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4691
5115
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4692
5116
|
:type undo: typing.Optional[bool]
|
|
4693
5117
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
@@ -4714,7 +5138,9 @@ def speaker_add(
|
|
|
4714
5138
|
...
|
|
4715
5139
|
|
|
4716
5140
|
def subdivision_set(
|
|
4717
|
-
override_context: typing.Optional[
|
|
5141
|
+
override_context: typing.Optional[
|
|
5142
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5143
|
+
] = None,
|
|
4718
5144
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4719
5145
|
undo: typing.Optional[bool] = None,
|
|
4720
5146
|
level: typing.Optional[typing.Any] = 1,
|
|
@@ -4722,7 +5148,7 @@ def subdivision_set(
|
|
|
4722
5148
|
):
|
|
4723
5149
|
"""Sets a Subdivision Surface level (1 to 5)
|
|
4724
5150
|
|
|
4725
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5151
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4726
5152
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4727
5153
|
:type undo: typing.Optional[bool]
|
|
4728
5154
|
:param level: Level
|
|
@@ -4734,14 +5160,16 @@ def subdivision_set(
|
|
|
4734
5160
|
...
|
|
4735
5161
|
|
|
4736
5162
|
def surfacedeform_bind(
|
|
4737
|
-
override_context: typing.Optional[
|
|
5163
|
+
override_context: typing.Optional[
|
|
5164
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5165
|
+
] = None,
|
|
4738
5166
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4739
5167
|
undo: typing.Optional[bool] = None,
|
|
4740
5168
|
modifier: typing.Union[str, typing.Any] = "",
|
|
4741
5169
|
):
|
|
4742
5170
|
"""Bind mesh to target in surface deform modifier
|
|
4743
5171
|
|
|
4744
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5172
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4745
5173
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4746
5174
|
:type undo: typing.Optional[bool]
|
|
4747
5175
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -4751,7 +5179,9 @@ def surfacedeform_bind(
|
|
|
4751
5179
|
...
|
|
4752
5180
|
|
|
4753
5181
|
def text_add(
|
|
4754
|
-
override_context: typing.Optional[
|
|
5182
|
+
override_context: typing.Optional[
|
|
5183
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5184
|
+
] = None,
|
|
4755
5185
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4756
5186
|
undo: typing.Optional[bool] = None,
|
|
4757
5187
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -4763,7 +5193,7 @@ def text_add(
|
|
|
4763
5193
|
):
|
|
4764
5194
|
"""Add a text object to the scene
|
|
4765
5195
|
|
|
4766
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5196
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4767
5197
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4768
5198
|
:type undo: typing.Optional[bool]
|
|
4769
5199
|
:param radius: Radius
|
|
@@ -4792,14 +5222,16 @@ def text_add(
|
|
|
4792
5222
|
...
|
|
4793
5223
|
|
|
4794
5224
|
def track_clear(
|
|
4795
|
-
override_context: typing.Optional[
|
|
5225
|
+
override_context: typing.Optional[
|
|
5226
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5227
|
+
] = None,
|
|
4796
5228
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4797
5229
|
undo: typing.Optional[bool] = None,
|
|
4798
5230
|
type: typing.Optional[typing.Any] = "CLEAR",
|
|
4799
5231
|
):
|
|
4800
5232
|
"""Clear tracking constraint or flag from object
|
|
4801
5233
|
|
|
4802
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5234
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4803
5235
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4804
5236
|
:type undo: typing.Optional[bool]
|
|
4805
5237
|
:param type: Type
|
|
@@ -4809,14 +5241,16 @@ def track_clear(
|
|
|
4809
5241
|
...
|
|
4810
5242
|
|
|
4811
5243
|
def track_set(
|
|
4812
|
-
override_context: typing.Optional[
|
|
5244
|
+
override_context: typing.Optional[
|
|
5245
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5246
|
+
] = None,
|
|
4813
5247
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4814
5248
|
undo: typing.Optional[bool] = None,
|
|
4815
5249
|
type: typing.Optional[typing.Any] = "DAMPTRACK",
|
|
4816
5250
|
):
|
|
4817
5251
|
"""Make the object track another object, using various methods/constraints
|
|
4818
5252
|
|
|
4819
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5253
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4820
5254
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4821
5255
|
:type undo: typing.Optional[bool]
|
|
4822
5256
|
:param type: Type
|
|
@@ -4826,14 +5260,16 @@ def track_set(
|
|
|
4826
5260
|
...
|
|
4827
5261
|
|
|
4828
5262
|
def transfer_mode(
|
|
4829
|
-
override_context: typing.Optional[
|
|
5263
|
+
override_context: typing.Optional[
|
|
5264
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5265
|
+
] = None,
|
|
4830
5266
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4831
5267
|
undo: typing.Optional[bool] = None,
|
|
4832
5268
|
use_flash_on_transfer: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4833
5269
|
):
|
|
4834
5270
|
"""Switches the active object and assigns the same mode to a new one under the mouse cursor, leaving the active mode in the current one
|
|
4835
5271
|
|
|
4836
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5272
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4837
5273
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4838
5274
|
:type undo: typing.Optional[bool]
|
|
4839
5275
|
:param use_flash_on_transfer: Flash On Transfer, Flash the target object when transferring the mode
|
|
@@ -4843,7 +5279,9 @@ def transfer_mode(
|
|
|
4843
5279
|
...
|
|
4844
5280
|
|
|
4845
5281
|
def transform_apply(
|
|
4846
|
-
override_context: typing.Optional[
|
|
5282
|
+
override_context: typing.Optional[
|
|
5283
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5284
|
+
] = None,
|
|
4847
5285
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4848
5286
|
undo: typing.Optional[bool] = None,
|
|
4849
5287
|
location: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -4854,7 +5292,7 @@ def transform_apply(
|
|
|
4854
5292
|
):
|
|
4855
5293
|
"""Apply the object's transformation to its data
|
|
4856
5294
|
|
|
4857
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5295
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4858
5296
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4859
5297
|
:type undo: typing.Optional[bool]
|
|
4860
5298
|
:param location: Location
|
|
@@ -4872,13 +5310,15 @@ def transform_apply(
|
|
|
4872
5310
|
...
|
|
4873
5311
|
|
|
4874
5312
|
def transform_axis_target(
|
|
4875
|
-
override_context: typing.Optional[
|
|
5313
|
+
override_context: typing.Optional[
|
|
5314
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5315
|
+
] = None,
|
|
4876
5316
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4877
5317
|
undo: typing.Optional[bool] = None,
|
|
4878
5318
|
):
|
|
4879
5319
|
"""Interactively point cameras and lights to a location (Ctrl translates)
|
|
4880
5320
|
|
|
4881
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5321
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4882
5322
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4883
5323
|
:type undo: typing.Optional[bool]
|
|
4884
5324
|
"""
|
|
@@ -4886,7 +5326,9 @@ def transform_axis_target(
|
|
|
4886
5326
|
...
|
|
4887
5327
|
|
|
4888
5328
|
def transform_to_mouse(
|
|
4889
|
-
override_context: typing.Optional[
|
|
5329
|
+
override_context: typing.Optional[
|
|
5330
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5331
|
+
] = None,
|
|
4890
5332
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4891
5333
|
undo: typing.Optional[bool] = None,
|
|
4892
5334
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -4902,7 +5344,7 @@ def transform_to_mouse(
|
|
|
4902
5344
|
):
|
|
4903
5345
|
"""Snap selected item(s) to the mouse location
|
|
4904
5346
|
|
|
4905
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5347
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4906
5348
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4907
5349
|
:type undo: typing.Optional[bool]
|
|
4908
5350
|
:param name: Name, Object name to place (uses the active object when this and 'session_uid' are unset)
|
|
@@ -4920,7 +5362,9 @@ def transform_to_mouse(
|
|
|
4920
5362
|
...
|
|
4921
5363
|
|
|
4922
5364
|
def transforms_to_deltas(
|
|
4923
|
-
override_context: typing.Optional[
|
|
5365
|
+
override_context: typing.Optional[
|
|
5366
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5367
|
+
] = None,
|
|
4924
5368
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4925
5369
|
undo: typing.Optional[bool] = None,
|
|
4926
5370
|
mode: typing.Optional[typing.Any] = "ALL",
|
|
@@ -4928,7 +5372,7 @@ def transforms_to_deltas(
|
|
|
4928
5372
|
):
|
|
4929
5373
|
"""Convert normal object transforms to delta transforms, any existing delta transforms will be included as well
|
|
4930
5374
|
|
|
4931
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5375
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4932
5376
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4933
5377
|
:type undo: typing.Optional[bool]
|
|
4934
5378
|
:param mode: Mode, Which transforms to transfer
|
|
@@ -4952,13 +5396,15 @@ def transforms_to_deltas(
|
|
|
4952
5396
|
...
|
|
4953
5397
|
|
|
4954
5398
|
def unlink_data(
|
|
4955
|
-
override_context: typing.Optional[
|
|
5399
|
+
override_context: typing.Optional[
|
|
5400
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5401
|
+
] = None,
|
|
4956
5402
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4957
5403
|
undo: typing.Optional[bool] = None,
|
|
4958
5404
|
):
|
|
4959
5405
|
"""Undocumented, consider contributing.
|
|
4960
5406
|
|
|
4961
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5407
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4962
5408
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4963
5409
|
:type undo: typing.Optional[bool]
|
|
4964
5410
|
"""
|
|
@@ -4966,13 +5412,15 @@ def unlink_data(
|
|
|
4966
5412
|
...
|
|
4967
5413
|
|
|
4968
5414
|
def vertex_group_add(
|
|
4969
|
-
override_context: typing.Optional[
|
|
5415
|
+
override_context: typing.Optional[
|
|
5416
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5417
|
+
] = None,
|
|
4970
5418
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4971
5419
|
undo: typing.Optional[bool] = None,
|
|
4972
5420
|
):
|
|
4973
5421
|
"""Add a new vertex group to the active object
|
|
4974
5422
|
|
|
4975
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5423
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4976
5424
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4977
5425
|
:type undo: typing.Optional[bool]
|
|
4978
5426
|
"""
|
|
@@ -4980,13 +5428,15 @@ def vertex_group_add(
|
|
|
4980
5428
|
...
|
|
4981
5429
|
|
|
4982
5430
|
def vertex_group_assign(
|
|
4983
|
-
override_context: typing.Optional[
|
|
5431
|
+
override_context: typing.Optional[
|
|
5432
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5433
|
+
] = None,
|
|
4984
5434
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4985
5435
|
undo: typing.Optional[bool] = None,
|
|
4986
5436
|
):
|
|
4987
5437
|
"""Assign the selected vertices to the active vertex group
|
|
4988
5438
|
|
|
4989
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5439
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4990
5440
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4991
5441
|
:type undo: typing.Optional[bool]
|
|
4992
5442
|
"""
|
|
@@ -4994,13 +5444,15 @@ def vertex_group_assign(
|
|
|
4994
5444
|
...
|
|
4995
5445
|
|
|
4996
5446
|
def vertex_group_assign_new(
|
|
4997
|
-
override_context: typing.Optional[
|
|
5447
|
+
override_context: typing.Optional[
|
|
5448
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5449
|
+
] = None,
|
|
4998
5450
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4999
5451
|
undo: typing.Optional[bool] = None,
|
|
5000
5452
|
):
|
|
5001
5453
|
"""Assign the selected vertices to a new vertex group
|
|
5002
5454
|
|
|
5003
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5455
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5004
5456
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5005
5457
|
:type undo: typing.Optional[bool]
|
|
5006
5458
|
"""
|
|
@@ -5008,7 +5460,9 @@ def vertex_group_assign_new(
|
|
|
5008
5460
|
...
|
|
5009
5461
|
|
|
5010
5462
|
def vertex_group_clean(
|
|
5011
|
-
override_context: typing.Optional[
|
|
5463
|
+
override_context: typing.Optional[
|
|
5464
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5465
|
+
] = None,
|
|
5012
5466
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5013
5467
|
undo: typing.Optional[bool] = None,
|
|
5014
5468
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5017,7 +5471,7 @@ def vertex_group_clean(
|
|
|
5017
5471
|
):
|
|
5018
5472
|
"""Remove vertex group assignments which are not required
|
|
5019
5473
|
|
|
5020
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5474
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5021
5475
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5022
5476
|
:type undo: typing.Optional[bool]
|
|
5023
5477
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5031,13 +5485,15 @@ def vertex_group_clean(
|
|
|
5031
5485
|
...
|
|
5032
5486
|
|
|
5033
5487
|
def vertex_group_copy(
|
|
5034
|
-
override_context: typing.Optional[
|
|
5488
|
+
override_context: typing.Optional[
|
|
5489
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5490
|
+
] = None,
|
|
5035
5491
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5036
5492
|
undo: typing.Optional[bool] = None,
|
|
5037
5493
|
):
|
|
5038
5494
|
"""Make a copy of the active vertex group
|
|
5039
5495
|
|
|
5040
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5496
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5041
5497
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5042
5498
|
:type undo: typing.Optional[bool]
|
|
5043
5499
|
"""
|
|
@@ -5045,13 +5501,15 @@ def vertex_group_copy(
|
|
|
5045
5501
|
...
|
|
5046
5502
|
|
|
5047
5503
|
def vertex_group_copy_to_selected(
|
|
5048
|
-
override_context: typing.Optional[
|
|
5504
|
+
override_context: typing.Optional[
|
|
5505
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5506
|
+
] = None,
|
|
5049
5507
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5050
5508
|
undo: typing.Optional[bool] = None,
|
|
5051
5509
|
):
|
|
5052
5510
|
"""Replace vertex groups of selected objects by vertex groups of active object
|
|
5053
5511
|
|
|
5054
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5512
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5055
5513
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5056
5514
|
:type undo: typing.Optional[bool]
|
|
5057
5515
|
"""
|
|
@@ -5059,13 +5517,15 @@ def vertex_group_copy_to_selected(
|
|
|
5059
5517
|
...
|
|
5060
5518
|
|
|
5061
5519
|
def vertex_group_deselect(
|
|
5062
|
-
override_context: typing.Optional[
|
|
5520
|
+
override_context: typing.Optional[
|
|
5521
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5522
|
+
] = None,
|
|
5063
5523
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5064
5524
|
undo: typing.Optional[bool] = None,
|
|
5065
5525
|
):
|
|
5066
5526
|
"""Deselect all selected vertices assigned to the active vertex group
|
|
5067
5527
|
|
|
5068
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5528
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5069
5529
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5070
5530
|
:type undo: typing.Optional[bool]
|
|
5071
5531
|
"""
|
|
@@ -5073,7 +5533,9 @@ def vertex_group_deselect(
|
|
|
5073
5533
|
...
|
|
5074
5534
|
|
|
5075
5535
|
def vertex_group_invert(
|
|
5076
|
-
override_context: typing.Optional[
|
|
5536
|
+
override_context: typing.Optional[
|
|
5537
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5538
|
+
] = None,
|
|
5077
5539
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5078
5540
|
undo: typing.Optional[bool] = None,
|
|
5079
5541
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5082,7 +5544,7 @@ def vertex_group_invert(
|
|
|
5082
5544
|
):
|
|
5083
5545
|
"""Invert active vertex group's weights
|
|
5084
5546
|
|
|
5085
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5547
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5086
5548
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5087
5549
|
:type undo: typing.Optional[bool]
|
|
5088
5550
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5096,7 +5558,9 @@ def vertex_group_invert(
|
|
|
5096
5558
|
...
|
|
5097
5559
|
|
|
5098
5560
|
def vertex_group_levels(
|
|
5099
|
-
override_context: typing.Optional[
|
|
5561
|
+
override_context: typing.Optional[
|
|
5562
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5563
|
+
] = None,
|
|
5100
5564
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5101
5565
|
undo: typing.Optional[bool] = None,
|
|
5102
5566
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5105,7 +5569,7 @@ def vertex_group_levels(
|
|
|
5105
5569
|
):
|
|
5106
5570
|
"""Add some offset and multiply with some gain the weights of the active vertex group
|
|
5107
5571
|
|
|
5108
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5572
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5109
5573
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5110
5574
|
:type undo: typing.Optional[bool]
|
|
5111
5575
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5119,7 +5583,9 @@ def vertex_group_levels(
|
|
|
5119
5583
|
...
|
|
5120
5584
|
|
|
5121
5585
|
def vertex_group_limit_total(
|
|
5122
|
-
override_context: typing.Optional[
|
|
5586
|
+
override_context: typing.Optional[
|
|
5587
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5588
|
+
] = None,
|
|
5123
5589
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5124
5590
|
undo: typing.Optional[bool] = None,
|
|
5125
5591
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5127,7 +5593,7 @@ def vertex_group_limit_total(
|
|
|
5127
5593
|
):
|
|
5128
5594
|
"""Limit deform weights associated with a vertex to a specified number by removing lowest weights
|
|
5129
5595
|
|
|
5130
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5596
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5131
5597
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5132
5598
|
:type undo: typing.Optional[bool]
|
|
5133
5599
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5139,7 +5605,9 @@ def vertex_group_limit_total(
|
|
|
5139
5605
|
...
|
|
5140
5606
|
|
|
5141
5607
|
def vertex_group_lock(
|
|
5142
|
-
override_context: typing.Optional[
|
|
5608
|
+
override_context: typing.Optional[
|
|
5609
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5610
|
+
] = None,
|
|
5143
5611
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5144
5612
|
undo: typing.Optional[bool] = None,
|
|
5145
5613
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
@@ -5147,7 +5615,7 @@ def vertex_group_lock(
|
|
|
5147
5615
|
):
|
|
5148
5616
|
"""Change the lock state of all or some vertex groups of active object
|
|
5149
5617
|
|
|
5150
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5618
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5151
5619
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5152
5620
|
:type undo: typing.Optional[bool]
|
|
5153
5621
|
:param action: Action, Lock action to execute on vertex groups
|
|
@@ -5183,7 +5651,9 @@ def vertex_group_lock(
|
|
|
5183
5651
|
...
|
|
5184
5652
|
|
|
5185
5653
|
def vertex_group_mirror(
|
|
5186
|
-
override_context: typing.Optional[
|
|
5654
|
+
override_context: typing.Optional[
|
|
5655
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5656
|
+
] = None,
|
|
5187
5657
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5188
5658
|
undo: typing.Optional[bool] = None,
|
|
5189
5659
|
mirror_weights: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -5193,7 +5663,7 @@ def vertex_group_mirror(
|
|
|
5193
5663
|
):
|
|
5194
5664
|
"""Mirror vertex group, flip weights and/or names, editing only selected vertices, flipping when both sides are selected otherwise copy from unselected
|
|
5195
5665
|
|
|
5196
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5666
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5197
5667
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5198
5668
|
:type undo: typing.Optional[bool]
|
|
5199
5669
|
:param mirror_weights: Mirror Weights, Mirror weights
|
|
@@ -5209,14 +5679,16 @@ def vertex_group_mirror(
|
|
|
5209
5679
|
...
|
|
5210
5680
|
|
|
5211
5681
|
def vertex_group_move(
|
|
5212
|
-
override_context: typing.Optional[
|
|
5682
|
+
override_context: typing.Optional[
|
|
5683
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5684
|
+
] = None,
|
|
5213
5685
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5214
5686
|
undo: typing.Optional[bool] = None,
|
|
5215
5687
|
direction: typing.Optional[typing.Any] = "UP",
|
|
5216
5688
|
):
|
|
5217
5689
|
"""Move the active vertex group up/down in the list
|
|
5218
5690
|
|
|
5219
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5691
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5220
5692
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5221
5693
|
:type undo: typing.Optional[bool]
|
|
5222
5694
|
:param direction: Direction, Direction to move the active vertex group towards
|
|
@@ -5226,13 +5698,15 @@ def vertex_group_move(
|
|
|
5226
5698
|
...
|
|
5227
5699
|
|
|
5228
5700
|
def vertex_group_normalize(
|
|
5229
|
-
override_context: typing.Optional[
|
|
5701
|
+
override_context: typing.Optional[
|
|
5702
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5703
|
+
] = None,
|
|
5230
5704
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5231
5705
|
undo: typing.Optional[bool] = None,
|
|
5232
5706
|
):
|
|
5233
5707
|
"""Normalize weights of the active vertex group, so that the highest ones are now 1.0
|
|
5234
5708
|
|
|
5235
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5709
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5236
5710
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5237
5711
|
:type undo: typing.Optional[bool]
|
|
5238
5712
|
"""
|
|
@@ -5240,7 +5714,9 @@ def vertex_group_normalize(
|
|
|
5240
5714
|
...
|
|
5241
5715
|
|
|
5242
5716
|
def vertex_group_normalize_all(
|
|
5243
|
-
override_context: typing.Optional[
|
|
5717
|
+
override_context: typing.Optional[
|
|
5718
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5719
|
+
] = None,
|
|
5244
5720
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5245
5721
|
undo: typing.Optional[bool] = None,
|
|
5246
5722
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5248,7 +5724,7 @@ def vertex_group_normalize_all(
|
|
|
5248
5724
|
):
|
|
5249
5725
|
"""Normalize all weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
|
|
5250
5726
|
|
|
5251
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5727
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5252
5728
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5253
5729
|
:type undo: typing.Optional[bool]
|
|
5254
5730
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5260,7 +5736,9 @@ def vertex_group_normalize_all(
|
|
|
5260
5736
|
...
|
|
5261
5737
|
|
|
5262
5738
|
def vertex_group_quantize(
|
|
5263
|
-
override_context: typing.Optional[
|
|
5739
|
+
override_context: typing.Optional[
|
|
5740
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5741
|
+
] = None,
|
|
5264
5742
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5265
5743
|
undo: typing.Optional[bool] = None,
|
|
5266
5744
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5268,7 +5746,7 @@ def vertex_group_quantize(
|
|
|
5268
5746
|
):
|
|
5269
5747
|
"""Set weights to a fixed number of steps
|
|
5270
5748
|
|
|
5271
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5749
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5272
5750
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5273
5751
|
:type undo: typing.Optional[bool]
|
|
5274
5752
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5280,7 +5758,9 @@ def vertex_group_quantize(
|
|
|
5280
5758
|
...
|
|
5281
5759
|
|
|
5282
5760
|
def vertex_group_remove(
|
|
5283
|
-
override_context: typing.Optional[
|
|
5761
|
+
override_context: typing.Optional[
|
|
5762
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5763
|
+
] = None,
|
|
5284
5764
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5285
5765
|
undo: typing.Optional[bool] = None,
|
|
5286
5766
|
all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -5288,7 +5768,7 @@ def vertex_group_remove(
|
|
|
5288
5768
|
):
|
|
5289
5769
|
"""Delete the active or all vertex groups from the active object
|
|
5290
5770
|
|
|
5291
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5771
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5292
5772
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5293
5773
|
:type undo: typing.Optional[bool]
|
|
5294
5774
|
:param all: All, Remove all vertex groups
|
|
@@ -5300,7 +5780,9 @@ def vertex_group_remove(
|
|
|
5300
5780
|
...
|
|
5301
5781
|
|
|
5302
5782
|
def vertex_group_remove_from(
|
|
5303
|
-
override_context: typing.Optional[
|
|
5783
|
+
override_context: typing.Optional[
|
|
5784
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5785
|
+
] = None,
|
|
5304
5786
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5305
5787
|
undo: typing.Optional[bool] = None,
|
|
5306
5788
|
use_all_groups: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -5308,7 +5790,7 @@ def vertex_group_remove_from(
|
|
|
5308
5790
|
):
|
|
5309
5791
|
"""Remove the selected vertices from active or all vertex group(s)
|
|
5310
5792
|
|
|
5311
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5793
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5312
5794
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5313
5795
|
:type undo: typing.Optional[bool]
|
|
5314
5796
|
:param use_all_groups: All Groups, Remove from all groups
|
|
@@ -5320,13 +5802,15 @@ def vertex_group_remove_from(
|
|
|
5320
5802
|
...
|
|
5321
5803
|
|
|
5322
5804
|
def vertex_group_select(
|
|
5323
|
-
override_context: typing.Optional[
|
|
5805
|
+
override_context: typing.Optional[
|
|
5806
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5807
|
+
] = None,
|
|
5324
5808
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5325
5809
|
undo: typing.Optional[bool] = None,
|
|
5326
5810
|
):
|
|
5327
5811
|
"""Select all the vertices assigned to the active vertex group
|
|
5328
5812
|
|
|
5329
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5813
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5330
5814
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5331
5815
|
:type undo: typing.Optional[bool]
|
|
5332
5816
|
"""
|
|
@@ -5334,14 +5818,16 @@ def vertex_group_select(
|
|
|
5334
5818
|
...
|
|
5335
5819
|
|
|
5336
5820
|
def vertex_group_set_active(
|
|
5337
|
-
override_context: typing.Optional[
|
|
5821
|
+
override_context: typing.Optional[
|
|
5822
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5823
|
+
] = None,
|
|
5338
5824
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5339
5825
|
undo: typing.Optional[bool] = None,
|
|
5340
5826
|
group: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
5341
5827
|
):
|
|
5342
5828
|
"""Set the active vertex group
|
|
5343
5829
|
|
|
5344
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5830
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5345
5831
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5346
5832
|
:type undo: typing.Optional[bool]
|
|
5347
5833
|
:param group: Group, Vertex group to set as active
|
|
@@ -5351,7 +5837,9 @@ def vertex_group_set_active(
|
|
|
5351
5837
|
...
|
|
5352
5838
|
|
|
5353
5839
|
def vertex_group_smooth(
|
|
5354
|
-
override_context: typing.Optional[
|
|
5840
|
+
override_context: typing.Optional[
|
|
5841
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5842
|
+
] = None,
|
|
5355
5843
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5356
5844
|
undo: typing.Optional[bool] = None,
|
|
5357
5845
|
group_select_mode: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -5361,7 +5849,7 @@ def vertex_group_smooth(
|
|
|
5361
5849
|
):
|
|
5362
5850
|
"""Smooth weights for selected vertices
|
|
5363
5851
|
|
|
5364
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5852
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5365
5853
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5366
5854
|
:type undo: typing.Optional[bool]
|
|
5367
5855
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5377,14 +5865,16 @@ def vertex_group_smooth(
|
|
|
5377
5865
|
...
|
|
5378
5866
|
|
|
5379
5867
|
def vertex_group_sort(
|
|
5380
|
-
override_context: typing.Optional[
|
|
5868
|
+
override_context: typing.Optional[
|
|
5869
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5870
|
+
] = None,
|
|
5381
5871
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5382
5872
|
undo: typing.Optional[bool] = None,
|
|
5383
5873
|
sort_type: typing.Optional[typing.Any] = "NAME",
|
|
5384
5874
|
):
|
|
5385
5875
|
"""Sort vertex groups
|
|
5386
5876
|
|
|
5387
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5877
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5388
5878
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5389
5879
|
:type undo: typing.Optional[bool]
|
|
5390
5880
|
:param sort_type: Sort Type, Sort type
|
|
@@ -5394,13 +5884,15 @@ def vertex_group_sort(
|
|
|
5394
5884
|
...
|
|
5395
5885
|
|
|
5396
5886
|
def vertex_parent_set(
|
|
5397
|
-
override_context: typing.Optional[
|
|
5887
|
+
override_context: typing.Optional[
|
|
5888
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5889
|
+
] = None,
|
|
5398
5890
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5399
5891
|
undo: typing.Optional[bool] = None,
|
|
5400
5892
|
):
|
|
5401
5893
|
"""Parent selected objects to the selected vertices
|
|
5402
5894
|
|
|
5403
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5895
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5404
5896
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5405
5897
|
:type undo: typing.Optional[bool]
|
|
5406
5898
|
"""
|
|
@@ -5408,13 +5900,15 @@ def vertex_parent_set(
|
|
|
5408
5900
|
...
|
|
5409
5901
|
|
|
5410
5902
|
def vertex_weight_copy(
|
|
5411
|
-
override_context: typing.Optional[
|
|
5903
|
+
override_context: typing.Optional[
|
|
5904
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5905
|
+
] = None,
|
|
5412
5906
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5413
5907
|
undo: typing.Optional[bool] = None,
|
|
5414
5908
|
):
|
|
5415
5909
|
"""Copy weights from active to selected
|
|
5416
5910
|
|
|
5417
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5911
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5418
5912
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5419
5913
|
:type undo: typing.Optional[bool]
|
|
5420
5914
|
"""
|
|
@@ -5422,14 +5916,16 @@ def vertex_weight_copy(
|
|
|
5422
5916
|
...
|
|
5423
5917
|
|
|
5424
5918
|
def vertex_weight_delete(
|
|
5425
|
-
override_context: typing.Optional[
|
|
5919
|
+
override_context: typing.Optional[
|
|
5920
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5921
|
+
] = None,
|
|
5426
5922
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5427
5923
|
undo: typing.Optional[bool] = None,
|
|
5428
5924
|
weight_group: typing.Optional[typing.Any] = -1,
|
|
5429
5925
|
):
|
|
5430
5926
|
"""Delete this weight from the vertex (disabled if vertex group is locked)
|
|
5431
5927
|
|
|
5432
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5928
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5433
5929
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5434
5930
|
:type undo: typing.Optional[bool]
|
|
5435
5931
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -5439,13 +5935,15 @@ def vertex_weight_delete(
|
|
|
5439
5935
|
...
|
|
5440
5936
|
|
|
5441
5937
|
def vertex_weight_normalize_active_vertex(
|
|
5442
|
-
override_context: typing.Optional[
|
|
5938
|
+
override_context: typing.Optional[
|
|
5939
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5940
|
+
] = None,
|
|
5443
5941
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5444
5942
|
undo: typing.Optional[bool] = None,
|
|
5445
5943
|
):
|
|
5446
5944
|
"""Normalize active vertex's weights
|
|
5447
5945
|
|
|
5448
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5946
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5449
5947
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5450
5948
|
:type undo: typing.Optional[bool]
|
|
5451
5949
|
"""
|
|
@@ -5453,14 +5951,16 @@ def vertex_weight_normalize_active_vertex(
|
|
|
5453
5951
|
...
|
|
5454
5952
|
|
|
5455
5953
|
def vertex_weight_paste(
|
|
5456
|
-
override_context: typing.Optional[
|
|
5954
|
+
override_context: typing.Optional[
|
|
5955
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5956
|
+
] = None,
|
|
5457
5957
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5458
5958
|
undo: typing.Optional[bool] = None,
|
|
5459
5959
|
weight_group: typing.Optional[typing.Any] = -1,
|
|
5460
5960
|
):
|
|
5461
5961
|
"""Copy this group's weight to other selected vertices (disabled if vertex group is locked)
|
|
5462
5962
|
|
|
5463
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5963
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5464
5964
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5465
5965
|
:type undo: typing.Optional[bool]
|
|
5466
5966
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -5470,14 +5970,16 @@ def vertex_weight_paste(
|
|
|
5470
5970
|
...
|
|
5471
5971
|
|
|
5472
5972
|
def vertex_weight_set_active(
|
|
5473
|
-
override_context: typing.Optional[
|
|
5973
|
+
override_context: typing.Optional[
|
|
5974
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5975
|
+
] = None,
|
|
5474
5976
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5475
5977
|
undo: typing.Optional[bool] = None,
|
|
5476
5978
|
weight_group: typing.Optional[typing.Any] = -1,
|
|
5477
5979
|
):
|
|
5478
5980
|
"""Set as active vertex group
|
|
5479
5981
|
|
|
5480
|
-
:type override_context: typing.Optional[typing.Union[
|
|
5982
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5481
5983
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5482
5984
|
:type undo: typing.Optional[bool]
|
|
5483
5985
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -5487,13 +5989,15 @@ def vertex_weight_set_active(
|
|
|
5487
5989
|
...
|
|
5488
5990
|
|
|
5489
5991
|
def visual_transform_apply(
|
|
5490
|
-
override_context: typing.Optional[
|
|
5992
|
+
override_context: typing.Optional[
|
|
5993
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
5994
|
+
] = None,
|
|
5491
5995
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5492
5996
|
undo: typing.Optional[bool] = None,
|
|
5493
5997
|
):
|
|
5494
5998
|
"""Apply the object's visual transformation to its data
|
|
5495
5999
|
|
|
5496
|
-
:type override_context: typing.Optional[typing.Union[
|
|
6000
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5497
6001
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5498
6002
|
:type undo: typing.Optional[bool]
|
|
5499
6003
|
"""
|
|
@@ -5501,7 +6005,9 @@ def visual_transform_apply(
|
|
|
5501
6005
|
...
|
|
5502
6006
|
|
|
5503
6007
|
def volume_add(
|
|
5504
|
-
override_context: typing.Optional[
|
|
6008
|
+
override_context: typing.Optional[
|
|
6009
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
6010
|
+
] = None,
|
|
5505
6011
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5506
6012
|
undo: typing.Optional[bool] = None,
|
|
5507
6013
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
@@ -5511,7 +6017,7 @@ def volume_add(
|
|
|
5511
6017
|
):
|
|
5512
6018
|
"""Add a volume object to the scene
|
|
5513
6019
|
|
|
5514
|
-
:type override_context: typing.Optional[typing.Union[
|
|
6020
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5515
6021
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5516
6022
|
:type undo: typing.Optional[bool]
|
|
5517
6023
|
:param align: Align, The alignment of the new object
|
|
@@ -5536,7 +6042,9 @@ def volume_add(
|
|
|
5536
6042
|
...
|
|
5537
6043
|
|
|
5538
6044
|
def volume_import(
|
|
5539
|
-
override_context: typing.Optional[
|
|
6045
|
+
override_context: typing.Optional[
|
|
6046
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
6047
|
+
] = None,
|
|
5540
6048
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5541
6049
|
undo: typing.Optional[bool] = None,
|
|
5542
6050
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -5575,7 +6083,7 @@ def volume_import(
|
|
|
5575
6083
|
):
|
|
5576
6084
|
"""Import OpenVDB volume file
|
|
5577
6085
|
|
|
5578
|
-
:type override_context: typing.Optional[typing.Union[
|
|
6086
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5579
6087
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5580
6088
|
:type undo: typing.Optional[bool]
|
|
5581
6089
|
:param filepath: File Path, Path to file
|
|
@@ -5681,13 +6189,15 @@ def volume_import(
|
|
|
5681
6189
|
...
|
|
5682
6190
|
|
|
5683
6191
|
def voxel_remesh(
|
|
5684
|
-
override_context: typing.Optional[
|
|
6192
|
+
override_context: typing.Optional[
|
|
6193
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
6194
|
+
] = None,
|
|
5685
6195
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5686
6196
|
undo: typing.Optional[bool] = None,
|
|
5687
6197
|
):
|
|
5688
6198
|
"""Calculates a new manifold mesh based on the volume of the current mesh. All data layers will be lost
|
|
5689
6199
|
|
|
5690
|
-
:type override_context: typing.Optional[typing.Union[
|
|
6200
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5691
6201
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5692
6202
|
:type undo: typing.Optional[bool]
|
|
5693
6203
|
"""
|
|
@@ -5695,13 +6205,15 @@ def voxel_remesh(
|
|
|
5695
6205
|
...
|
|
5696
6206
|
|
|
5697
6207
|
def voxel_size_edit(
|
|
5698
|
-
override_context: typing.Optional[
|
|
6208
|
+
override_context: typing.Optional[
|
|
6209
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
6210
|
+
] = None,
|
|
5699
6211
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
5700
6212
|
undo: typing.Optional[bool] = None,
|
|
5701
6213
|
):
|
|
5702
6214
|
"""Modify the mesh voxel size interactively used in the voxel remesher
|
|
5703
6215
|
|
|
5704
|
-
:type override_context: typing.Optional[typing.Union[
|
|
6216
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
5705
6217
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
5706
6218
|
:type undo: typing.Optional[bool]
|
|
5707
6219
|
"""
|