fake-bpy-module 20240928__py3-none-any.whl → 20240929__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +254 -219
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +84 -84
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ import bpy.typing
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def add(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -29,7 +29,7 @@ def add(
|
|
|
29
29
|
):
|
|
30
30
|
"""Add an object to the scene
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param radius: Radius
|
|
@@ -58,19 +58,19 @@ def add(
|
|
|
58
58
|
"""
|
|
59
59
|
|
|
60
60
|
def add_modifier_menu(
|
|
61
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
61
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
62
62
|
execution_context: int | str | None = None,
|
|
63
63
|
undo: bool | None = None,
|
|
64
64
|
):
|
|
65
65
|
"""Undocumented, consider contributing.
|
|
66
66
|
|
|
67
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
67
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
68
68
|
:type execution_context: int | str | None
|
|
69
69
|
:type undo: bool | None
|
|
70
70
|
"""
|
|
71
71
|
|
|
72
72
|
def add_named(
|
|
73
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
73
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
*,
|
|
@@ -90,7 +90,7 @@ def add_named(
|
|
|
90
90
|
):
|
|
91
91
|
"""Add named object
|
|
92
92
|
|
|
93
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
93
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
94
94
|
:type execution_context: int | str | None
|
|
95
95
|
:type undo: bool | None
|
|
96
96
|
:param linked: Linked, Duplicate object but not object data, linking to the original data
|
|
@@ -108,7 +108,7 @@ def add_named(
|
|
|
108
108
|
"""
|
|
109
109
|
|
|
110
110
|
def align(
|
|
111
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
111
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
112
112
|
execution_context: int | str | None = None,
|
|
113
113
|
undo: bool | None = None,
|
|
114
114
|
*,
|
|
@@ -119,7 +119,7 @@ def align(
|
|
|
119
119
|
):
|
|
120
120
|
"""Align objects
|
|
121
121
|
|
|
122
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
122
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
123
123
|
:type execution_context: int | str | None
|
|
124
124
|
:type undo: bool | None
|
|
125
125
|
: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
|
|
@@ -145,19 +145,19 @@ def align(
|
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
def anim_transforms_to_deltas(
|
|
148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
148
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
149
149
|
execution_context: int | str | None = None,
|
|
150
150
|
undo: bool | None = None,
|
|
151
151
|
):
|
|
152
152
|
"""Convert object animation for normal transforms to delta transforms
|
|
153
153
|
|
|
154
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
154
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
155
155
|
:type execution_context: int | str | None
|
|
156
156
|
:type undo: bool | None
|
|
157
157
|
"""
|
|
158
158
|
|
|
159
159
|
def armature_add(
|
|
160
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
160
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
@@ -178,7 +178,7 @@ def armature_add(
|
|
|
178
178
|
):
|
|
179
179
|
"""Add an armature object to the scene
|
|
180
180
|
|
|
181
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
181
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
182
182
|
:type execution_context: int | str | None
|
|
183
183
|
:type undo: bool | None
|
|
184
184
|
:param radius: Radius
|
|
@@ -205,7 +205,7 @@ def armature_add(
|
|
|
205
205
|
"""
|
|
206
206
|
|
|
207
207
|
def assign_property_defaults(
|
|
208
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
208
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
209
209
|
execution_context: int | str | None = None,
|
|
210
210
|
undo: bool | None = None,
|
|
211
211
|
*,
|
|
@@ -214,7 +214,7 @@ def assign_property_defaults(
|
|
|
214
214
|
):
|
|
215
215
|
"""Assign the current values of custom properties as their defaults, for use as part of the rest pose state in NLA track mixing
|
|
216
216
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
218
218
|
:type execution_context: int | str | None
|
|
219
219
|
:type undo: bool | None
|
|
220
220
|
:param process_data: Process data properties
|
|
@@ -224,7 +224,7 @@ def assign_property_defaults(
|
|
|
224
224
|
"""
|
|
225
225
|
|
|
226
226
|
def bake(
|
|
227
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
227
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
228
228
|
execution_context: int | str | None = None,
|
|
229
229
|
undo: bool | None = None,
|
|
230
230
|
*,
|
|
@@ -253,7 +253,7 @@ def bake(
|
|
|
253
253
|
):
|
|
254
254
|
"""Bake image textures of selected objects
|
|
255
255
|
|
|
256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
256
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
257
257
|
:type execution_context: int | str | None
|
|
258
258
|
:type undo: bool | None
|
|
259
259
|
:param type: Type, Type of pass to bake, some of them may not be supported by the current render engine
|
|
@@ -303,19 +303,19 @@ def bake(
|
|
|
303
303
|
"""
|
|
304
304
|
|
|
305
305
|
def bake_image(
|
|
306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
306
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
307
307
|
execution_context: int | str | None = None,
|
|
308
308
|
undo: bool | None = None,
|
|
309
309
|
):
|
|
310
310
|
"""Bake image textures of selected objects
|
|
311
311
|
|
|
312
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
312
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
313
313
|
:type execution_context: int | str | None
|
|
314
314
|
:type undo: bool | None
|
|
315
315
|
"""
|
|
316
316
|
|
|
317
317
|
def camera_add(
|
|
318
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
318
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
319
319
|
execution_context: int | str | None = None,
|
|
320
320
|
undo: bool | None = None,
|
|
321
321
|
*,
|
|
@@ -335,7 +335,7 @@ def camera_add(
|
|
|
335
335
|
):
|
|
336
336
|
"""Add a camera object to the scene
|
|
337
337
|
|
|
338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
@@ -360,31 +360,31 @@ def camera_add(
|
|
|
360
360
|
"""
|
|
361
361
|
|
|
362
362
|
def clear_override_library(
|
|
363
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
363
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
364
364
|
execution_context: int | str | None = None,
|
|
365
365
|
undo: bool | None = None,
|
|
366
366
|
):
|
|
367
367
|
"""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
|
|
368
368
|
|
|
369
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
369
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
370
370
|
:type execution_context: int | str | None
|
|
371
371
|
:type undo: bool | None
|
|
372
372
|
"""
|
|
373
373
|
|
|
374
374
|
def collection_add(
|
|
375
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
375
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
376
376
|
execution_context: int | str | None = None,
|
|
377
377
|
undo: bool | None = None,
|
|
378
378
|
):
|
|
379
379
|
"""Add an object to a new collection
|
|
380
380
|
|
|
381
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
381
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
382
382
|
:type execution_context: int | str | None
|
|
383
383
|
:type undo: bool | None
|
|
384
384
|
"""
|
|
385
385
|
|
|
386
386
|
def collection_external_asset_drop(
|
|
387
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
387
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
388
388
|
execution_context: int | str | None = None,
|
|
389
389
|
undo: bool | None = None,
|
|
390
390
|
*,
|
|
@@ -408,7 +408,7 @@ def collection_external_asset_drop(
|
|
|
408
408
|
):
|
|
409
409
|
"""Add the dragged collection to the scene
|
|
410
410
|
|
|
411
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
411
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
412
412
|
:type execution_context: int | str | None
|
|
413
413
|
:type undo: bool | None
|
|
414
414
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -441,7 +441,7 @@ def collection_external_asset_drop(
|
|
|
441
441
|
"""
|
|
442
442
|
|
|
443
443
|
def collection_instance_add(
|
|
444
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
444
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
445
445
|
execution_context: int | str | None = None,
|
|
446
446
|
undo: bool | None = None,
|
|
447
447
|
*,
|
|
@@ -465,7 +465,7 @@ def collection_instance_add(
|
|
|
465
465
|
):
|
|
466
466
|
"""Add a collection instance
|
|
467
467
|
|
|
468
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
468
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
469
469
|
:type execution_context: int | str | None
|
|
470
470
|
:type undo: bool | None
|
|
471
471
|
:param name: Name, Collection name to add
|
|
@@ -498,7 +498,7 @@ def collection_instance_add(
|
|
|
498
498
|
"""
|
|
499
499
|
|
|
500
500
|
def collection_link(
|
|
501
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
501
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
502
502
|
execution_context: int | str | None = None,
|
|
503
503
|
undo: bool | None = None,
|
|
504
504
|
*,
|
|
@@ -506,7 +506,7 @@ def collection_link(
|
|
|
506
506
|
):
|
|
507
507
|
"""Add an object to an existing collection
|
|
508
508
|
|
|
509
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
510
510
|
:type execution_context: int | str | None
|
|
511
511
|
:type undo: bool | None
|
|
512
512
|
:param collection: Collection
|
|
@@ -514,43 +514,43 @@ def collection_link(
|
|
|
514
514
|
"""
|
|
515
515
|
|
|
516
516
|
def collection_objects_select(
|
|
517
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
517
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
518
518
|
execution_context: int | str | None = None,
|
|
519
519
|
undo: bool | None = None,
|
|
520
520
|
):
|
|
521
521
|
"""Select all objects in collection
|
|
522
522
|
|
|
523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
523
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
524
524
|
:type execution_context: int | str | None
|
|
525
525
|
:type undo: bool | None
|
|
526
526
|
"""
|
|
527
527
|
|
|
528
528
|
def collection_remove(
|
|
529
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
529
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
530
530
|
execution_context: int | str | None = None,
|
|
531
531
|
undo: bool | None = None,
|
|
532
532
|
):
|
|
533
533
|
"""Remove the active object from this collection
|
|
534
534
|
|
|
535
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
535
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
536
536
|
:type execution_context: int | str | None
|
|
537
537
|
:type undo: bool | None
|
|
538
538
|
"""
|
|
539
539
|
|
|
540
540
|
def collection_unlink(
|
|
541
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
541
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
542
542
|
execution_context: int | str | None = None,
|
|
543
543
|
undo: bool | None = None,
|
|
544
544
|
):
|
|
545
545
|
"""Unlink the collection from all objects
|
|
546
546
|
|
|
547
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
547
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
548
548
|
:type execution_context: int | str | None
|
|
549
549
|
:type undo: bool | None
|
|
550
550
|
"""
|
|
551
551
|
|
|
552
552
|
def constraint_add(
|
|
553
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
553
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
554
554
|
execution_context: int | str | None = None,
|
|
555
555
|
undo: bool | None = None,
|
|
556
556
|
*,
|
|
@@ -558,7 +558,7 @@ def constraint_add(
|
|
|
558
558
|
):
|
|
559
559
|
"""Add a constraint to the active object
|
|
560
560
|
|
|
561
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
561
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
562
562
|
:type execution_context: int | str | None
|
|
563
563
|
:type undo: bool | None
|
|
564
564
|
:param type: Type
|
|
@@ -566,7 +566,7 @@ def constraint_add(
|
|
|
566
566
|
"""
|
|
567
567
|
|
|
568
568
|
def constraint_add_with_targets(
|
|
569
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
569
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
570
570
|
execution_context: int | str | None = None,
|
|
571
571
|
undo: bool | None = None,
|
|
572
572
|
*,
|
|
@@ -574,7 +574,7 @@ def constraint_add_with_targets(
|
|
|
574
574
|
):
|
|
575
575
|
"""Add a constraint to the active object, with target (where applicable) set to the selected objects/bones
|
|
576
576
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
577
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
578
|
:type execution_context: int | str | None
|
|
579
579
|
:type undo: bool | None
|
|
580
580
|
:param type: Type
|
|
@@ -582,31 +582,31 @@ def constraint_add_with_targets(
|
|
|
582
582
|
"""
|
|
583
583
|
|
|
584
584
|
def constraints_clear(
|
|
585
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
585
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
586
586
|
execution_context: int | str | None = None,
|
|
587
587
|
undo: bool | None = None,
|
|
588
588
|
):
|
|
589
589
|
"""Clear all constraints from the selected objects
|
|
590
590
|
|
|
591
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
591
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
592
592
|
:type execution_context: int | str | None
|
|
593
593
|
:type undo: bool | None
|
|
594
594
|
"""
|
|
595
595
|
|
|
596
596
|
def constraints_copy(
|
|
597
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
597
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
598
598
|
execution_context: int | str | None = None,
|
|
599
599
|
undo: bool | None = None,
|
|
600
600
|
):
|
|
601
601
|
"""Copy constraints to other selected objects
|
|
602
602
|
|
|
603
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
603
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
604
604
|
:type execution_context: int | str | None
|
|
605
605
|
:type undo: bool | None
|
|
606
606
|
"""
|
|
607
607
|
|
|
608
608
|
def convert(
|
|
609
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
609
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
610
610
|
execution_context: int | str | None = None,
|
|
611
611
|
undo: bool | None = None,
|
|
612
612
|
*,
|
|
@@ -622,7 +622,7 @@ def convert(
|
|
|
622
622
|
):
|
|
623
623
|
"""Convert selected objects to another type
|
|
624
624
|
|
|
625
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
625
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
626
626
|
:type execution_context: int | str | None
|
|
627
627
|
:type undo: bool | None
|
|
628
628
|
:param target: Target, Type of object to convert to
|
|
@@ -659,7 +659,7 @@ def convert(
|
|
|
659
659
|
"""
|
|
660
660
|
|
|
661
661
|
def correctivesmooth_bind(
|
|
662
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
662
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
663
663
|
execution_context: int | str | None = None,
|
|
664
664
|
undo: bool | None = None,
|
|
665
665
|
*,
|
|
@@ -667,7 +667,7 @@ def correctivesmooth_bind(
|
|
|
667
667
|
):
|
|
668
668
|
"""Bind base pose in Corrective Smooth modifier
|
|
669
669
|
|
|
670
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
670
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
671
671
|
:type execution_context: int | str | None
|
|
672
672
|
:type undo: bool | None
|
|
673
673
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -675,7 +675,7 @@ def correctivesmooth_bind(
|
|
|
675
675
|
"""
|
|
676
676
|
|
|
677
677
|
def curves_empty_hair_add(
|
|
678
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
678
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
679
679
|
execution_context: int | str | None = None,
|
|
680
680
|
undo: bool | None = None,
|
|
681
681
|
*,
|
|
@@ -694,7 +694,7 @@ def curves_empty_hair_add(
|
|
|
694
694
|
):
|
|
695
695
|
"""Add an empty curve object to the scene with the selected mesh as surface
|
|
696
696
|
|
|
697
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
697
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
698
698
|
:type execution_context: int | str | None
|
|
699
699
|
:type undo: bool | None
|
|
700
700
|
:param align: Align, The alignment of the new object
|
|
@@ -717,7 +717,7 @@ def curves_empty_hair_add(
|
|
|
717
717
|
"""
|
|
718
718
|
|
|
719
719
|
def curves_random_add(
|
|
720
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
720
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
721
721
|
execution_context: int | str | None = None,
|
|
722
722
|
undo: bool | None = None,
|
|
723
723
|
*,
|
|
@@ -736,7 +736,7 @@ def curves_random_add(
|
|
|
736
736
|
):
|
|
737
737
|
"""Add a curves object with random curves to the scene
|
|
738
738
|
|
|
739
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
739
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
740
740
|
:type execution_context: int | str | None
|
|
741
741
|
:type undo: bool | None
|
|
742
742
|
:param align: Align, The alignment of the new object
|
|
@@ -759,7 +759,7 @@ def curves_random_add(
|
|
|
759
759
|
"""
|
|
760
760
|
|
|
761
761
|
def data_instance_add(
|
|
762
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
762
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
763
763
|
execution_context: int | str | None = None,
|
|
764
764
|
undo: bool | None = None,
|
|
765
765
|
*,
|
|
@@ -783,7 +783,7 @@ def data_instance_add(
|
|
|
783
783
|
):
|
|
784
784
|
"""Add an object data instance
|
|
785
785
|
|
|
786
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
786
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
787
787
|
:type execution_context: int | str | None
|
|
788
788
|
:type undo: bool | None
|
|
789
789
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -816,7 +816,7 @@ def data_instance_add(
|
|
|
816
816
|
"""
|
|
817
817
|
|
|
818
818
|
def data_transfer(
|
|
819
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
819
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
820
820
|
execution_context: int | str | None = None,
|
|
821
821
|
undo: bool | None = None,
|
|
822
822
|
*,
|
|
@@ -856,7 +856,7 @@ def data_transfer(
|
|
|
856
856
|
):
|
|
857
857
|
"""Transfer data layer(s) (weights, edge sharp, etc.) from active to selected meshes
|
|
858
858
|
|
|
859
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
859
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
860
860
|
:type execution_context: int | str | None
|
|
861
861
|
:type undo: bool | None
|
|
862
862
|
:param use_reverse_transfer: Reverse Transfer, Transfer from selected objects to active one
|
|
@@ -937,7 +937,7 @@ def data_transfer(
|
|
|
937
937
|
"""
|
|
938
938
|
|
|
939
939
|
def datalayout_transfer(
|
|
940
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
940
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
941
941
|
execution_context: int | str | None = None,
|
|
942
942
|
undo: bool | None = None,
|
|
943
943
|
*,
|
|
@@ -964,7 +964,7 @@ def datalayout_transfer(
|
|
|
964
964
|
):
|
|
965
965
|
"""Transfer layout of data layer(s) from active to selected meshes
|
|
966
966
|
|
|
967
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
967
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
968
968
|
:type execution_context: int | str | None
|
|
969
969
|
:type undo: bool | None
|
|
970
970
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1019,7 +1019,7 @@ def datalayout_transfer(
|
|
|
1019
1019
|
"""
|
|
1020
1020
|
|
|
1021
1021
|
def delete(
|
|
1022
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1022
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1023
1023
|
execution_context: int | str | None = None,
|
|
1024
1024
|
undo: bool | None = None,
|
|
1025
1025
|
*,
|
|
@@ -1028,7 +1028,7 @@ def delete(
|
|
|
1028
1028
|
):
|
|
1029
1029
|
"""Delete selected objects
|
|
1030
1030
|
|
|
1031
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1031
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1032
1032
|
:type execution_context: int | str | None
|
|
1033
1033
|
:type undo: bool | None
|
|
1034
1034
|
:param use_global: Delete Globally, Remove object from all scenes
|
|
@@ -1038,7 +1038,7 @@ def delete(
|
|
|
1038
1038
|
"""
|
|
1039
1039
|
|
|
1040
1040
|
def drop_geometry_nodes(
|
|
1041
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1041
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1042
1042
|
execution_context: int | str | None = None,
|
|
1043
1043
|
undo: bool | None = None,
|
|
1044
1044
|
*,
|
|
@@ -1047,7 +1047,7 @@ def drop_geometry_nodes(
|
|
|
1047
1047
|
):
|
|
1048
1048
|
"""Undocumented, consider contributing.
|
|
1049
1049
|
|
|
1050
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1050
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1051
1051
|
:type execution_context: int | str | None
|
|
1052
1052
|
:type undo: bool | None
|
|
1053
1053
|
:param session_uid: Session UID, Session UID of the geometry node group being dropped
|
|
@@ -1057,7 +1057,7 @@ def drop_geometry_nodes(
|
|
|
1057
1057
|
"""
|
|
1058
1058
|
|
|
1059
1059
|
def drop_named_material(
|
|
1060
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1060
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1061
1061
|
execution_context: int | str | None = None,
|
|
1062
1062
|
undo: bool | None = None,
|
|
1063
1063
|
*,
|
|
@@ -1066,7 +1066,7 @@ def drop_named_material(
|
|
|
1066
1066
|
):
|
|
1067
1067
|
"""Undocumented, consider contributing.
|
|
1068
1068
|
|
|
1069
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1069
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1070
1070
|
:type execution_context: int | str | None
|
|
1071
1071
|
:type undo: bool | None
|
|
1072
1072
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -1076,7 +1076,7 @@ def drop_named_material(
|
|
|
1076
1076
|
"""
|
|
1077
1077
|
|
|
1078
1078
|
def duplicate(
|
|
1079
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1079
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1080
1080
|
execution_context: int | str | None = None,
|
|
1081
1081
|
undo: bool | None = None,
|
|
1082
1082
|
*,
|
|
@@ -1085,7 +1085,7 @@ def duplicate(
|
|
|
1085
1085
|
):
|
|
1086
1086
|
"""Duplicate selected objects
|
|
1087
1087
|
|
|
1088
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1088
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1089
1089
|
:type execution_context: int | str | None
|
|
1090
1090
|
:type undo: bool | None
|
|
1091
1091
|
:param linked: Linked, Duplicate object but not object data, linking to the original data
|
|
@@ -1095,7 +1095,7 @@ def duplicate(
|
|
|
1095
1095
|
"""
|
|
1096
1096
|
|
|
1097
1097
|
def duplicate_move(
|
|
1098
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1098
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1099
1099
|
execution_context: int | str | None = None,
|
|
1100
1100
|
undo: bool | None = None,
|
|
1101
1101
|
*,
|
|
@@ -1104,7 +1104,7 @@ def duplicate_move(
|
|
|
1104
1104
|
):
|
|
1105
1105
|
"""Duplicate the selected objects and move them
|
|
1106
1106
|
|
|
1107
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1107
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1108
1108
|
:type execution_context: int | str | None
|
|
1109
1109
|
:type undo: bool | None
|
|
1110
1110
|
:param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
|
|
@@ -1114,7 +1114,7 @@ def duplicate_move(
|
|
|
1114
1114
|
"""
|
|
1115
1115
|
|
|
1116
1116
|
def duplicate_move_linked(
|
|
1117
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1117
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1118
1118
|
execution_context: int | str | None = None,
|
|
1119
1119
|
undo: bool | None = None,
|
|
1120
1120
|
*,
|
|
@@ -1123,7 +1123,7 @@ def duplicate_move_linked(
|
|
|
1123
1123
|
):
|
|
1124
1124
|
"""Duplicate the selected objects, but not their object data, and move them
|
|
1125
1125
|
|
|
1126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1127
1127
|
:type execution_context: int | str | None
|
|
1128
1128
|
:type undo: bool | None
|
|
1129
1129
|
:param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
|
|
@@ -1133,7 +1133,7 @@ def duplicate_move_linked(
|
|
|
1133
1133
|
"""
|
|
1134
1134
|
|
|
1135
1135
|
def duplicates_make_real(
|
|
1136
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1136
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1137
1137
|
execution_context: int | str | None = None,
|
|
1138
1138
|
undo: bool | None = None,
|
|
1139
1139
|
*,
|
|
@@ -1142,7 +1142,7 @@ def duplicates_make_real(
|
|
|
1142
1142
|
):
|
|
1143
1143
|
"""Make instanced objects attached to this object real
|
|
1144
1144
|
|
|
1145
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1145
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1146
1146
|
:type execution_context: int | str | None
|
|
1147
1147
|
:type undo: bool | None
|
|
1148
1148
|
:param use_base_parent: Parent, Parent newly created objects to the original instancer
|
|
@@ -1152,19 +1152,19 @@ def duplicates_make_real(
|
|
|
1152
1152
|
"""
|
|
1153
1153
|
|
|
1154
1154
|
def editmode_toggle(
|
|
1155
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1155
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1156
1156
|
execution_context: int | str | None = None,
|
|
1157
1157
|
undo: bool | None = None,
|
|
1158
1158
|
):
|
|
1159
1159
|
"""Toggle object's edit mode
|
|
1160
1160
|
|
|
1161
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1161
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1162
1162
|
:type execution_context: int | str | None
|
|
1163
1163
|
:type undo: bool | None
|
|
1164
1164
|
"""
|
|
1165
1165
|
|
|
1166
1166
|
def effector_add(
|
|
1167
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1167
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1168
1168
|
execution_context: int | str | None = None,
|
|
1169
1169
|
undo: bool | None = None,
|
|
1170
1170
|
*,
|
|
@@ -1201,7 +1201,7 @@ def effector_add(
|
|
|
1201
1201
|
):
|
|
1202
1202
|
"""Add an empty object with a physics effector to the scene
|
|
1203
1203
|
|
|
1204
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1204
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1205
1205
|
:type execution_context: int | str | None
|
|
1206
1206
|
:type undo: bool | None
|
|
1207
1207
|
:param type: Type
|
|
@@ -1230,7 +1230,7 @@ def effector_add(
|
|
|
1230
1230
|
"""
|
|
1231
1231
|
|
|
1232
1232
|
def empty_add(
|
|
1233
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1233
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1234
1234
|
execution_context: int | str | None = None,
|
|
1235
1235
|
undo: bool | None = None,
|
|
1236
1236
|
*,
|
|
@@ -1251,7 +1251,7 @@ def empty_add(
|
|
|
1251
1251
|
):
|
|
1252
1252
|
"""Add an empty object to the scene
|
|
1253
1253
|
|
|
1254
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1254
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1255
1255
|
:type execution_context: int | str | None
|
|
1256
1256
|
:type undo: bool | None
|
|
1257
1257
|
:param type: Type
|
|
@@ -1278,7 +1278,7 @@ def empty_add(
|
|
|
1278
1278
|
"""
|
|
1279
1279
|
|
|
1280
1280
|
def empty_image_add(
|
|
1281
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1281
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1282
1282
|
execution_context: int | str | None = None,
|
|
1283
1283
|
undo: bool | None = None,
|
|
1284
1284
|
*,
|
|
@@ -1336,7 +1336,7 @@ def empty_image_add(
|
|
|
1336
1336
|
):
|
|
1337
1337
|
"""Add an empty image type to scene with data
|
|
1338
1338
|
|
|
1339
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1339
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1340
1340
|
:type execution_context: int | str | None
|
|
1341
1341
|
:type undo: bool | None
|
|
1342
1342
|
:param filepath: File Path, Path to file
|
|
@@ -1444,7 +1444,7 @@ def empty_image_add(
|
|
|
1444
1444
|
"""
|
|
1445
1445
|
|
|
1446
1446
|
def explode_refresh(
|
|
1447
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1448
1448
|
execution_context: int | str | None = None,
|
|
1449
1449
|
undo: bool | None = None,
|
|
1450
1450
|
*,
|
|
@@ -1452,7 +1452,7 @@ def explode_refresh(
|
|
|
1452
1452
|
):
|
|
1453
1453
|
"""Refresh data in the Explode modifier
|
|
1454
1454
|
|
|
1455
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1455
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1456
1456
|
:type execution_context: int | str | None
|
|
1457
1457
|
:type undo: bool | None
|
|
1458
1458
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1460,19 +1460,19 @@ def explode_refresh(
|
|
|
1460
1460
|
"""
|
|
1461
1461
|
|
|
1462
1462
|
def forcefield_toggle(
|
|
1463
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1463
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1464
1464
|
execution_context: int | str | None = None,
|
|
1465
1465
|
undo: bool | None = None,
|
|
1466
1466
|
):
|
|
1467
1467
|
"""Toggle object's force field
|
|
1468
1468
|
|
|
1469
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1469
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1470
1470
|
:type execution_context: int | str | None
|
|
1471
1471
|
:type undo: bool | None
|
|
1472
1472
|
"""
|
|
1473
1473
|
|
|
1474
1474
|
def geometry_node_bake_delete_single(
|
|
1475
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1475
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1476
1476
|
execution_context: int | str | None = None,
|
|
1477
1477
|
undo: bool | None = None,
|
|
1478
1478
|
*,
|
|
@@ -1482,7 +1482,7 @@ def geometry_node_bake_delete_single(
|
|
|
1482
1482
|
):
|
|
1483
1483
|
"""Delete baked data of a single bake node or simulation
|
|
1484
1484
|
|
|
1485
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1485
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1486
1486
|
:type execution_context: int | str | None
|
|
1487
1487
|
:type undo: bool | None
|
|
1488
1488
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1494,7 +1494,7 @@ def geometry_node_bake_delete_single(
|
|
|
1494
1494
|
"""
|
|
1495
1495
|
|
|
1496
1496
|
def geometry_node_bake_pack_single(
|
|
1497
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1497
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1498
1498
|
execution_context: int | str | None = None,
|
|
1499
1499
|
undo: bool | None = None,
|
|
1500
1500
|
*,
|
|
@@ -1504,7 +1504,7 @@ def geometry_node_bake_pack_single(
|
|
|
1504
1504
|
):
|
|
1505
1505
|
"""Pack baked data from disk into the .blend file
|
|
1506
1506
|
|
|
1507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1507
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1508
1508
|
:type execution_context: int | str | None
|
|
1509
1509
|
:type undo: bool | None
|
|
1510
1510
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1516,7 +1516,7 @@ def geometry_node_bake_pack_single(
|
|
|
1516
1516
|
"""
|
|
1517
1517
|
|
|
1518
1518
|
def geometry_node_bake_single(
|
|
1519
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1519
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1520
1520
|
execution_context: int | str | None = None,
|
|
1521
1521
|
undo: bool | None = None,
|
|
1522
1522
|
*,
|
|
@@ -1526,7 +1526,7 @@ def geometry_node_bake_single(
|
|
|
1526
1526
|
):
|
|
1527
1527
|
"""Bake a single bake node or simulation
|
|
1528
1528
|
|
|
1529
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1529
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1530
1530
|
:type execution_context: int | str | None
|
|
1531
1531
|
:type undo: bool | None
|
|
1532
1532
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1538,7 +1538,7 @@ def geometry_node_bake_single(
|
|
|
1538
1538
|
"""
|
|
1539
1539
|
|
|
1540
1540
|
def geometry_node_bake_unpack_single(
|
|
1541
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1541
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1542
1542
|
execution_context: int | str | None = None,
|
|
1543
1543
|
undo: bool | None = None,
|
|
1544
1544
|
*,
|
|
@@ -1550,7 +1550,7 @@ def geometry_node_bake_unpack_single(
|
|
|
1550
1550
|
):
|
|
1551
1551
|
"""Unpack baked data from the .blend file to disk
|
|
1552
1552
|
|
|
1553
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1553
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1554
1554
|
:type execution_context: int | str | None
|
|
1555
1555
|
:type undo: bool | None
|
|
1556
1556
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1564,19 +1564,19 @@ def geometry_node_bake_unpack_single(
|
|
|
1564
1564
|
"""
|
|
1565
1565
|
|
|
1566
1566
|
def geometry_node_tree_copy_assign(
|
|
1567
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1567
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1568
1568
|
execution_context: int | str | None = None,
|
|
1569
1569
|
undo: bool | None = None,
|
|
1570
1570
|
):
|
|
1571
1571
|
"""Copy the active geometry node group and assign it to the active modifier
|
|
1572
1572
|
|
|
1573
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1573
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1574
1574
|
:type execution_context: int | str | None
|
|
1575
1575
|
:type undo: bool | None
|
|
1576
1576
|
"""
|
|
1577
1577
|
|
|
1578
1578
|
def geometry_nodes_input_attribute_toggle(
|
|
1579
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1579
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1580
1580
|
execution_context: int | str | None = None,
|
|
1581
1581
|
undo: bool | None = None,
|
|
1582
1582
|
*,
|
|
@@ -1585,7 +1585,7 @@ def geometry_nodes_input_attribute_toggle(
|
|
|
1585
1585
|
):
|
|
1586
1586
|
"""Switch between an attribute and a single value to define the data for every element
|
|
1587
1587
|
|
|
1588
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1588
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1589
1589
|
:type execution_context: int | str | None
|
|
1590
1590
|
:type undo: bool | None
|
|
1591
1591
|
:param input_name: Input Name
|
|
@@ -1595,7 +1595,7 @@ def geometry_nodes_input_attribute_toggle(
|
|
|
1595
1595
|
"""
|
|
1596
1596
|
|
|
1597
1597
|
def geometry_nodes_move_to_nodes(
|
|
1598
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1598
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1599
1599
|
execution_context: int | str | None = None,
|
|
1600
1600
|
undo: bool | None = None,
|
|
1601
1601
|
*,
|
|
@@ -1603,7 +1603,7 @@ def geometry_nodes_move_to_nodes(
|
|
|
1603
1603
|
):
|
|
1604
1604
|
"""Move inputs and outputs from in the modifier to a new node group
|
|
1605
1605
|
|
|
1606
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1606
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1607
1607
|
:type execution_context: int | str | None
|
|
1608
1608
|
:type undo: bool | None
|
|
1609
1609
|
:param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
|
|
@@ -1611,7 +1611,7 @@ def geometry_nodes_move_to_nodes(
|
|
|
1611
1611
|
"""
|
|
1612
1612
|
|
|
1613
1613
|
def gpencil_add(
|
|
1614
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1614
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1615
1615
|
execution_context: int | str | None = None,
|
|
1616
1616
|
undo: bool | None = None,
|
|
1617
1617
|
*,
|
|
@@ -1636,7 +1636,7 @@ def gpencil_add(
|
|
|
1636
1636
|
):
|
|
1637
1637
|
"""Add a Grease Pencil object to the scene
|
|
1638
1638
|
|
|
1639
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1639
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1640
1640
|
:type execution_context: int | str | None
|
|
1641
1641
|
:type undo: bool | None
|
|
1642
1642
|
:param radius: Radius
|
|
@@ -1677,7 +1677,7 @@ def gpencil_add(
|
|
|
1677
1677
|
"""
|
|
1678
1678
|
|
|
1679
1679
|
def grease_pencil_add(
|
|
1680
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1680
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1681
1681
|
execution_context: int | str | None = None,
|
|
1682
1682
|
undo: bool | None = None,
|
|
1683
1683
|
*,
|
|
@@ -1702,7 +1702,7 @@ def grease_pencil_add(
|
|
|
1702
1702
|
):
|
|
1703
1703
|
"""Add a Grease Pencil object to the scene
|
|
1704
1704
|
|
|
1705
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1705
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1706
1706
|
:type execution_context: int | str | None
|
|
1707
1707
|
:type undo: bool | None
|
|
1708
1708
|
:param type: Type
|
|
@@ -1743,7 +1743,7 @@ def grease_pencil_add(
|
|
|
1743
1743
|
"""
|
|
1744
1744
|
|
|
1745
1745
|
def grease_pencil_dash_modifier_segment_add(
|
|
1746
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1746
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1747
1747
|
execution_context: int | str | None = None,
|
|
1748
1748
|
undo: bool | None = None,
|
|
1749
1749
|
*,
|
|
@@ -1751,7 +1751,7 @@ def grease_pencil_dash_modifier_segment_add(
|
|
|
1751
1751
|
):
|
|
1752
1752
|
"""Add a segment to the dash modifier
|
|
1753
1753
|
|
|
1754
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1754
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1755
1755
|
:type execution_context: int | str | None
|
|
1756
1756
|
:type undo: bool | None
|
|
1757
1757
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1759,7 +1759,7 @@ def grease_pencil_dash_modifier_segment_add(
|
|
|
1759
1759
|
"""
|
|
1760
1760
|
|
|
1761
1761
|
def grease_pencil_dash_modifier_segment_move(
|
|
1762
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1762
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1763
1763
|
execution_context: int | str | None = None,
|
|
1764
1764
|
undo: bool | None = None,
|
|
1765
1765
|
*,
|
|
@@ -1768,7 +1768,7 @@ def grease_pencil_dash_modifier_segment_move(
|
|
|
1768
1768
|
):
|
|
1769
1769
|
"""Move the active dash segment up or down
|
|
1770
1770
|
|
|
1771
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1771
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1772
1772
|
:type execution_context: int | str | None
|
|
1773
1773
|
:type undo: bool | None
|
|
1774
1774
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1778,7 +1778,7 @@ def grease_pencil_dash_modifier_segment_move(
|
|
|
1778
1778
|
"""
|
|
1779
1779
|
|
|
1780
1780
|
def grease_pencil_dash_modifier_segment_remove(
|
|
1781
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1781
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1782
1782
|
execution_context: int | str | None = None,
|
|
1783
1783
|
undo: bool | None = None,
|
|
1784
1784
|
*,
|
|
@@ -1787,7 +1787,7 @@ def grease_pencil_dash_modifier_segment_remove(
|
|
|
1787
1787
|
):
|
|
1788
1788
|
"""Remove the active segment from the dash modifier
|
|
1789
1789
|
|
|
1790
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1790
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1791
1791
|
:type execution_context: int | str | None
|
|
1792
1792
|
:type undo: bool | None
|
|
1793
1793
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1797,7 +1797,7 @@ def grease_pencil_dash_modifier_segment_remove(
|
|
|
1797
1797
|
"""
|
|
1798
1798
|
|
|
1799
1799
|
def grease_pencil_time_modifier_segment_add(
|
|
1800
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1800
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1801
1801
|
execution_context: int | str | None = None,
|
|
1802
1802
|
undo: bool | None = None,
|
|
1803
1803
|
*,
|
|
@@ -1805,7 +1805,7 @@ def grease_pencil_time_modifier_segment_add(
|
|
|
1805
1805
|
):
|
|
1806
1806
|
"""Add a segment to the time modifier
|
|
1807
1807
|
|
|
1808
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1808
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1809
1809
|
:type execution_context: int | str | None
|
|
1810
1810
|
:type undo: bool | None
|
|
1811
1811
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1813,7 +1813,7 @@ def grease_pencil_time_modifier_segment_add(
|
|
|
1813
1813
|
"""
|
|
1814
1814
|
|
|
1815
1815
|
def grease_pencil_time_modifier_segment_move(
|
|
1816
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1816
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1817
1817
|
execution_context: int | str | None = None,
|
|
1818
1818
|
undo: bool | None = None,
|
|
1819
1819
|
*,
|
|
@@ -1822,7 +1822,7 @@ def grease_pencil_time_modifier_segment_move(
|
|
|
1822
1822
|
):
|
|
1823
1823
|
"""Move the active time segment up or down
|
|
1824
1824
|
|
|
1825
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1825
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1826
1826
|
:type execution_context: int | str | None
|
|
1827
1827
|
:type undo: bool | None
|
|
1828
1828
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1832,7 +1832,7 @@ def grease_pencil_time_modifier_segment_move(
|
|
|
1832
1832
|
"""
|
|
1833
1833
|
|
|
1834
1834
|
def grease_pencil_time_modifier_segment_remove(
|
|
1835
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1835
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1836
1836
|
execution_context: int | str | None = None,
|
|
1837
1837
|
undo: bool | None = None,
|
|
1838
1838
|
*,
|
|
@@ -1841,7 +1841,7 @@ def grease_pencil_time_modifier_segment_remove(
|
|
|
1841
1841
|
):
|
|
1842
1842
|
"""Remove the active segment from the time modifier
|
|
1843
1843
|
|
|
1844
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1844
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1845
1845
|
:type execution_context: int | str | None
|
|
1846
1846
|
:type undo: bool | None
|
|
1847
1847
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1851,7 +1851,7 @@ def grease_pencil_time_modifier_segment_remove(
|
|
|
1851
1851
|
"""
|
|
1852
1852
|
|
|
1853
1853
|
def hide_collection(
|
|
1854
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1854
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1855
1855
|
execution_context: int | str | None = None,
|
|
1856
1856
|
undo: bool | None = None,
|
|
1857
1857
|
*,
|
|
@@ -1861,7 +1861,7 @@ def hide_collection(
|
|
|
1861
1861
|
):
|
|
1862
1862
|
"""Show only objects in collection (Shift to extend)
|
|
1863
1863
|
|
|
1864
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1864
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1865
1865
|
:type execution_context: int | str | None
|
|
1866
1866
|
:type undo: bool | None
|
|
1867
1867
|
:param collection_index: Collection Index, Index of the collection to change visibility
|
|
@@ -1873,19 +1873,19 @@ def hide_collection(
|
|
|
1873
1873
|
"""
|
|
1874
1874
|
|
|
1875
1875
|
def hide_render_clear_all(
|
|
1876
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1876
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1877
1877
|
execution_context: int | str | None = None,
|
|
1878
1878
|
undo: bool | None = None,
|
|
1879
1879
|
):
|
|
1880
1880
|
"""Reveal all render objects by setting the hide render flag
|
|
1881
1881
|
|
|
1882
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1882
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1883
1883
|
:type execution_context: int | str | None
|
|
1884
1884
|
:type undo: bool | None
|
|
1885
1885
|
"""
|
|
1886
1886
|
|
|
1887
1887
|
def hide_view_clear(
|
|
1888
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1888
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1889
1889
|
execution_context: int | str | None = None,
|
|
1890
1890
|
undo: bool | None = None,
|
|
1891
1891
|
*,
|
|
@@ -1893,7 +1893,7 @@ def hide_view_clear(
|
|
|
1893
1893
|
):
|
|
1894
1894
|
"""Reveal temporarily hidden objects
|
|
1895
1895
|
|
|
1896
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1896
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1897
1897
|
:type execution_context: int | str | None
|
|
1898
1898
|
:type undo: bool | None
|
|
1899
1899
|
:param select: Select, Select revealed objects
|
|
@@ -1901,7 +1901,7 @@ def hide_view_clear(
|
|
|
1901
1901
|
"""
|
|
1902
1902
|
|
|
1903
1903
|
def hide_view_set(
|
|
1904
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1904
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1905
1905
|
execution_context: int | str | None = None,
|
|
1906
1906
|
undo: bool | None = None,
|
|
1907
1907
|
*,
|
|
@@ -1909,7 +1909,7 @@ def hide_view_set(
|
|
|
1909
1909
|
):
|
|
1910
1910
|
"""Temporarily hide objects from the viewport
|
|
1911
1911
|
|
|
1912
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1912
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1913
1913
|
:type execution_context: int | str | None
|
|
1914
1914
|
:type undo: bool | None
|
|
1915
1915
|
:param unselected: Unselected, Hide unselected rather than selected objects
|
|
@@ -1917,19 +1917,19 @@ def hide_view_set(
|
|
|
1917
1917
|
"""
|
|
1918
1918
|
|
|
1919
1919
|
def hook_add_newob(
|
|
1920
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1920
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1921
1921
|
execution_context: int | str | None = None,
|
|
1922
1922
|
undo: bool | None = None,
|
|
1923
1923
|
):
|
|
1924
1924
|
"""Hook selected vertices to a newly created object
|
|
1925
1925
|
|
|
1926
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1926
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1927
1927
|
:type execution_context: int | str | None
|
|
1928
1928
|
:type undo: bool | None
|
|
1929
1929
|
"""
|
|
1930
1930
|
|
|
1931
1931
|
def hook_add_selob(
|
|
1932
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1932
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1933
1933
|
execution_context: int | str | None = None,
|
|
1934
1934
|
undo: bool | None = None,
|
|
1935
1935
|
*,
|
|
@@ -1937,7 +1937,7 @@ def hook_add_selob(
|
|
|
1937
1937
|
):
|
|
1938
1938
|
"""Hook selected vertices to the first selected object
|
|
1939
1939
|
|
|
1940
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1940
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1941
1941
|
:type execution_context: int | str | None
|
|
1942
1942
|
:type undo: bool | None
|
|
1943
1943
|
:param use_bone: Active Bone, Assign the hook to the hook object's active bone
|
|
@@ -1945,7 +1945,7 @@ def hook_add_selob(
|
|
|
1945
1945
|
"""
|
|
1946
1946
|
|
|
1947
1947
|
def hook_assign(
|
|
1948
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1948
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1949
1949
|
execution_context: int | str | None = None,
|
|
1950
1950
|
undo: bool | None = None,
|
|
1951
1951
|
*,
|
|
@@ -1953,7 +1953,7 @@ def hook_assign(
|
|
|
1953
1953
|
):
|
|
1954
1954
|
"""Assign the selected vertices to a hook
|
|
1955
1955
|
|
|
1956
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1956
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1957
1957
|
:type execution_context: int | str | None
|
|
1958
1958
|
:type undo: bool | None
|
|
1959
1959
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -1961,7 +1961,7 @@ def hook_assign(
|
|
|
1961
1961
|
"""
|
|
1962
1962
|
|
|
1963
1963
|
def hook_recenter(
|
|
1964
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1964
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1965
1965
|
execution_context: int | str | None = None,
|
|
1966
1966
|
undo: bool | None = None,
|
|
1967
1967
|
*,
|
|
@@ -1969,7 +1969,7 @@ def hook_recenter(
|
|
|
1969
1969
|
):
|
|
1970
1970
|
"""Set hook center to cursor position
|
|
1971
1971
|
|
|
1972
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1972
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1973
1973
|
:type execution_context: int | str | None
|
|
1974
1974
|
:type undo: bool | None
|
|
1975
1975
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -1977,7 +1977,7 @@ def hook_recenter(
|
|
|
1977
1977
|
"""
|
|
1978
1978
|
|
|
1979
1979
|
def hook_remove(
|
|
1980
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1980
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1981
1981
|
execution_context: int | str | None = None,
|
|
1982
1982
|
undo: bool | None = None,
|
|
1983
1983
|
*,
|
|
@@ -1985,7 +1985,7 @@ def hook_remove(
|
|
|
1985
1985
|
):
|
|
1986
1986
|
"""Remove a hook from the active object
|
|
1987
1987
|
|
|
1988
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1988
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1989
1989
|
:type execution_context: int | str | None
|
|
1990
1990
|
:type undo: bool | None
|
|
1991
1991
|
:param modifier: Modifier, Modifier number to remove
|
|
@@ -1993,7 +1993,7 @@ def hook_remove(
|
|
|
1993
1993
|
"""
|
|
1994
1994
|
|
|
1995
1995
|
def hook_reset(
|
|
1996
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1996
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1997
1997
|
execution_context: int | str | None = None,
|
|
1998
1998
|
undo: bool | None = None,
|
|
1999
1999
|
*,
|
|
@@ -2001,7 +2001,7 @@ def hook_reset(
|
|
|
2001
2001
|
):
|
|
2002
2002
|
"""Recalculate and clear offset transformation
|
|
2003
2003
|
|
|
2004
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2004
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2005
2005
|
:type execution_context: int | str | None
|
|
2006
2006
|
:type undo: bool | None
|
|
2007
2007
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -2009,7 +2009,7 @@ def hook_reset(
|
|
|
2009
2009
|
"""
|
|
2010
2010
|
|
|
2011
2011
|
def hook_select(
|
|
2012
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2012
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2013
2013
|
execution_context: int | str | None = None,
|
|
2014
2014
|
undo: bool | None = None,
|
|
2015
2015
|
*,
|
|
@@ -2017,7 +2017,7 @@ def hook_select(
|
|
|
2017
2017
|
):
|
|
2018
2018
|
"""Select affected vertices on mesh
|
|
2019
2019
|
|
|
2020
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2020
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2021
2021
|
:type execution_context: int | str | None
|
|
2022
2022
|
:type undo: bool | None
|
|
2023
2023
|
:param modifier: Modifier, Modifier number to remove
|
|
@@ -2025,91 +2025,91 @@ def hook_select(
|
|
|
2025
2025
|
"""
|
|
2026
2026
|
|
|
2027
2027
|
def instance_offset_from_cursor(
|
|
2028
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2028
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2029
2029
|
execution_context: int | str | None = None,
|
|
2030
2030
|
undo: bool | None = None,
|
|
2031
2031
|
):
|
|
2032
2032
|
"""Set offset used for collection instances based on cursor position
|
|
2033
2033
|
|
|
2034
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2034
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2035
2035
|
:type execution_context: int | str | None
|
|
2036
2036
|
:type undo: bool | None
|
|
2037
2037
|
"""
|
|
2038
2038
|
|
|
2039
2039
|
def instance_offset_from_object(
|
|
2040
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2040
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2041
2041
|
execution_context: int | str | None = None,
|
|
2042
2042
|
undo: bool | None = None,
|
|
2043
2043
|
):
|
|
2044
2044
|
"""Set offset used for collection instances based on the active object position
|
|
2045
2045
|
|
|
2046
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2046
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2047
2047
|
:type execution_context: int | str | None
|
|
2048
2048
|
:type undo: bool | None
|
|
2049
2049
|
"""
|
|
2050
2050
|
|
|
2051
2051
|
def instance_offset_to_cursor(
|
|
2052
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2052
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2053
2053
|
execution_context: int | str | None = None,
|
|
2054
2054
|
undo: bool | None = None,
|
|
2055
2055
|
):
|
|
2056
2056
|
"""Set cursor position to the offset used for collection instances
|
|
2057
2057
|
|
|
2058
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2058
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2059
2059
|
:type execution_context: int | str | None
|
|
2060
2060
|
:type undo: bool | None
|
|
2061
2061
|
"""
|
|
2062
2062
|
|
|
2063
2063
|
def isolate_type_render(
|
|
2064
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2064
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2065
2065
|
execution_context: int | str | None = None,
|
|
2066
2066
|
undo: bool | None = None,
|
|
2067
2067
|
):
|
|
2068
2068
|
"""Hide unselected render objects of same type as active by setting the hide render flag
|
|
2069
2069
|
|
|
2070
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2070
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2071
2071
|
:type execution_context: int | str | None
|
|
2072
2072
|
:type undo: bool | None
|
|
2073
2073
|
"""
|
|
2074
2074
|
|
|
2075
2075
|
def join(
|
|
2076
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2076
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2077
2077
|
execution_context: int | str | None = None,
|
|
2078
2078
|
undo: bool | None = None,
|
|
2079
2079
|
):
|
|
2080
2080
|
"""Join selected objects into active object
|
|
2081
2081
|
|
|
2082
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2082
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2083
2083
|
:type execution_context: int | str | None
|
|
2084
2084
|
:type undo: bool | None
|
|
2085
2085
|
"""
|
|
2086
2086
|
|
|
2087
2087
|
def join_shapes(
|
|
2088
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2088
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2089
2089
|
execution_context: int | str | None = None,
|
|
2090
2090
|
undo: bool | None = None,
|
|
2091
2091
|
):
|
|
2092
2092
|
"""Copy the current resulting shape of another selected object to this one
|
|
2093
2093
|
|
|
2094
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2094
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2095
2095
|
:type execution_context: int | str | None
|
|
2096
2096
|
:type undo: bool | None
|
|
2097
2097
|
"""
|
|
2098
2098
|
|
|
2099
2099
|
def join_uvs(
|
|
2100
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2100
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2101
2101
|
execution_context: int | str | None = None,
|
|
2102
2102
|
undo: bool | None = None,
|
|
2103
2103
|
):
|
|
2104
2104
|
"""Transfer UV Maps from active to selected objects (needs matching geometry)
|
|
2105
2105
|
|
|
2106
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2106
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2107
2107
|
:type execution_context: int | str | None
|
|
2108
2108
|
:type undo: bool | None
|
|
2109
2109
|
"""
|
|
2110
2110
|
|
|
2111
2111
|
def laplaciandeform_bind(
|
|
2112
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2112
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2113
2113
|
execution_context: int | str | None = None,
|
|
2114
2114
|
undo: bool | None = None,
|
|
2115
2115
|
*,
|
|
@@ -2117,7 +2117,7 @@ def laplaciandeform_bind(
|
|
|
2117
2117
|
):
|
|
2118
2118
|
"""Bind mesh to system in laplacian deform modifier
|
|
2119
2119
|
|
|
2120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2121
2121
|
:type execution_context: int | str | None
|
|
2122
2122
|
:type undo: bool | None
|
|
2123
2123
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2125,7 +2125,7 @@ def laplaciandeform_bind(
|
|
|
2125
2125
|
"""
|
|
2126
2126
|
|
|
2127
2127
|
def light_add(
|
|
2128
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2128
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2129
2129
|
execution_context: int | str | None = None,
|
|
2130
2130
|
undo: bool | None = None,
|
|
2131
2131
|
*,
|
|
@@ -2146,7 +2146,7 @@ def light_add(
|
|
|
2146
2146
|
):
|
|
2147
2147
|
"""Add a light object to the scene
|
|
2148
2148
|
|
|
2149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2149
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2150
2150
|
:type execution_context: int | str | None
|
|
2151
2151
|
:type undo: bool | None
|
|
2152
2152
|
:param type: Type
|
|
@@ -2173,19 +2173,19 @@ def light_add(
|
|
|
2173
2173
|
"""
|
|
2174
2174
|
|
|
2175
2175
|
def light_linking_blocker_collection_new(
|
|
2176
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2177
2177
|
execution_context: int | str | None = None,
|
|
2178
2178
|
undo: bool | None = None,
|
|
2179
2179
|
):
|
|
2180
2180
|
"""Create new light linking collection used by the active emitter
|
|
2181
2181
|
|
|
2182
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2182
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2183
2183
|
:type execution_context: int | str | None
|
|
2184
2184
|
:type undo: bool | None
|
|
2185
2185
|
"""
|
|
2186
2186
|
|
|
2187
2187
|
def light_linking_blockers_link(
|
|
2188
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2188
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2189
2189
|
execution_context: int | str | None = None,
|
|
2190
2190
|
undo: bool | None = None,
|
|
2191
2191
|
*,
|
|
@@ -2193,7 +2193,7 @@ def light_linking_blockers_link(
|
|
|
2193
2193
|
):
|
|
2194
2194
|
"""Light link selected blockers to the active emitter object
|
|
2195
2195
|
|
|
2196
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2196
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2197
2197
|
:type execution_context: int | str | None
|
|
2198
2198
|
:type undo: bool | None
|
|
2199
2199
|
:param link_state: Link State, State of the shadow linking
|
|
@@ -2207,31 +2207,31 @@ def light_linking_blockers_link(
|
|
|
2207
2207
|
"""
|
|
2208
2208
|
|
|
2209
2209
|
def light_linking_blockers_select(
|
|
2210
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2210
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2211
2211
|
execution_context: int | str | None = None,
|
|
2212
2212
|
undo: bool | None = None,
|
|
2213
2213
|
):
|
|
2214
2214
|
"""Select all objects which block light from this emitter
|
|
2215
2215
|
|
|
2216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2216
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2217
2217
|
:type execution_context: int | str | None
|
|
2218
2218
|
:type undo: bool | None
|
|
2219
2219
|
"""
|
|
2220
2220
|
|
|
2221
2221
|
def light_linking_receiver_collection_new(
|
|
2222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2223
2223
|
execution_context: int | str | None = None,
|
|
2224
2224
|
undo: bool | None = None,
|
|
2225
2225
|
):
|
|
2226
2226
|
"""Create new light linking collection used by the active emitter
|
|
2227
2227
|
|
|
2228
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2228
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2229
2229
|
:type execution_context: int | str | None
|
|
2230
2230
|
:type undo: bool | None
|
|
2231
2231
|
"""
|
|
2232
2232
|
|
|
2233
2233
|
def light_linking_receivers_link(
|
|
2234
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2234
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2235
2235
|
execution_context: int | str | None = None,
|
|
2236
2236
|
undo: bool | None = None,
|
|
2237
2237
|
*,
|
|
@@ -2239,7 +2239,7 @@ def light_linking_receivers_link(
|
|
|
2239
2239
|
):
|
|
2240
2240
|
"""Light link selected receivers to the active emitter object
|
|
2241
2241
|
|
|
2242
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2242
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2243
2243
|
:type execution_context: int | str | None
|
|
2244
2244
|
:type undo: bool | None
|
|
2245
2245
|
:param link_state: Link State, State of the light linking
|
|
@@ -2253,31 +2253,31 @@ def light_linking_receivers_link(
|
|
|
2253
2253
|
"""
|
|
2254
2254
|
|
|
2255
2255
|
def light_linking_receivers_select(
|
|
2256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2256
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2257
2257
|
execution_context: int | str | None = None,
|
|
2258
2258
|
undo: bool | None = None,
|
|
2259
2259
|
):
|
|
2260
2260
|
"""Select all objects which receive light from this emitter
|
|
2261
2261
|
|
|
2262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2262
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2263
2263
|
:type execution_context: int | str | None
|
|
2264
2264
|
:type undo: bool | None
|
|
2265
2265
|
"""
|
|
2266
2266
|
|
|
2267
2267
|
def light_linking_unlink_from_collection(
|
|
2268
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2268
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2269
2269
|
execution_context: int | str | None = None,
|
|
2270
2270
|
undo: bool | None = None,
|
|
2271
2271
|
):
|
|
2272
2272
|
"""Remove this object or collection from the light linking collection
|
|
2273
2273
|
|
|
2274
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2274
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2275
2275
|
:type execution_context: int | str | None
|
|
2276
2276
|
:type undo: bool | None
|
|
2277
2277
|
"""
|
|
2278
2278
|
|
|
2279
2279
|
def lightprobe_add(
|
|
2280
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2280
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2281
2281
|
execution_context: int | str | None = None,
|
|
2282
2282
|
undo: bool | None = None,
|
|
2283
2283
|
*,
|
|
@@ -2299,7 +2299,7 @@ def lightprobe_add(
|
|
|
2299
2299
|
):
|
|
2300
2300
|
"""Add a light probe object
|
|
2301
2301
|
|
|
2302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2302
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2303
2303
|
:type execution_context: int | str | None
|
|
2304
2304
|
:type undo: bool | None
|
|
2305
2305
|
:param type: Type
|
|
@@ -2337,7 +2337,7 @@ def lightprobe_add(
|
|
|
2337
2337
|
"""
|
|
2338
2338
|
|
|
2339
2339
|
def lightprobe_cache_bake(
|
|
2340
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2340
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2341
2341
|
execution_context: int | str | None = None,
|
|
2342
2342
|
undo: bool | None = None,
|
|
2343
2343
|
*,
|
|
@@ -2345,7 +2345,7 @@ def lightprobe_cache_bake(
|
|
|
2345
2345
|
):
|
|
2346
2346
|
"""Bake irradiance volume light cache
|
|
2347
2347
|
|
|
2348
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2348
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2349
2349
|
:type execution_context: int | str | None
|
|
2350
2350
|
:type undo: bool | None
|
|
2351
2351
|
:param subset: Subset, Subset of probes to update
|
|
@@ -2362,7 +2362,7 @@ def lightprobe_cache_bake(
|
|
|
2362
2362
|
"""
|
|
2363
2363
|
|
|
2364
2364
|
def lightprobe_cache_free(
|
|
2365
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2365
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2366
2366
|
execution_context: int | str | None = None,
|
|
2367
2367
|
undo: bool | None = None,
|
|
2368
2368
|
*,
|
|
@@ -2370,7 +2370,7 @@ def lightprobe_cache_free(
|
|
|
2370
2370
|
):
|
|
2371
2371
|
"""Delete cached indirect lighting
|
|
2372
2372
|
|
|
2373
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2373
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2374
2374
|
:type execution_context: int | str | None
|
|
2375
2375
|
:type undo: bool | None
|
|
2376
2376
|
:param subset: Subset, Subset of probes to update
|
|
@@ -2387,7 +2387,7 @@ def lightprobe_cache_free(
|
|
|
2387
2387
|
"""
|
|
2388
2388
|
|
|
2389
2389
|
def lineart_bake_strokes(
|
|
2390
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2390
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2391
2391
|
execution_context: int | str | None = None,
|
|
2392
2392
|
undo: bool | None = None,
|
|
2393
2393
|
*,
|
|
@@ -2395,7 +2395,7 @@ def lineart_bake_strokes(
|
|
|
2395
2395
|
):
|
|
2396
2396
|
"""Bake Line Art for current Grease Pencil object
|
|
2397
2397
|
|
|
2398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2398
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2399
2399
|
:type execution_context: int | str | None
|
|
2400
2400
|
:type undo: bool | None
|
|
2401
2401
|
:param bake_all: Bake All, Bake all line art modifiers
|
|
@@ -2403,7 +2403,7 @@ def lineart_bake_strokes(
|
|
|
2403
2403
|
"""
|
|
2404
2404
|
|
|
2405
2405
|
def lineart_clear(
|
|
2406
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2406
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2407
2407
|
execution_context: int | str | None = None,
|
|
2408
2408
|
undo: bool | None = None,
|
|
2409
2409
|
*,
|
|
@@ -2411,7 +2411,7 @@ def lineart_clear(
|
|
|
2411
2411
|
):
|
|
2412
2412
|
"""Clear all strokes in current Grease Pencil object
|
|
2413
2413
|
|
|
2414
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2414
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2415
2415
|
:type execution_context: int | str | None
|
|
2416
2416
|
:type undo: bool | None
|
|
2417
2417
|
:param clear_all: Clear All, Clear all line art modifier bakes
|
|
@@ -2419,7 +2419,7 @@ def lineart_clear(
|
|
|
2419
2419
|
"""
|
|
2420
2420
|
|
|
2421
2421
|
def link_to_collection(
|
|
2422
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2422
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2423
2423
|
execution_context: int | str | None = None,
|
|
2424
2424
|
undo: bool | None = None,
|
|
2425
2425
|
*,
|
|
@@ -2429,7 +2429,7 @@ def link_to_collection(
|
|
|
2429
2429
|
):
|
|
2430
2430
|
"""Link objects to a collection
|
|
2431
2431
|
|
|
2432
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2432
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2433
2433
|
:type execution_context: int | str | None
|
|
2434
2434
|
:type undo: bool | None
|
|
2435
2435
|
:param collection_index: Collection Index, Index of the collection to move to
|
|
@@ -2441,7 +2441,7 @@ def link_to_collection(
|
|
|
2441
2441
|
"""
|
|
2442
2442
|
|
|
2443
2443
|
def location_clear(
|
|
2444
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2444
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2445
2445
|
execution_context: int | str | None = None,
|
|
2446
2446
|
undo: bool | None = None,
|
|
2447
2447
|
*,
|
|
@@ -2449,7 +2449,7 @@ def location_clear(
|
|
|
2449
2449
|
):
|
|
2450
2450
|
"""Clear the object's location
|
|
2451
2451
|
|
|
2452
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2452
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2453
2453
|
:type execution_context: int | str | None
|
|
2454
2454
|
:type undo: bool | None
|
|
2455
2455
|
:param clear_delta: Clear Delta, Clear delta location in addition to clearing the normal location transform
|
|
@@ -2457,19 +2457,19 @@ def location_clear(
|
|
|
2457
2457
|
"""
|
|
2458
2458
|
|
|
2459
2459
|
def make_dupli_face(
|
|
2460
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2460
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2461
2461
|
execution_context: int | str | None = None,
|
|
2462
2462
|
undo: bool | None = None,
|
|
2463
2463
|
):
|
|
2464
2464
|
"""Convert objects into instanced faces
|
|
2465
2465
|
|
|
2466
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2466
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2467
2467
|
:type execution_context: int | str | None
|
|
2468
2468
|
:type undo: bool | None
|
|
2469
2469
|
"""
|
|
2470
2470
|
|
|
2471
2471
|
def make_links_data(
|
|
2472
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2472
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2473
2473
|
execution_context: int | str | None = None,
|
|
2474
2474
|
undo: bool | None = None,
|
|
2475
2475
|
*,
|
|
@@ -2487,7 +2487,7 @@ def make_links_data(
|
|
|
2487
2487
|
):
|
|
2488
2488
|
"""Transfer data from active object to selected objects
|
|
2489
2489
|
|
|
2490
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2490
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2491
2491
|
:type execution_context: int | str | None
|
|
2492
2492
|
:type undo: bool | None
|
|
2493
2493
|
:param type: Type
|
|
@@ -2519,7 +2519,7 @@ def make_links_data(
|
|
|
2519
2519
|
"""
|
|
2520
2520
|
|
|
2521
2521
|
def make_links_scene(
|
|
2522
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2522
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2523
2523
|
execution_context: int | str | None = None,
|
|
2524
2524
|
undo: bool | None = None,
|
|
2525
2525
|
*,
|
|
@@ -2527,7 +2527,7 @@ def make_links_scene(
|
|
|
2527
2527
|
):
|
|
2528
2528
|
"""Link selection to another scene
|
|
2529
2529
|
|
|
2530
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2530
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2531
2531
|
:type execution_context: int | str | None
|
|
2532
2532
|
:type undo: bool | None
|
|
2533
2533
|
:param scene: Scene
|
|
@@ -2535,7 +2535,7 @@ def make_links_scene(
|
|
|
2535
2535
|
"""
|
|
2536
2536
|
|
|
2537
2537
|
def make_local(
|
|
2538
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2538
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2539
2539
|
execution_context: int | str | None = None,
|
|
2540
2540
|
undo: bool | None = None,
|
|
2541
2541
|
*,
|
|
@@ -2546,7 +2546,7 @@ def make_local(
|
|
|
2546
2546
|
):
|
|
2547
2547
|
"""Make library linked data-blocks local to this file
|
|
2548
2548
|
|
|
2549
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2549
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2550
2550
|
:type execution_context: int | str | None
|
|
2551
2551
|
:type undo: bool | None
|
|
2552
2552
|
:param type: Type
|
|
@@ -2554,7 +2554,7 @@ def make_local(
|
|
|
2554
2554
|
"""
|
|
2555
2555
|
|
|
2556
2556
|
def make_override_library(
|
|
2557
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2557
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2558
2558
|
execution_context: int | str | None = None,
|
|
2559
2559
|
undo: bool | None = None,
|
|
2560
2560
|
*,
|
|
@@ -2562,7 +2562,7 @@ def make_override_library(
|
|
|
2562
2562
|
):
|
|
2563
2563
|
"""Create a local override of the selected linked objects, and their hierarchy of dependencies
|
|
2564
2564
|
|
|
2565
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2565
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2566
2566
|
:type execution_context: int | str | None
|
|
2567
2567
|
:type undo: bool | None
|
|
2568
2568
|
:param collection: Override Collection, Session UID of the directly linked collection containing the selected object, to make an override from
|
|
@@ -2570,7 +2570,7 @@ def make_override_library(
|
|
|
2570
2570
|
"""
|
|
2571
2571
|
|
|
2572
2572
|
def make_single_user(
|
|
2573
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2573
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2574
2574
|
execution_context: int | str | None = None,
|
|
2575
2575
|
undo: bool | None = None,
|
|
2576
2576
|
*,
|
|
@@ -2583,7 +2583,7 @@ def make_single_user(
|
|
|
2583
2583
|
):
|
|
2584
2584
|
"""Make linked data local to each object
|
|
2585
2585
|
|
|
2586
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2586
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2587
2587
|
:type execution_context: int | str | None
|
|
2588
2588
|
:type undo: bool | None
|
|
2589
2589
|
:param type: Type
|
|
@@ -2601,55 +2601,55 @@ def make_single_user(
|
|
|
2601
2601
|
"""
|
|
2602
2602
|
|
|
2603
2603
|
def material_slot_add(
|
|
2604
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2604
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2605
2605
|
execution_context: int | str | None = None,
|
|
2606
2606
|
undo: bool | None = None,
|
|
2607
2607
|
):
|
|
2608
2608
|
"""Add a new material slot
|
|
2609
2609
|
|
|
2610
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2610
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2611
2611
|
:type execution_context: int | str | None
|
|
2612
2612
|
:type undo: bool | None
|
|
2613
2613
|
"""
|
|
2614
2614
|
|
|
2615
2615
|
def material_slot_assign(
|
|
2616
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2616
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2617
2617
|
execution_context: int | str | None = None,
|
|
2618
2618
|
undo: bool | None = None,
|
|
2619
2619
|
):
|
|
2620
2620
|
"""Assign active material slot to selection
|
|
2621
2621
|
|
|
2622
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2622
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2623
2623
|
:type execution_context: int | str | None
|
|
2624
2624
|
:type undo: bool | None
|
|
2625
2625
|
"""
|
|
2626
2626
|
|
|
2627
2627
|
def material_slot_copy(
|
|
2628
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2628
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2629
2629
|
execution_context: int | str | None = None,
|
|
2630
2630
|
undo: bool | None = None,
|
|
2631
2631
|
):
|
|
2632
2632
|
"""Copy material to selected objects
|
|
2633
2633
|
|
|
2634
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2634
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2635
2635
|
:type execution_context: int | str | None
|
|
2636
2636
|
:type undo: bool | None
|
|
2637
2637
|
"""
|
|
2638
2638
|
|
|
2639
2639
|
def material_slot_deselect(
|
|
2640
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2640
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2641
2641
|
execution_context: int | str | None = None,
|
|
2642
2642
|
undo: bool | None = None,
|
|
2643
2643
|
):
|
|
2644
2644
|
"""Deselect by active material slot
|
|
2645
2645
|
|
|
2646
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2646
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2647
2647
|
:type execution_context: int | str | None
|
|
2648
2648
|
:type undo: bool | None
|
|
2649
2649
|
"""
|
|
2650
2650
|
|
|
2651
2651
|
def material_slot_move(
|
|
2652
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2652
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2653
2653
|
execution_context: int | str | None = None,
|
|
2654
2654
|
undo: bool | None = None,
|
|
2655
2655
|
*,
|
|
@@ -2657,7 +2657,7 @@ def material_slot_move(
|
|
|
2657
2657
|
):
|
|
2658
2658
|
"""Move the active material up/down in the list
|
|
2659
2659
|
|
|
2660
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2660
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2661
2661
|
:type execution_context: int | str | None
|
|
2662
2662
|
:type undo: bool | None
|
|
2663
2663
|
:param direction: Direction, Direction to move the active material towards
|
|
@@ -2665,43 +2665,43 @@ def material_slot_move(
|
|
|
2665
2665
|
"""
|
|
2666
2666
|
|
|
2667
2667
|
def material_slot_remove(
|
|
2668
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2668
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2669
2669
|
execution_context: int | str | None = None,
|
|
2670
2670
|
undo: bool | None = None,
|
|
2671
2671
|
):
|
|
2672
2672
|
"""Remove the selected material slot
|
|
2673
2673
|
|
|
2674
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2674
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2675
2675
|
:type execution_context: int | str | None
|
|
2676
2676
|
:type undo: bool | None
|
|
2677
2677
|
"""
|
|
2678
2678
|
|
|
2679
2679
|
def material_slot_remove_unused(
|
|
2680
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2680
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2681
2681
|
execution_context: int | str | None = None,
|
|
2682
2682
|
undo: bool | None = None,
|
|
2683
2683
|
):
|
|
2684
2684
|
"""Remove unused material slots
|
|
2685
2685
|
|
|
2686
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2686
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2687
2687
|
:type execution_context: int | str | None
|
|
2688
2688
|
:type undo: bool | None
|
|
2689
2689
|
"""
|
|
2690
2690
|
|
|
2691
2691
|
def material_slot_select(
|
|
2692
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2692
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2693
2693
|
execution_context: int | str | None = None,
|
|
2694
2694
|
undo: bool | None = None,
|
|
2695
2695
|
):
|
|
2696
2696
|
"""Select by active material slot
|
|
2697
2697
|
|
|
2698
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2698
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2699
2699
|
:type execution_context: int | str | None
|
|
2700
2700
|
:type undo: bool | None
|
|
2701
2701
|
"""
|
|
2702
2702
|
|
|
2703
2703
|
def meshdeform_bind(
|
|
2704
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2704
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2705
2705
|
execution_context: int | str | None = None,
|
|
2706
2706
|
undo: bool | None = None,
|
|
2707
2707
|
*,
|
|
@@ -2709,7 +2709,7 @@ def meshdeform_bind(
|
|
|
2709
2709
|
):
|
|
2710
2710
|
"""Bind mesh to cage in mesh deform modifier
|
|
2711
2711
|
|
|
2712
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2712
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2713
2713
|
:type execution_context: int | str | None
|
|
2714
2714
|
:type undo: bool | None
|
|
2715
2715
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2717,7 +2717,7 @@ def meshdeform_bind(
|
|
|
2717
2717
|
"""
|
|
2718
2718
|
|
|
2719
2719
|
def metaball_add(
|
|
2720
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2720
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2721
2721
|
execution_context: int | str | None = None,
|
|
2722
2722
|
undo: bool | None = None,
|
|
2723
2723
|
*,
|
|
@@ -2739,7 +2739,7 @@ def metaball_add(
|
|
|
2739
2739
|
):
|
|
2740
2740
|
"""Add an metaball object to the scene
|
|
2741
2741
|
|
|
2742
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2742
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2743
2743
|
:type execution_context: int | str | None
|
|
2744
2744
|
:type undo: bool | None
|
|
2745
2745
|
:param type: Primitive
|
|
@@ -2768,7 +2768,7 @@ def metaball_add(
|
|
|
2768
2768
|
"""
|
|
2769
2769
|
|
|
2770
2770
|
def mode_set(
|
|
2771
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2771
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2772
2772
|
execution_context: int | str | None = None,
|
|
2773
2773
|
undo: bool | None = None,
|
|
2774
2774
|
*,
|
|
@@ -2777,7 +2777,7 @@ def mode_set(
|
|
|
2777
2777
|
):
|
|
2778
2778
|
"""Sets the object interaction mode
|
|
2779
2779
|
|
|
2780
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2780
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2781
2781
|
:type execution_context: int | str | None
|
|
2782
2782
|
:type undo: bool | None
|
|
2783
2783
|
:param mode: Mode
|
|
@@ -2787,7 +2787,7 @@ def mode_set(
|
|
|
2787
2787
|
"""
|
|
2788
2788
|
|
|
2789
2789
|
def mode_set_with_submode(
|
|
2790
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2790
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2791
2791
|
execution_context: int | str | None = None,
|
|
2792
2792
|
undo: bool | None = None,
|
|
2793
2793
|
*,
|
|
@@ -2797,7 +2797,7 @@ def mode_set_with_submode(
|
|
|
2797
2797
|
):
|
|
2798
2798
|
"""Sets the object interaction mode
|
|
2799
2799
|
|
|
2800
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2800
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2801
2801
|
:type execution_context: int | str | None
|
|
2802
2802
|
:type undo: bool | None
|
|
2803
2803
|
:param mode: Mode
|
|
@@ -2809,7 +2809,7 @@ def mode_set_with_submode(
|
|
|
2809
2809
|
"""
|
|
2810
2810
|
|
|
2811
2811
|
def modifier_add(
|
|
2812
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2812
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2813
2813
|
execution_context: int | str | None = None,
|
|
2814
2814
|
undo: bool | None = None,
|
|
2815
2815
|
*,
|
|
@@ -2818,7 +2818,7 @@ def modifier_add(
|
|
|
2818
2818
|
):
|
|
2819
2819
|
"""Add a procedural operation/effect to the active object
|
|
2820
2820
|
|
|
2821
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2821
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2822
2822
|
:type execution_context: int | str | None
|
|
2823
2823
|
:type undo: bool | None
|
|
2824
2824
|
:param type: Type
|
|
@@ -2828,7 +2828,7 @@ def modifier_add(
|
|
|
2828
2828
|
"""
|
|
2829
2829
|
|
|
2830
2830
|
def modifier_add_node_group(
|
|
2831
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2831
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2832
2832
|
execution_context: int | str | None = None,
|
|
2833
2833
|
undo: bool | None = None,
|
|
2834
2834
|
*,
|
|
@@ -2840,7 +2840,7 @@ def modifier_add_node_group(
|
|
|
2840
2840
|
):
|
|
2841
2841
|
"""Add a procedural operation/effect to the active object
|
|
2842
2842
|
|
|
2843
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2843
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2844
2844
|
:type execution_context: int | str | None
|
|
2845
2845
|
:type undo: bool | None
|
|
2846
2846
|
:param asset_library_type: Asset Library Type
|
|
@@ -2856,7 +2856,7 @@ def modifier_add_node_group(
|
|
|
2856
2856
|
"""
|
|
2857
2857
|
|
|
2858
2858
|
def modifier_apply(
|
|
2859
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2859
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2860
2860
|
execution_context: int | str | None = None,
|
|
2861
2861
|
undo: bool | None = None,
|
|
2862
2862
|
*,
|
|
@@ -2868,7 +2868,7 @@ def modifier_apply(
|
|
|
2868
2868
|
):
|
|
2869
2869
|
"""Apply modifier and remove from the stack
|
|
2870
2870
|
|
|
2871
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2871
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2872
2872
|
:type execution_context: int | str | None
|
|
2873
2873
|
:type undo: bool | None
|
|
2874
2874
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2884,7 +2884,7 @@ def modifier_apply(
|
|
|
2884
2884
|
"""
|
|
2885
2885
|
|
|
2886
2886
|
def modifier_apply_as_shapekey(
|
|
2887
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2887
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2888
2888
|
execution_context: int | str | None = None,
|
|
2889
2889
|
undo: bool | None = None,
|
|
2890
2890
|
*,
|
|
@@ -2894,7 +2894,7 @@ def modifier_apply_as_shapekey(
|
|
|
2894
2894
|
):
|
|
2895
2895
|
"""Apply modifier as a new shape key and remove from the stack
|
|
2896
2896
|
|
|
2897
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2897
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2898
2898
|
:type execution_context: int | str | None
|
|
2899
2899
|
:type undo: bool | None
|
|
2900
2900
|
:param keep_modifier: Keep Modifier, Do not remove the modifier from stack
|
|
@@ -2906,7 +2906,7 @@ def modifier_apply_as_shapekey(
|
|
|
2906
2906
|
"""
|
|
2907
2907
|
|
|
2908
2908
|
def modifier_convert(
|
|
2909
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2909
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2910
2910
|
execution_context: int | str | None = None,
|
|
2911
2911
|
undo: bool | None = None,
|
|
2912
2912
|
*,
|
|
@@ -2914,7 +2914,7 @@ def modifier_convert(
|
|
|
2914
2914
|
):
|
|
2915
2915
|
"""Convert particles to a mesh object
|
|
2916
2916
|
|
|
2917
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2917
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2918
2918
|
:type execution_context: int | str | None
|
|
2919
2919
|
:type undo: bool | None
|
|
2920
2920
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2922,7 +2922,7 @@ def modifier_convert(
|
|
|
2922
2922
|
"""
|
|
2923
2923
|
|
|
2924
2924
|
def modifier_copy(
|
|
2925
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2925
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2926
2926
|
execution_context: int | str | None = None,
|
|
2927
2927
|
undo: bool | None = None,
|
|
2928
2928
|
*,
|
|
@@ -2931,7 +2931,7 @@ def modifier_copy(
|
|
|
2931
2931
|
):
|
|
2932
2932
|
"""Duplicate modifier at the same position in the stack
|
|
2933
2933
|
|
|
2934
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2934
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2935
2935
|
:type execution_context: int | str | None
|
|
2936
2936
|
:type undo: bool | None
|
|
2937
2937
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2941,7 +2941,7 @@ def modifier_copy(
|
|
|
2941
2941
|
"""
|
|
2942
2942
|
|
|
2943
2943
|
def modifier_copy_to_selected(
|
|
2944
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2944
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2945
2945
|
execution_context: int | str | None = None,
|
|
2946
2946
|
undo: bool | None = None,
|
|
2947
2947
|
*,
|
|
@@ -2949,7 +2949,7 @@ def modifier_copy_to_selected(
|
|
|
2949
2949
|
):
|
|
2950
2950
|
"""Copy the modifier from the active object to all selected objects
|
|
2951
2951
|
|
|
2952
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2952
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2953
2953
|
:type execution_context: int | str | None
|
|
2954
2954
|
:type undo: bool | None
|
|
2955
2955
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2957,7 +2957,7 @@ def modifier_copy_to_selected(
|
|
|
2957
2957
|
"""
|
|
2958
2958
|
|
|
2959
2959
|
def modifier_move_down(
|
|
2960
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2960
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2961
2961
|
execution_context: int | str | None = None,
|
|
2962
2962
|
undo: bool | None = None,
|
|
2963
2963
|
*,
|
|
@@ -2965,7 +2965,7 @@ def modifier_move_down(
|
|
|
2965
2965
|
):
|
|
2966
2966
|
"""Move modifier down in the stack
|
|
2967
2967
|
|
|
2968
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2968
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2969
2969
|
:type execution_context: int | str | None
|
|
2970
2970
|
:type undo: bool | None
|
|
2971
2971
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2973,7 +2973,7 @@ def modifier_move_down(
|
|
|
2973
2973
|
"""
|
|
2974
2974
|
|
|
2975
2975
|
def modifier_move_to_index(
|
|
2976
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2976
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2977
2977
|
execution_context: int | str | None = None,
|
|
2978
2978
|
undo: bool | None = None,
|
|
2979
2979
|
*,
|
|
@@ -2983,7 +2983,7 @@ def modifier_move_to_index(
|
|
|
2983
2983
|
):
|
|
2984
2984
|
"""Change the modifier's index in the stack so it evaluates after the set number of others
|
|
2985
2985
|
|
|
2986
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2986
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2987
2987
|
:type execution_context: int | str | None
|
|
2988
2988
|
:type undo: bool | None
|
|
2989
2989
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2995,7 +2995,7 @@ def modifier_move_to_index(
|
|
|
2995
2995
|
"""
|
|
2996
2996
|
|
|
2997
2997
|
def modifier_move_up(
|
|
2998
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2998
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2999
2999
|
execution_context: int | str | None = None,
|
|
3000
3000
|
undo: bool | None = None,
|
|
3001
3001
|
*,
|
|
@@ -3003,7 +3003,7 @@ def modifier_move_up(
|
|
|
3003
3003
|
):
|
|
3004
3004
|
"""Move modifier up in the stack
|
|
3005
3005
|
|
|
3006
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3006
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3007
3007
|
:type execution_context: int | str | None
|
|
3008
3008
|
:type undo: bool | None
|
|
3009
3009
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3011,7 +3011,7 @@ def modifier_move_up(
|
|
|
3011
3011
|
"""
|
|
3012
3012
|
|
|
3013
3013
|
def modifier_remove(
|
|
3014
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3014
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3015
3015
|
execution_context: int | str | None = None,
|
|
3016
3016
|
undo: bool | None = None,
|
|
3017
3017
|
*,
|
|
@@ -3021,7 +3021,7 @@ def modifier_remove(
|
|
|
3021
3021
|
):
|
|
3022
3022
|
"""Remove a modifier from the active object
|
|
3023
3023
|
|
|
3024
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3024
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3025
3025
|
:type execution_context: int | str | None
|
|
3026
3026
|
:type undo: bool | None
|
|
3027
3027
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3033,7 +3033,7 @@ def modifier_remove(
|
|
|
3033
3033
|
"""
|
|
3034
3034
|
|
|
3035
3035
|
def modifier_set_active(
|
|
3036
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3036
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3037
3037
|
execution_context: int | str | None = None,
|
|
3038
3038
|
undo: bool | None = None,
|
|
3039
3039
|
*,
|
|
@@ -3041,7 +3041,7 @@ def modifier_set_active(
|
|
|
3041
3041
|
):
|
|
3042
3042
|
"""Activate the modifier to use as the context
|
|
3043
3043
|
|
|
3044
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3044
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3045
3045
|
:type execution_context: int | str | None
|
|
3046
3046
|
:type undo: bool | None
|
|
3047
3047
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3049,31 +3049,31 @@ def modifier_set_active(
|
|
|
3049
3049
|
"""
|
|
3050
3050
|
|
|
3051
3051
|
def modifiers_clear(
|
|
3052
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3052
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3053
3053
|
execution_context: int | str | None = None,
|
|
3054
3054
|
undo: bool | None = None,
|
|
3055
3055
|
):
|
|
3056
3056
|
"""Clear all modifiers from the selected objects
|
|
3057
3057
|
|
|
3058
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3058
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3059
3059
|
:type execution_context: int | str | None
|
|
3060
3060
|
:type undo: bool | None
|
|
3061
3061
|
"""
|
|
3062
3062
|
|
|
3063
3063
|
def modifiers_copy_to_selected(
|
|
3064
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3064
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3065
3065
|
execution_context: int | str | None = None,
|
|
3066
3066
|
undo: bool | None = None,
|
|
3067
3067
|
):
|
|
3068
3068
|
"""Copy modifiers to other selected objects
|
|
3069
3069
|
|
|
3070
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3070
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3071
3071
|
:type execution_context: int | str | None
|
|
3072
3072
|
:type undo: bool | None
|
|
3073
3073
|
"""
|
|
3074
3074
|
|
|
3075
3075
|
def move_to_collection(
|
|
3076
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3076
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3077
3077
|
execution_context: int | str | None = None,
|
|
3078
3078
|
undo: bool | None = None,
|
|
3079
3079
|
*,
|
|
@@ -3083,7 +3083,7 @@ def move_to_collection(
|
|
|
3083
3083
|
):
|
|
3084
3084
|
"""Move objects to a collection
|
|
3085
3085
|
|
|
3086
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3086
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3087
3087
|
:type execution_context: int | str | None
|
|
3088
3088
|
:type undo: bool | None
|
|
3089
3089
|
:param collection_index: Collection Index, Index of the collection to move to
|
|
@@ -3095,7 +3095,7 @@ def move_to_collection(
|
|
|
3095
3095
|
"""
|
|
3096
3096
|
|
|
3097
3097
|
def multires_base_apply(
|
|
3098
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3098
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3099
3099
|
execution_context: int | str | None = None,
|
|
3100
3100
|
undo: bool | None = None,
|
|
3101
3101
|
*,
|
|
@@ -3103,7 +3103,7 @@ def multires_base_apply(
|
|
|
3103
3103
|
):
|
|
3104
3104
|
"""Modify the base mesh to conform to the displaced mesh
|
|
3105
3105
|
|
|
3106
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3106
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3107
3107
|
:type execution_context: int | str | None
|
|
3108
3108
|
:type undo: bool | None
|
|
3109
3109
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3111,19 +3111,19 @@ def multires_base_apply(
|
|
|
3111
3111
|
"""
|
|
3112
3112
|
|
|
3113
3113
|
def multires_external_pack(
|
|
3114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3114
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3115
3115
|
execution_context: int | str | None = None,
|
|
3116
3116
|
undo: bool | None = None,
|
|
3117
3117
|
):
|
|
3118
3118
|
"""Pack displacements from an external file
|
|
3119
3119
|
|
|
3120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3121
3121
|
:type execution_context: int | str | None
|
|
3122
3122
|
:type undo: bool | None
|
|
3123
3123
|
"""
|
|
3124
3124
|
|
|
3125
3125
|
def multires_external_save(
|
|
3126
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3127
3127
|
execution_context: int | str | None = None,
|
|
3128
3128
|
undo: bool | None = None,
|
|
3129
3129
|
*,
|
|
@@ -3158,7 +3158,7 @@ def multires_external_save(
|
|
|
3158
3158
|
):
|
|
3159
3159
|
"""Save displacements to an external file
|
|
3160
3160
|
|
|
3161
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3161
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3162
3162
|
:type execution_context: int | str | None
|
|
3163
3163
|
:type undo: bool | None
|
|
3164
3164
|
:param filepath: File Path, Path to file
|
|
@@ -3226,7 +3226,7 @@ def multires_external_save(
|
|
|
3226
3226
|
"""
|
|
3227
3227
|
|
|
3228
3228
|
def multires_higher_levels_delete(
|
|
3229
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3229
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3230
3230
|
execution_context: int | str | None = None,
|
|
3231
3231
|
undo: bool | None = None,
|
|
3232
3232
|
*,
|
|
@@ -3234,7 +3234,7 @@ def multires_higher_levels_delete(
|
|
|
3234
3234
|
):
|
|
3235
3235
|
"""Deletes the higher resolution mesh, potential loss of detail
|
|
3236
3236
|
|
|
3237
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3237
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3238
3238
|
:type execution_context: int | str | None
|
|
3239
3239
|
:type undo: bool | None
|
|
3240
3240
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3242,7 +3242,7 @@ def multires_higher_levels_delete(
|
|
|
3242
3242
|
"""
|
|
3243
3243
|
|
|
3244
3244
|
def multires_rebuild_subdiv(
|
|
3245
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3245
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3246
3246
|
execution_context: int | str | None = None,
|
|
3247
3247
|
undo: bool | None = None,
|
|
3248
3248
|
*,
|
|
@@ -3250,7 +3250,7 @@ def multires_rebuild_subdiv(
|
|
|
3250
3250
|
):
|
|
3251
3251
|
"""Rebuilds all possible subdivisions levels to generate a lower resolution base mesh
|
|
3252
3252
|
|
|
3253
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3253
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3254
3254
|
:type execution_context: int | str | None
|
|
3255
3255
|
:type undo: bool | None
|
|
3256
3256
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3258,7 +3258,7 @@ def multires_rebuild_subdiv(
|
|
|
3258
3258
|
"""
|
|
3259
3259
|
|
|
3260
3260
|
def multires_reshape(
|
|
3261
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3261
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3262
3262
|
execution_context: int | str | None = None,
|
|
3263
3263
|
undo: bool | None = None,
|
|
3264
3264
|
*,
|
|
@@ -3266,7 +3266,7 @@ def multires_reshape(
|
|
|
3266
3266
|
):
|
|
3267
3267
|
"""Copy vertex coordinates from other object
|
|
3268
3268
|
|
|
3269
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3269
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3270
3270
|
:type execution_context: int | str | None
|
|
3271
3271
|
:type undo: bool | None
|
|
3272
3272
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3274,7 +3274,7 @@ def multires_reshape(
|
|
|
3274
3274
|
"""
|
|
3275
3275
|
|
|
3276
3276
|
def multires_subdivide(
|
|
3277
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3277
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3278
3278
|
execution_context: int | str | None = None,
|
|
3279
3279
|
undo: bool | None = None,
|
|
3280
3280
|
*,
|
|
@@ -3283,7 +3283,7 @@ def multires_subdivide(
|
|
|
3283
3283
|
):
|
|
3284
3284
|
"""Add a new level of subdivision
|
|
3285
3285
|
|
|
3286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3287
3287
|
:type execution_context: int | str | None
|
|
3288
3288
|
:type undo: bool | None
|
|
3289
3289
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3302,7 +3302,7 @@ def multires_subdivide(
|
|
|
3302
3302
|
"""
|
|
3303
3303
|
|
|
3304
3304
|
def multires_unsubdivide(
|
|
3305
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3305
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3306
3306
|
execution_context: int | str | None = None,
|
|
3307
3307
|
undo: bool | None = None,
|
|
3308
3308
|
*,
|
|
@@ -3310,7 +3310,7 @@ def multires_unsubdivide(
|
|
|
3310
3310
|
):
|
|
3311
3311
|
"""Rebuild a lower subdivision level of the current base mesh
|
|
3312
3312
|
|
|
3313
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3313
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3314
3314
|
:type execution_context: int | str | None
|
|
3315
3315
|
:type undo: bool | None
|
|
3316
3316
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3318,7 +3318,7 @@ def multires_unsubdivide(
|
|
|
3318
3318
|
"""
|
|
3319
3319
|
|
|
3320
3320
|
def ocean_bake(
|
|
3321
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3321
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3322
3322
|
execution_context: int | str | None = None,
|
|
3323
3323
|
undo: bool | None = None,
|
|
3324
3324
|
*,
|
|
@@ -3327,7 +3327,7 @@ def ocean_bake(
|
|
|
3327
3327
|
):
|
|
3328
3328
|
"""Bake an image sequence of ocean data
|
|
3329
3329
|
|
|
3330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3330
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3331
3331
|
:type execution_context: int | str | None
|
|
3332
3332
|
:type undo: bool | None
|
|
3333
3333
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3337,19 +3337,19 @@ def ocean_bake(
|
|
|
3337
3337
|
"""
|
|
3338
3338
|
|
|
3339
3339
|
def origin_clear(
|
|
3340
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3340
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3341
3341
|
execution_context: int | str | None = None,
|
|
3342
3342
|
undo: bool | None = None,
|
|
3343
3343
|
):
|
|
3344
3344
|
"""Clear the object's origin
|
|
3345
3345
|
|
|
3346
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3346
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3347
3347
|
:type execution_context: int | str | None
|
|
3348
3348
|
:type undo: bool | None
|
|
3349
3349
|
"""
|
|
3350
3350
|
|
|
3351
3351
|
def origin_set(
|
|
3352
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3352
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3353
3353
|
execution_context: int | str | None = None,
|
|
3354
3354
|
undo: bool | None = None,
|
|
3355
3355
|
*,
|
|
@@ -3365,7 +3365,7 @@ def origin_set(
|
|
|
3365
3365
|
):
|
|
3366
3366
|
"""Set the object's origin, by either moving the data, or set to center of data, or use 3D cursor
|
|
3367
3367
|
|
|
3368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3368
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3369
3369
|
:type execution_context: int | str | None
|
|
3370
3370
|
:type undo: bool | None
|
|
3371
3371
|
:param type: Type
|
|
@@ -3390,7 +3390,7 @@ def origin_set(
|
|
|
3390
3390
|
"""
|
|
3391
3391
|
|
|
3392
3392
|
def parent_clear(
|
|
3393
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3393
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3394
3394
|
execution_context: int | str | None = None,
|
|
3395
3395
|
undo: bool | None = None,
|
|
3396
3396
|
*,
|
|
@@ -3399,7 +3399,7 @@ def parent_clear(
|
|
|
3399
3399
|
):
|
|
3400
3400
|
"""Clear the object's parenting
|
|
3401
3401
|
|
|
3402
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3402
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3403
3403
|
:type execution_context: int | str | None
|
|
3404
3404
|
:type undo: bool | None
|
|
3405
3405
|
:param type: Type
|
|
@@ -3416,19 +3416,19 @@ def parent_clear(
|
|
|
3416
3416
|
"""
|
|
3417
3417
|
|
|
3418
3418
|
def parent_inverse_apply(
|
|
3419
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3419
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3420
3420
|
execution_context: int | str | None = None,
|
|
3421
3421
|
undo: bool | None = None,
|
|
3422
3422
|
):
|
|
3423
3423
|
"""Apply the object's parent inverse to its data
|
|
3424
3424
|
|
|
3425
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3425
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3426
3426
|
:type execution_context: int | str | None
|
|
3427
3427
|
:type undo: bool | None
|
|
3428
3428
|
"""
|
|
3429
3429
|
|
|
3430
3430
|
def parent_no_inverse_set(
|
|
3431
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3431
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3432
3432
|
execution_context: int | str | None = None,
|
|
3433
3433
|
undo: bool | None = None,
|
|
3434
3434
|
*,
|
|
@@ -3436,7 +3436,7 @@ def parent_no_inverse_set(
|
|
|
3436
3436
|
):
|
|
3437
3437
|
"""Set the object's parenting without setting the inverse parent correction
|
|
3438
3438
|
|
|
3439
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3439
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3440
3440
|
:type execution_context: int | str | None
|
|
3441
3441
|
:type undo: bool | None
|
|
3442
3442
|
:param keep_transform: Keep Transform, Preserve the world transform throughout parenting
|
|
@@ -3444,7 +3444,7 @@ def parent_no_inverse_set(
|
|
|
3444
3444
|
"""
|
|
3445
3445
|
|
|
3446
3446
|
def parent_set(
|
|
3447
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3448
3448
|
execution_context: int | str | None = None,
|
|
3449
3449
|
undo: bool | None = None,
|
|
3450
3450
|
*,
|
|
@@ -3469,7 +3469,7 @@ def parent_set(
|
|
|
3469
3469
|
):
|
|
3470
3470
|
"""Set the object's parenting
|
|
3471
3471
|
|
|
3472
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3472
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3473
3473
|
:type execution_context: int | str | None
|
|
3474
3474
|
:type undo: bool | None
|
|
3475
3475
|
:param type: Type
|
|
@@ -3481,31 +3481,31 @@ def parent_set(
|
|
|
3481
3481
|
"""
|
|
3482
3482
|
|
|
3483
3483
|
def particle_system_add(
|
|
3484
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3484
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3485
3485
|
execution_context: int | str | None = None,
|
|
3486
3486
|
undo: bool | None = None,
|
|
3487
3487
|
):
|
|
3488
3488
|
"""Add a particle system
|
|
3489
3489
|
|
|
3490
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3490
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3491
3491
|
:type execution_context: int | str | None
|
|
3492
3492
|
:type undo: bool | None
|
|
3493
3493
|
"""
|
|
3494
3494
|
|
|
3495
3495
|
def particle_system_remove(
|
|
3496
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3496
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3497
3497
|
execution_context: int | str | None = None,
|
|
3498
3498
|
undo: bool | None = None,
|
|
3499
3499
|
):
|
|
3500
3500
|
"""Remove the selected particle system
|
|
3501
3501
|
|
|
3502
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3502
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3503
3503
|
:type execution_context: int | str | None
|
|
3504
3504
|
:type undo: bool | None
|
|
3505
3505
|
"""
|
|
3506
3506
|
|
|
3507
3507
|
def paths_calculate(
|
|
3508
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3508
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3509
3509
|
execution_context: int | str | None = None,
|
|
3510
3510
|
undo: bool | None = None,
|
|
3511
3511
|
*,
|
|
@@ -3514,7 +3514,7 @@ def paths_calculate(
|
|
|
3514
3514
|
):
|
|
3515
3515
|
"""Generate motion paths for the selected objects
|
|
3516
3516
|
|
|
3517
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3517
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3518
3518
|
:type execution_context: int | str | None
|
|
3519
3519
|
:type undo: bool | None
|
|
3520
3520
|
:param display_type: Display type
|
|
@@ -3524,7 +3524,7 @@ def paths_calculate(
|
|
|
3524
3524
|
"""
|
|
3525
3525
|
|
|
3526
3526
|
def paths_clear(
|
|
3527
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3527
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3528
3528
|
execution_context: int | str | None = None,
|
|
3529
3529
|
undo: bool | None = None,
|
|
3530
3530
|
*,
|
|
@@ -3532,7 +3532,7 @@ def paths_clear(
|
|
|
3532
3532
|
):
|
|
3533
3533
|
"""Undocumented, consider contributing.
|
|
3534
3534
|
|
|
3535
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3535
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3536
3536
|
:type execution_context: int | str | None
|
|
3537
3537
|
:type undo: bool | None
|
|
3538
3538
|
:param only_selected: Only Selected, Only clear motion paths of selected objects
|
|
@@ -3540,31 +3540,31 @@ def paths_clear(
|
|
|
3540
3540
|
"""
|
|
3541
3541
|
|
|
3542
3542
|
def paths_update(
|
|
3543
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3543
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3544
3544
|
execution_context: int | str | None = None,
|
|
3545
3545
|
undo: bool | None = None,
|
|
3546
3546
|
):
|
|
3547
3547
|
"""Recalculate motion paths for selected objects
|
|
3548
3548
|
|
|
3549
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3549
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3550
3550
|
:type execution_context: int | str | None
|
|
3551
3551
|
:type undo: bool | None
|
|
3552
3552
|
"""
|
|
3553
3553
|
|
|
3554
3554
|
def paths_update_visible(
|
|
3555
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3555
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3556
3556
|
execution_context: int | str | None = None,
|
|
3557
3557
|
undo: bool | None = None,
|
|
3558
3558
|
):
|
|
3559
3559
|
"""Recalculate all visible motion paths for objects and poses
|
|
3560
3560
|
|
|
3561
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3561
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3562
3562
|
:type execution_context: int | str | None
|
|
3563
3563
|
:type undo: bool | None
|
|
3564
3564
|
"""
|
|
3565
3565
|
|
|
3566
3566
|
def pointcloud_add(
|
|
3567
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3567
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3568
3568
|
execution_context: int | str | None = None,
|
|
3569
3569
|
undo: bool | None = None,
|
|
3570
3570
|
*,
|
|
@@ -3583,7 +3583,7 @@ def pointcloud_add(
|
|
|
3583
3583
|
):
|
|
3584
3584
|
"""Add a point cloud object to the scene
|
|
3585
3585
|
|
|
3586
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3586
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3587
3587
|
:type execution_context: int | str | None
|
|
3588
3588
|
:type undo: bool | None
|
|
3589
3589
|
:param align: Align, The alignment of the new object
|
|
@@ -3606,19 +3606,19 @@ def pointcloud_add(
|
|
|
3606
3606
|
"""
|
|
3607
3607
|
|
|
3608
3608
|
def posemode_toggle(
|
|
3609
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3609
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3610
3610
|
execution_context: int | str | None = None,
|
|
3611
3611
|
undo: bool | None = None,
|
|
3612
3612
|
):
|
|
3613
3613
|
"""Enable or disable posing/selecting bones
|
|
3614
3614
|
|
|
3615
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3615
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3616
3616
|
:type execution_context: int | str | None
|
|
3617
3617
|
:type undo: bool | None
|
|
3618
3618
|
"""
|
|
3619
3619
|
|
|
3620
3620
|
def quadriflow_remesh(
|
|
3621
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3621
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3622
3622
|
execution_context: int | str | None = None,
|
|
3623
3623
|
undo: bool | None = None,
|
|
3624
3624
|
*,
|
|
@@ -3636,7 +3636,7 @@ def quadriflow_remesh(
|
|
|
3636
3636
|
):
|
|
3637
3637
|
"""Create a new quad based mesh using the surface data of the current mesh. All data layers will be lost
|
|
3638
3638
|
|
|
3639
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3639
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3640
3640
|
:type execution_context: int | str | None
|
|
3641
3641
|
:type undo: bool | None
|
|
3642
3642
|
:param use_mesh_symmetry: Use Mesh Symmetry, Generates a symmetrical mesh using the mesh symmetry configuration
|
|
@@ -3673,7 +3673,7 @@ def quadriflow_remesh(
|
|
|
3673
3673
|
"""
|
|
3674
3674
|
|
|
3675
3675
|
def quick_explode(
|
|
3676
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3676
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3677
3677
|
execution_context: int | str | None = None,
|
|
3678
3678
|
undo: bool | None = None,
|
|
3679
3679
|
*,
|
|
@@ -3687,7 +3687,7 @@ def quick_explode(
|
|
|
3687
3687
|
):
|
|
3688
3688
|
"""Make selected objects explode
|
|
3689
3689
|
|
|
3690
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3690
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3691
3691
|
:type execution_context: int | str | None
|
|
3692
3692
|
:type undo: bool | None
|
|
3693
3693
|
:param style: Explode Style
|
|
@@ -3707,7 +3707,7 @@ def quick_explode(
|
|
|
3707
3707
|
"""
|
|
3708
3708
|
|
|
3709
3709
|
def quick_fur(
|
|
3710
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3710
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3711
3711
|
execution_context: int | str | None = None,
|
|
3712
3712
|
undo: bool | None = None,
|
|
3713
3713
|
*,
|
|
@@ -3721,7 +3721,7 @@ def quick_fur(
|
|
|
3721
3721
|
):
|
|
3722
3722
|
"""Add a fur setup to the selected objects
|
|
3723
3723
|
|
|
3724
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3724
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3725
3725
|
:type execution_context: int | str | None
|
|
3726
3726
|
:type undo: bool | None
|
|
3727
3727
|
:param density: Density
|
|
@@ -3741,7 +3741,7 @@ def quick_fur(
|
|
|
3741
3741
|
"""
|
|
3742
3742
|
|
|
3743
3743
|
def quick_liquid(
|
|
3744
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3744
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3745
3745
|
execution_context: int | str | None = None,
|
|
3746
3746
|
undo: bool | None = None,
|
|
3747
3747
|
*,
|
|
@@ -3749,7 +3749,7 @@ def quick_liquid(
|
|
|
3749
3749
|
):
|
|
3750
3750
|
"""Make selected objects liquid
|
|
3751
3751
|
|
|
3752
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3752
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3753
3753
|
:type execution_context: int | str | None
|
|
3754
3754
|
:type undo: bool | None
|
|
3755
3755
|
:param show_flows: Render Liquid Objects, Keep the liquid objects visible during rendering
|
|
@@ -3757,7 +3757,7 @@ def quick_liquid(
|
|
|
3757
3757
|
"""
|
|
3758
3758
|
|
|
3759
3759
|
def quick_smoke(
|
|
3760
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3760
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3761
3761
|
execution_context: int | str | None = None,
|
|
3762
3762
|
undo: bool | None = None,
|
|
3763
3763
|
*,
|
|
@@ -3766,7 +3766,7 @@ def quick_smoke(
|
|
|
3766
3766
|
):
|
|
3767
3767
|
"""Use selected objects as smoke emitters
|
|
3768
3768
|
|
|
3769
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3769
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3770
3770
|
:type execution_context: int | str | None
|
|
3771
3771
|
:type undo: bool | None
|
|
3772
3772
|
:param style: Smoke Style
|
|
@@ -3776,7 +3776,7 @@ def quick_smoke(
|
|
|
3776
3776
|
"""
|
|
3777
3777
|
|
|
3778
3778
|
def randomize_transform(
|
|
3779
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3779
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3780
3780
|
execution_context: int | str | None = None,
|
|
3781
3781
|
undo: bool | None = None,
|
|
3782
3782
|
*,
|
|
@@ -3792,7 +3792,7 @@ def randomize_transform(
|
|
|
3792
3792
|
):
|
|
3793
3793
|
"""Randomize objects location, rotation, and scale
|
|
3794
3794
|
|
|
3795
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3795
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3796
3796
|
:type execution_context: int | str | None
|
|
3797
3797
|
:type undo: bool | None
|
|
3798
3798
|
:param random_seed: Random Seed, Seed value for the random generator
|
|
@@ -3816,19 +3816,19 @@ def randomize_transform(
|
|
|
3816
3816
|
"""
|
|
3817
3817
|
|
|
3818
3818
|
def reset_override_library(
|
|
3819
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3819
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3820
3820
|
execution_context: int | str | None = None,
|
|
3821
3821
|
undo: bool | None = None,
|
|
3822
3822
|
):
|
|
3823
3823
|
"""Reset the selected local overrides to their linked references values
|
|
3824
3824
|
|
|
3825
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3825
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3826
3826
|
:type execution_context: int | str | None
|
|
3827
3827
|
:type undo: bool | None
|
|
3828
3828
|
"""
|
|
3829
3829
|
|
|
3830
3830
|
def rotation_clear(
|
|
3831
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3831
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3832
3832
|
execution_context: int | str | None = None,
|
|
3833
3833
|
undo: bool | None = None,
|
|
3834
3834
|
*,
|
|
@@ -3836,7 +3836,7 @@ def rotation_clear(
|
|
|
3836
3836
|
):
|
|
3837
3837
|
"""Clear the object's rotation
|
|
3838
3838
|
|
|
3839
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3839
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3840
3840
|
:type execution_context: int | str | None
|
|
3841
3841
|
:type undo: bool | None
|
|
3842
3842
|
:param clear_delta: Clear Delta, Clear delta rotation in addition to clearing the normal rotation transform
|
|
@@ -3844,7 +3844,7 @@ def rotation_clear(
|
|
|
3844
3844
|
"""
|
|
3845
3845
|
|
|
3846
3846
|
def scale_clear(
|
|
3847
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3847
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3848
3848
|
execution_context: int | str | None = None,
|
|
3849
3849
|
undo: bool | None = None,
|
|
3850
3850
|
*,
|
|
@@ -3852,7 +3852,7 @@ def scale_clear(
|
|
|
3852
3852
|
):
|
|
3853
3853
|
"""Clear the object's scale
|
|
3854
3854
|
|
|
3855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3856
3856
|
:type execution_context: int | str | None
|
|
3857
3857
|
:type undo: bool | None
|
|
3858
3858
|
:param clear_delta: Clear Delta, Clear delta scale in addition to clearing the normal scale transform
|
|
@@ -3860,7 +3860,7 @@ def scale_clear(
|
|
|
3860
3860
|
"""
|
|
3861
3861
|
|
|
3862
3862
|
def select_all(
|
|
3863
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3863
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3864
3864
|
execution_context: int | str | None = None,
|
|
3865
3865
|
undo: bool | None = None,
|
|
3866
3866
|
*,
|
|
@@ -3868,7 +3868,7 @@ def select_all(
|
|
|
3868
3868
|
):
|
|
3869
3869
|
"""Change selection of all visible objects in scene
|
|
3870
3870
|
|
|
3871
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3871
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3872
3872
|
:type execution_context: int | str | None
|
|
3873
3873
|
:type undo: bool | None
|
|
3874
3874
|
:param action: Action, Selection action to execute
|
|
@@ -3888,7 +3888,7 @@ def select_all(
|
|
|
3888
3888
|
"""
|
|
3889
3889
|
|
|
3890
3890
|
def select_by_type(
|
|
3891
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3891
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3892
3892
|
execution_context: int | str | None = None,
|
|
3893
3893
|
undo: bool | None = None,
|
|
3894
3894
|
*,
|
|
@@ -3897,7 +3897,7 @@ def select_by_type(
|
|
|
3897
3897
|
):
|
|
3898
3898
|
"""Select all visible objects that are of a type
|
|
3899
3899
|
|
|
3900
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3900
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3901
3901
|
:type execution_context: int | str | None
|
|
3902
3902
|
:type undo: bool | None
|
|
3903
3903
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -3907,7 +3907,7 @@ def select_by_type(
|
|
|
3907
3907
|
"""
|
|
3908
3908
|
|
|
3909
3909
|
def select_camera(
|
|
3910
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3910
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3911
3911
|
execution_context: int | str | None = None,
|
|
3912
3912
|
undo: bool | None = None,
|
|
3913
3913
|
*,
|
|
@@ -3915,7 +3915,7 @@ def select_camera(
|
|
|
3915
3915
|
):
|
|
3916
3916
|
"""Select the active camera
|
|
3917
3917
|
|
|
3918
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3918
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3919
3919
|
:type execution_context: int | str | None
|
|
3920
3920
|
:type undo: bool | None
|
|
3921
3921
|
:param extend: Extend, Extend the selection
|
|
@@ -3923,7 +3923,7 @@ def select_camera(
|
|
|
3923
3923
|
"""
|
|
3924
3924
|
|
|
3925
3925
|
def select_grouped(
|
|
3926
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3926
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3927
3927
|
execution_context: int | str | None = None,
|
|
3928
3928
|
undo: bool | None = None,
|
|
3929
3929
|
*,
|
|
@@ -3945,7 +3945,7 @@ def select_grouped(
|
|
|
3945
3945
|
):
|
|
3946
3946
|
"""Select all visible objects grouped by various properties
|
|
3947
3947
|
|
|
3948
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3948
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3949
3949
|
:type execution_context: int | str | None
|
|
3950
3950
|
:type undo: bool | None
|
|
3951
3951
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -3988,7 +3988,7 @@ def select_grouped(
|
|
|
3988
3988
|
"""
|
|
3989
3989
|
|
|
3990
3990
|
def select_hierarchy(
|
|
3991
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3991
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3992
3992
|
execution_context: int | str | None = None,
|
|
3993
3993
|
undo: bool | None = None,
|
|
3994
3994
|
*,
|
|
@@ -3997,7 +3997,7 @@ def select_hierarchy(
|
|
|
3997
3997
|
):
|
|
3998
3998
|
"""Select object relative to the active object's position in the hierarchy
|
|
3999
3999
|
|
|
4000
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4000
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4001
4001
|
:type execution_context: int | str | None
|
|
4002
4002
|
:type undo: bool | None
|
|
4003
4003
|
:param direction: Direction, Direction to select in the hierarchy
|
|
@@ -4007,19 +4007,19 @@ def select_hierarchy(
|
|
|
4007
4007
|
"""
|
|
4008
4008
|
|
|
4009
4009
|
def select_less(
|
|
4010
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4010
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4011
4011
|
execution_context: int | str | None = None,
|
|
4012
4012
|
undo: bool | None = None,
|
|
4013
4013
|
):
|
|
4014
4014
|
"""Deselect objects at the boundaries of parent/child relationships
|
|
4015
4015
|
|
|
4016
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4016
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4017
4017
|
:type execution_context: int | str | None
|
|
4018
4018
|
:type undo: bool | None
|
|
4019
4019
|
"""
|
|
4020
4020
|
|
|
4021
4021
|
def select_linked(
|
|
4022
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4022
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4023
4023
|
execution_context: int | str | None = None,
|
|
4024
4024
|
undo: bool | None = None,
|
|
4025
4025
|
*,
|
|
@@ -4031,7 +4031,7 @@ def select_linked(
|
|
|
4031
4031
|
):
|
|
4032
4032
|
"""Select all visible objects that are linked
|
|
4033
4033
|
|
|
4034
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4034
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4035
4035
|
:type execution_context: int | str | None
|
|
4036
4036
|
:type undo: bool | None
|
|
4037
4037
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4041,7 +4041,7 @@ def select_linked(
|
|
|
4041
4041
|
"""
|
|
4042
4042
|
|
|
4043
4043
|
def select_mirror(
|
|
4044
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4044
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4045
4045
|
execution_context: int | str | None = None,
|
|
4046
4046
|
undo: bool | None = None,
|
|
4047
4047
|
*,
|
|
@@ -4049,7 +4049,7 @@ def select_mirror(
|
|
|
4049
4049
|
):
|
|
4050
4050
|
"""Select the mirror objects of the selected object e.g. "L.sword" and "R.sword"
|
|
4051
4051
|
|
|
4052
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4052
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4053
4053
|
:type execution_context: int | str | None
|
|
4054
4054
|
:type undo: bool | None
|
|
4055
4055
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4057,19 +4057,19 @@ def select_mirror(
|
|
|
4057
4057
|
"""
|
|
4058
4058
|
|
|
4059
4059
|
def select_more(
|
|
4060
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4060
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4061
4061
|
execution_context: int | str | None = None,
|
|
4062
4062
|
undo: bool | None = None,
|
|
4063
4063
|
):
|
|
4064
4064
|
"""Select connected parent/child objects
|
|
4065
4065
|
|
|
4066
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4066
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4067
4067
|
:type execution_context: int | str | None
|
|
4068
4068
|
:type undo: bool | None
|
|
4069
4069
|
"""
|
|
4070
4070
|
|
|
4071
4071
|
def select_pattern(
|
|
4072
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4072
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4073
4073
|
execution_context: int | str | None = None,
|
|
4074
4074
|
undo: bool | None = None,
|
|
4075
4075
|
*,
|
|
@@ -4079,7 +4079,7 @@ def select_pattern(
|
|
|
4079
4079
|
):
|
|
4080
4080
|
"""Select objects matching a naming pattern
|
|
4081
4081
|
|
|
4082
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4082
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4083
4083
|
:type execution_context: int | str | None
|
|
4084
4084
|
:type undo: bool | None
|
|
4085
4085
|
:param pattern: Pattern, Name filter using '*', '?' and '[abc]' unix style wildcards
|
|
@@ -4091,7 +4091,7 @@ def select_pattern(
|
|
|
4091
4091
|
"""
|
|
4092
4092
|
|
|
4093
4093
|
def select_random(
|
|
4094
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4094
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4095
4095
|
execution_context: int | str | None = None,
|
|
4096
4096
|
undo: bool | None = None,
|
|
4097
4097
|
*,
|
|
@@ -4101,7 +4101,7 @@ def select_random(
|
|
|
4101
4101
|
):
|
|
4102
4102
|
"""Select or deselect random visible objects
|
|
4103
4103
|
|
|
4104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4104
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4105
4105
|
:type execution_context: int | str | None
|
|
4106
4106
|
:type undo: bool | None
|
|
4107
4107
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -4119,7 +4119,7 @@ def select_random(
|
|
|
4119
4119
|
"""
|
|
4120
4120
|
|
|
4121
4121
|
def select_same_collection(
|
|
4122
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4122
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4123
4123
|
execution_context: int | str | None = None,
|
|
4124
4124
|
undo: bool | None = None,
|
|
4125
4125
|
*,
|
|
@@ -4127,7 +4127,7 @@ def select_same_collection(
|
|
|
4127
4127
|
):
|
|
4128
4128
|
"""Select object in the same collection
|
|
4129
4129
|
|
|
4130
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4130
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4131
4131
|
:type execution_context: int | str | None
|
|
4132
4132
|
:type undo: bool | None
|
|
4133
4133
|
:param collection: Collection, Name of the collection to select
|
|
@@ -4135,7 +4135,7 @@ def select_same_collection(
|
|
|
4135
4135
|
"""
|
|
4136
4136
|
|
|
4137
4137
|
def shade_auto_smooth(
|
|
4138
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4139
4139
|
execution_context: int | str | None = None,
|
|
4140
4140
|
undo: bool | None = None,
|
|
4141
4141
|
*,
|
|
@@ -4144,7 +4144,7 @@ def shade_auto_smooth(
|
|
|
4144
4144
|
):
|
|
4145
4145
|
"""Add modifier to automatically set the sharpness of mesh edges based on the angle between the neighboring faces
|
|
4146
4146
|
|
|
4147
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4147
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4148
4148
|
:type execution_context: int | str | None
|
|
4149
4149
|
:type undo: bool | None
|
|
4150
4150
|
:param use_auto_smooth: Auto Smooth, Add modifier to set edge sharpness automatically
|
|
@@ -4154,7 +4154,7 @@ def shade_auto_smooth(
|
|
|
4154
4154
|
"""
|
|
4155
4155
|
|
|
4156
4156
|
def shade_flat(
|
|
4157
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4157
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4158
4158
|
execution_context: int | str | None = None,
|
|
4159
4159
|
undo: bool | None = None,
|
|
4160
4160
|
*,
|
|
@@ -4162,7 +4162,7 @@ def shade_flat(
|
|
|
4162
4162
|
):
|
|
4163
4163
|
"""Render and display faces uniform, using face normals
|
|
4164
4164
|
|
|
4165
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4165
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4166
4166
|
:type execution_context: int | str | None
|
|
4167
4167
|
:type undo: bool | None
|
|
4168
4168
|
:param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges, which are redundant with faces shaded smooth
|
|
@@ -4170,7 +4170,7 @@ def shade_flat(
|
|
|
4170
4170
|
"""
|
|
4171
4171
|
|
|
4172
4172
|
def shade_smooth(
|
|
4173
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4173
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4174
4174
|
execution_context: int | str | None = None,
|
|
4175
4175
|
undo: bool | None = None,
|
|
4176
4176
|
*,
|
|
@@ -4178,7 +4178,7 @@ def shade_smooth(
|
|
|
4178
4178
|
):
|
|
4179
4179
|
"""Render and display faces smooth, using interpolated vertex normals
|
|
4180
4180
|
|
|
4181
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4181
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4182
4182
|
:type execution_context: int | str | None
|
|
4183
4183
|
:type undo: bool | None
|
|
4184
4184
|
:param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges. Tagged edges will remain sharp
|
|
@@ -4186,7 +4186,7 @@ def shade_smooth(
|
|
|
4186
4186
|
"""
|
|
4187
4187
|
|
|
4188
4188
|
def shade_smooth_by_angle(
|
|
4189
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4189
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4190
4190
|
execution_context: int | str | None = None,
|
|
4191
4191
|
undo: bool | None = None,
|
|
4192
4192
|
*,
|
|
@@ -4195,7 +4195,7 @@ def shade_smooth_by_angle(
|
|
|
4195
4195
|
):
|
|
4196
4196
|
"""Set the sharpness of mesh edges based on the angle between the neighboring faces
|
|
4197
4197
|
|
|
4198
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4198
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4199
4199
|
:type execution_context: int | str | None
|
|
4200
4200
|
:type undo: bool | None
|
|
4201
4201
|
:param angle: Angle, Maximum angle between face normals that will be considered as smooth
|
|
@@ -4205,7 +4205,7 @@ def shade_smooth_by_angle(
|
|
|
4205
4205
|
"""
|
|
4206
4206
|
|
|
4207
4207
|
def shaderfx_add(
|
|
4208
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4208
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4209
4209
|
execution_context: int | str | None = None,
|
|
4210
4210
|
undo: bool | None = None,
|
|
4211
4211
|
*,
|
|
@@ -4213,7 +4213,7 @@ def shaderfx_add(
|
|
|
4213
4213
|
):
|
|
4214
4214
|
"""Add a visual effect to the active object
|
|
4215
4215
|
|
|
4216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4216
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4217
4217
|
:type execution_context: int | str | None
|
|
4218
4218
|
:type undo: bool | None
|
|
4219
4219
|
:param type: Type
|
|
@@ -4221,7 +4221,7 @@ def shaderfx_add(
|
|
|
4221
4221
|
"""
|
|
4222
4222
|
|
|
4223
4223
|
def shaderfx_copy(
|
|
4224
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4224
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4225
4225
|
execution_context: int | str | None = None,
|
|
4226
4226
|
undo: bool | None = None,
|
|
4227
4227
|
*,
|
|
@@ -4229,7 +4229,7 @@ def shaderfx_copy(
|
|
|
4229
4229
|
):
|
|
4230
4230
|
"""Duplicate effect at the same position in the stack
|
|
4231
4231
|
|
|
4232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4232
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4233
4233
|
:type execution_context: int | str | None
|
|
4234
4234
|
:type undo: bool | None
|
|
4235
4235
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4237,7 +4237,7 @@ def shaderfx_copy(
|
|
|
4237
4237
|
"""
|
|
4238
4238
|
|
|
4239
4239
|
def shaderfx_move_down(
|
|
4240
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4240
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4241
4241
|
execution_context: int | str | None = None,
|
|
4242
4242
|
undo: bool | None = None,
|
|
4243
4243
|
*,
|
|
@@ -4245,7 +4245,7 @@ def shaderfx_move_down(
|
|
|
4245
4245
|
):
|
|
4246
4246
|
"""Move effect down in the stack
|
|
4247
4247
|
|
|
4248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4248
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4249
4249
|
:type execution_context: int | str | None
|
|
4250
4250
|
:type undo: bool | None
|
|
4251
4251
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4253,7 +4253,7 @@ def shaderfx_move_down(
|
|
|
4253
4253
|
"""
|
|
4254
4254
|
|
|
4255
4255
|
def shaderfx_move_to_index(
|
|
4256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4256
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4257
4257
|
execution_context: int | str | None = None,
|
|
4258
4258
|
undo: bool | None = None,
|
|
4259
4259
|
*,
|
|
@@ -4262,7 +4262,7 @@ def shaderfx_move_to_index(
|
|
|
4262
4262
|
):
|
|
4263
4263
|
"""Change the effect's position in the list so it evaluates after the set number of others
|
|
4264
4264
|
|
|
4265
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4265
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4266
4266
|
:type execution_context: int | str | None
|
|
4267
4267
|
:type undo: bool | None
|
|
4268
4268
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4272,7 +4272,7 @@ def shaderfx_move_to_index(
|
|
|
4272
4272
|
"""
|
|
4273
4273
|
|
|
4274
4274
|
def shaderfx_move_up(
|
|
4275
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4275
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4276
4276
|
execution_context: int | str | None = None,
|
|
4277
4277
|
undo: bool | None = None,
|
|
4278
4278
|
*,
|
|
@@ -4280,7 +4280,7 @@ def shaderfx_move_up(
|
|
|
4280
4280
|
):
|
|
4281
4281
|
"""Move effect up in the stack
|
|
4282
4282
|
|
|
4283
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4283
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4284
4284
|
:type execution_context: int | str | None
|
|
4285
4285
|
:type undo: bool | None
|
|
4286
4286
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4288,7 +4288,7 @@ def shaderfx_move_up(
|
|
|
4288
4288
|
"""
|
|
4289
4289
|
|
|
4290
4290
|
def shaderfx_remove(
|
|
4291
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4291
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4292
4292
|
execution_context: int | str | None = None,
|
|
4293
4293
|
undo: bool | None = None,
|
|
4294
4294
|
*,
|
|
@@ -4297,7 +4297,7 @@ def shaderfx_remove(
|
|
|
4297
4297
|
):
|
|
4298
4298
|
"""Remove a effect from the active grease pencil object
|
|
4299
4299
|
|
|
4300
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4300
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4301
4301
|
:type execution_context: int | str | None
|
|
4302
4302
|
:type undo: bool | None
|
|
4303
4303
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4307,7 +4307,7 @@ def shaderfx_remove(
|
|
|
4307
4307
|
"""
|
|
4308
4308
|
|
|
4309
4309
|
def shape_key_add(
|
|
4310
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4310
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4311
4311
|
execution_context: int | str | None = None,
|
|
4312
4312
|
undo: bool | None = None,
|
|
4313
4313
|
*,
|
|
@@ -4315,7 +4315,7 @@ def shape_key_add(
|
|
|
4315
4315
|
):
|
|
4316
4316
|
"""Add shape key to the object
|
|
4317
4317
|
|
|
4318
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4318
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4319
4319
|
:type execution_context: int | str | None
|
|
4320
4320
|
:type undo: bool | None
|
|
4321
4321
|
:param from_mix: From Mix, Create the new shape key from the existing mix of keys
|
|
@@ -4323,19 +4323,19 @@ def shape_key_add(
|
|
|
4323
4323
|
"""
|
|
4324
4324
|
|
|
4325
4325
|
def shape_key_clear(
|
|
4326
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4326
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4327
4327
|
execution_context: int | str | None = None,
|
|
4328
4328
|
undo: bool | None = None,
|
|
4329
4329
|
):
|
|
4330
4330
|
"""Reset the weights of all shape keys to 0 or to the closest value respecting the limits
|
|
4331
4331
|
|
|
4332
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4332
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4333
4333
|
:type execution_context: int | str | None
|
|
4334
4334
|
:type undo: bool | None
|
|
4335
4335
|
"""
|
|
4336
4336
|
|
|
4337
4337
|
def shape_key_lock(
|
|
4338
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4338
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4339
4339
|
execution_context: int | str | None = None,
|
|
4340
4340
|
undo: bool | None = None,
|
|
4341
4341
|
*,
|
|
@@ -4343,7 +4343,7 @@ def shape_key_lock(
|
|
|
4343
4343
|
):
|
|
4344
4344
|
"""Change the lock state of all shape keys of active object
|
|
4345
4345
|
|
|
4346
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4346
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4347
4347
|
:type execution_context: int | str | None
|
|
4348
4348
|
:type undo: bool | None
|
|
4349
4349
|
:param action: Action, Lock action to execute on vertex groups
|
|
@@ -4357,7 +4357,7 @@ def shape_key_lock(
|
|
|
4357
4357
|
"""
|
|
4358
4358
|
|
|
4359
4359
|
def shape_key_mirror(
|
|
4360
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4360
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4361
4361
|
execution_context: int | str | None = None,
|
|
4362
4362
|
undo: bool | None = None,
|
|
4363
4363
|
*,
|
|
@@ -4365,7 +4365,7 @@ def shape_key_mirror(
|
|
|
4365
4365
|
):
|
|
4366
4366
|
"""Mirror the current shape key along the local X axis
|
|
4367
4367
|
|
|
4368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4368
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4369
4369
|
:type execution_context: int | str | None
|
|
4370
4370
|
:type undo: bool | None
|
|
4371
4371
|
:param use_topology: Topology Mirror, Use topology based mirroring (for when both sides of mesh have matching, unique topology)
|
|
@@ -4373,7 +4373,7 @@ def shape_key_mirror(
|
|
|
4373
4373
|
"""
|
|
4374
4374
|
|
|
4375
4375
|
def shape_key_move(
|
|
4376
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4376
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4377
4377
|
execution_context: int | str | None = None,
|
|
4378
4378
|
undo: bool | None = None,
|
|
4379
4379
|
*,
|
|
@@ -4381,7 +4381,7 @@ def shape_key_move(
|
|
|
4381
4381
|
):
|
|
4382
4382
|
"""Move the active shape key up/down in the list
|
|
4383
4383
|
|
|
4384
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4384
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4385
4385
|
:type execution_context: int | str | None
|
|
4386
4386
|
:type undo: bool | None
|
|
4387
4387
|
:param type: Type
|
|
@@ -4401,7 +4401,7 @@ def shape_key_move(
|
|
|
4401
4401
|
"""
|
|
4402
4402
|
|
|
4403
4403
|
def shape_key_remove(
|
|
4404
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4404
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4405
4405
|
execution_context: int | str | None = None,
|
|
4406
4406
|
undo: bool | None = None,
|
|
4407
4407
|
*,
|
|
@@ -4410,7 +4410,7 @@ def shape_key_remove(
|
|
|
4410
4410
|
):
|
|
4411
4411
|
"""Remove shape key from the object
|
|
4412
4412
|
|
|
4413
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4413
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4414
4414
|
:type execution_context: int | str | None
|
|
4415
4415
|
:type undo: bool | None
|
|
4416
4416
|
:param all: All, Remove all shape keys
|
|
@@ -4420,19 +4420,19 @@ def shape_key_remove(
|
|
|
4420
4420
|
"""
|
|
4421
4421
|
|
|
4422
4422
|
def shape_key_retime(
|
|
4423
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4423
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4424
4424
|
execution_context: int | str | None = None,
|
|
4425
4425
|
undo: bool | None = None,
|
|
4426
4426
|
):
|
|
4427
4427
|
"""Resets the timing for absolute shape keys
|
|
4428
4428
|
|
|
4429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4430
4430
|
:type execution_context: int | str | None
|
|
4431
4431
|
:type undo: bool | None
|
|
4432
4432
|
"""
|
|
4433
4433
|
|
|
4434
4434
|
def shape_key_transfer(
|
|
4435
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4435
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4436
4436
|
execution_context: int | str | None = None,
|
|
4437
4437
|
undo: bool | None = None,
|
|
4438
4438
|
*,
|
|
@@ -4441,7 +4441,7 @@ def shape_key_transfer(
|
|
|
4441
4441
|
):
|
|
4442
4442
|
"""Copy the active shape key of another selected object to this one
|
|
4443
4443
|
|
|
4444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4444
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4445
4445
|
:type execution_context: int | str | None
|
|
4446
4446
|
:type undo: bool | None
|
|
4447
4447
|
:param mode: Transformation Mode, Relative shape positions to the new shape method
|
|
@@ -4460,7 +4460,7 @@ def shape_key_transfer(
|
|
|
4460
4460
|
"""
|
|
4461
4461
|
|
|
4462
4462
|
def simulation_nodes_cache_bake(
|
|
4463
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4463
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4464
4464
|
execution_context: int | str | None = None,
|
|
4465
4465
|
undo: bool | None = None,
|
|
4466
4466
|
*,
|
|
@@ -4468,7 +4468,7 @@ def simulation_nodes_cache_bake(
|
|
|
4468
4468
|
):
|
|
4469
4469
|
"""Bake simulations in geometry nodes modifiers
|
|
4470
4470
|
|
|
4471
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4471
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4472
4472
|
:type execution_context: int | str | None
|
|
4473
4473
|
:type undo: bool | None
|
|
4474
4474
|
:param selected: Selected, Bake cache on all selected objects
|
|
@@ -4476,7 +4476,7 @@ def simulation_nodes_cache_bake(
|
|
|
4476
4476
|
"""
|
|
4477
4477
|
|
|
4478
4478
|
def simulation_nodes_cache_calculate_to_frame(
|
|
4479
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4479
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4480
4480
|
execution_context: int | str | None = None,
|
|
4481
4481
|
undo: bool | None = None,
|
|
4482
4482
|
*,
|
|
@@ -4484,7 +4484,7 @@ def simulation_nodes_cache_calculate_to_frame(
|
|
|
4484
4484
|
):
|
|
4485
4485
|
"""Calculate simulations in geometry nodes modifiers from the start to current frame
|
|
4486
4486
|
|
|
4487
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4487
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4488
4488
|
:type execution_context: int | str | None
|
|
4489
4489
|
:type undo: bool | None
|
|
4490
4490
|
:param selected: Selected, Calculate all selected objects instead of just the active object
|
|
@@ -4492,7 +4492,7 @@ def simulation_nodes_cache_calculate_to_frame(
|
|
|
4492
4492
|
"""
|
|
4493
4493
|
|
|
4494
4494
|
def simulation_nodes_cache_delete(
|
|
4495
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4495
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4496
4496
|
execution_context: int | str | None = None,
|
|
4497
4497
|
undo: bool | None = None,
|
|
4498
4498
|
*,
|
|
@@ -4500,7 +4500,7 @@ def simulation_nodes_cache_delete(
|
|
|
4500
4500
|
):
|
|
4501
4501
|
"""Delete cached/baked simulations in geometry nodes modifiers
|
|
4502
4502
|
|
|
4503
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4503
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4504
4504
|
:type execution_context: int | str | None
|
|
4505
4505
|
:type undo: bool | None
|
|
4506
4506
|
:param selected: Selected, Delete cache on all selected objects
|
|
@@ -4508,7 +4508,7 @@ def simulation_nodes_cache_delete(
|
|
|
4508
4508
|
"""
|
|
4509
4509
|
|
|
4510
4510
|
def skin_armature_create(
|
|
4511
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4511
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4512
4512
|
execution_context: int | str | None = None,
|
|
4513
4513
|
undo: bool | None = None,
|
|
4514
4514
|
*,
|
|
@@ -4516,7 +4516,7 @@ def skin_armature_create(
|
|
|
4516
4516
|
):
|
|
4517
4517
|
"""Create an armature that parallels the skin layout
|
|
4518
4518
|
|
|
4519
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4519
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4520
4520
|
:type execution_context: int | str | None
|
|
4521
4521
|
:type undo: bool | None
|
|
4522
4522
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -4524,7 +4524,7 @@ def skin_armature_create(
|
|
|
4524
4524
|
"""
|
|
4525
4525
|
|
|
4526
4526
|
def skin_loose_mark_clear(
|
|
4527
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4527
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4528
4528
|
execution_context: int | str | None = None,
|
|
4529
4529
|
undo: bool | None = None,
|
|
4530
4530
|
*,
|
|
@@ -4532,7 +4532,7 @@ def skin_loose_mark_clear(
|
|
|
4532
4532
|
):
|
|
4533
4533
|
"""Mark/clear selected vertices as loose
|
|
4534
4534
|
|
|
4535
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4535
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4536
4536
|
:type execution_context: int | str | None
|
|
4537
4537
|
:type undo: bool | None
|
|
4538
4538
|
:param action: Action
|
|
@@ -4546,31 +4546,31 @@ def skin_loose_mark_clear(
|
|
|
4546
4546
|
"""
|
|
4547
4547
|
|
|
4548
4548
|
def skin_radii_equalize(
|
|
4549
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4549
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4550
4550
|
execution_context: int | str | None = None,
|
|
4551
4551
|
undo: bool | None = None,
|
|
4552
4552
|
):
|
|
4553
4553
|
"""Make skin radii of selected vertices equal on each axis
|
|
4554
4554
|
|
|
4555
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4555
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4556
4556
|
:type execution_context: int | str | None
|
|
4557
4557
|
:type undo: bool | None
|
|
4558
4558
|
"""
|
|
4559
4559
|
|
|
4560
4560
|
def skin_root_mark(
|
|
4561
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4561
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4562
4562
|
execution_context: int | str | None = None,
|
|
4563
4563
|
undo: bool | None = None,
|
|
4564
4564
|
):
|
|
4565
4565
|
"""Mark selected vertices as roots
|
|
4566
4566
|
|
|
4567
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4567
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4568
4568
|
:type execution_context: int | str | None
|
|
4569
4569
|
:type undo: bool | None
|
|
4570
4570
|
"""
|
|
4571
4571
|
|
|
4572
4572
|
def speaker_add(
|
|
4573
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4573
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4574
4574
|
execution_context: int | str | None = None,
|
|
4575
4575
|
undo: bool | None = None,
|
|
4576
4576
|
*,
|
|
@@ -4590,7 +4590,7 @@ def speaker_add(
|
|
|
4590
4590
|
):
|
|
4591
4591
|
"""Add a speaker object to the scene
|
|
4592
4592
|
|
|
4593
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4593
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4594
4594
|
:type execution_context: int | str | None
|
|
4595
4595
|
:type undo: bool | None
|
|
4596
4596
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
@@ -4615,7 +4615,7 @@ def speaker_add(
|
|
|
4615
4615
|
"""
|
|
4616
4616
|
|
|
4617
4617
|
def subdivision_set(
|
|
4618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4618
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4619
4619
|
execution_context: int | str | None = None,
|
|
4620
4620
|
undo: bool | None = None,
|
|
4621
4621
|
*,
|
|
@@ -4624,7 +4624,7 @@ def subdivision_set(
|
|
|
4624
4624
|
):
|
|
4625
4625
|
"""Sets a Subdivision Surface level (1 to 5)
|
|
4626
4626
|
|
|
4627
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4627
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4628
4628
|
:type execution_context: int | str | None
|
|
4629
4629
|
:type undo: bool | None
|
|
4630
4630
|
:param level: Level
|
|
@@ -4634,7 +4634,7 @@ def subdivision_set(
|
|
|
4634
4634
|
"""
|
|
4635
4635
|
|
|
4636
4636
|
def surfacedeform_bind(
|
|
4637
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4637
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4638
4638
|
execution_context: int | str | None = None,
|
|
4639
4639
|
undo: bool | None = None,
|
|
4640
4640
|
*,
|
|
@@ -4642,7 +4642,7 @@ def surfacedeform_bind(
|
|
|
4642
4642
|
):
|
|
4643
4643
|
"""Bind mesh to target in surface deform modifier
|
|
4644
4644
|
|
|
4645
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4645
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4646
4646
|
:type execution_context: int | str | None
|
|
4647
4647
|
:type undo: bool | None
|
|
4648
4648
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -4650,7 +4650,7 @@ def surfacedeform_bind(
|
|
|
4650
4650
|
"""
|
|
4651
4651
|
|
|
4652
4652
|
def text_add(
|
|
4653
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4653
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4654
4654
|
execution_context: int | str | None = None,
|
|
4655
4655
|
undo: bool | None = None,
|
|
4656
4656
|
*,
|
|
@@ -4671,7 +4671,7 @@ def text_add(
|
|
|
4671
4671
|
):
|
|
4672
4672
|
"""Add a text object to the scene
|
|
4673
4673
|
|
|
4674
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4674
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4675
4675
|
:type execution_context: int | str | None
|
|
4676
4676
|
:type undo: bool | None
|
|
4677
4677
|
:param radius: Radius
|
|
@@ -4698,7 +4698,7 @@ def text_add(
|
|
|
4698
4698
|
"""
|
|
4699
4699
|
|
|
4700
4700
|
def track_clear(
|
|
4701
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4701
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4702
4702
|
execution_context: int | str | None = None,
|
|
4703
4703
|
undo: bool | None = None,
|
|
4704
4704
|
*,
|
|
@@ -4706,7 +4706,7 @@ def track_clear(
|
|
|
4706
4706
|
):
|
|
4707
4707
|
"""Clear tracking constraint or flag from object
|
|
4708
4708
|
|
|
4709
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4709
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4710
4710
|
:type execution_context: int | str | None
|
|
4711
4711
|
:type undo: bool | None
|
|
4712
4712
|
:param type: Type
|
|
@@ -4714,7 +4714,7 @@ def track_clear(
|
|
|
4714
4714
|
"""
|
|
4715
4715
|
|
|
4716
4716
|
def track_set(
|
|
4717
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4717
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4718
4718
|
execution_context: int | str | None = None,
|
|
4719
4719
|
undo: bool | None = None,
|
|
4720
4720
|
*,
|
|
@@ -4722,7 +4722,7 @@ def track_set(
|
|
|
4722
4722
|
):
|
|
4723
4723
|
"""Make the object track another object, using various methods/constraints
|
|
4724
4724
|
|
|
4725
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4725
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4726
4726
|
:type execution_context: int | str | None
|
|
4727
4727
|
:type undo: bool | None
|
|
4728
4728
|
:param type: Type
|
|
@@ -4730,7 +4730,7 @@ def track_set(
|
|
|
4730
4730
|
"""
|
|
4731
4731
|
|
|
4732
4732
|
def transfer_mode(
|
|
4733
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4733
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4734
4734
|
execution_context: int | str | None = None,
|
|
4735
4735
|
undo: bool | None = None,
|
|
4736
4736
|
*,
|
|
@@ -4738,7 +4738,7 @@ def transfer_mode(
|
|
|
4738
4738
|
):
|
|
4739
4739
|
"""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
|
|
4740
4740
|
|
|
4741
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4741
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4742
4742
|
:type execution_context: int | str | None
|
|
4743
4743
|
:type undo: bool | None
|
|
4744
4744
|
:param use_flash_on_transfer: Flash On Transfer, Flash the target object when transferring the mode
|
|
@@ -4746,7 +4746,7 @@ def transfer_mode(
|
|
|
4746
4746
|
"""
|
|
4747
4747
|
|
|
4748
4748
|
def transform_apply(
|
|
4749
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4749
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4750
4750
|
execution_context: int | str | None = None,
|
|
4751
4751
|
undo: bool | None = None,
|
|
4752
4752
|
*,
|
|
@@ -4758,7 +4758,7 @@ def transform_apply(
|
|
|
4758
4758
|
):
|
|
4759
4759
|
"""Apply the object's transformation to its data
|
|
4760
4760
|
|
|
4761
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4761
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4762
4762
|
:type execution_context: int | str | None
|
|
4763
4763
|
:type undo: bool | None
|
|
4764
4764
|
:param location: Location
|
|
@@ -4774,19 +4774,19 @@ def transform_apply(
|
|
|
4774
4774
|
"""
|
|
4775
4775
|
|
|
4776
4776
|
def transform_axis_target(
|
|
4777
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4777
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4778
4778
|
execution_context: int | str | None = None,
|
|
4779
4779
|
undo: bool | None = None,
|
|
4780
4780
|
):
|
|
4781
4781
|
"""Interactively point cameras and lights to a location (Ctrl translates)
|
|
4782
4782
|
|
|
4783
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4783
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4784
4784
|
:type execution_context: int | str | None
|
|
4785
4785
|
:type undo: bool | None
|
|
4786
4786
|
"""
|
|
4787
4787
|
|
|
4788
4788
|
def transform_to_mouse(
|
|
4789
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4789
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4790
4790
|
execution_context: int | str | None = None,
|
|
4791
4791
|
undo: bool | None = None,
|
|
4792
4792
|
*,
|
|
@@ -4805,7 +4805,7 @@ def transform_to_mouse(
|
|
|
4805
4805
|
):
|
|
4806
4806
|
"""Snap selected item(s) to the mouse location
|
|
4807
4807
|
|
|
4808
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4808
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4809
4809
|
:type execution_context: int | str | None
|
|
4810
4810
|
:type undo: bool | None
|
|
4811
4811
|
:param name: Name, Object name to place (uses the active object when this and 'session_uid' are unset)
|
|
@@ -4821,7 +4821,7 @@ def transform_to_mouse(
|
|
|
4821
4821
|
"""
|
|
4822
4822
|
|
|
4823
4823
|
def transforms_to_deltas(
|
|
4824
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4824
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4825
4825
|
execution_context: int | str | None = None,
|
|
4826
4826
|
undo: bool | None = None,
|
|
4827
4827
|
*,
|
|
@@ -4830,7 +4830,7 @@ def transforms_to_deltas(
|
|
|
4830
4830
|
):
|
|
4831
4831
|
"""Convert normal object transforms to delta transforms, any existing delta transforms will be included as well
|
|
4832
4832
|
|
|
4833
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4833
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4834
4834
|
:type execution_context: int | str | None
|
|
4835
4835
|
:type undo: bool | None
|
|
4836
4836
|
:param mode: Mode, Which transforms to transfer
|
|
@@ -4852,55 +4852,55 @@ def transforms_to_deltas(
|
|
|
4852
4852
|
"""
|
|
4853
4853
|
|
|
4854
4854
|
def unlink_data(
|
|
4855
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4855
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4856
4856
|
execution_context: int | str | None = None,
|
|
4857
4857
|
undo: bool | None = None,
|
|
4858
4858
|
):
|
|
4859
4859
|
"""Undocumented, consider contributing.
|
|
4860
4860
|
|
|
4861
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4861
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4862
4862
|
:type execution_context: int | str | None
|
|
4863
4863
|
:type undo: bool | None
|
|
4864
4864
|
"""
|
|
4865
4865
|
|
|
4866
4866
|
def vertex_group_add(
|
|
4867
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4867
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4868
4868
|
execution_context: int | str | None = None,
|
|
4869
4869
|
undo: bool | None = None,
|
|
4870
4870
|
):
|
|
4871
4871
|
"""Add a new vertex group to the active object
|
|
4872
4872
|
|
|
4873
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4873
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4874
4874
|
:type execution_context: int | str | None
|
|
4875
4875
|
:type undo: bool | None
|
|
4876
4876
|
"""
|
|
4877
4877
|
|
|
4878
4878
|
def vertex_group_assign(
|
|
4879
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4879
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4880
4880
|
execution_context: int | str | None = None,
|
|
4881
4881
|
undo: bool | None = None,
|
|
4882
4882
|
):
|
|
4883
4883
|
"""Assign the selected vertices to the active vertex group
|
|
4884
4884
|
|
|
4885
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4885
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4886
4886
|
:type execution_context: int | str | None
|
|
4887
4887
|
:type undo: bool | None
|
|
4888
4888
|
"""
|
|
4889
4889
|
|
|
4890
4890
|
def vertex_group_assign_new(
|
|
4891
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4891
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4892
4892
|
execution_context: int | str | None = None,
|
|
4893
4893
|
undo: bool | None = None,
|
|
4894
4894
|
):
|
|
4895
4895
|
"""Assign the selected vertices to a new vertex group
|
|
4896
4896
|
|
|
4897
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4897
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4898
4898
|
:type execution_context: int | str | None
|
|
4899
4899
|
:type undo: bool | None
|
|
4900
4900
|
"""
|
|
4901
4901
|
|
|
4902
4902
|
def vertex_group_clean(
|
|
4903
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4903
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4904
4904
|
execution_context: int | str | None = None,
|
|
4905
4905
|
undo: bool | None = None,
|
|
4906
4906
|
*,
|
|
@@ -4910,7 +4910,7 @@ def vertex_group_clean(
|
|
|
4910
4910
|
):
|
|
4911
4911
|
"""Remove vertex group assignments which are not required
|
|
4912
4912
|
|
|
4913
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4913
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4914
4914
|
:type execution_context: int | str | None
|
|
4915
4915
|
:type undo: bool | None
|
|
4916
4916
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -4922,43 +4922,43 @@ def vertex_group_clean(
|
|
|
4922
4922
|
"""
|
|
4923
4923
|
|
|
4924
4924
|
def vertex_group_copy(
|
|
4925
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4925
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4926
4926
|
execution_context: int | str | None = None,
|
|
4927
4927
|
undo: bool | None = None,
|
|
4928
4928
|
):
|
|
4929
4929
|
"""Make a copy of the active vertex group
|
|
4930
4930
|
|
|
4931
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4931
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4932
4932
|
:type execution_context: int | str | None
|
|
4933
4933
|
:type undo: bool | None
|
|
4934
4934
|
"""
|
|
4935
4935
|
|
|
4936
4936
|
def vertex_group_copy_to_selected(
|
|
4937
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4937
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4938
4938
|
execution_context: int | str | None = None,
|
|
4939
4939
|
undo: bool | None = None,
|
|
4940
4940
|
):
|
|
4941
4941
|
"""Replace vertex groups of selected objects by vertex groups of active object
|
|
4942
4942
|
|
|
4943
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4943
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4944
4944
|
:type execution_context: int | str | None
|
|
4945
4945
|
:type undo: bool | None
|
|
4946
4946
|
"""
|
|
4947
4947
|
|
|
4948
4948
|
def vertex_group_deselect(
|
|
4949
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4949
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4950
4950
|
execution_context: int | str | None = None,
|
|
4951
4951
|
undo: bool | None = None,
|
|
4952
4952
|
):
|
|
4953
4953
|
"""Deselect all selected vertices assigned to the active vertex group
|
|
4954
4954
|
|
|
4955
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4955
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4956
4956
|
:type execution_context: int | str | None
|
|
4957
4957
|
:type undo: bool | None
|
|
4958
4958
|
"""
|
|
4959
4959
|
|
|
4960
4960
|
def vertex_group_invert(
|
|
4961
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4961
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4962
4962
|
execution_context: int | str | None = None,
|
|
4963
4963
|
undo: bool | None = None,
|
|
4964
4964
|
*,
|
|
@@ -4968,7 +4968,7 @@ def vertex_group_invert(
|
|
|
4968
4968
|
):
|
|
4969
4969
|
"""Invert active vertex group's weights
|
|
4970
4970
|
|
|
4971
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4971
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4972
4972
|
:type execution_context: int | str | None
|
|
4973
4973
|
:type undo: bool | None
|
|
4974
4974
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -4980,7 +4980,7 @@ def vertex_group_invert(
|
|
|
4980
4980
|
"""
|
|
4981
4981
|
|
|
4982
4982
|
def vertex_group_levels(
|
|
4983
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4983
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4984
4984
|
execution_context: int | str | None = None,
|
|
4985
4985
|
undo: bool | None = None,
|
|
4986
4986
|
*,
|
|
@@ -4990,7 +4990,7 @@ def vertex_group_levels(
|
|
|
4990
4990
|
):
|
|
4991
4991
|
"""Add some offset and multiply with some gain the weights of the active vertex group
|
|
4992
4992
|
|
|
4993
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4993
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4994
4994
|
:type execution_context: int | str | None
|
|
4995
4995
|
:type undo: bool | None
|
|
4996
4996
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5002,7 +5002,7 @@ def vertex_group_levels(
|
|
|
5002
5002
|
"""
|
|
5003
5003
|
|
|
5004
5004
|
def vertex_group_limit_total(
|
|
5005
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5005
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5006
5006
|
execution_context: int | str | None = None,
|
|
5007
5007
|
undo: bool | None = None,
|
|
5008
5008
|
*,
|
|
@@ -5011,7 +5011,7 @@ def vertex_group_limit_total(
|
|
|
5011
5011
|
):
|
|
5012
5012
|
"""Limit deform weights associated with a vertex to a specified number by removing lowest weights
|
|
5013
5013
|
|
|
5014
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5014
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5015
5015
|
:type execution_context: int | str | None
|
|
5016
5016
|
:type undo: bool | None
|
|
5017
5017
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5021,7 +5021,7 @@ def vertex_group_limit_total(
|
|
|
5021
5021
|
"""
|
|
5022
5022
|
|
|
5023
5023
|
def vertex_group_lock(
|
|
5024
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5024
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5025
5025
|
execution_context: int | str | None = None,
|
|
5026
5026
|
undo: bool | None = None,
|
|
5027
5027
|
*,
|
|
@@ -5031,7 +5031,7 @@ def vertex_group_lock(
|
|
|
5031
5031
|
):
|
|
5032
5032
|
"""Change the lock state of all or some vertex groups of active object
|
|
5033
5033
|
|
|
5034
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5034
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5035
5035
|
:type execution_context: int | str | None
|
|
5036
5036
|
:type undo: bool | None
|
|
5037
5037
|
:param action: Action, Lock action to execute on vertex groups
|
|
@@ -5065,7 +5065,7 @@ def vertex_group_lock(
|
|
|
5065
5065
|
"""
|
|
5066
5066
|
|
|
5067
5067
|
def vertex_group_mirror(
|
|
5068
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5068
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5069
5069
|
execution_context: int | str | None = None,
|
|
5070
5070
|
undo: bool | None = None,
|
|
5071
5071
|
*,
|
|
@@ -5076,7 +5076,7 @@ def vertex_group_mirror(
|
|
|
5076
5076
|
):
|
|
5077
5077
|
"""Mirror vertex group, flip weights and/or names, editing only selected vertices, flipping when both sides are selected otherwise copy from unselected
|
|
5078
5078
|
|
|
5079
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5079
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5080
5080
|
:type execution_context: int | str | None
|
|
5081
5081
|
:type undo: bool | None
|
|
5082
5082
|
:param mirror_weights: Mirror Weights, Mirror weights
|
|
@@ -5090,7 +5090,7 @@ def vertex_group_mirror(
|
|
|
5090
5090
|
"""
|
|
5091
5091
|
|
|
5092
5092
|
def vertex_group_move(
|
|
5093
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5093
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5094
5094
|
execution_context: int | str | None = None,
|
|
5095
5095
|
undo: bool | None = None,
|
|
5096
5096
|
*,
|
|
@@ -5098,7 +5098,7 @@ def vertex_group_move(
|
|
|
5098
5098
|
):
|
|
5099
5099
|
"""Move the active vertex group up/down in the list
|
|
5100
5100
|
|
|
5101
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5101
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5102
5102
|
:type execution_context: int | str | None
|
|
5103
5103
|
:type undo: bool | None
|
|
5104
5104
|
:param direction: Direction, Direction to move the active vertex group towards
|
|
@@ -5106,19 +5106,19 @@ def vertex_group_move(
|
|
|
5106
5106
|
"""
|
|
5107
5107
|
|
|
5108
5108
|
def vertex_group_normalize(
|
|
5109
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5109
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5110
5110
|
execution_context: int | str | None = None,
|
|
5111
5111
|
undo: bool | None = None,
|
|
5112
5112
|
):
|
|
5113
5113
|
"""Normalize weights of the active vertex group, so that the highest ones are now 1.0
|
|
5114
5114
|
|
|
5115
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5115
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5116
5116
|
:type execution_context: int | str | None
|
|
5117
5117
|
:type undo: bool | None
|
|
5118
5118
|
"""
|
|
5119
5119
|
|
|
5120
5120
|
def vertex_group_normalize_all(
|
|
5121
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5121
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5122
5122
|
execution_context: int | str | None = None,
|
|
5123
5123
|
undo: bool | None = None,
|
|
5124
5124
|
*,
|
|
@@ -5127,7 +5127,7 @@ def vertex_group_normalize_all(
|
|
|
5127
5127
|
):
|
|
5128
5128
|
"""Normalize all weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
|
|
5129
5129
|
|
|
5130
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5130
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5131
5131
|
:type execution_context: int | str | None
|
|
5132
5132
|
:type undo: bool | None
|
|
5133
5133
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5137,7 +5137,7 @@ def vertex_group_normalize_all(
|
|
|
5137
5137
|
"""
|
|
5138
5138
|
|
|
5139
5139
|
def vertex_group_quantize(
|
|
5140
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5140
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5141
5141
|
execution_context: int | str | None = None,
|
|
5142
5142
|
undo: bool | None = None,
|
|
5143
5143
|
*,
|
|
@@ -5146,7 +5146,7 @@ def vertex_group_quantize(
|
|
|
5146
5146
|
):
|
|
5147
5147
|
"""Set weights to a fixed number of steps
|
|
5148
5148
|
|
|
5149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5149
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5150
5150
|
:type execution_context: int | str | None
|
|
5151
5151
|
:type undo: bool | None
|
|
5152
5152
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5156,7 +5156,7 @@ def vertex_group_quantize(
|
|
|
5156
5156
|
"""
|
|
5157
5157
|
|
|
5158
5158
|
def vertex_group_remove(
|
|
5159
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5159
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5160
5160
|
execution_context: int | str | None = None,
|
|
5161
5161
|
undo: bool | None = None,
|
|
5162
5162
|
*,
|
|
@@ -5165,7 +5165,7 @@ def vertex_group_remove(
|
|
|
5165
5165
|
):
|
|
5166
5166
|
"""Delete the active or all vertex groups from the active object
|
|
5167
5167
|
|
|
5168
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5168
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5169
5169
|
:type execution_context: int | str | None
|
|
5170
5170
|
:type undo: bool | None
|
|
5171
5171
|
:param all: All, Remove all vertex groups
|
|
@@ -5175,7 +5175,7 @@ def vertex_group_remove(
|
|
|
5175
5175
|
"""
|
|
5176
5176
|
|
|
5177
5177
|
def vertex_group_remove_from(
|
|
5178
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5178
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5179
5179
|
execution_context: int | str | None = None,
|
|
5180
5180
|
undo: bool | None = None,
|
|
5181
5181
|
*,
|
|
@@ -5184,7 +5184,7 @@ def vertex_group_remove_from(
|
|
|
5184
5184
|
):
|
|
5185
5185
|
"""Remove the selected vertices from active or all vertex group(s)
|
|
5186
5186
|
|
|
5187
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5187
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5188
5188
|
:type execution_context: int | str | None
|
|
5189
5189
|
:type undo: bool | None
|
|
5190
5190
|
:param use_all_groups: All Groups, Remove from all groups
|
|
@@ -5194,19 +5194,19 @@ def vertex_group_remove_from(
|
|
|
5194
5194
|
"""
|
|
5195
5195
|
|
|
5196
5196
|
def vertex_group_select(
|
|
5197
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5197
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5198
5198
|
execution_context: int | str | None = None,
|
|
5199
5199
|
undo: bool | None = None,
|
|
5200
5200
|
):
|
|
5201
5201
|
"""Select all the vertices assigned to the active vertex group
|
|
5202
5202
|
|
|
5203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5204
5204
|
:type execution_context: int | str | None
|
|
5205
5205
|
:type undo: bool | None
|
|
5206
5206
|
"""
|
|
5207
5207
|
|
|
5208
5208
|
def vertex_group_set_active(
|
|
5209
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5209
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5210
5210
|
execution_context: int | str | None = None,
|
|
5211
5211
|
undo: bool | None = None,
|
|
5212
5212
|
*,
|
|
@@ -5214,7 +5214,7 @@ def vertex_group_set_active(
|
|
|
5214
5214
|
):
|
|
5215
5215
|
"""Set the active vertex group
|
|
5216
5216
|
|
|
5217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5217
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5218
5218
|
:type execution_context: int | str | None
|
|
5219
5219
|
:type undo: bool | None
|
|
5220
5220
|
:param group: Group, Vertex group to set as active
|
|
@@ -5222,7 +5222,7 @@ def vertex_group_set_active(
|
|
|
5222
5222
|
"""
|
|
5223
5223
|
|
|
5224
5224
|
def vertex_group_smooth(
|
|
5225
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5225
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5226
5226
|
execution_context: int | str | None = None,
|
|
5227
5227
|
undo: bool | None = None,
|
|
5228
5228
|
*,
|
|
@@ -5233,7 +5233,7 @@ def vertex_group_smooth(
|
|
|
5233
5233
|
):
|
|
5234
5234
|
"""Smooth weights for selected vertices
|
|
5235
5235
|
|
|
5236
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5236
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5237
5237
|
:type execution_context: int | str | None
|
|
5238
5238
|
:type undo: bool | None
|
|
5239
5239
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5247,7 +5247,7 @@ def vertex_group_smooth(
|
|
|
5247
5247
|
"""
|
|
5248
5248
|
|
|
5249
5249
|
def vertex_group_sort(
|
|
5250
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5250
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5251
5251
|
execution_context: int | str | None = None,
|
|
5252
5252
|
undo: bool | None = None,
|
|
5253
5253
|
*,
|
|
@@ -5255,7 +5255,7 @@ def vertex_group_sort(
|
|
|
5255
5255
|
):
|
|
5256
5256
|
"""Sort vertex groups
|
|
5257
5257
|
|
|
5258
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5258
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5259
5259
|
:type execution_context: int | str | None
|
|
5260
5260
|
:type undo: bool | None
|
|
5261
5261
|
:param sort_type: Sort Type, Sort type
|
|
@@ -5263,31 +5263,31 @@ def vertex_group_sort(
|
|
|
5263
5263
|
"""
|
|
5264
5264
|
|
|
5265
5265
|
def vertex_parent_set(
|
|
5266
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5266
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5267
5267
|
execution_context: int | str | None = None,
|
|
5268
5268
|
undo: bool | None = None,
|
|
5269
5269
|
):
|
|
5270
5270
|
"""Parent selected objects to the selected vertices
|
|
5271
5271
|
|
|
5272
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5272
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5273
5273
|
:type execution_context: int | str | None
|
|
5274
5274
|
:type undo: bool | None
|
|
5275
5275
|
"""
|
|
5276
5276
|
|
|
5277
5277
|
def vertex_weight_copy(
|
|
5278
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5278
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5279
5279
|
execution_context: int | str | None = None,
|
|
5280
5280
|
undo: bool | None = None,
|
|
5281
5281
|
):
|
|
5282
5282
|
"""Copy weights from active to selected
|
|
5283
5283
|
|
|
5284
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5284
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5285
5285
|
:type execution_context: int | str | None
|
|
5286
5286
|
:type undo: bool | None
|
|
5287
5287
|
"""
|
|
5288
5288
|
|
|
5289
5289
|
def vertex_weight_delete(
|
|
5290
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5290
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5291
5291
|
execution_context: int | str | None = None,
|
|
5292
5292
|
undo: bool | None = None,
|
|
5293
5293
|
*,
|
|
@@ -5295,7 +5295,7 @@ def vertex_weight_delete(
|
|
|
5295
5295
|
):
|
|
5296
5296
|
"""Delete this weight from the vertex (disabled if vertex group is locked)
|
|
5297
5297
|
|
|
5298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5298
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5299
5299
|
:type execution_context: int | str | None
|
|
5300
5300
|
:type undo: bool | None
|
|
5301
5301
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -5303,19 +5303,19 @@ def vertex_weight_delete(
|
|
|
5303
5303
|
"""
|
|
5304
5304
|
|
|
5305
5305
|
def vertex_weight_normalize_active_vertex(
|
|
5306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5306
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5307
5307
|
execution_context: int | str | None = None,
|
|
5308
5308
|
undo: bool | None = None,
|
|
5309
5309
|
):
|
|
5310
5310
|
"""Normalize active vertex's weights
|
|
5311
5311
|
|
|
5312
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5312
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5313
5313
|
:type execution_context: int | str | None
|
|
5314
5314
|
:type undo: bool | None
|
|
5315
5315
|
"""
|
|
5316
5316
|
|
|
5317
5317
|
def vertex_weight_paste(
|
|
5318
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5318
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5319
5319
|
execution_context: int | str | None = None,
|
|
5320
5320
|
undo: bool | None = None,
|
|
5321
5321
|
*,
|
|
@@ -5323,7 +5323,7 @@ def vertex_weight_paste(
|
|
|
5323
5323
|
):
|
|
5324
5324
|
"""Copy this group's weight to other selected vertices (disabled if vertex group is locked)
|
|
5325
5325
|
|
|
5326
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5326
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5327
5327
|
:type execution_context: int | str | None
|
|
5328
5328
|
:type undo: bool | None
|
|
5329
5329
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -5331,7 +5331,7 @@ def vertex_weight_paste(
|
|
|
5331
5331
|
"""
|
|
5332
5332
|
|
|
5333
5333
|
def vertex_weight_set_active(
|
|
5334
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5334
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5335
5335
|
execution_context: int | str | None = None,
|
|
5336
5336
|
undo: bool | None = None,
|
|
5337
5337
|
*,
|
|
@@ -5339,7 +5339,7 @@ def vertex_weight_set_active(
|
|
|
5339
5339
|
):
|
|
5340
5340
|
"""Set as active vertex group
|
|
5341
5341
|
|
|
5342
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5342
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5343
5343
|
:type execution_context: int | str | None
|
|
5344
5344
|
:type undo: bool | None
|
|
5345
5345
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -5347,19 +5347,19 @@ def vertex_weight_set_active(
|
|
|
5347
5347
|
"""
|
|
5348
5348
|
|
|
5349
5349
|
def visual_transform_apply(
|
|
5350
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5350
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5351
5351
|
execution_context: int | str | None = None,
|
|
5352
5352
|
undo: bool | None = None,
|
|
5353
5353
|
):
|
|
5354
5354
|
"""Apply the object's visual transformation to its data
|
|
5355
5355
|
|
|
5356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5357
5357
|
:type execution_context: int | str | None
|
|
5358
5358
|
:type undo: bool | None
|
|
5359
5359
|
"""
|
|
5360
5360
|
|
|
5361
5361
|
def volume_add(
|
|
5362
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5362
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5363
5363
|
execution_context: int | str | None = None,
|
|
5364
5364
|
undo: bool | None = None,
|
|
5365
5365
|
*,
|
|
@@ -5378,7 +5378,7 @@ def volume_add(
|
|
|
5378
5378
|
):
|
|
5379
5379
|
"""Add a volume object to the scene
|
|
5380
5380
|
|
|
5381
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5381
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5382
5382
|
:type execution_context: int | str | None
|
|
5383
5383
|
:type undo: bool | None
|
|
5384
5384
|
:param align: Align, The alignment of the new object
|
|
@@ -5401,7 +5401,7 @@ def volume_add(
|
|
|
5401
5401
|
"""
|
|
5402
5402
|
|
|
5403
5403
|
def volume_import(
|
|
5404
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5404
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5405
5405
|
execution_context: int | str | None = None,
|
|
5406
5406
|
undo: bool | None = None,
|
|
5407
5407
|
*,
|
|
@@ -5451,7 +5451,7 @@ def volume_import(
|
|
|
5451
5451
|
):
|
|
5452
5452
|
"""Import OpenVDB volume file
|
|
5453
5453
|
|
|
5454
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5454
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5455
5455
|
:type execution_context: int | str | None
|
|
5456
5456
|
:type undo: bool | None
|
|
5457
5457
|
:param filepath: File Path, Path to file
|
|
@@ -5540,25 +5540,25 @@ def volume_import(
|
|
|
5540
5540
|
"""
|
|
5541
5541
|
|
|
5542
5542
|
def voxel_remesh(
|
|
5543
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5543
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5544
5544
|
execution_context: int | str | None = None,
|
|
5545
5545
|
undo: bool | None = None,
|
|
5546
5546
|
):
|
|
5547
5547
|
"""Calculates a new manifold mesh based on the volume of the current mesh. All data layers will be lost
|
|
5548
5548
|
|
|
5549
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5549
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5550
5550
|
:type execution_context: int | str | None
|
|
5551
5551
|
:type undo: bool | None
|
|
5552
5552
|
"""
|
|
5553
5553
|
|
|
5554
5554
|
def voxel_size_edit(
|
|
5555
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5555
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5556
5556
|
execution_context: int | str | None = None,
|
|
5557
5557
|
undo: bool | None = None,
|
|
5558
5558
|
):
|
|
5559
5559
|
"""Modify the mesh voxel size interactively used in the voxel remesher
|
|
5560
5560
|
|
|
5561
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5561
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5562
5562
|
:type execution_context: int | str | None
|
|
5563
5563
|
:type undo: bool | None
|
|
5564
5564
|
"""
|