fake-bpy-module 20240812__py3-none-any.whl → 20240814__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/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +64 -64
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +52 -36
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/RECORD +83 -83
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/top_level.txt +0 -0
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -9,7 +9,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
9
9
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
10
|
|
|
11
11
|
def add(
|
|
12
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
12
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
13
13
|
execution_context: int | str | None = None,
|
|
14
14
|
undo: bool | None = None,
|
|
15
15
|
*,
|
|
@@ -50,7 +50,7 @@ def add(
|
|
|
50
50
|
):
|
|
51
51
|
"""Add an object to the scene
|
|
52
52
|
|
|
53
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
53
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
54
|
:type execution_context: int | str | None
|
|
55
55
|
:type undo: bool | None
|
|
56
56
|
:param radius: Radius
|
|
@@ -81,13 +81,13 @@ def add(
|
|
|
81
81
|
...
|
|
82
82
|
|
|
83
83
|
def add_modifier_menu(
|
|
84
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
84
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
85
85
|
execution_context: int | str | None = None,
|
|
86
86
|
undo: bool | None = None,
|
|
87
87
|
):
|
|
88
88
|
"""Undocumented, consider contributing.
|
|
89
89
|
|
|
90
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
90
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
91
|
:type execution_context: int | str | None
|
|
92
92
|
:type undo: bool | None
|
|
93
93
|
"""
|
|
@@ -95,7 +95,7 @@ def add_modifier_menu(
|
|
|
95
95
|
...
|
|
96
96
|
|
|
97
97
|
def add_named(
|
|
98
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
98
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
99
99
|
execution_context: int | str | None = None,
|
|
100
100
|
undo: bool | None = None,
|
|
101
101
|
*,
|
|
@@ -115,7 +115,7 @@ def add_named(
|
|
|
115
115
|
):
|
|
116
116
|
"""Add named object
|
|
117
117
|
|
|
118
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
118
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
119
119
|
:type execution_context: int | str | None
|
|
120
120
|
:type undo: bool | None
|
|
121
121
|
:param linked: Linked, Duplicate object but not object data, linking to the original data
|
|
@@ -135,7 +135,7 @@ def add_named(
|
|
|
135
135
|
...
|
|
136
136
|
|
|
137
137
|
def align(
|
|
138
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
139
139
|
execution_context: int | str | None = None,
|
|
140
140
|
undo: bool | None = None,
|
|
141
141
|
*,
|
|
@@ -146,7 +146,7 @@ def align(
|
|
|
146
146
|
):
|
|
147
147
|
"""Align objects
|
|
148
148
|
|
|
149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
149
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
150
|
:type execution_context: int | str | None
|
|
151
151
|
:type undo: bool | None
|
|
152
152
|
: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
|
|
@@ -174,13 +174,13 @@ def align(
|
|
|
174
174
|
...
|
|
175
175
|
|
|
176
176
|
def anim_transforms_to_deltas(
|
|
177
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
178
178
|
execution_context: int | str | None = None,
|
|
179
179
|
undo: bool | None = None,
|
|
180
180
|
):
|
|
181
181
|
"""Convert object animation for normal transforms to delta transforms
|
|
182
182
|
|
|
183
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
183
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
184
|
:type execution_context: int | str | None
|
|
185
185
|
:type undo: bool | None
|
|
186
186
|
"""
|
|
@@ -188,7 +188,7 @@ def anim_transforms_to_deltas(
|
|
|
188
188
|
...
|
|
189
189
|
|
|
190
190
|
def armature_add(
|
|
191
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
191
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
192
192
|
execution_context: int | str | None = None,
|
|
193
193
|
undo: bool | None = None,
|
|
194
194
|
*,
|
|
@@ -209,7 +209,7 @@ def armature_add(
|
|
|
209
209
|
):
|
|
210
210
|
"""Add an armature object to the scene
|
|
211
211
|
|
|
212
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
212
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
213
213
|
:type execution_context: int | str | None
|
|
214
214
|
:type undo: bool | None
|
|
215
215
|
:param radius: Radius
|
|
@@ -238,7 +238,7 @@ def armature_add(
|
|
|
238
238
|
...
|
|
239
239
|
|
|
240
240
|
def assign_property_defaults(
|
|
241
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
241
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
242
242
|
execution_context: int | str | None = None,
|
|
243
243
|
undo: bool | None = None,
|
|
244
244
|
*,
|
|
@@ -247,7 +247,7 @@ def assign_property_defaults(
|
|
|
247
247
|
):
|
|
248
248
|
"""Assign the current values of custom properties as their defaults, for use as part of the rest pose state in NLA track mixing
|
|
249
249
|
|
|
250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
250
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
251
251
|
:type execution_context: int | str | None
|
|
252
252
|
:type undo: bool | None
|
|
253
253
|
:param process_data: Process data properties
|
|
@@ -259,7 +259,7 @@ def assign_property_defaults(
|
|
|
259
259
|
...
|
|
260
260
|
|
|
261
261
|
def bake(
|
|
262
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
262
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
263
263
|
execution_context: int | str | None = None,
|
|
264
264
|
undo: bool | None = None,
|
|
265
265
|
*,
|
|
@@ -317,7 +317,7 @@ def bake(
|
|
|
317
317
|
):
|
|
318
318
|
"""Bake image textures of selected objects
|
|
319
319
|
|
|
320
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
320
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
321
321
|
:type execution_context: int | str | None
|
|
322
322
|
:type undo: bool | None
|
|
323
323
|
:param type: Type, Type of pass to bake, some of them may not be supported by the current render engine
|
|
@@ -369,13 +369,13 @@ def bake(
|
|
|
369
369
|
...
|
|
370
370
|
|
|
371
371
|
def bake_image(
|
|
372
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
372
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
373
373
|
execution_context: int | str | None = None,
|
|
374
374
|
undo: bool | None = None,
|
|
375
375
|
):
|
|
376
376
|
"""Bake image textures of selected objects
|
|
377
377
|
|
|
378
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
378
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
379
379
|
:type execution_context: int | str | None
|
|
380
380
|
:type undo: bool | None
|
|
381
381
|
"""
|
|
@@ -383,7 +383,7 @@ def bake_image(
|
|
|
383
383
|
...
|
|
384
384
|
|
|
385
385
|
def camera_add(
|
|
386
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
386
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
387
387
|
execution_context: int | str | None = None,
|
|
388
388
|
undo: bool | None = None,
|
|
389
389
|
*,
|
|
@@ -403,7 +403,7 @@ def camera_add(
|
|
|
403
403
|
):
|
|
404
404
|
"""Add a camera object to the scene
|
|
405
405
|
|
|
406
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
406
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
407
407
|
:type execution_context: int | str | None
|
|
408
408
|
:type undo: bool | None
|
|
409
409
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
@@ -430,13 +430,13 @@ def camera_add(
|
|
|
430
430
|
...
|
|
431
431
|
|
|
432
432
|
def clear_override_library(
|
|
433
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
433
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
434
434
|
execution_context: int | str | None = None,
|
|
435
435
|
undo: bool | None = None,
|
|
436
436
|
):
|
|
437
437
|
"""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
|
|
438
438
|
|
|
439
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
440
440
|
:type execution_context: int | str | None
|
|
441
441
|
:type undo: bool | None
|
|
442
442
|
"""
|
|
@@ -444,13 +444,13 @@ def clear_override_library(
|
|
|
444
444
|
...
|
|
445
445
|
|
|
446
446
|
def collection_add(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
448
448
|
execution_context: int | str | None = None,
|
|
449
449
|
undo: bool | None = None,
|
|
450
450
|
):
|
|
451
451
|
"""Add an object to a new collection
|
|
452
452
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
453
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
454
454
|
:type execution_context: int | str | None
|
|
455
455
|
:type undo: bool | None
|
|
456
456
|
"""
|
|
@@ -458,7 +458,7 @@ def collection_add(
|
|
|
458
458
|
...
|
|
459
459
|
|
|
460
460
|
def collection_external_asset_drop(
|
|
461
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
462
462
|
execution_context: int | str | None = None,
|
|
463
463
|
undo: bool | None = None,
|
|
464
464
|
*,
|
|
@@ -482,7 +482,7 @@ def collection_external_asset_drop(
|
|
|
482
482
|
):
|
|
483
483
|
"""Add the dragged collection to the scene
|
|
484
484
|
|
|
485
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
485
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
486
486
|
:type execution_context: int | str | None
|
|
487
487
|
:type undo: bool | None
|
|
488
488
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -517,7 +517,7 @@ def collection_external_asset_drop(
|
|
|
517
517
|
...
|
|
518
518
|
|
|
519
519
|
def collection_instance_add(
|
|
520
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
520
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
521
521
|
execution_context: int | str | None = None,
|
|
522
522
|
undo: bool | None = None,
|
|
523
523
|
*,
|
|
@@ -541,7 +541,7 @@ def collection_instance_add(
|
|
|
541
541
|
):
|
|
542
542
|
"""Add a collection instance
|
|
543
543
|
|
|
544
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
544
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
545
545
|
:type execution_context: int | str | None
|
|
546
546
|
:type undo: bool | None
|
|
547
547
|
:param name: Name, Collection name to add
|
|
@@ -576,7 +576,7 @@ def collection_instance_add(
|
|
|
576
576
|
...
|
|
577
577
|
|
|
578
578
|
def collection_link(
|
|
579
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
579
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
580
580
|
execution_context: int | str | None = None,
|
|
581
581
|
undo: bool | None = None,
|
|
582
582
|
*,
|
|
@@ -584,7 +584,7 @@ def collection_link(
|
|
|
584
584
|
):
|
|
585
585
|
"""Add an object to an existing collection
|
|
586
586
|
|
|
587
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
587
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
588
588
|
:type execution_context: int | str | None
|
|
589
589
|
:type undo: bool | None
|
|
590
590
|
:param collection: Collection
|
|
@@ -594,13 +594,13 @@ def collection_link(
|
|
|
594
594
|
...
|
|
595
595
|
|
|
596
596
|
def collection_objects_select(
|
|
597
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
597
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
598
598
|
execution_context: int | str | None = None,
|
|
599
599
|
undo: bool | None = None,
|
|
600
600
|
):
|
|
601
601
|
"""Select all objects in collection
|
|
602
602
|
|
|
603
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
603
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
604
604
|
:type execution_context: int | str | None
|
|
605
605
|
:type undo: bool | None
|
|
606
606
|
"""
|
|
@@ -608,13 +608,13 @@ def collection_objects_select(
|
|
|
608
608
|
...
|
|
609
609
|
|
|
610
610
|
def collection_remove(
|
|
611
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
611
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
612
612
|
execution_context: int | str | None = None,
|
|
613
613
|
undo: bool | None = None,
|
|
614
614
|
):
|
|
615
615
|
"""Remove the active object from this collection
|
|
616
616
|
|
|
617
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
617
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
618
618
|
:type execution_context: int | str | None
|
|
619
619
|
:type undo: bool | None
|
|
620
620
|
"""
|
|
@@ -622,13 +622,13 @@ def collection_remove(
|
|
|
622
622
|
...
|
|
623
623
|
|
|
624
624
|
def collection_unlink(
|
|
625
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
625
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
626
626
|
execution_context: int | str | None = None,
|
|
627
627
|
undo: bool | None = None,
|
|
628
628
|
):
|
|
629
629
|
"""Unlink the collection from all objects
|
|
630
630
|
|
|
631
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
631
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
632
632
|
:type execution_context: int | str | None
|
|
633
633
|
:type undo: bool | None
|
|
634
634
|
"""
|
|
@@ -636,7 +636,7 @@ def collection_unlink(
|
|
|
636
636
|
...
|
|
637
637
|
|
|
638
638
|
def constraint_add(
|
|
639
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
639
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
640
640
|
execution_context: int | str | None = None,
|
|
641
641
|
undo: bool | None = None,
|
|
642
642
|
*,
|
|
@@ -644,7 +644,7 @@ def constraint_add(
|
|
|
644
644
|
):
|
|
645
645
|
"""Add a constraint to the active object
|
|
646
646
|
|
|
647
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
647
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
648
648
|
:type execution_context: int | str | None
|
|
649
649
|
:type undo: bool | None
|
|
650
650
|
:param type: Type
|
|
@@ -654,7 +654,7 @@ def constraint_add(
|
|
|
654
654
|
...
|
|
655
655
|
|
|
656
656
|
def constraint_add_with_targets(
|
|
657
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
657
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
658
658
|
execution_context: int | str | None = None,
|
|
659
659
|
undo: bool | None = None,
|
|
660
660
|
*,
|
|
@@ -662,7 +662,7 @@ def constraint_add_with_targets(
|
|
|
662
662
|
):
|
|
663
663
|
"""Add a constraint to the active object, with target (where applicable) set to the selected objects/bones
|
|
664
664
|
|
|
665
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
665
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
666
666
|
:type execution_context: int | str | None
|
|
667
667
|
:type undo: bool | None
|
|
668
668
|
:param type: Type
|
|
@@ -672,13 +672,13 @@ def constraint_add_with_targets(
|
|
|
672
672
|
...
|
|
673
673
|
|
|
674
674
|
def constraints_clear(
|
|
675
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
675
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
676
676
|
execution_context: int | str | None = None,
|
|
677
677
|
undo: bool | None = None,
|
|
678
678
|
):
|
|
679
679
|
"""Clear all constraints from the selected objects
|
|
680
680
|
|
|
681
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
681
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
682
682
|
:type execution_context: int | str | None
|
|
683
683
|
:type undo: bool | None
|
|
684
684
|
"""
|
|
@@ -686,13 +686,13 @@ def constraints_clear(
|
|
|
686
686
|
...
|
|
687
687
|
|
|
688
688
|
def constraints_copy(
|
|
689
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
689
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
690
690
|
execution_context: int | str | None = None,
|
|
691
691
|
undo: bool | None = None,
|
|
692
692
|
):
|
|
693
693
|
"""Copy constraints to other selected objects
|
|
694
694
|
|
|
695
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
695
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
696
696
|
:type execution_context: int | str | None
|
|
697
697
|
:type undo: bool | None
|
|
698
698
|
"""
|
|
@@ -700,7 +700,7 @@ def constraints_copy(
|
|
|
700
700
|
...
|
|
701
701
|
|
|
702
702
|
def convert(
|
|
703
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
703
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
704
704
|
execution_context: int | str | None = None,
|
|
705
705
|
undo: bool | None = None,
|
|
706
706
|
*,
|
|
@@ -716,7 +716,7 @@ def convert(
|
|
|
716
716
|
):
|
|
717
717
|
"""Convert selected objects to another type
|
|
718
718
|
|
|
719
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
719
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
720
720
|
:type execution_context: int | str | None
|
|
721
721
|
:type undo: bool | None
|
|
722
722
|
:param target: Target, Type of object to convert to
|
|
@@ -755,7 +755,7 @@ def convert(
|
|
|
755
755
|
...
|
|
756
756
|
|
|
757
757
|
def correctivesmooth_bind(
|
|
758
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
758
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
759
759
|
execution_context: int | str | None = None,
|
|
760
760
|
undo: bool | None = None,
|
|
761
761
|
*,
|
|
@@ -763,7 +763,7 @@ def correctivesmooth_bind(
|
|
|
763
763
|
):
|
|
764
764
|
"""Bind base pose in Corrective Smooth modifier
|
|
765
765
|
|
|
766
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
766
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
767
767
|
:type execution_context: int | str | None
|
|
768
768
|
:type undo: bool | None
|
|
769
769
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -773,7 +773,7 @@ def correctivesmooth_bind(
|
|
|
773
773
|
...
|
|
774
774
|
|
|
775
775
|
def curves_empty_hair_add(
|
|
776
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
776
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
777
777
|
execution_context: int | str | None = None,
|
|
778
778
|
undo: bool | None = None,
|
|
779
779
|
*,
|
|
@@ -792,7 +792,7 @@ def curves_empty_hair_add(
|
|
|
792
792
|
):
|
|
793
793
|
"""Add an empty curve object to the scene with the selected mesh as surface
|
|
794
794
|
|
|
795
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
795
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
796
796
|
:type execution_context: int | str | None
|
|
797
797
|
:type undo: bool | None
|
|
798
798
|
:param align: Align, The alignment of the new object
|
|
@@ -817,7 +817,7 @@ def curves_empty_hair_add(
|
|
|
817
817
|
...
|
|
818
818
|
|
|
819
819
|
def curves_random_add(
|
|
820
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
820
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
821
821
|
execution_context: int | str | None = None,
|
|
822
822
|
undo: bool | None = None,
|
|
823
823
|
*,
|
|
@@ -836,7 +836,7 @@ def curves_random_add(
|
|
|
836
836
|
):
|
|
837
837
|
"""Add a curves object with random curves to the scene
|
|
838
838
|
|
|
839
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
839
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
840
840
|
:type execution_context: int | str | None
|
|
841
841
|
:type undo: bool | None
|
|
842
842
|
:param align: Align, The alignment of the new object
|
|
@@ -861,7 +861,7 @@ def curves_random_add(
|
|
|
861
861
|
...
|
|
862
862
|
|
|
863
863
|
def data_instance_add(
|
|
864
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
864
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
865
865
|
execution_context: int | str | None = None,
|
|
866
866
|
undo: bool | None = None,
|
|
867
867
|
*,
|
|
@@ -926,7 +926,7 @@ def data_instance_add(
|
|
|
926
926
|
):
|
|
927
927
|
"""Add an object data instance
|
|
928
928
|
|
|
929
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
929
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
930
930
|
:type execution_context: int | str | None
|
|
931
931
|
:type undo: bool | None
|
|
932
932
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -961,7 +961,7 @@ def data_instance_add(
|
|
|
961
961
|
...
|
|
962
962
|
|
|
963
963
|
def data_transfer(
|
|
964
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
964
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
965
965
|
execution_context: int | str | None = None,
|
|
966
966
|
undo: bool | None = None,
|
|
967
967
|
*,
|
|
@@ -1026,7 +1026,7 @@ def data_transfer(
|
|
|
1026
1026
|
):
|
|
1027
1027
|
"""Transfer data layer(s) (weights, edge sharp, etc.) from active to selected meshes
|
|
1028
1028
|
|
|
1029
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1029
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1030
1030
|
:type execution_context: int | str | None
|
|
1031
1031
|
:type undo: bool | None
|
|
1032
1032
|
:param use_reverse_transfer: Reverse Transfer, Transfer from selected objects to active one
|
|
@@ -1109,7 +1109,7 @@ def data_transfer(
|
|
|
1109
1109
|
...
|
|
1110
1110
|
|
|
1111
1111
|
def datalayout_transfer(
|
|
1112
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1112
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1113
1113
|
execution_context: int | str | None = None,
|
|
1114
1114
|
undo: bool | None = None,
|
|
1115
1115
|
*,
|
|
@@ -1137,7 +1137,7 @@ def datalayout_transfer(
|
|
|
1137
1137
|
):
|
|
1138
1138
|
"""Transfer layout of data layer(s) from active to selected meshes
|
|
1139
1139
|
|
|
1140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1141
1141
|
:type execution_context: int | str | None
|
|
1142
1142
|
:type undo: bool | None
|
|
1143
1143
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1194,7 +1194,7 @@ def datalayout_transfer(
|
|
|
1194
1194
|
...
|
|
1195
1195
|
|
|
1196
1196
|
def delete(
|
|
1197
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1197
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1198
1198
|
execution_context: int | str | None = None,
|
|
1199
1199
|
undo: bool | None = None,
|
|
1200
1200
|
*,
|
|
@@ -1203,7 +1203,7 @@ def delete(
|
|
|
1203
1203
|
):
|
|
1204
1204
|
"""Delete selected objects
|
|
1205
1205
|
|
|
1206
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1206
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1207
1207
|
:type execution_context: int | str | None
|
|
1208
1208
|
:type undo: bool | None
|
|
1209
1209
|
:param use_global: Delete Globally, Remove object from all scenes
|
|
@@ -1215,7 +1215,7 @@ def delete(
|
|
|
1215
1215
|
...
|
|
1216
1216
|
|
|
1217
1217
|
def drop_geometry_nodes(
|
|
1218
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1219
1219
|
execution_context: int | str | None = None,
|
|
1220
1220
|
undo: bool | None = None,
|
|
1221
1221
|
*,
|
|
@@ -1224,7 +1224,7 @@ def drop_geometry_nodes(
|
|
|
1224
1224
|
):
|
|
1225
1225
|
"""Undocumented, consider contributing.
|
|
1226
1226
|
|
|
1227
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1227
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1228
1228
|
:type execution_context: int | str | None
|
|
1229
1229
|
:type undo: bool | None
|
|
1230
1230
|
:param session_uid: Session UID, Session UID of the geometry node group being dropped
|
|
@@ -1236,7 +1236,7 @@ def drop_geometry_nodes(
|
|
|
1236
1236
|
...
|
|
1237
1237
|
|
|
1238
1238
|
def drop_named_material(
|
|
1239
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1239
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1240
1240
|
execution_context: int | str | None = None,
|
|
1241
1241
|
undo: bool | None = None,
|
|
1242
1242
|
*,
|
|
@@ -1245,7 +1245,7 @@ def drop_named_material(
|
|
|
1245
1245
|
):
|
|
1246
1246
|
"""Undocumented, consider contributing.
|
|
1247
1247
|
|
|
1248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1248
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1249
1249
|
:type execution_context: int | str | None
|
|
1250
1250
|
:type undo: bool | None
|
|
1251
1251
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -1257,7 +1257,7 @@ def drop_named_material(
|
|
|
1257
1257
|
...
|
|
1258
1258
|
|
|
1259
1259
|
def duplicate(
|
|
1260
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1260
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1261
1261
|
execution_context: int | str | None = None,
|
|
1262
1262
|
undo: bool | None = None,
|
|
1263
1263
|
*,
|
|
@@ -1301,7 +1301,7 @@ def duplicate(
|
|
|
1301
1301
|
):
|
|
1302
1302
|
"""Duplicate selected objects
|
|
1303
1303
|
|
|
1304
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1304
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1305
1305
|
:type execution_context: int | str | None
|
|
1306
1306
|
:type undo: bool | None
|
|
1307
1307
|
:param linked: Linked, Duplicate object but not object data, linking to the original data
|
|
@@ -1313,7 +1313,7 @@ def duplicate(
|
|
|
1313
1313
|
...
|
|
1314
1314
|
|
|
1315
1315
|
def duplicate_move(
|
|
1316
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1316
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1317
1317
|
execution_context: int | str | None = None,
|
|
1318
1318
|
undo: bool | None = None,
|
|
1319
1319
|
*,
|
|
@@ -1322,7 +1322,7 @@ def duplicate_move(
|
|
|
1322
1322
|
):
|
|
1323
1323
|
"""Duplicate the selected objects and move them
|
|
1324
1324
|
|
|
1325
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1325
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1326
1326
|
:type execution_context: int | str | None
|
|
1327
1327
|
:type undo: bool | None
|
|
1328
1328
|
:param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
|
|
@@ -1334,7 +1334,7 @@ def duplicate_move(
|
|
|
1334
1334
|
...
|
|
1335
1335
|
|
|
1336
1336
|
def duplicate_move_linked(
|
|
1337
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1337
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1338
1338
|
execution_context: int | str | None = None,
|
|
1339
1339
|
undo: bool | None = None,
|
|
1340
1340
|
*,
|
|
@@ -1343,7 +1343,7 @@ def duplicate_move_linked(
|
|
|
1343
1343
|
):
|
|
1344
1344
|
"""Duplicate the selected objects, but not their object data, and move them
|
|
1345
1345
|
|
|
1346
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1346
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1347
1347
|
:type execution_context: int | str | None
|
|
1348
1348
|
:type undo: bool | None
|
|
1349
1349
|
:param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
|
|
@@ -1355,7 +1355,7 @@ def duplicate_move_linked(
|
|
|
1355
1355
|
...
|
|
1356
1356
|
|
|
1357
1357
|
def duplicates_make_real(
|
|
1358
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1358
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1359
1359
|
execution_context: int | str | None = None,
|
|
1360
1360
|
undo: bool | None = None,
|
|
1361
1361
|
*,
|
|
@@ -1364,7 +1364,7 @@ def duplicates_make_real(
|
|
|
1364
1364
|
):
|
|
1365
1365
|
"""Make instanced objects attached to this object real
|
|
1366
1366
|
|
|
1367
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1367
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1368
1368
|
:type execution_context: int | str | None
|
|
1369
1369
|
:type undo: bool | None
|
|
1370
1370
|
:param use_base_parent: Parent, Parent newly created objects to the original instancer
|
|
@@ -1376,13 +1376,13 @@ def duplicates_make_real(
|
|
|
1376
1376
|
...
|
|
1377
1377
|
|
|
1378
1378
|
def editmode_toggle(
|
|
1379
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1379
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1380
1380
|
execution_context: int | str | None = None,
|
|
1381
1381
|
undo: bool | None = None,
|
|
1382
1382
|
):
|
|
1383
1383
|
"""Toggle object's edit mode
|
|
1384
1384
|
|
|
1385
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1385
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1386
1386
|
:type execution_context: int | str | None
|
|
1387
1387
|
:type undo: bool | None
|
|
1388
1388
|
"""
|
|
@@ -1390,7 +1390,7 @@ def editmode_toggle(
|
|
|
1390
1390
|
...
|
|
1391
1391
|
|
|
1392
1392
|
def effector_add(
|
|
1393
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1393
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1394
1394
|
execution_context: int | str | None = None,
|
|
1395
1395
|
undo: bool | None = None,
|
|
1396
1396
|
*,
|
|
@@ -1427,7 +1427,7 @@ def effector_add(
|
|
|
1427
1427
|
):
|
|
1428
1428
|
"""Add an empty object with a physics effector to the scene
|
|
1429
1429
|
|
|
1430
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1430
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1431
1431
|
:type execution_context: int | str | None
|
|
1432
1432
|
:type undo: bool | None
|
|
1433
1433
|
:param type: Type
|
|
@@ -1458,7 +1458,7 @@ def effector_add(
|
|
|
1458
1458
|
...
|
|
1459
1459
|
|
|
1460
1460
|
def empty_add(
|
|
1461
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1462
1462
|
execution_context: int | str | None = None,
|
|
1463
1463
|
undo: bool | None = None,
|
|
1464
1464
|
*,
|
|
@@ -1489,7 +1489,7 @@ def empty_add(
|
|
|
1489
1489
|
):
|
|
1490
1490
|
"""Add an empty object to the scene
|
|
1491
1491
|
|
|
1492
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1492
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1493
1493
|
:type execution_context: int | str | None
|
|
1494
1494
|
:type undo: bool | None
|
|
1495
1495
|
:param type: Type
|
|
@@ -1518,7 +1518,7 @@ def empty_add(
|
|
|
1518
1518
|
...
|
|
1519
1519
|
|
|
1520
1520
|
def empty_image_add(
|
|
1521
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1521
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1522
1522
|
execution_context: int | str | None = None,
|
|
1523
1523
|
undo: bool | None = None,
|
|
1524
1524
|
*,
|
|
@@ -1576,7 +1576,7 @@ def empty_image_add(
|
|
|
1576
1576
|
):
|
|
1577
1577
|
"""Add an empty image type to scene with data
|
|
1578
1578
|
|
|
1579
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1579
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1580
1580
|
:type execution_context: int | str | None
|
|
1581
1581
|
:type undo: bool | None
|
|
1582
1582
|
:param filepath: File Path, Path to file
|
|
@@ -1686,7 +1686,7 @@ def empty_image_add(
|
|
|
1686
1686
|
...
|
|
1687
1687
|
|
|
1688
1688
|
def explode_refresh(
|
|
1689
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1689
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1690
1690
|
execution_context: int | str | None = None,
|
|
1691
1691
|
undo: bool | None = None,
|
|
1692
1692
|
*,
|
|
@@ -1694,7 +1694,7 @@ def explode_refresh(
|
|
|
1694
1694
|
):
|
|
1695
1695
|
"""Refresh data in the Explode modifier
|
|
1696
1696
|
|
|
1697
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1697
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1698
1698
|
:type execution_context: int | str | None
|
|
1699
1699
|
:type undo: bool | None
|
|
1700
1700
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1704,13 +1704,13 @@ def explode_refresh(
|
|
|
1704
1704
|
...
|
|
1705
1705
|
|
|
1706
1706
|
def forcefield_toggle(
|
|
1707
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1707
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1708
1708
|
execution_context: int | str | None = None,
|
|
1709
1709
|
undo: bool | None = None,
|
|
1710
1710
|
):
|
|
1711
1711
|
"""Toggle object's force field
|
|
1712
1712
|
|
|
1713
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1713
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1714
1714
|
:type execution_context: int | str | None
|
|
1715
1715
|
:type undo: bool | None
|
|
1716
1716
|
"""
|
|
@@ -1718,7 +1718,7 @@ def forcefield_toggle(
|
|
|
1718
1718
|
...
|
|
1719
1719
|
|
|
1720
1720
|
def geometry_node_bake_delete_single(
|
|
1721
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1721
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1722
1722
|
execution_context: int | str | None = None,
|
|
1723
1723
|
undo: bool | None = None,
|
|
1724
1724
|
*,
|
|
@@ -1728,7 +1728,7 @@ def geometry_node_bake_delete_single(
|
|
|
1728
1728
|
):
|
|
1729
1729
|
"""Delete baked data of a single bake node or simulation
|
|
1730
1730
|
|
|
1731
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1731
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1732
1732
|
:type execution_context: int | str | None
|
|
1733
1733
|
:type undo: bool | None
|
|
1734
1734
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1742,7 +1742,7 @@ def geometry_node_bake_delete_single(
|
|
|
1742
1742
|
...
|
|
1743
1743
|
|
|
1744
1744
|
def geometry_node_bake_single(
|
|
1745
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1745
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1746
1746
|
execution_context: int | str | None = None,
|
|
1747
1747
|
undo: bool | None = None,
|
|
1748
1748
|
*,
|
|
@@ -1752,7 +1752,7 @@ def geometry_node_bake_single(
|
|
|
1752
1752
|
):
|
|
1753
1753
|
"""Bake a single bake node or simulation
|
|
1754
1754
|
|
|
1755
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1755
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1756
1756
|
:type execution_context: int | str | None
|
|
1757
1757
|
:type undo: bool | None
|
|
1758
1758
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -1766,13 +1766,13 @@ def geometry_node_bake_single(
|
|
|
1766
1766
|
...
|
|
1767
1767
|
|
|
1768
1768
|
def geometry_node_tree_copy_assign(
|
|
1769
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1769
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1770
1770
|
execution_context: int | str | None = None,
|
|
1771
1771
|
undo: bool | None = None,
|
|
1772
1772
|
):
|
|
1773
1773
|
"""Copy the active geometry node group and assign it to the active modifier
|
|
1774
1774
|
|
|
1775
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1775
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1776
1776
|
:type execution_context: int | str | None
|
|
1777
1777
|
:type undo: bool | None
|
|
1778
1778
|
"""
|
|
@@ -1780,7 +1780,7 @@ def geometry_node_tree_copy_assign(
|
|
|
1780
1780
|
...
|
|
1781
1781
|
|
|
1782
1782
|
def geometry_nodes_input_attribute_toggle(
|
|
1783
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1783
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1784
1784
|
execution_context: int | str | None = None,
|
|
1785
1785
|
undo: bool | None = None,
|
|
1786
1786
|
*,
|
|
@@ -1789,7 +1789,7 @@ def geometry_nodes_input_attribute_toggle(
|
|
|
1789
1789
|
):
|
|
1790
1790
|
"""Switch between an attribute and a single value to define the data for every element
|
|
1791
1791
|
|
|
1792
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1792
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1793
1793
|
:type execution_context: int | str | None
|
|
1794
1794
|
:type undo: bool | None
|
|
1795
1795
|
:param input_name: Input Name
|
|
@@ -1801,7 +1801,7 @@ def geometry_nodes_input_attribute_toggle(
|
|
|
1801
1801
|
...
|
|
1802
1802
|
|
|
1803
1803
|
def geometry_nodes_move_to_nodes(
|
|
1804
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1804
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1805
1805
|
execution_context: int | str | None = None,
|
|
1806
1806
|
undo: bool | None = None,
|
|
1807
1807
|
*,
|
|
@@ -1809,7 +1809,7 @@ def geometry_nodes_move_to_nodes(
|
|
|
1809
1809
|
):
|
|
1810
1810
|
"""Move inputs and outputs from in the modifier to a new node group
|
|
1811
1811
|
|
|
1812
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1812
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1813
1813
|
:type execution_context: int | str | None
|
|
1814
1814
|
:type undo: bool | None
|
|
1815
1815
|
:param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
|
|
@@ -1819,7 +1819,7 @@ def geometry_nodes_move_to_nodes(
|
|
|
1819
1819
|
...
|
|
1820
1820
|
|
|
1821
1821
|
def gpencil_add(
|
|
1822
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1822
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1823
1823
|
execution_context: int | str | None = None,
|
|
1824
1824
|
undo: bool | None = None,
|
|
1825
1825
|
*,
|
|
@@ -1852,7 +1852,7 @@ def gpencil_add(
|
|
|
1852
1852
|
):
|
|
1853
1853
|
"""Add a Grease Pencil object to the scene
|
|
1854
1854
|
|
|
1855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1856
1856
|
:type execution_context: int | str | None
|
|
1857
1857
|
:type undo: bool | None
|
|
1858
1858
|
:param radius: Radius
|
|
@@ -1895,7 +1895,7 @@ def gpencil_add(
|
|
|
1895
1895
|
...
|
|
1896
1896
|
|
|
1897
1897
|
def grease_pencil_add(
|
|
1898
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1898
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1899
1899
|
execution_context: int | str | None = None,
|
|
1900
1900
|
undo: bool | None = None,
|
|
1901
1901
|
*,
|
|
@@ -1928,7 +1928,7 @@ def grease_pencil_add(
|
|
|
1928
1928
|
):
|
|
1929
1929
|
"""Add a Grease Pencil object to the scene
|
|
1930
1930
|
|
|
1931
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1931
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1932
1932
|
:type execution_context: int | str | None
|
|
1933
1933
|
:type undo: bool | None
|
|
1934
1934
|
:param type: Type
|
|
@@ -1971,7 +1971,7 @@ def grease_pencil_add(
|
|
|
1971
1971
|
...
|
|
1972
1972
|
|
|
1973
1973
|
def grease_pencil_dash_modifier_segment_add(
|
|
1974
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1974
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1975
1975
|
execution_context: int | str | None = None,
|
|
1976
1976
|
undo: bool | None = None,
|
|
1977
1977
|
*,
|
|
@@ -1979,7 +1979,7 @@ def grease_pencil_dash_modifier_segment_add(
|
|
|
1979
1979
|
):
|
|
1980
1980
|
"""Add a segment to the dash modifier
|
|
1981
1981
|
|
|
1982
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1982
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1983
1983
|
:type execution_context: int | str | None
|
|
1984
1984
|
:type undo: bool | None
|
|
1985
1985
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -1989,7 +1989,7 @@ def grease_pencil_dash_modifier_segment_add(
|
|
|
1989
1989
|
...
|
|
1990
1990
|
|
|
1991
1991
|
def grease_pencil_dash_modifier_segment_move(
|
|
1992
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1992
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1993
1993
|
execution_context: int | str | None = None,
|
|
1994
1994
|
undo: bool | None = None,
|
|
1995
1995
|
*,
|
|
@@ -1998,7 +1998,7 @@ def grease_pencil_dash_modifier_segment_move(
|
|
|
1998
1998
|
):
|
|
1999
1999
|
"""Move the active dash segment up or down
|
|
2000
2000
|
|
|
2001
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2001
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2002
2002
|
:type execution_context: int | str | None
|
|
2003
2003
|
:type undo: bool | None
|
|
2004
2004
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2010,7 +2010,7 @@ def grease_pencil_dash_modifier_segment_move(
|
|
|
2010
2010
|
...
|
|
2011
2011
|
|
|
2012
2012
|
def grease_pencil_dash_modifier_segment_remove(
|
|
2013
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2013
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2014
2014
|
execution_context: int | str | None = None,
|
|
2015
2015
|
undo: bool | None = None,
|
|
2016
2016
|
*,
|
|
@@ -2019,7 +2019,7 @@ def grease_pencil_dash_modifier_segment_remove(
|
|
|
2019
2019
|
):
|
|
2020
2020
|
"""Remove the active segment from the dash modifier
|
|
2021
2021
|
|
|
2022
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2022
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2023
2023
|
:type execution_context: int | str | None
|
|
2024
2024
|
:type undo: bool | None
|
|
2025
2025
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2031,7 +2031,7 @@ def grease_pencil_dash_modifier_segment_remove(
|
|
|
2031
2031
|
...
|
|
2032
2032
|
|
|
2033
2033
|
def grease_pencil_time_modifier_segment_add(
|
|
2034
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2034
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2035
2035
|
execution_context: int | str | None = None,
|
|
2036
2036
|
undo: bool | None = None,
|
|
2037
2037
|
*,
|
|
@@ -2039,7 +2039,7 @@ def grease_pencil_time_modifier_segment_add(
|
|
|
2039
2039
|
):
|
|
2040
2040
|
"""Add a segment to the time modifier
|
|
2041
2041
|
|
|
2042
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2042
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2043
2043
|
:type execution_context: int | str | None
|
|
2044
2044
|
:type undo: bool | None
|
|
2045
2045
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2049,7 +2049,7 @@ def grease_pencil_time_modifier_segment_add(
|
|
|
2049
2049
|
...
|
|
2050
2050
|
|
|
2051
2051
|
def grease_pencil_time_modifier_segment_move(
|
|
2052
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2052
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2053
2053
|
execution_context: int | str | None = None,
|
|
2054
2054
|
undo: bool | None = None,
|
|
2055
2055
|
*,
|
|
@@ -2058,7 +2058,7 @@ def grease_pencil_time_modifier_segment_move(
|
|
|
2058
2058
|
):
|
|
2059
2059
|
"""Move the active time segment up or down
|
|
2060
2060
|
|
|
2061
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2061
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2062
2062
|
:type execution_context: int | str | None
|
|
2063
2063
|
:type undo: bool | None
|
|
2064
2064
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2070,7 +2070,7 @@ def grease_pencil_time_modifier_segment_move(
|
|
|
2070
2070
|
...
|
|
2071
2071
|
|
|
2072
2072
|
def grease_pencil_time_modifier_segment_remove(
|
|
2073
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2073
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2074
2074
|
execution_context: int | str | None = None,
|
|
2075
2075
|
undo: bool | None = None,
|
|
2076
2076
|
*,
|
|
@@ -2079,7 +2079,7 @@ def grease_pencil_time_modifier_segment_remove(
|
|
|
2079
2079
|
):
|
|
2080
2080
|
"""Remove the active segment from the time modifier
|
|
2081
2081
|
|
|
2082
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2082
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2083
2083
|
:type execution_context: int | str | None
|
|
2084
2084
|
:type undo: bool | None
|
|
2085
2085
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2091,7 +2091,7 @@ def grease_pencil_time_modifier_segment_remove(
|
|
|
2091
2091
|
...
|
|
2092
2092
|
|
|
2093
2093
|
def hide_collection(
|
|
2094
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2094
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2095
2095
|
execution_context: int | str | None = None,
|
|
2096
2096
|
undo: bool | None = None,
|
|
2097
2097
|
*,
|
|
@@ -2101,7 +2101,7 @@ def hide_collection(
|
|
|
2101
2101
|
):
|
|
2102
2102
|
"""Show only objects in collection (Shift to extend)
|
|
2103
2103
|
|
|
2104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2104
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2105
2105
|
:type execution_context: int | str | None
|
|
2106
2106
|
:type undo: bool | None
|
|
2107
2107
|
:param collection_index: Collection Index, Index of the collection to change visibility
|
|
@@ -2115,13 +2115,13 @@ def hide_collection(
|
|
|
2115
2115
|
...
|
|
2116
2116
|
|
|
2117
2117
|
def hide_render_clear_all(
|
|
2118
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2118
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2119
2119
|
execution_context: int | str | None = None,
|
|
2120
2120
|
undo: bool | None = None,
|
|
2121
2121
|
):
|
|
2122
2122
|
"""Reveal all render objects by setting the hide render flag
|
|
2123
2123
|
|
|
2124
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2124
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2125
2125
|
:type execution_context: int | str | None
|
|
2126
2126
|
:type undo: bool | None
|
|
2127
2127
|
"""
|
|
@@ -2129,7 +2129,7 @@ def hide_render_clear_all(
|
|
|
2129
2129
|
...
|
|
2130
2130
|
|
|
2131
2131
|
def hide_view_clear(
|
|
2132
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2132
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2133
2133
|
execution_context: int | str | None = None,
|
|
2134
2134
|
undo: bool | None = None,
|
|
2135
2135
|
*,
|
|
@@ -2137,17 +2137,17 @@ def hide_view_clear(
|
|
|
2137
2137
|
):
|
|
2138
2138
|
"""Reveal temporarily hidden objects
|
|
2139
2139
|
|
|
2140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2141
2141
|
:type execution_context: int | str | None
|
|
2142
2142
|
:type undo: bool | None
|
|
2143
|
-
:param select: Select
|
|
2143
|
+
:param select: Select, Select revealed objects
|
|
2144
2144
|
:type select: bool | None
|
|
2145
2145
|
"""
|
|
2146
2146
|
|
|
2147
2147
|
...
|
|
2148
2148
|
|
|
2149
2149
|
def hide_view_set(
|
|
2150
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2151
2151
|
execution_context: int | str | None = None,
|
|
2152
2152
|
undo: bool | None = None,
|
|
2153
2153
|
*,
|
|
@@ -2155,7 +2155,7 @@ def hide_view_set(
|
|
|
2155
2155
|
):
|
|
2156
2156
|
"""Temporarily hide objects from the viewport
|
|
2157
2157
|
|
|
2158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2158
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2159
2159
|
:type execution_context: int | str | None
|
|
2160
2160
|
:type undo: bool | None
|
|
2161
2161
|
:param unselected: Unselected, Hide unselected rather than selected objects
|
|
@@ -2165,13 +2165,13 @@ def hide_view_set(
|
|
|
2165
2165
|
...
|
|
2166
2166
|
|
|
2167
2167
|
def hook_add_newob(
|
|
2168
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2168
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2169
2169
|
execution_context: int | str | None = None,
|
|
2170
2170
|
undo: bool | None = None,
|
|
2171
2171
|
):
|
|
2172
2172
|
"""Hook selected vertices to a newly created object
|
|
2173
2173
|
|
|
2174
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2174
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2175
2175
|
:type execution_context: int | str | None
|
|
2176
2176
|
:type undo: bool | None
|
|
2177
2177
|
"""
|
|
@@ -2179,7 +2179,7 @@ def hook_add_newob(
|
|
|
2179
2179
|
...
|
|
2180
2180
|
|
|
2181
2181
|
def hook_add_selob(
|
|
2182
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2182
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2183
2183
|
execution_context: int | str | None = None,
|
|
2184
2184
|
undo: bool | None = None,
|
|
2185
2185
|
*,
|
|
@@ -2187,7 +2187,7 @@ def hook_add_selob(
|
|
|
2187
2187
|
):
|
|
2188
2188
|
"""Hook selected vertices to the first selected object
|
|
2189
2189
|
|
|
2190
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2190
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2191
2191
|
:type execution_context: int | str | None
|
|
2192
2192
|
:type undo: bool | None
|
|
2193
2193
|
:param use_bone: Active Bone, Assign the hook to the hook object's active bone
|
|
@@ -2197,7 +2197,7 @@ def hook_add_selob(
|
|
|
2197
2197
|
...
|
|
2198
2198
|
|
|
2199
2199
|
def hook_assign(
|
|
2200
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2200
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2201
2201
|
execution_context: int | str | None = None,
|
|
2202
2202
|
undo: bool | None = None,
|
|
2203
2203
|
*,
|
|
@@ -2205,7 +2205,7 @@ def hook_assign(
|
|
|
2205
2205
|
):
|
|
2206
2206
|
"""Assign the selected vertices to a hook
|
|
2207
2207
|
|
|
2208
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2208
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2209
2209
|
:type execution_context: int | str | None
|
|
2210
2210
|
:type undo: bool | None
|
|
2211
2211
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -2215,7 +2215,7 @@ def hook_assign(
|
|
|
2215
2215
|
...
|
|
2216
2216
|
|
|
2217
2217
|
def hook_recenter(
|
|
2218
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2219
2219
|
execution_context: int | str | None = None,
|
|
2220
2220
|
undo: bool | None = None,
|
|
2221
2221
|
*,
|
|
@@ -2223,7 +2223,7 @@ def hook_recenter(
|
|
|
2223
2223
|
):
|
|
2224
2224
|
"""Set hook center to cursor position
|
|
2225
2225
|
|
|
2226
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2226
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2227
2227
|
:type execution_context: int | str | None
|
|
2228
2228
|
:type undo: bool | None
|
|
2229
2229
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -2233,7 +2233,7 @@ def hook_recenter(
|
|
|
2233
2233
|
...
|
|
2234
2234
|
|
|
2235
2235
|
def hook_remove(
|
|
2236
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2236
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2237
2237
|
execution_context: int | str | None = None,
|
|
2238
2238
|
undo: bool | None = None,
|
|
2239
2239
|
*,
|
|
@@ -2241,7 +2241,7 @@ def hook_remove(
|
|
|
2241
2241
|
):
|
|
2242
2242
|
"""Remove a hook from the active object
|
|
2243
2243
|
|
|
2244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2244
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2245
2245
|
:type execution_context: int | str | None
|
|
2246
2246
|
:type undo: bool | None
|
|
2247
2247
|
:param modifier: Modifier, Modifier number to remove
|
|
@@ -2251,7 +2251,7 @@ def hook_remove(
|
|
|
2251
2251
|
...
|
|
2252
2252
|
|
|
2253
2253
|
def hook_reset(
|
|
2254
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2254
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2255
2255
|
execution_context: int | str | None = None,
|
|
2256
2256
|
undo: bool | None = None,
|
|
2257
2257
|
*,
|
|
@@ -2259,7 +2259,7 @@ def hook_reset(
|
|
|
2259
2259
|
):
|
|
2260
2260
|
"""Recalculate and clear offset transformation
|
|
2261
2261
|
|
|
2262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2262
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2263
2263
|
:type execution_context: int | str | None
|
|
2264
2264
|
:type undo: bool | None
|
|
2265
2265
|
:param modifier: Modifier, Modifier number to assign to
|
|
@@ -2269,7 +2269,7 @@ def hook_reset(
|
|
|
2269
2269
|
...
|
|
2270
2270
|
|
|
2271
2271
|
def hook_select(
|
|
2272
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2272
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2273
2273
|
execution_context: int | str | None = None,
|
|
2274
2274
|
undo: bool | None = None,
|
|
2275
2275
|
*,
|
|
@@ -2277,7 +2277,7 @@ def hook_select(
|
|
|
2277
2277
|
):
|
|
2278
2278
|
"""Select affected vertices on mesh
|
|
2279
2279
|
|
|
2280
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2280
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2281
2281
|
:type execution_context: int | str | None
|
|
2282
2282
|
:type undo: bool | None
|
|
2283
2283
|
:param modifier: Modifier, Modifier number to remove
|
|
@@ -2287,13 +2287,13 @@ def hook_select(
|
|
|
2287
2287
|
...
|
|
2288
2288
|
|
|
2289
2289
|
def instance_offset_from_cursor(
|
|
2290
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2290
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2291
2291
|
execution_context: int | str | None = None,
|
|
2292
2292
|
undo: bool | None = None,
|
|
2293
2293
|
):
|
|
2294
2294
|
"""Set offset used for collection instances based on cursor position
|
|
2295
2295
|
|
|
2296
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2296
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2297
2297
|
:type execution_context: int | str | None
|
|
2298
2298
|
:type undo: bool | None
|
|
2299
2299
|
"""
|
|
@@ -2301,13 +2301,13 @@ def instance_offset_from_cursor(
|
|
|
2301
2301
|
...
|
|
2302
2302
|
|
|
2303
2303
|
def instance_offset_from_object(
|
|
2304
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2304
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2305
2305
|
execution_context: int | str | None = None,
|
|
2306
2306
|
undo: bool | None = None,
|
|
2307
2307
|
):
|
|
2308
2308
|
"""Set offset used for collection instances based on the active object position
|
|
2309
2309
|
|
|
2310
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2310
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2311
2311
|
:type execution_context: int | str | None
|
|
2312
2312
|
:type undo: bool | None
|
|
2313
2313
|
"""
|
|
@@ -2315,13 +2315,13 @@ def instance_offset_from_object(
|
|
|
2315
2315
|
...
|
|
2316
2316
|
|
|
2317
2317
|
def instance_offset_to_cursor(
|
|
2318
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2318
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2319
2319
|
execution_context: int | str | None = None,
|
|
2320
2320
|
undo: bool | None = None,
|
|
2321
2321
|
):
|
|
2322
2322
|
"""Set cursor position to the offset used for collection instances
|
|
2323
2323
|
|
|
2324
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2324
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2325
2325
|
:type execution_context: int | str | None
|
|
2326
2326
|
:type undo: bool | None
|
|
2327
2327
|
"""
|
|
@@ -2329,13 +2329,13 @@ def instance_offset_to_cursor(
|
|
|
2329
2329
|
...
|
|
2330
2330
|
|
|
2331
2331
|
def isolate_type_render(
|
|
2332
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2332
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2333
2333
|
execution_context: int | str | None = None,
|
|
2334
2334
|
undo: bool | None = None,
|
|
2335
2335
|
):
|
|
2336
2336
|
"""Hide unselected render objects of same type as active by setting the hide render flag
|
|
2337
2337
|
|
|
2338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2339
2339
|
:type execution_context: int | str | None
|
|
2340
2340
|
:type undo: bool | None
|
|
2341
2341
|
"""
|
|
@@ -2343,13 +2343,13 @@ def isolate_type_render(
|
|
|
2343
2343
|
...
|
|
2344
2344
|
|
|
2345
2345
|
def join(
|
|
2346
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2346
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2347
2347
|
execution_context: int | str | None = None,
|
|
2348
2348
|
undo: bool | None = None,
|
|
2349
2349
|
):
|
|
2350
2350
|
"""Join selected objects into active object
|
|
2351
2351
|
|
|
2352
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2352
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2353
2353
|
:type execution_context: int | str | None
|
|
2354
2354
|
:type undo: bool | None
|
|
2355
2355
|
"""
|
|
@@ -2357,13 +2357,13 @@ def join(
|
|
|
2357
2357
|
...
|
|
2358
2358
|
|
|
2359
2359
|
def join_shapes(
|
|
2360
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2360
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2361
2361
|
execution_context: int | str | None = None,
|
|
2362
2362
|
undo: bool | None = None,
|
|
2363
2363
|
):
|
|
2364
2364
|
"""Copy the current resulting shape of another selected object to this one
|
|
2365
2365
|
|
|
2366
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2366
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2367
2367
|
:type execution_context: int | str | None
|
|
2368
2368
|
:type undo: bool | None
|
|
2369
2369
|
"""
|
|
@@ -2371,13 +2371,13 @@ def join_shapes(
|
|
|
2371
2371
|
...
|
|
2372
2372
|
|
|
2373
2373
|
def join_uvs(
|
|
2374
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2374
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2375
2375
|
execution_context: int | str | None = None,
|
|
2376
2376
|
undo: bool | None = None,
|
|
2377
2377
|
):
|
|
2378
2378
|
"""Transfer UV Maps from active to selected objects (needs matching geometry)
|
|
2379
2379
|
|
|
2380
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2380
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2381
2381
|
:type execution_context: int | str | None
|
|
2382
2382
|
:type undo: bool | None
|
|
2383
2383
|
"""
|
|
@@ -2385,7 +2385,7 @@ def join_uvs(
|
|
|
2385
2385
|
...
|
|
2386
2386
|
|
|
2387
2387
|
def laplaciandeform_bind(
|
|
2388
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2388
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2389
2389
|
execution_context: int | str | None = None,
|
|
2390
2390
|
undo: bool | None = None,
|
|
2391
2391
|
*,
|
|
@@ -2393,7 +2393,7 @@ def laplaciandeform_bind(
|
|
|
2393
2393
|
):
|
|
2394
2394
|
"""Bind mesh to system in laplacian deform modifier
|
|
2395
2395
|
|
|
2396
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2396
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2397
2397
|
:type execution_context: int | str | None
|
|
2398
2398
|
:type undo: bool | None
|
|
2399
2399
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -2403,7 +2403,7 @@ def laplaciandeform_bind(
|
|
|
2403
2403
|
...
|
|
2404
2404
|
|
|
2405
2405
|
def light_add(
|
|
2406
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2406
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2407
2407
|
execution_context: int | str | None = None,
|
|
2408
2408
|
undo: bool | None = None,
|
|
2409
2409
|
*,
|
|
@@ -2424,7 +2424,7 @@ def light_add(
|
|
|
2424
2424
|
):
|
|
2425
2425
|
"""Add a light object to the scene
|
|
2426
2426
|
|
|
2427
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2427
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2428
2428
|
:type execution_context: int | str | None
|
|
2429
2429
|
:type undo: bool | None
|
|
2430
2430
|
:param type: Type
|
|
@@ -2453,13 +2453,13 @@ def light_add(
|
|
|
2453
2453
|
...
|
|
2454
2454
|
|
|
2455
2455
|
def light_linking_blocker_collection_new(
|
|
2456
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2456
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2457
2457
|
execution_context: int | str | None = None,
|
|
2458
2458
|
undo: bool | None = None,
|
|
2459
2459
|
):
|
|
2460
2460
|
"""Create new light linking collection used by the active emitter
|
|
2461
2461
|
|
|
2462
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2462
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2463
2463
|
:type execution_context: int | str | None
|
|
2464
2464
|
:type undo: bool | None
|
|
2465
2465
|
"""
|
|
@@ -2467,7 +2467,7 @@ def light_linking_blocker_collection_new(
|
|
|
2467
2467
|
...
|
|
2468
2468
|
|
|
2469
2469
|
def light_linking_blockers_link(
|
|
2470
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2470
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2471
2471
|
execution_context: int | str | None = None,
|
|
2472
2472
|
undo: bool | None = None,
|
|
2473
2473
|
*,
|
|
@@ -2475,7 +2475,7 @@ def light_linking_blockers_link(
|
|
|
2475
2475
|
):
|
|
2476
2476
|
"""Light link selected blockers to the active emitter object
|
|
2477
2477
|
|
|
2478
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2478
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2479
2479
|
:type execution_context: int | str | None
|
|
2480
2480
|
:type undo: bool | None
|
|
2481
2481
|
:param link_state: Link State, State of the shadow linking
|
|
@@ -2491,13 +2491,13 @@ def light_linking_blockers_link(
|
|
|
2491
2491
|
...
|
|
2492
2492
|
|
|
2493
2493
|
def light_linking_blockers_select(
|
|
2494
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2494
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2495
2495
|
execution_context: int | str | None = None,
|
|
2496
2496
|
undo: bool | None = None,
|
|
2497
2497
|
):
|
|
2498
2498
|
"""Select all objects which block light from this emitter
|
|
2499
2499
|
|
|
2500
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2500
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2501
2501
|
:type execution_context: int | str | None
|
|
2502
2502
|
:type undo: bool | None
|
|
2503
2503
|
"""
|
|
@@ -2505,13 +2505,13 @@ def light_linking_blockers_select(
|
|
|
2505
2505
|
...
|
|
2506
2506
|
|
|
2507
2507
|
def light_linking_receiver_collection_new(
|
|
2508
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2508
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2509
2509
|
execution_context: int | str | None = None,
|
|
2510
2510
|
undo: bool | None = None,
|
|
2511
2511
|
):
|
|
2512
2512
|
"""Create new light linking collection used by the active emitter
|
|
2513
2513
|
|
|
2514
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2514
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2515
2515
|
:type execution_context: int | str | None
|
|
2516
2516
|
:type undo: bool | None
|
|
2517
2517
|
"""
|
|
@@ -2519,7 +2519,7 @@ def light_linking_receiver_collection_new(
|
|
|
2519
2519
|
...
|
|
2520
2520
|
|
|
2521
2521
|
def light_linking_receivers_link(
|
|
2522
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2522
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2523
2523
|
execution_context: int | str | None = None,
|
|
2524
2524
|
undo: bool | None = None,
|
|
2525
2525
|
*,
|
|
@@ -2527,7 +2527,7 @@ def light_linking_receivers_link(
|
|
|
2527
2527
|
):
|
|
2528
2528
|
"""Light link selected receivers to the active emitter object
|
|
2529
2529
|
|
|
2530
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2530
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2531
2531
|
:type execution_context: int | str | None
|
|
2532
2532
|
:type undo: bool | None
|
|
2533
2533
|
:param link_state: Link State, State of the light linking
|
|
@@ -2543,13 +2543,13 @@ def light_linking_receivers_link(
|
|
|
2543
2543
|
...
|
|
2544
2544
|
|
|
2545
2545
|
def light_linking_receivers_select(
|
|
2546
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2546
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2547
2547
|
execution_context: int | str | None = None,
|
|
2548
2548
|
undo: bool | None = None,
|
|
2549
2549
|
):
|
|
2550
2550
|
"""Select all objects which receive light from this emitter
|
|
2551
2551
|
|
|
2552
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2552
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2553
2553
|
:type execution_context: int | str | None
|
|
2554
2554
|
:type undo: bool | None
|
|
2555
2555
|
"""
|
|
@@ -2557,13 +2557,13 @@ def light_linking_receivers_select(
|
|
|
2557
2557
|
...
|
|
2558
2558
|
|
|
2559
2559
|
def light_linking_unlink_from_collection(
|
|
2560
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2560
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2561
2561
|
execution_context: int | str | None = None,
|
|
2562
2562
|
undo: bool | None = None,
|
|
2563
2563
|
):
|
|
2564
2564
|
"""Remove this object or collection from the light linking collection
|
|
2565
2565
|
|
|
2566
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2566
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2567
2567
|
:type execution_context: int | str | None
|
|
2568
2568
|
:type undo: bool | None
|
|
2569
2569
|
"""
|
|
@@ -2571,7 +2571,7 @@ def light_linking_unlink_from_collection(
|
|
|
2571
2571
|
...
|
|
2572
2572
|
|
|
2573
2573
|
def lightprobe_add(
|
|
2574
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2574
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2575
2575
|
execution_context: int | str | None = None,
|
|
2576
2576
|
undo: bool | None = None,
|
|
2577
2577
|
*,
|
|
@@ -2593,7 +2593,7 @@ def lightprobe_add(
|
|
|
2593
2593
|
):
|
|
2594
2594
|
"""Add a light probe object
|
|
2595
2595
|
|
|
2596
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2596
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2597
2597
|
:type execution_context: int | str | None
|
|
2598
2598
|
:type undo: bool | None
|
|
2599
2599
|
:param type: Type
|
|
@@ -2633,7 +2633,7 @@ def lightprobe_add(
|
|
|
2633
2633
|
...
|
|
2634
2634
|
|
|
2635
2635
|
def lightprobe_cache_bake(
|
|
2636
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2636
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2637
2637
|
execution_context: int | str | None = None,
|
|
2638
2638
|
undo: bool | None = None,
|
|
2639
2639
|
*,
|
|
@@ -2641,7 +2641,7 @@ def lightprobe_cache_bake(
|
|
|
2641
2641
|
):
|
|
2642
2642
|
"""Bake irradiance volume light cache
|
|
2643
2643
|
|
|
2644
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2644
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2645
2645
|
:type execution_context: int | str | None
|
|
2646
2646
|
:type undo: bool | None
|
|
2647
2647
|
:param subset: Subset, Subset of probes to update
|
|
@@ -2660,7 +2660,7 @@ def lightprobe_cache_bake(
|
|
|
2660
2660
|
...
|
|
2661
2661
|
|
|
2662
2662
|
def lightprobe_cache_free(
|
|
2663
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2663
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2664
2664
|
execution_context: int | str | None = None,
|
|
2665
2665
|
undo: bool | None = None,
|
|
2666
2666
|
*,
|
|
@@ -2668,7 +2668,7 @@ def lightprobe_cache_free(
|
|
|
2668
2668
|
):
|
|
2669
2669
|
"""Delete cached indirect lighting
|
|
2670
2670
|
|
|
2671
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2671
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2672
2672
|
:type execution_context: int | str | None
|
|
2673
2673
|
:type undo: bool | None
|
|
2674
2674
|
:param subset: Subset, Subset of probes to update
|
|
@@ -2687,7 +2687,7 @@ def lightprobe_cache_free(
|
|
|
2687
2687
|
...
|
|
2688
2688
|
|
|
2689
2689
|
def lineart_bake_strokes(
|
|
2690
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2690
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2691
2691
|
execution_context: int | str | None = None,
|
|
2692
2692
|
undo: bool | None = None,
|
|
2693
2693
|
*,
|
|
@@ -2695,7 +2695,7 @@ def lineart_bake_strokes(
|
|
|
2695
2695
|
):
|
|
2696
2696
|
"""Bake Line Art for current Grease Pencil object
|
|
2697
2697
|
|
|
2698
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2698
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2699
2699
|
:type execution_context: int | str | None
|
|
2700
2700
|
:type undo: bool | None
|
|
2701
2701
|
:param bake_all: Bake All, Bake all line art modifiers
|
|
@@ -2705,7 +2705,7 @@ def lineart_bake_strokes(
|
|
|
2705
2705
|
...
|
|
2706
2706
|
|
|
2707
2707
|
def lineart_clear(
|
|
2708
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2708
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2709
2709
|
execution_context: int | str | None = None,
|
|
2710
2710
|
undo: bool | None = None,
|
|
2711
2711
|
*,
|
|
@@ -2713,7 +2713,7 @@ def lineart_clear(
|
|
|
2713
2713
|
):
|
|
2714
2714
|
"""Clear all strokes in current Grease Pencil object
|
|
2715
2715
|
|
|
2716
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2716
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2717
2717
|
:type execution_context: int | str | None
|
|
2718
2718
|
:type undo: bool | None
|
|
2719
2719
|
:param clear_all: Clear All, Clear all line art modifier bakes
|
|
@@ -2723,7 +2723,7 @@ def lineart_clear(
|
|
|
2723
2723
|
...
|
|
2724
2724
|
|
|
2725
2725
|
def link_to_collection(
|
|
2726
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2726
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2727
2727
|
execution_context: int | str | None = None,
|
|
2728
2728
|
undo: bool | None = None,
|
|
2729
2729
|
*,
|
|
@@ -2733,7 +2733,7 @@ def link_to_collection(
|
|
|
2733
2733
|
):
|
|
2734
2734
|
"""Link objects to a collection
|
|
2735
2735
|
|
|
2736
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2736
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2737
2737
|
:type execution_context: int | str | None
|
|
2738
2738
|
:type undo: bool | None
|
|
2739
2739
|
:param collection_index: Collection Index, Index of the collection to move to
|
|
@@ -2747,7 +2747,7 @@ def link_to_collection(
|
|
|
2747
2747
|
...
|
|
2748
2748
|
|
|
2749
2749
|
def location_clear(
|
|
2750
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2750
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2751
2751
|
execution_context: int | str | None = None,
|
|
2752
2752
|
undo: bool | None = None,
|
|
2753
2753
|
*,
|
|
@@ -2755,7 +2755,7 @@ def location_clear(
|
|
|
2755
2755
|
):
|
|
2756
2756
|
"""Clear the object's location
|
|
2757
2757
|
|
|
2758
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2758
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2759
2759
|
:type execution_context: int | str | None
|
|
2760
2760
|
:type undo: bool | None
|
|
2761
2761
|
:param clear_delta: Clear Delta, Clear delta location in addition to clearing the normal location transform
|
|
@@ -2765,13 +2765,13 @@ def location_clear(
|
|
|
2765
2765
|
...
|
|
2766
2766
|
|
|
2767
2767
|
def make_dupli_face(
|
|
2768
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2768
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2769
2769
|
execution_context: int | str | None = None,
|
|
2770
2770
|
undo: bool | None = None,
|
|
2771
2771
|
):
|
|
2772
2772
|
"""Convert objects into instanced faces
|
|
2773
2773
|
|
|
2774
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2774
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2775
2775
|
:type execution_context: int | str | None
|
|
2776
2776
|
:type undo: bool | None
|
|
2777
2777
|
"""
|
|
@@ -2779,7 +2779,7 @@ def make_dupli_face(
|
|
|
2779
2779
|
...
|
|
2780
2780
|
|
|
2781
2781
|
def make_links_data(
|
|
2782
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2782
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2783
2783
|
execution_context: int | str | None = None,
|
|
2784
2784
|
undo: bool | None = None,
|
|
2785
2785
|
*,
|
|
@@ -2797,7 +2797,7 @@ def make_links_data(
|
|
|
2797
2797
|
):
|
|
2798
2798
|
"""Transfer data from active object to selected objects
|
|
2799
2799
|
|
|
2800
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2800
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2801
2801
|
:type execution_context: int | str | None
|
|
2802
2802
|
:type undo: bool | None
|
|
2803
2803
|
:param type: Type
|
|
@@ -2831,7 +2831,7 @@ def make_links_data(
|
|
|
2831
2831
|
...
|
|
2832
2832
|
|
|
2833
2833
|
def make_links_scene(
|
|
2834
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2834
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2835
2835
|
execution_context: int | str | None = None,
|
|
2836
2836
|
undo: bool | None = None,
|
|
2837
2837
|
*,
|
|
@@ -2839,7 +2839,7 @@ def make_links_scene(
|
|
|
2839
2839
|
):
|
|
2840
2840
|
"""Link selection to another scene
|
|
2841
2841
|
|
|
2842
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2842
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2843
2843
|
:type execution_context: int | str | None
|
|
2844
2844
|
:type undo: bool | None
|
|
2845
2845
|
:param scene: Scene
|
|
@@ -2849,7 +2849,7 @@ def make_links_scene(
|
|
|
2849
2849
|
...
|
|
2850
2850
|
|
|
2851
2851
|
def make_local(
|
|
2852
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2852
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2853
2853
|
execution_context: int | str | None = None,
|
|
2854
2854
|
undo: bool | None = None,
|
|
2855
2855
|
*,
|
|
@@ -2860,7 +2860,7 @@ def make_local(
|
|
|
2860
2860
|
):
|
|
2861
2861
|
"""Make library linked data-blocks local to this file
|
|
2862
2862
|
|
|
2863
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2863
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2864
2864
|
:type execution_context: int | str | None
|
|
2865
2865
|
:type undo: bool | None
|
|
2866
2866
|
:param type: Type
|
|
@@ -2870,7 +2870,7 @@ def make_local(
|
|
|
2870
2870
|
...
|
|
2871
2871
|
|
|
2872
2872
|
def make_override_library(
|
|
2873
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2873
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2874
2874
|
execution_context: int | str | None = None,
|
|
2875
2875
|
undo: bool | None = None,
|
|
2876
2876
|
*,
|
|
@@ -2878,7 +2878,7 @@ def make_override_library(
|
|
|
2878
2878
|
):
|
|
2879
2879
|
"""Create a local override of the selected linked objects, and their hierarchy of dependencies
|
|
2880
2880
|
|
|
2881
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2881
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2882
2882
|
:type execution_context: int | str | None
|
|
2883
2883
|
:type undo: bool | None
|
|
2884
2884
|
:param collection: Override Collection, Session UID of the directly linked collection containing the selected object, to make an override from
|
|
@@ -2888,7 +2888,7 @@ def make_override_library(
|
|
|
2888
2888
|
...
|
|
2889
2889
|
|
|
2890
2890
|
def make_single_user(
|
|
2891
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2891
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2892
2892
|
execution_context: int | str | None = None,
|
|
2893
2893
|
undo: bool | None = None,
|
|
2894
2894
|
*,
|
|
@@ -2901,7 +2901,7 @@ def make_single_user(
|
|
|
2901
2901
|
):
|
|
2902
2902
|
"""Make linked data local to each object
|
|
2903
2903
|
|
|
2904
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2904
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2905
2905
|
:type execution_context: int | str | None
|
|
2906
2906
|
:type undo: bool | None
|
|
2907
2907
|
:param type: Type
|
|
@@ -2921,13 +2921,13 @@ def make_single_user(
|
|
|
2921
2921
|
...
|
|
2922
2922
|
|
|
2923
2923
|
def material_slot_add(
|
|
2924
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2924
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2925
2925
|
execution_context: int | str | None = None,
|
|
2926
2926
|
undo: bool | None = None,
|
|
2927
2927
|
):
|
|
2928
2928
|
"""Add a new material slot
|
|
2929
2929
|
|
|
2930
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2930
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2931
2931
|
:type execution_context: int | str | None
|
|
2932
2932
|
:type undo: bool | None
|
|
2933
2933
|
"""
|
|
@@ -2935,13 +2935,13 @@ def material_slot_add(
|
|
|
2935
2935
|
...
|
|
2936
2936
|
|
|
2937
2937
|
def material_slot_assign(
|
|
2938
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2938
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2939
2939
|
execution_context: int | str | None = None,
|
|
2940
2940
|
undo: bool | None = None,
|
|
2941
2941
|
):
|
|
2942
2942
|
"""Assign active material slot to selection
|
|
2943
2943
|
|
|
2944
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2944
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2945
2945
|
:type execution_context: int | str | None
|
|
2946
2946
|
:type undo: bool | None
|
|
2947
2947
|
"""
|
|
@@ -2949,13 +2949,13 @@ def material_slot_assign(
|
|
|
2949
2949
|
...
|
|
2950
2950
|
|
|
2951
2951
|
def material_slot_copy(
|
|
2952
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2952
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2953
2953
|
execution_context: int | str | None = None,
|
|
2954
2954
|
undo: bool | None = None,
|
|
2955
2955
|
):
|
|
2956
2956
|
"""Copy material to selected objects
|
|
2957
2957
|
|
|
2958
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2958
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2959
2959
|
:type execution_context: int | str | None
|
|
2960
2960
|
:type undo: bool | None
|
|
2961
2961
|
"""
|
|
@@ -2963,13 +2963,13 @@ def material_slot_copy(
|
|
|
2963
2963
|
...
|
|
2964
2964
|
|
|
2965
2965
|
def material_slot_deselect(
|
|
2966
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2966
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2967
2967
|
execution_context: int | str | None = None,
|
|
2968
2968
|
undo: bool | None = None,
|
|
2969
2969
|
):
|
|
2970
2970
|
"""Deselect by active material slot
|
|
2971
2971
|
|
|
2972
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2972
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2973
2973
|
:type execution_context: int | str | None
|
|
2974
2974
|
:type undo: bool | None
|
|
2975
2975
|
"""
|
|
@@ -2977,7 +2977,7 @@ def material_slot_deselect(
|
|
|
2977
2977
|
...
|
|
2978
2978
|
|
|
2979
2979
|
def material_slot_move(
|
|
2980
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2980
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2981
2981
|
execution_context: int | str | None = None,
|
|
2982
2982
|
undo: bool | None = None,
|
|
2983
2983
|
*,
|
|
@@ -2985,7 +2985,7 @@ def material_slot_move(
|
|
|
2985
2985
|
):
|
|
2986
2986
|
"""Move the active material up/down in the list
|
|
2987
2987
|
|
|
2988
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2988
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2989
2989
|
:type execution_context: int | str | None
|
|
2990
2990
|
:type undo: bool | None
|
|
2991
2991
|
:param direction: Direction, Direction to move the active material towards
|
|
@@ -2995,13 +2995,13 @@ def material_slot_move(
|
|
|
2995
2995
|
...
|
|
2996
2996
|
|
|
2997
2997
|
def material_slot_remove(
|
|
2998
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2998
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2999
2999
|
execution_context: int | str | None = None,
|
|
3000
3000
|
undo: bool | None = None,
|
|
3001
3001
|
):
|
|
3002
3002
|
"""Remove the selected material slot
|
|
3003
3003
|
|
|
3004
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3004
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3005
3005
|
:type execution_context: int | str | None
|
|
3006
3006
|
:type undo: bool | None
|
|
3007
3007
|
"""
|
|
@@ -3009,13 +3009,13 @@ def material_slot_remove(
|
|
|
3009
3009
|
...
|
|
3010
3010
|
|
|
3011
3011
|
def material_slot_remove_unused(
|
|
3012
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3012
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3013
3013
|
execution_context: int | str | None = None,
|
|
3014
3014
|
undo: bool | None = None,
|
|
3015
3015
|
):
|
|
3016
3016
|
"""Remove unused material slots
|
|
3017
3017
|
|
|
3018
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3018
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3019
3019
|
:type execution_context: int | str | None
|
|
3020
3020
|
:type undo: bool | None
|
|
3021
3021
|
"""
|
|
@@ -3023,13 +3023,13 @@ def material_slot_remove_unused(
|
|
|
3023
3023
|
...
|
|
3024
3024
|
|
|
3025
3025
|
def material_slot_select(
|
|
3026
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3026
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3027
3027
|
execution_context: int | str | None = None,
|
|
3028
3028
|
undo: bool | None = None,
|
|
3029
3029
|
):
|
|
3030
3030
|
"""Select by active material slot
|
|
3031
3031
|
|
|
3032
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3032
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3033
3033
|
:type execution_context: int | str | None
|
|
3034
3034
|
:type undo: bool | None
|
|
3035
3035
|
"""
|
|
@@ -3037,7 +3037,7 @@ def material_slot_select(
|
|
|
3037
3037
|
...
|
|
3038
3038
|
|
|
3039
3039
|
def meshdeform_bind(
|
|
3040
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3040
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3041
3041
|
execution_context: int | str | None = None,
|
|
3042
3042
|
undo: bool | None = None,
|
|
3043
3043
|
*,
|
|
@@ -3045,7 +3045,7 @@ def meshdeform_bind(
|
|
|
3045
3045
|
):
|
|
3046
3046
|
"""Bind mesh to cage in mesh deform modifier
|
|
3047
3047
|
|
|
3048
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3048
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3049
3049
|
:type execution_context: int | str | None
|
|
3050
3050
|
:type undo: bool | None
|
|
3051
3051
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3055,7 +3055,7 @@ def meshdeform_bind(
|
|
|
3055
3055
|
...
|
|
3056
3056
|
|
|
3057
3057
|
def metaball_add(
|
|
3058
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3058
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3059
3059
|
execution_context: int | str | None = None,
|
|
3060
3060
|
undo: bool | None = None,
|
|
3061
3061
|
*,
|
|
@@ -3078,7 +3078,7 @@ def metaball_add(
|
|
|
3078
3078
|
):
|
|
3079
3079
|
"""Add an metaball object to the scene
|
|
3080
3080
|
|
|
3081
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3081
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3082
3082
|
:type execution_context: int | str | None
|
|
3083
3083
|
:type undo: bool | None
|
|
3084
3084
|
:param type: Primitive
|
|
@@ -3109,7 +3109,7 @@ def metaball_add(
|
|
|
3109
3109
|
...
|
|
3110
3110
|
|
|
3111
3111
|
def mode_set(
|
|
3112
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3112
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3113
3113
|
execution_context: int | str | None = None,
|
|
3114
3114
|
undo: bool | None = None,
|
|
3115
3115
|
*,
|
|
@@ -3134,7 +3134,7 @@ def mode_set(
|
|
|
3134
3134
|
):
|
|
3135
3135
|
"""Sets the object interaction mode
|
|
3136
3136
|
|
|
3137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3137
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3138
3138
|
:type execution_context: int | str | None
|
|
3139
3139
|
:type undo: bool | None
|
|
3140
3140
|
:param mode: Mode
|
|
@@ -3146,7 +3146,7 @@ def mode_set(
|
|
|
3146
3146
|
...
|
|
3147
3147
|
|
|
3148
3148
|
def mode_set_with_submode(
|
|
3149
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3149
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3150
3150
|
execution_context: int | str | None = None,
|
|
3151
3151
|
undo: bool | None = None,
|
|
3152
3152
|
*,
|
|
@@ -3172,7 +3172,7 @@ def mode_set_with_submode(
|
|
|
3172
3172
|
):
|
|
3173
3173
|
"""Sets the object interaction mode
|
|
3174
3174
|
|
|
3175
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3175
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3176
3176
|
:type execution_context: int | str | None
|
|
3177
3177
|
:type undo: bool | None
|
|
3178
3178
|
:param mode: Mode
|
|
@@ -3186,7 +3186,7 @@ def mode_set_with_submode(
|
|
|
3186
3186
|
...
|
|
3187
3187
|
|
|
3188
3188
|
def modifier_add(
|
|
3189
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3189
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3190
3190
|
execution_context: int | str | None = None,
|
|
3191
3191
|
undo: bool | None = None,
|
|
3192
3192
|
*,
|
|
@@ -3280,7 +3280,7 @@ def modifier_add(
|
|
|
3280
3280
|
):
|
|
3281
3281
|
"""Add a procedural operation/effect to the active object
|
|
3282
3282
|
|
|
3283
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3283
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3284
3284
|
:type execution_context: int | str | None
|
|
3285
3285
|
:type undo: bool | None
|
|
3286
3286
|
:param type: Type
|
|
@@ -3292,7 +3292,7 @@ def modifier_add(
|
|
|
3292
3292
|
...
|
|
3293
3293
|
|
|
3294
3294
|
def modifier_add_node_group(
|
|
3295
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3295
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3296
3296
|
execution_context: int | str | None = None,
|
|
3297
3297
|
undo: bool | None = None,
|
|
3298
3298
|
*,
|
|
@@ -3305,7 +3305,7 @@ def modifier_add_node_group(
|
|
|
3305
3305
|
):
|
|
3306
3306
|
"""Add a procedural operation/effect to the active object
|
|
3307
3307
|
|
|
3308
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3308
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3309
3309
|
:type execution_context: int | str | None
|
|
3310
3310
|
:type undo: bool | None
|
|
3311
3311
|
:param asset_library_type: Asset Library Type
|
|
@@ -3323,7 +3323,7 @@ def modifier_add_node_group(
|
|
|
3323
3323
|
...
|
|
3324
3324
|
|
|
3325
3325
|
def modifier_apply(
|
|
3326
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3326
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3327
3327
|
execution_context: int | str | None = None,
|
|
3328
3328
|
undo: bool | None = None,
|
|
3329
3329
|
*,
|
|
@@ -3335,7 +3335,7 @@ def modifier_apply(
|
|
|
3335
3335
|
):
|
|
3336
3336
|
"""Apply modifier and remove from the stack
|
|
3337
3337
|
|
|
3338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3339
3339
|
:type execution_context: int | str | None
|
|
3340
3340
|
:type undo: bool | None
|
|
3341
3341
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3353,7 +3353,7 @@ def modifier_apply(
|
|
|
3353
3353
|
...
|
|
3354
3354
|
|
|
3355
3355
|
def modifier_apply_as_shapekey(
|
|
3356
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3356
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3357
3357
|
execution_context: int | str | None = None,
|
|
3358
3358
|
undo: bool | None = None,
|
|
3359
3359
|
*,
|
|
@@ -3363,7 +3363,7 @@ def modifier_apply_as_shapekey(
|
|
|
3363
3363
|
):
|
|
3364
3364
|
"""Apply modifier as a new shape key and remove from the stack
|
|
3365
3365
|
|
|
3366
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3366
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3367
3367
|
:type execution_context: int | str | None
|
|
3368
3368
|
:type undo: bool | None
|
|
3369
3369
|
:param keep_modifier: Keep Modifier, Do not remove the modifier from stack
|
|
@@ -3377,7 +3377,7 @@ def modifier_apply_as_shapekey(
|
|
|
3377
3377
|
...
|
|
3378
3378
|
|
|
3379
3379
|
def modifier_convert(
|
|
3380
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3380
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3381
3381
|
execution_context: int | str | None = None,
|
|
3382
3382
|
undo: bool | None = None,
|
|
3383
3383
|
*,
|
|
@@ -3385,7 +3385,7 @@ def modifier_convert(
|
|
|
3385
3385
|
):
|
|
3386
3386
|
"""Convert particles to a mesh object
|
|
3387
3387
|
|
|
3388
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3388
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3389
3389
|
:type execution_context: int | str | None
|
|
3390
3390
|
:type undo: bool | None
|
|
3391
3391
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3395,7 +3395,7 @@ def modifier_convert(
|
|
|
3395
3395
|
...
|
|
3396
3396
|
|
|
3397
3397
|
def modifier_copy(
|
|
3398
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3398
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3399
3399
|
execution_context: int | str | None = None,
|
|
3400
3400
|
undo: bool | None = None,
|
|
3401
3401
|
*,
|
|
@@ -3404,7 +3404,7 @@ def modifier_copy(
|
|
|
3404
3404
|
):
|
|
3405
3405
|
"""Duplicate modifier at the same position in the stack
|
|
3406
3406
|
|
|
3407
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3407
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3408
3408
|
:type execution_context: int | str | None
|
|
3409
3409
|
:type undo: bool | None
|
|
3410
3410
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3416,7 +3416,7 @@ def modifier_copy(
|
|
|
3416
3416
|
...
|
|
3417
3417
|
|
|
3418
3418
|
def modifier_copy_to_selected(
|
|
3419
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3419
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3420
3420
|
execution_context: int | str | None = None,
|
|
3421
3421
|
undo: bool | None = None,
|
|
3422
3422
|
*,
|
|
@@ -3424,7 +3424,7 @@ def modifier_copy_to_selected(
|
|
|
3424
3424
|
):
|
|
3425
3425
|
"""Copy the modifier from the active object to all selected objects
|
|
3426
3426
|
|
|
3427
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3427
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3428
3428
|
:type execution_context: int | str | None
|
|
3429
3429
|
:type undo: bool | None
|
|
3430
3430
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3434,7 +3434,7 @@ def modifier_copy_to_selected(
|
|
|
3434
3434
|
...
|
|
3435
3435
|
|
|
3436
3436
|
def modifier_move_down(
|
|
3437
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3437
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3438
3438
|
execution_context: int | str | None = None,
|
|
3439
3439
|
undo: bool | None = None,
|
|
3440
3440
|
*,
|
|
@@ -3442,7 +3442,7 @@ def modifier_move_down(
|
|
|
3442
3442
|
):
|
|
3443
3443
|
"""Move modifier down in the stack
|
|
3444
3444
|
|
|
3445
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3445
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3446
3446
|
:type execution_context: int | str | None
|
|
3447
3447
|
:type undo: bool | None
|
|
3448
3448
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3452,7 +3452,7 @@ def modifier_move_down(
|
|
|
3452
3452
|
...
|
|
3453
3453
|
|
|
3454
3454
|
def modifier_move_to_index(
|
|
3455
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3455
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3456
3456
|
execution_context: int | str | None = None,
|
|
3457
3457
|
undo: bool | None = None,
|
|
3458
3458
|
*,
|
|
@@ -3462,7 +3462,7 @@ def modifier_move_to_index(
|
|
|
3462
3462
|
):
|
|
3463
3463
|
"""Change the modifier's index in the stack so it evaluates after the set number of others
|
|
3464
3464
|
|
|
3465
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3465
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3466
3466
|
:type execution_context: int | str | None
|
|
3467
3467
|
:type undo: bool | None
|
|
3468
3468
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3476,7 +3476,7 @@ def modifier_move_to_index(
|
|
|
3476
3476
|
...
|
|
3477
3477
|
|
|
3478
3478
|
def modifier_move_up(
|
|
3479
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3479
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3480
3480
|
execution_context: int | str | None = None,
|
|
3481
3481
|
undo: bool | None = None,
|
|
3482
3482
|
*,
|
|
@@ -3484,7 +3484,7 @@ def modifier_move_up(
|
|
|
3484
3484
|
):
|
|
3485
3485
|
"""Move modifier up in the stack
|
|
3486
3486
|
|
|
3487
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3487
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3488
3488
|
:type execution_context: int | str | None
|
|
3489
3489
|
:type undo: bool | None
|
|
3490
3490
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3494,7 +3494,7 @@ def modifier_move_up(
|
|
|
3494
3494
|
...
|
|
3495
3495
|
|
|
3496
3496
|
def modifier_remove(
|
|
3497
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3497
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3498
3498
|
execution_context: int | str | None = None,
|
|
3499
3499
|
undo: bool | None = None,
|
|
3500
3500
|
*,
|
|
@@ -3504,7 +3504,7 @@ def modifier_remove(
|
|
|
3504
3504
|
):
|
|
3505
3505
|
"""Remove a modifier from the active object
|
|
3506
3506
|
|
|
3507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3507
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3508
3508
|
:type execution_context: int | str | None
|
|
3509
3509
|
:type undo: bool | None
|
|
3510
3510
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3518,7 +3518,7 @@ def modifier_remove(
|
|
|
3518
3518
|
...
|
|
3519
3519
|
|
|
3520
3520
|
def modifier_set_active(
|
|
3521
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3521
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3522
3522
|
execution_context: int | str | None = None,
|
|
3523
3523
|
undo: bool | None = None,
|
|
3524
3524
|
*,
|
|
@@ -3526,7 +3526,7 @@ def modifier_set_active(
|
|
|
3526
3526
|
):
|
|
3527
3527
|
"""Activate the modifier to use as the context
|
|
3528
3528
|
|
|
3529
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3529
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3530
3530
|
:type execution_context: int | str | None
|
|
3531
3531
|
:type undo: bool | None
|
|
3532
3532
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3536,13 +3536,13 @@ def modifier_set_active(
|
|
|
3536
3536
|
...
|
|
3537
3537
|
|
|
3538
3538
|
def modifiers_clear(
|
|
3539
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3539
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3540
3540
|
execution_context: int | str | None = None,
|
|
3541
3541
|
undo: bool | None = None,
|
|
3542
3542
|
):
|
|
3543
3543
|
"""Clear all modifiers from the selected objects
|
|
3544
3544
|
|
|
3545
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3545
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3546
3546
|
:type execution_context: int | str | None
|
|
3547
3547
|
:type undo: bool | None
|
|
3548
3548
|
"""
|
|
@@ -3550,13 +3550,13 @@ def modifiers_clear(
|
|
|
3550
3550
|
...
|
|
3551
3551
|
|
|
3552
3552
|
def modifiers_copy_to_selected(
|
|
3553
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3553
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3554
3554
|
execution_context: int | str | None = None,
|
|
3555
3555
|
undo: bool | None = None,
|
|
3556
3556
|
):
|
|
3557
3557
|
"""Copy modifiers to other selected objects
|
|
3558
3558
|
|
|
3559
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3559
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3560
3560
|
:type execution_context: int | str | None
|
|
3561
3561
|
:type undo: bool | None
|
|
3562
3562
|
"""
|
|
@@ -3564,7 +3564,7 @@ def modifiers_copy_to_selected(
|
|
|
3564
3564
|
...
|
|
3565
3565
|
|
|
3566
3566
|
def move_to_collection(
|
|
3567
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3567
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3568
3568
|
execution_context: int | str | None = None,
|
|
3569
3569
|
undo: bool | None = None,
|
|
3570
3570
|
*,
|
|
@@ -3574,7 +3574,7 @@ def move_to_collection(
|
|
|
3574
3574
|
):
|
|
3575
3575
|
"""Move objects to a collection
|
|
3576
3576
|
|
|
3577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3577
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3578
3578
|
:type execution_context: int | str | None
|
|
3579
3579
|
:type undo: bool | None
|
|
3580
3580
|
:param collection_index: Collection Index, Index of the collection to move to
|
|
@@ -3588,7 +3588,7 @@ def move_to_collection(
|
|
|
3588
3588
|
...
|
|
3589
3589
|
|
|
3590
3590
|
def multires_base_apply(
|
|
3591
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3591
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3592
3592
|
execution_context: int | str | None = None,
|
|
3593
3593
|
undo: bool | None = None,
|
|
3594
3594
|
*,
|
|
@@ -3596,7 +3596,7 @@ def multires_base_apply(
|
|
|
3596
3596
|
):
|
|
3597
3597
|
"""Modify the base mesh to conform to the displaced mesh
|
|
3598
3598
|
|
|
3599
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3599
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3600
3600
|
:type execution_context: int | str | None
|
|
3601
3601
|
:type undo: bool | None
|
|
3602
3602
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3606,13 +3606,13 @@ def multires_base_apply(
|
|
|
3606
3606
|
...
|
|
3607
3607
|
|
|
3608
3608
|
def multires_external_pack(
|
|
3609
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3609
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3610
3610
|
execution_context: int | str | None = None,
|
|
3611
3611
|
undo: bool | None = None,
|
|
3612
3612
|
):
|
|
3613
3613
|
"""Pack displacements from an external file
|
|
3614
3614
|
|
|
3615
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3615
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3616
3616
|
:type execution_context: int | str | None
|
|
3617
3617
|
:type undo: bool | None
|
|
3618
3618
|
"""
|
|
@@ -3620,7 +3620,7 @@ def multires_external_pack(
|
|
|
3620
3620
|
...
|
|
3621
3621
|
|
|
3622
3622
|
def multires_external_save(
|
|
3623
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3623
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3624
3624
|
execution_context: int | str | None = None,
|
|
3625
3625
|
undo: bool | None = None,
|
|
3626
3626
|
*,
|
|
@@ -3655,7 +3655,7 @@ def multires_external_save(
|
|
|
3655
3655
|
):
|
|
3656
3656
|
"""Save displacements to an external file
|
|
3657
3657
|
|
|
3658
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3658
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3659
3659
|
:type execution_context: int | str | None
|
|
3660
3660
|
:type undo: bool | None
|
|
3661
3661
|
:param filepath: File Path, Path to file
|
|
@@ -3725,7 +3725,7 @@ def multires_external_save(
|
|
|
3725
3725
|
...
|
|
3726
3726
|
|
|
3727
3727
|
def multires_higher_levels_delete(
|
|
3728
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3728
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3729
3729
|
execution_context: int | str | None = None,
|
|
3730
3730
|
undo: bool | None = None,
|
|
3731
3731
|
*,
|
|
@@ -3733,7 +3733,7 @@ def multires_higher_levels_delete(
|
|
|
3733
3733
|
):
|
|
3734
3734
|
"""Deletes the higher resolution mesh, potential loss of detail
|
|
3735
3735
|
|
|
3736
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3736
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3737
3737
|
:type execution_context: int | str | None
|
|
3738
3738
|
:type undo: bool | None
|
|
3739
3739
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3743,7 +3743,7 @@ def multires_higher_levels_delete(
|
|
|
3743
3743
|
...
|
|
3744
3744
|
|
|
3745
3745
|
def multires_rebuild_subdiv(
|
|
3746
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3746
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3747
3747
|
execution_context: int | str | None = None,
|
|
3748
3748
|
undo: bool | None = None,
|
|
3749
3749
|
*,
|
|
@@ -3751,7 +3751,7 @@ def multires_rebuild_subdiv(
|
|
|
3751
3751
|
):
|
|
3752
3752
|
"""Rebuilds all possible subdivisions levels to generate a lower resolution base mesh
|
|
3753
3753
|
|
|
3754
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3754
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3755
3755
|
:type execution_context: int | str | None
|
|
3756
3756
|
:type undo: bool | None
|
|
3757
3757
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3761,7 +3761,7 @@ def multires_rebuild_subdiv(
|
|
|
3761
3761
|
...
|
|
3762
3762
|
|
|
3763
3763
|
def multires_reshape(
|
|
3764
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3764
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3765
3765
|
execution_context: int | str | None = None,
|
|
3766
3766
|
undo: bool | None = None,
|
|
3767
3767
|
*,
|
|
@@ -3769,7 +3769,7 @@ def multires_reshape(
|
|
|
3769
3769
|
):
|
|
3770
3770
|
"""Copy vertex coordinates from other object
|
|
3771
3771
|
|
|
3772
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3772
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3773
3773
|
:type execution_context: int | str | None
|
|
3774
3774
|
:type undo: bool | None
|
|
3775
3775
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3779,7 +3779,7 @@ def multires_reshape(
|
|
|
3779
3779
|
...
|
|
3780
3780
|
|
|
3781
3781
|
def multires_subdivide(
|
|
3782
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3782
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3783
3783
|
execution_context: int | str | None = None,
|
|
3784
3784
|
undo: bool | None = None,
|
|
3785
3785
|
*,
|
|
@@ -3788,7 +3788,7 @@ def multires_subdivide(
|
|
|
3788
3788
|
):
|
|
3789
3789
|
"""Add a new level of subdivision
|
|
3790
3790
|
|
|
3791
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3791
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3792
3792
|
:type execution_context: int | str | None
|
|
3793
3793
|
:type undo: bool | None
|
|
3794
3794
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3809,7 +3809,7 @@ def multires_subdivide(
|
|
|
3809
3809
|
...
|
|
3810
3810
|
|
|
3811
3811
|
def multires_unsubdivide(
|
|
3812
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3812
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3813
3813
|
execution_context: int | str | None = None,
|
|
3814
3814
|
undo: bool | None = None,
|
|
3815
3815
|
*,
|
|
@@ -3817,7 +3817,7 @@ def multires_unsubdivide(
|
|
|
3817
3817
|
):
|
|
3818
3818
|
"""Rebuild a lower subdivision level of the current base mesh
|
|
3819
3819
|
|
|
3820
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3820
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3821
3821
|
:type execution_context: int | str | None
|
|
3822
3822
|
:type undo: bool | None
|
|
3823
3823
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3827,7 +3827,7 @@ def multires_unsubdivide(
|
|
|
3827
3827
|
...
|
|
3828
3828
|
|
|
3829
3829
|
def ocean_bake(
|
|
3830
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3830
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3831
3831
|
execution_context: int | str | None = None,
|
|
3832
3832
|
undo: bool | None = None,
|
|
3833
3833
|
*,
|
|
@@ -3836,7 +3836,7 @@ def ocean_bake(
|
|
|
3836
3836
|
):
|
|
3837
3837
|
"""Bake an image sequence of ocean data
|
|
3838
3838
|
|
|
3839
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3839
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3840
3840
|
:type execution_context: int | str | None
|
|
3841
3841
|
:type undo: bool | None
|
|
3842
3842
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -3848,13 +3848,13 @@ def ocean_bake(
|
|
|
3848
3848
|
...
|
|
3849
3849
|
|
|
3850
3850
|
def origin_clear(
|
|
3851
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3851
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3852
3852
|
execution_context: int | str | None = None,
|
|
3853
3853
|
undo: bool | None = None,
|
|
3854
3854
|
):
|
|
3855
3855
|
"""Clear the object's origin
|
|
3856
3856
|
|
|
3857
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3857
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3858
3858
|
:type execution_context: int | str | None
|
|
3859
3859
|
:type undo: bool | None
|
|
3860
3860
|
"""
|
|
@@ -3862,7 +3862,7 @@ def origin_clear(
|
|
|
3862
3862
|
...
|
|
3863
3863
|
|
|
3864
3864
|
def origin_set(
|
|
3865
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3865
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3866
3866
|
execution_context: int | str | None = None,
|
|
3867
3867
|
undo: bool | None = None,
|
|
3868
3868
|
*,
|
|
@@ -3878,7 +3878,7 @@ def origin_set(
|
|
|
3878
3878
|
):
|
|
3879
3879
|
"""Set the object's origin, by either moving the data, or set to center of data, or use 3D cursor
|
|
3880
3880
|
|
|
3881
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3881
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3882
3882
|
:type execution_context: int | str | None
|
|
3883
3883
|
:type undo: bool | None
|
|
3884
3884
|
:param type: Type
|
|
@@ -3905,7 +3905,7 @@ def origin_set(
|
|
|
3905
3905
|
...
|
|
3906
3906
|
|
|
3907
3907
|
def parent_clear(
|
|
3908
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3908
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3909
3909
|
execution_context: int | str | None = None,
|
|
3910
3910
|
undo: bool | None = None,
|
|
3911
3911
|
*,
|
|
@@ -3914,7 +3914,7 @@ def parent_clear(
|
|
|
3914
3914
|
):
|
|
3915
3915
|
"""Clear the object's parenting
|
|
3916
3916
|
|
|
3917
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3917
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3918
3918
|
:type execution_context: int | str | None
|
|
3919
3919
|
:type undo: bool | None
|
|
3920
3920
|
:param type: Type
|
|
@@ -3933,13 +3933,13 @@ def parent_clear(
|
|
|
3933
3933
|
...
|
|
3934
3934
|
|
|
3935
3935
|
def parent_inverse_apply(
|
|
3936
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3936
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3937
3937
|
execution_context: int | str | None = None,
|
|
3938
3938
|
undo: bool | None = None,
|
|
3939
3939
|
):
|
|
3940
3940
|
"""Apply the object's parent inverse to its data
|
|
3941
3941
|
|
|
3942
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3942
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3943
3943
|
:type execution_context: int | str | None
|
|
3944
3944
|
:type undo: bool | None
|
|
3945
3945
|
"""
|
|
@@ -3947,7 +3947,7 @@ def parent_inverse_apply(
|
|
|
3947
3947
|
...
|
|
3948
3948
|
|
|
3949
3949
|
def parent_no_inverse_set(
|
|
3950
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3950
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3951
3951
|
execution_context: int | str | None = None,
|
|
3952
3952
|
undo: bool | None = None,
|
|
3953
3953
|
*,
|
|
@@ -3955,7 +3955,7 @@ def parent_no_inverse_set(
|
|
|
3955
3955
|
):
|
|
3956
3956
|
"""Set the object's parenting without setting the inverse parent correction
|
|
3957
3957
|
|
|
3958
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3958
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3959
3959
|
:type execution_context: int | str | None
|
|
3960
3960
|
:type undo: bool | None
|
|
3961
3961
|
:param keep_transform: Keep Transform, Preserve the world transform throughout parenting
|
|
@@ -3965,7 +3965,7 @@ def parent_no_inverse_set(
|
|
|
3965
3965
|
...
|
|
3966
3966
|
|
|
3967
3967
|
def parent_set(
|
|
3968
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3968
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
3969
3969
|
execution_context: int | str | None = None,
|
|
3970
3970
|
undo: bool | None = None,
|
|
3971
3971
|
*,
|
|
@@ -3990,7 +3990,7 @@ def parent_set(
|
|
|
3990
3990
|
):
|
|
3991
3991
|
"""Set the object's parenting
|
|
3992
3992
|
|
|
3993
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3993
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
3994
3994
|
:type execution_context: int | str | None
|
|
3995
3995
|
:type undo: bool | None
|
|
3996
3996
|
:param type: Type
|
|
@@ -4004,13 +4004,13 @@ def parent_set(
|
|
|
4004
4004
|
...
|
|
4005
4005
|
|
|
4006
4006
|
def particle_system_add(
|
|
4007
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4007
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4008
4008
|
execution_context: int | str | None = None,
|
|
4009
4009
|
undo: bool | None = None,
|
|
4010
4010
|
):
|
|
4011
4011
|
"""Add a particle system
|
|
4012
4012
|
|
|
4013
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4013
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4014
4014
|
:type execution_context: int | str | None
|
|
4015
4015
|
:type undo: bool | None
|
|
4016
4016
|
"""
|
|
@@ -4018,13 +4018,13 @@ def particle_system_add(
|
|
|
4018
4018
|
...
|
|
4019
4019
|
|
|
4020
4020
|
def particle_system_remove(
|
|
4021
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4021
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4022
4022
|
execution_context: int | str | None = None,
|
|
4023
4023
|
undo: bool | None = None,
|
|
4024
4024
|
):
|
|
4025
4025
|
"""Remove the selected particle system
|
|
4026
4026
|
|
|
4027
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4027
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4028
4028
|
:type execution_context: int | str | None
|
|
4029
4029
|
:type undo: bool | None
|
|
4030
4030
|
"""
|
|
@@ -4032,7 +4032,7 @@ def particle_system_remove(
|
|
|
4032
4032
|
...
|
|
4033
4033
|
|
|
4034
4034
|
def paths_calculate(
|
|
4035
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4035
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4036
4036
|
execution_context: int | str | None = None,
|
|
4037
4037
|
undo: bool | None = None,
|
|
4038
4038
|
*,
|
|
@@ -4042,7 +4042,7 @@ def paths_calculate(
|
|
|
4042
4042
|
):
|
|
4043
4043
|
"""Generate motion paths for the selected objects
|
|
4044
4044
|
|
|
4045
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4045
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4046
4046
|
:type execution_context: int | str | None
|
|
4047
4047
|
:type undo: bool | None
|
|
4048
4048
|
:param display_type: Display type
|
|
@@ -4054,7 +4054,7 @@ def paths_calculate(
|
|
|
4054
4054
|
...
|
|
4055
4055
|
|
|
4056
4056
|
def paths_clear(
|
|
4057
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4057
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4058
4058
|
execution_context: int | str | None = None,
|
|
4059
4059
|
undo: bool | None = None,
|
|
4060
4060
|
*,
|
|
@@ -4062,7 +4062,7 @@ def paths_clear(
|
|
|
4062
4062
|
):
|
|
4063
4063
|
"""Undocumented, consider contributing.
|
|
4064
4064
|
|
|
4065
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4065
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4066
4066
|
:type execution_context: int | str | None
|
|
4067
4067
|
:type undo: bool | None
|
|
4068
4068
|
:param only_selected: Only Selected, Only clear motion paths of selected objects
|
|
@@ -4072,13 +4072,13 @@ def paths_clear(
|
|
|
4072
4072
|
...
|
|
4073
4073
|
|
|
4074
4074
|
def paths_update(
|
|
4075
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4075
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4076
4076
|
execution_context: int | str | None = None,
|
|
4077
4077
|
undo: bool | None = None,
|
|
4078
4078
|
):
|
|
4079
4079
|
"""Recalculate motion paths for selected objects
|
|
4080
4080
|
|
|
4081
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4081
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4082
4082
|
:type execution_context: int | str | None
|
|
4083
4083
|
:type undo: bool | None
|
|
4084
4084
|
"""
|
|
@@ -4086,13 +4086,13 @@ def paths_update(
|
|
|
4086
4086
|
...
|
|
4087
4087
|
|
|
4088
4088
|
def paths_update_visible(
|
|
4089
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4089
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4090
4090
|
execution_context: int | str | None = None,
|
|
4091
4091
|
undo: bool | None = None,
|
|
4092
4092
|
):
|
|
4093
4093
|
"""Recalculate all visible motion paths for objects and poses
|
|
4094
4094
|
|
|
4095
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4095
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4096
4096
|
:type execution_context: int | str | None
|
|
4097
4097
|
:type undo: bool | None
|
|
4098
4098
|
"""
|
|
@@ -4100,7 +4100,7 @@ def paths_update_visible(
|
|
|
4100
4100
|
...
|
|
4101
4101
|
|
|
4102
4102
|
def pointcloud_add(
|
|
4103
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4103
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4104
4104
|
execution_context: int | str | None = None,
|
|
4105
4105
|
undo: bool | None = None,
|
|
4106
4106
|
*,
|
|
@@ -4119,7 +4119,7 @@ def pointcloud_add(
|
|
|
4119
4119
|
):
|
|
4120
4120
|
"""Add a point cloud object to the scene
|
|
4121
4121
|
|
|
4122
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4122
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4123
4123
|
:type execution_context: int | str | None
|
|
4124
4124
|
:type undo: bool | None
|
|
4125
4125
|
:param align: Align, The alignment of the new object
|
|
@@ -4144,13 +4144,13 @@ def pointcloud_add(
|
|
|
4144
4144
|
...
|
|
4145
4145
|
|
|
4146
4146
|
def posemode_toggle(
|
|
4147
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4147
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4148
4148
|
execution_context: int | str | None = None,
|
|
4149
4149
|
undo: bool | None = None,
|
|
4150
4150
|
):
|
|
4151
4151
|
"""Enable or disable posing/selecting bones
|
|
4152
4152
|
|
|
4153
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4153
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4154
4154
|
:type execution_context: int | str | None
|
|
4155
4155
|
:type undo: bool | None
|
|
4156
4156
|
"""
|
|
@@ -4158,7 +4158,7 @@ def posemode_toggle(
|
|
|
4158
4158
|
...
|
|
4159
4159
|
|
|
4160
4160
|
def quadriflow_remesh(
|
|
4161
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4161
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4162
4162
|
execution_context: int | str | None = None,
|
|
4163
4163
|
undo: bool | None = None,
|
|
4164
4164
|
*,
|
|
@@ -4176,7 +4176,7 @@ def quadriflow_remesh(
|
|
|
4176
4176
|
):
|
|
4177
4177
|
"""Create a new quad based mesh using the surface data of the current mesh. All data layers will be lost
|
|
4178
4178
|
|
|
4179
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4179
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4180
4180
|
:type execution_context: int | str | None
|
|
4181
4181
|
:type undo: bool | None
|
|
4182
4182
|
:param use_mesh_symmetry: Use Mesh Symmetry, Generates a symmetrical mesh using the mesh symmetry configuration
|
|
@@ -4215,7 +4215,7 @@ def quadriflow_remesh(
|
|
|
4215
4215
|
...
|
|
4216
4216
|
|
|
4217
4217
|
def quick_explode(
|
|
4218
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4219
4219
|
execution_context: int | str | None = None,
|
|
4220
4220
|
undo: bool | None = None,
|
|
4221
4221
|
*,
|
|
@@ -4229,7 +4229,7 @@ def quick_explode(
|
|
|
4229
4229
|
):
|
|
4230
4230
|
"""Make selected objects explode
|
|
4231
4231
|
|
|
4232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4232
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4233
4233
|
:type execution_context: int | str | None
|
|
4234
4234
|
:type undo: bool | None
|
|
4235
4235
|
:param style: Explode Style
|
|
@@ -4251,7 +4251,7 @@ def quick_explode(
|
|
|
4251
4251
|
...
|
|
4252
4252
|
|
|
4253
4253
|
def quick_fur(
|
|
4254
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4254
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4255
4255
|
execution_context: int | str | None = None,
|
|
4256
4256
|
undo: bool | None = None,
|
|
4257
4257
|
*,
|
|
@@ -4265,7 +4265,7 @@ def quick_fur(
|
|
|
4265
4265
|
):
|
|
4266
4266
|
"""Add a fur setup to the selected objects
|
|
4267
4267
|
|
|
4268
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4268
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4269
4269
|
:type execution_context: int | str | None
|
|
4270
4270
|
:type undo: bool | None
|
|
4271
4271
|
:param density: Density
|
|
@@ -4287,7 +4287,7 @@ def quick_fur(
|
|
|
4287
4287
|
...
|
|
4288
4288
|
|
|
4289
4289
|
def quick_liquid(
|
|
4290
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4290
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4291
4291
|
execution_context: int | str | None = None,
|
|
4292
4292
|
undo: bool | None = None,
|
|
4293
4293
|
*,
|
|
@@ -4295,7 +4295,7 @@ def quick_liquid(
|
|
|
4295
4295
|
):
|
|
4296
4296
|
"""Make selected objects liquid
|
|
4297
4297
|
|
|
4298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4298
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4299
4299
|
:type execution_context: int | str | None
|
|
4300
4300
|
:type undo: bool | None
|
|
4301
4301
|
:param show_flows: Render Liquid Objects, Keep the liquid objects visible during rendering
|
|
@@ -4305,7 +4305,7 @@ def quick_liquid(
|
|
|
4305
4305
|
...
|
|
4306
4306
|
|
|
4307
4307
|
def quick_smoke(
|
|
4308
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4308
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4309
4309
|
execution_context: int | str | None = None,
|
|
4310
4310
|
undo: bool | None = None,
|
|
4311
4311
|
*,
|
|
@@ -4314,7 +4314,7 @@ def quick_smoke(
|
|
|
4314
4314
|
):
|
|
4315
4315
|
"""Use selected objects as smoke emitters
|
|
4316
4316
|
|
|
4317
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4317
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4318
4318
|
:type execution_context: int | str | None
|
|
4319
4319
|
:type undo: bool | None
|
|
4320
4320
|
:param style: Smoke Style
|
|
@@ -4326,7 +4326,7 @@ def quick_smoke(
|
|
|
4326
4326
|
...
|
|
4327
4327
|
|
|
4328
4328
|
def randomize_transform(
|
|
4329
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4329
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4330
4330
|
execution_context: int | str | None = None,
|
|
4331
4331
|
undo: bool | None = None,
|
|
4332
4332
|
*,
|
|
@@ -4342,7 +4342,7 @@ def randomize_transform(
|
|
|
4342
4342
|
):
|
|
4343
4343
|
"""Randomize objects location, rotation, and scale
|
|
4344
4344
|
|
|
4345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4345
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4346
4346
|
:type execution_context: int | str | None
|
|
4347
4347
|
:type undo: bool | None
|
|
4348
4348
|
:param random_seed: Random Seed, Seed value for the random generator
|
|
@@ -4368,13 +4368,13 @@ def randomize_transform(
|
|
|
4368
4368
|
...
|
|
4369
4369
|
|
|
4370
4370
|
def reset_override_library(
|
|
4371
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4371
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4372
4372
|
execution_context: int | str | None = None,
|
|
4373
4373
|
undo: bool | None = None,
|
|
4374
4374
|
):
|
|
4375
4375
|
"""Reset the selected local overrides to their linked references values
|
|
4376
4376
|
|
|
4377
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4377
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4378
4378
|
:type execution_context: int | str | None
|
|
4379
4379
|
:type undo: bool | None
|
|
4380
4380
|
"""
|
|
@@ -4382,7 +4382,7 @@ def reset_override_library(
|
|
|
4382
4382
|
...
|
|
4383
4383
|
|
|
4384
4384
|
def rotation_clear(
|
|
4385
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4385
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4386
4386
|
execution_context: int | str | None = None,
|
|
4387
4387
|
undo: bool | None = None,
|
|
4388
4388
|
*,
|
|
@@ -4390,7 +4390,7 @@ def rotation_clear(
|
|
|
4390
4390
|
):
|
|
4391
4391
|
"""Clear the object's rotation
|
|
4392
4392
|
|
|
4393
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4393
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4394
4394
|
:type execution_context: int | str | None
|
|
4395
4395
|
:type undo: bool | None
|
|
4396
4396
|
:param clear_delta: Clear Delta, Clear delta rotation in addition to clearing the normal rotation transform
|
|
@@ -4400,7 +4400,7 @@ def rotation_clear(
|
|
|
4400
4400
|
...
|
|
4401
4401
|
|
|
4402
4402
|
def scale_clear(
|
|
4403
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4403
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4404
4404
|
execution_context: int | str | None = None,
|
|
4405
4405
|
undo: bool | None = None,
|
|
4406
4406
|
*,
|
|
@@ -4408,7 +4408,7 @@ def scale_clear(
|
|
|
4408
4408
|
):
|
|
4409
4409
|
"""Clear the object's scale
|
|
4410
4410
|
|
|
4411
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4411
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4412
4412
|
:type execution_context: int | str | None
|
|
4413
4413
|
:type undo: bool | None
|
|
4414
4414
|
:param clear_delta: Clear Delta, Clear delta scale in addition to clearing the normal scale transform
|
|
@@ -4418,7 +4418,7 @@ def scale_clear(
|
|
|
4418
4418
|
...
|
|
4419
4419
|
|
|
4420
4420
|
def select_all(
|
|
4421
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4421
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4422
4422
|
execution_context: int | str | None = None,
|
|
4423
4423
|
undo: bool | None = None,
|
|
4424
4424
|
*,
|
|
@@ -4426,7 +4426,7 @@ def select_all(
|
|
|
4426
4426
|
):
|
|
4427
4427
|
"""Change selection of all visible objects in scene
|
|
4428
4428
|
|
|
4429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4430
4430
|
:type execution_context: int | str | None
|
|
4431
4431
|
:type undo: bool | None
|
|
4432
4432
|
:param action: Action, Selection action to execute
|
|
@@ -4448,7 +4448,7 @@ def select_all(
|
|
|
4448
4448
|
...
|
|
4449
4449
|
|
|
4450
4450
|
def select_by_type(
|
|
4451
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4451
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4452
4452
|
execution_context: int | str | None = None,
|
|
4453
4453
|
undo: bool | None = None,
|
|
4454
4454
|
*,
|
|
@@ -4476,7 +4476,7 @@ def select_by_type(
|
|
|
4476
4476
|
):
|
|
4477
4477
|
"""Select all visible objects that are of a type
|
|
4478
4478
|
|
|
4479
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4479
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4480
4480
|
:type execution_context: int | str | None
|
|
4481
4481
|
:type undo: bool | None
|
|
4482
4482
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4488,7 +4488,7 @@ def select_by_type(
|
|
|
4488
4488
|
...
|
|
4489
4489
|
|
|
4490
4490
|
def select_camera(
|
|
4491
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4491
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4492
4492
|
execution_context: int | str | None = None,
|
|
4493
4493
|
undo: bool | None = None,
|
|
4494
4494
|
*,
|
|
@@ -4496,7 +4496,7 @@ def select_camera(
|
|
|
4496
4496
|
):
|
|
4497
4497
|
"""Select the active camera
|
|
4498
4498
|
|
|
4499
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4499
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4500
4500
|
:type execution_context: int | str | None
|
|
4501
4501
|
:type undo: bool | None
|
|
4502
4502
|
:param extend: Extend, Extend the selection
|
|
@@ -4506,7 +4506,7 @@ def select_camera(
|
|
|
4506
4506
|
...
|
|
4507
4507
|
|
|
4508
4508
|
def select_grouped(
|
|
4509
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4509
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4510
4510
|
execution_context: int | str | None = None,
|
|
4511
4511
|
undo: bool | None = None,
|
|
4512
4512
|
*,
|
|
@@ -4528,7 +4528,7 @@ def select_grouped(
|
|
|
4528
4528
|
):
|
|
4529
4529
|
"""Select all visible objects grouped by various properties
|
|
4530
4530
|
|
|
4531
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4531
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4532
4532
|
:type execution_context: int | str | None
|
|
4533
4533
|
:type undo: bool | None
|
|
4534
4534
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4573,7 +4573,7 @@ def select_grouped(
|
|
|
4573
4573
|
...
|
|
4574
4574
|
|
|
4575
4575
|
def select_hierarchy(
|
|
4576
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4576
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4577
4577
|
execution_context: int | str | None = None,
|
|
4578
4578
|
undo: bool | None = None,
|
|
4579
4579
|
*,
|
|
@@ -4582,7 +4582,7 @@ def select_hierarchy(
|
|
|
4582
4582
|
):
|
|
4583
4583
|
"""Select object relative to the active object's position in the hierarchy
|
|
4584
4584
|
|
|
4585
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4585
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4586
4586
|
:type execution_context: int | str | None
|
|
4587
4587
|
:type undo: bool | None
|
|
4588
4588
|
:param direction: Direction, Direction to select in the hierarchy
|
|
@@ -4594,13 +4594,13 @@ def select_hierarchy(
|
|
|
4594
4594
|
...
|
|
4595
4595
|
|
|
4596
4596
|
def select_less(
|
|
4597
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4597
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4598
4598
|
execution_context: int | str | None = None,
|
|
4599
4599
|
undo: bool | None = None,
|
|
4600
4600
|
):
|
|
4601
4601
|
"""Deselect objects at the boundaries of parent/child relationships
|
|
4602
4602
|
|
|
4603
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4603
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4604
4604
|
:type execution_context: int | str | None
|
|
4605
4605
|
:type undo: bool | None
|
|
4606
4606
|
"""
|
|
@@ -4608,7 +4608,7 @@ def select_less(
|
|
|
4608
4608
|
...
|
|
4609
4609
|
|
|
4610
4610
|
def select_linked(
|
|
4611
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4611
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4612
4612
|
execution_context: int | str | None = None,
|
|
4613
4613
|
undo: bool | None = None,
|
|
4614
4614
|
*,
|
|
@@ -4620,7 +4620,7 @@ def select_linked(
|
|
|
4620
4620
|
):
|
|
4621
4621
|
"""Select all visible objects that are linked
|
|
4622
4622
|
|
|
4623
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4623
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4624
4624
|
:type execution_context: int | str | None
|
|
4625
4625
|
:type undo: bool | None
|
|
4626
4626
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4632,7 +4632,7 @@ def select_linked(
|
|
|
4632
4632
|
...
|
|
4633
4633
|
|
|
4634
4634
|
def select_mirror(
|
|
4635
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4635
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4636
4636
|
execution_context: int | str | None = None,
|
|
4637
4637
|
undo: bool | None = None,
|
|
4638
4638
|
*,
|
|
@@ -4640,7 +4640,7 @@ def select_mirror(
|
|
|
4640
4640
|
):
|
|
4641
4641
|
"""Select the mirror objects of the selected object e.g. "L.sword" and "R.sword"
|
|
4642
4642
|
|
|
4643
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4643
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4644
4644
|
:type execution_context: int | str | None
|
|
4645
4645
|
:type undo: bool | None
|
|
4646
4646
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -4650,13 +4650,13 @@ def select_mirror(
|
|
|
4650
4650
|
...
|
|
4651
4651
|
|
|
4652
4652
|
def select_more(
|
|
4653
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4653
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4654
4654
|
execution_context: int | str | None = None,
|
|
4655
4655
|
undo: bool | None = None,
|
|
4656
4656
|
):
|
|
4657
4657
|
"""Select connected parent/child objects
|
|
4658
4658
|
|
|
4659
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4659
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4660
4660
|
:type execution_context: int | str | None
|
|
4661
4661
|
:type undo: bool | None
|
|
4662
4662
|
"""
|
|
@@ -4664,7 +4664,7 @@ def select_more(
|
|
|
4664
4664
|
...
|
|
4665
4665
|
|
|
4666
4666
|
def select_pattern(
|
|
4667
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4667
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4668
4668
|
execution_context: int | str | None = None,
|
|
4669
4669
|
undo: bool | None = None,
|
|
4670
4670
|
*,
|
|
@@ -4674,7 +4674,7 @@ def select_pattern(
|
|
|
4674
4674
|
):
|
|
4675
4675
|
"""Select objects matching a naming pattern
|
|
4676
4676
|
|
|
4677
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4677
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4678
4678
|
:type execution_context: int | str | None
|
|
4679
4679
|
:type undo: bool | None
|
|
4680
4680
|
:param pattern: Pattern, Name filter using '*', '?' and '[abc]' unix style wildcards
|
|
@@ -4688,7 +4688,7 @@ def select_pattern(
|
|
|
4688
4688
|
...
|
|
4689
4689
|
|
|
4690
4690
|
def select_random(
|
|
4691
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4691
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4692
4692
|
execution_context: int | str | None = None,
|
|
4693
4693
|
undo: bool | None = None,
|
|
4694
4694
|
*,
|
|
@@ -4698,7 +4698,7 @@ def select_random(
|
|
|
4698
4698
|
):
|
|
4699
4699
|
"""Select or deselect random visible objects
|
|
4700
4700
|
|
|
4701
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4701
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4702
4702
|
:type execution_context: int | str | None
|
|
4703
4703
|
:type undo: bool | None
|
|
4704
4704
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -4718,7 +4718,7 @@ def select_random(
|
|
|
4718
4718
|
...
|
|
4719
4719
|
|
|
4720
4720
|
def select_same_collection(
|
|
4721
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4721
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4722
4722
|
execution_context: int | str | None = None,
|
|
4723
4723
|
undo: bool | None = None,
|
|
4724
4724
|
*,
|
|
@@ -4726,7 +4726,7 @@ def select_same_collection(
|
|
|
4726
4726
|
):
|
|
4727
4727
|
"""Select object in the same collection
|
|
4728
4728
|
|
|
4729
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4729
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4730
4730
|
:type execution_context: int | str | None
|
|
4731
4731
|
:type undo: bool | None
|
|
4732
4732
|
:param collection: Collection, Name of the collection to select
|
|
@@ -4736,7 +4736,7 @@ def select_same_collection(
|
|
|
4736
4736
|
...
|
|
4737
4737
|
|
|
4738
4738
|
def shade_auto_smooth(
|
|
4739
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4739
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4740
4740
|
execution_context: int | str | None = None,
|
|
4741
4741
|
undo: bool | None = None,
|
|
4742
4742
|
*,
|
|
@@ -4745,7 +4745,7 @@ def shade_auto_smooth(
|
|
|
4745
4745
|
):
|
|
4746
4746
|
"""Add modifier to automatically set the sharpness of mesh edges based on the angle between the neighboring faces
|
|
4747
4747
|
|
|
4748
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4748
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4749
4749
|
:type execution_context: int | str | None
|
|
4750
4750
|
:type undo: bool | None
|
|
4751
4751
|
:param use_auto_smooth: Auto Smooth, Add modifier to set edge sharpness automatically
|
|
@@ -4757,7 +4757,7 @@ def shade_auto_smooth(
|
|
|
4757
4757
|
...
|
|
4758
4758
|
|
|
4759
4759
|
def shade_flat(
|
|
4760
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4760
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4761
4761
|
execution_context: int | str | None = None,
|
|
4762
4762
|
undo: bool | None = None,
|
|
4763
4763
|
*,
|
|
@@ -4765,7 +4765,7 @@ def shade_flat(
|
|
|
4765
4765
|
):
|
|
4766
4766
|
"""Render and display faces uniform, using face normals
|
|
4767
4767
|
|
|
4768
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4768
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4769
4769
|
:type execution_context: int | str | None
|
|
4770
4770
|
:type undo: bool | None
|
|
4771
4771
|
:param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges, which are redundant with faces shaded smooth
|
|
@@ -4775,7 +4775,7 @@ def shade_flat(
|
|
|
4775
4775
|
...
|
|
4776
4776
|
|
|
4777
4777
|
def shade_smooth(
|
|
4778
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4778
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4779
4779
|
execution_context: int | str | None = None,
|
|
4780
4780
|
undo: bool | None = None,
|
|
4781
4781
|
*,
|
|
@@ -4783,7 +4783,7 @@ def shade_smooth(
|
|
|
4783
4783
|
):
|
|
4784
4784
|
"""Render and display faces smooth, using interpolated vertex normals
|
|
4785
4785
|
|
|
4786
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4786
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4787
4787
|
:type execution_context: int | str | None
|
|
4788
4788
|
:type undo: bool | None
|
|
4789
4789
|
:param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges. Tagged edges will remain sharp
|
|
@@ -4793,7 +4793,7 @@ def shade_smooth(
|
|
|
4793
4793
|
...
|
|
4794
4794
|
|
|
4795
4795
|
def shade_smooth_by_angle(
|
|
4796
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4796
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4797
4797
|
execution_context: int | str | None = None,
|
|
4798
4798
|
undo: bool | None = None,
|
|
4799
4799
|
*,
|
|
@@ -4802,7 +4802,7 @@ def shade_smooth_by_angle(
|
|
|
4802
4802
|
):
|
|
4803
4803
|
"""Set the sharpness of mesh edges based on the angle between the neighboring faces
|
|
4804
4804
|
|
|
4805
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4805
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4806
4806
|
:type execution_context: int | str | None
|
|
4807
4807
|
:type undo: bool | None
|
|
4808
4808
|
:param angle: Angle, Maximum angle between face normals that will be considered as smooth
|
|
@@ -4814,7 +4814,7 @@ def shade_smooth_by_angle(
|
|
|
4814
4814
|
...
|
|
4815
4815
|
|
|
4816
4816
|
def shaderfx_add(
|
|
4817
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4817
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4818
4818
|
execution_context: int | str | None = None,
|
|
4819
4819
|
undo: bool | None = None,
|
|
4820
4820
|
*,
|
|
@@ -4833,7 +4833,7 @@ def shaderfx_add(
|
|
|
4833
4833
|
):
|
|
4834
4834
|
"""Add a visual effect to the active object
|
|
4835
4835
|
|
|
4836
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4836
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4837
4837
|
:type execution_context: int | str | None
|
|
4838
4838
|
:type undo: bool | None
|
|
4839
4839
|
:param type: Type
|
|
@@ -4843,7 +4843,7 @@ def shaderfx_add(
|
|
|
4843
4843
|
...
|
|
4844
4844
|
|
|
4845
4845
|
def shaderfx_copy(
|
|
4846
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4846
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4847
4847
|
execution_context: int | str | None = None,
|
|
4848
4848
|
undo: bool | None = None,
|
|
4849
4849
|
*,
|
|
@@ -4851,7 +4851,7 @@ def shaderfx_copy(
|
|
|
4851
4851
|
):
|
|
4852
4852
|
"""Duplicate effect at the same position in the stack
|
|
4853
4853
|
|
|
4854
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4854
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4855
4855
|
:type execution_context: int | str | None
|
|
4856
4856
|
:type undo: bool | None
|
|
4857
4857
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4861,7 +4861,7 @@ def shaderfx_copy(
|
|
|
4861
4861
|
...
|
|
4862
4862
|
|
|
4863
4863
|
def shaderfx_move_down(
|
|
4864
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4864
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4865
4865
|
execution_context: int | str | None = None,
|
|
4866
4866
|
undo: bool | None = None,
|
|
4867
4867
|
*,
|
|
@@ -4869,7 +4869,7 @@ def shaderfx_move_down(
|
|
|
4869
4869
|
):
|
|
4870
4870
|
"""Move effect down in the stack
|
|
4871
4871
|
|
|
4872
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4872
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4873
4873
|
:type execution_context: int | str | None
|
|
4874
4874
|
:type undo: bool | None
|
|
4875
4875
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4879,7 +4879,7 @@ def shaderfx_move_down(
|
|
|
4879
4879
|
...
|
|
4880
4880
|
|
|
4881
4881
|
def shaderfx_move_to_index(
|
|
4882
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4882
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4883
4883
|
execution_context: int | str | None = None,
|
|
4884
4884
|
undo: bool | None = None,
|
|
4885
4885
|
*,
|
|
@@ -4888,7 +4888,7 @@ def shaderfx_move_to_index(
|
|
|
4888
4888
|
):
|
|
4889
4889
|
"""Change the effect's position in the list so it evaluates after the set number of others
|
|
4890
4890
|
|
|
4891
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4891
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4892
4892
|
:type execution_context: int | str | None
|
|
4893
4893
|
:type undo: bool | None
|
|
4894
4894
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4900,7 +4900,7 @@ def shaderfx_move_to_index(
|
|
|
4900
4900
|
...
|
|
4901
4901
|
|
|
4902
4902
|
def shaderfx_move_up(
|
|
4903
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4903
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4904
4904
|
execution_context: int | str | None = None,
|
|
4905
4905
|
undo: bool | None = None,
|
|
4906
4906
|
*,
|
|
@@ -4908,7 +4908,7 @@ def shaderfx_move_up(
|
|
|
4908
4908
|
):
|
|
4909
4909
|
"""Move effect up in the stack
|
|
4910
4910
|
|
|
4911
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4911
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4912
4912
|
:type execution_context: int | str | None
|
|
4913
4913
|
:type undo: bool | None
|
|
4914
4914
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4918,7 +4918,7 @@ def shaderfx_move_up(
|
|
|
4918
4918
|
...
|
|
4919
4919
|
|
|
4920
4920
|
def shaderfx_remove(
|
|
4921
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4921
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4922
4922
|
execution_context: int | str | None = None,
|
|
4923
4923
|
undo: bool | None = None,
|
|
4924
4924
|
*,
|
|
@@ -4927,7 +4927,7 @@ def shaderfx_remove(
|
|
|
4927
4927
|
):
|
|
4928
4928
|
"""Remove a effect from the active grease pencil object
|
|
4929
4929
|
|
|
4930
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4930
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4931
4931
|
:type execution_context: int | str | None
|
|
4932
4932
|
:type undo: bool | None
|
|
4933
4933
|
:param shaderfx: Shader, Name of the shaderfx to edit
|
|
@@ -4939,7 +4939,7 @@ def shaderfx_remove(
|
|
|
4939
4939
|
...
|
|
4940
4940
|
|
|
4941
4941
|
def shape_key_add(
|
|
4942
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4942
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4943
4943
|
execution_context: int | str | None = None,
|
|
4944
4944
|
undo: bool | None = None,
|
|
4945
4945
|
*,
|
|
@@ -4947,7 +4947,7 @@ def shape_key_add(
|
|
|
4947
4947
|
):
|
|
4948
4948
|
"""Add shape key to the object
|
|
4949
4949
|
|
|
4950
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4950
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4951
4951
|
:type execution_context: int | str | None
|
|
4952
4952
|
:type undo: bool | None
|
|
4953
4953
|
:param from_mix: From Mix, Create the new shape key from the existing mix of keys
|
|
@@ -4957,13 +4957,13 @@ def shape_key_add(
|
|
|
4957
4957
|
...
|
|
4958
4958
|
|
|
4959
4959
|
def shape_key_clear(
|
|
4960
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4960
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4961
4961
|
execution_context: int | str | None = None,
|
|
4962
4962
|
undo: bool | None = None,
|
|
4963
4963
|
):
|
|
4964
4964
|
"""Reset the weights of all shape keys to 0 or to the closest value respecting the limits
|
|
4965
4965
|
|
|
4966
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4966
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4967
4967
|
:type execution_context: int | str | None
|
|
4968
4968
|
:type undo: bool | None
|
|
4969
4969
|
"""
|
|
@@ -4971,7 +4971,7 @@ def shape_key_clear(
|
|
|
4971
4971
|
...
|
|
4972
4972
|
|
|
4973
4973
|
def shape_key_lock(
|
|
4974
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4974
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4975
4975
|
execution_context: int | str | None = None,
|
|
4976
4976
|
undo: bool | None = None,
|
|
4977
4977
|
*,
|
|
@@ -4979,7 +4979,7 @@ def shape_key_lock(
|
|
|
4979
4979
|
):
|
|
4980
4980
|
"""Change the lock state of all shape keys of active object
|
|
4981
4981
|
|
|
4982
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4982
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4983
4983
|
:type execution_context: int | str | None
|
|
4984
4984
|
:type undo: bool | None
|
|
4985
4985
|
:param action: Action, Lock action to execute on vertex groups
|
|
@@ -4995,7 +4995,7 @@ def shape_key_lock(
|
|
|
4995
4995
|
...
|
|
4996
4996
|
|
|
4997
4997
|
def shape_key_mirror(
|
|
4998
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
4998
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
4999
4999
|
execution_context: int | str | None = None,
|
|
5000
5000
|
undo: bool | None = None,
|
|
5001
5001
|
*,
|
|
@@ -5003,7 +5003,7 @@ def shape_key_mirror(
|
|
|
5003
5003
|
):
|
|
5004
5004
|
"""Mirror the current shape key along the local X axis
|
|
5005
5005
|
|
|
5006
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5006
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5007
5007
|
:type execution_context: int | str | None
|
|
5008
5008
|
:type undo: bool | None
|
|
5009
5009
|
:param use_topology: Topology Mirror, Use topology based mirroring (for when both sides of mesh have matching, unique topology)
|
|
@@ -5013,7 +5013,7 @@ def shape_key_mirror(
|
|
|
5013
5013
|
...
|
|
5014
5014
|
|
|
5015
5015
|
def shape_key_move(
|
|
5016
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5016
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5017
5017
|
execution_context: int | str | None = None,
|
|
5018
5018
|
undo: bool | None = None,
|
|
5019
5019
|
*,
|
|
@@ -5021,7 +5021,7 @@ def shape_key_move(
|
|
|
5021
5021
|
):
|
|
5022
5022
|
"""Move the active shape key up/down in the list
|
|
5023
5023
|
|
|
5024
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5024
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5025
5025
|
:type execution_context: int | str | None
|
|
5026
5026
|
:type undo: bool | None
|
|
5027
5027
|
:param type: Type
|
|
@@ -5043,7 +5043,7 @@ def shape_key_move(
|
|
|
5043
5043
|
...
|
|
5044
5044
|
|
|
5045
5045
|
def shape_key_remove(
|
|
5046
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5046
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5047
5047
|
execution_context: int | str | None = None,
|
|
5048
5048
|
undo: bool | None = None,
|
|
5049
5049
|
*,
|
|
@@ -5052,7 +5052,7 @@ def shape_key_remove(
|
|
|
5052
5052
|
):
|
|
5053
5053
|
"""Remove shape key from the object
|
|
5054
5054
|
|
|
5055
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5055
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5056
5056
|
:type execution_context: int | str | None
|
|
5057
5057
|
:type undo: bool | None
|
|
5058
5058
|
:param all: All, Remove all shape keys
|
|
@@ -5064,13 +5064,13 @@ def shape_key_remove(
|
|
|
5064
5064
|
...
|
|
5065
5065
|
|
|
5066
5066
|
def shape_key_retime(
|
|
5067
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5067
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5068
5068
|
execution_context: int | str | None = None,
|
|
5069
5069
|
undo: bool | None = None,
|
|
5070
5070
|
):
|
|
5071
5071
|
"""Resets the timing for absolute shape keys
|
|
5072
5072
|
|
|
5073
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5073
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5074
5074
|
:type execution_context: int | str | None
|
|
5075
5075
|
:type undo: bool | None
|
|
5076
5076
|
"""
|
|
@@ -5078,7 +5078,7 @@ def shape_key_retime(
|
|
|
5078
5078
|
...
|
|
5079
5079
|
|
|
5080
5080
|
def shape_key_transfer(
|
|
5081
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5081
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5082
5082
|
execution_context: int | str | None = None,
|
|
5083
5083
|
undo: bool | None = None,
|
|
5084
5084
|
*,
|
|
@@ -5087,7 +5087,7 @@ def shape_key_transfer(
|
|
|
5087
5087
|
):
|
|
5088
5088
|
"""Copy the active shape key of another selected object to this one
|
|
5089
5089
|
|
|
5090
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5090
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5091
5091
|
:type execution_context: int | str | None
|
|
5092
5092
|
:type undo: bool | None
|
|
5093
5093
|
:param mode: Transformation Mode, Relative shape positions to the new shape method
|
|
@@ -5108,7 +5108,7 @@ def shape_key_transfer(
|
|
|
5108
5108
|
...
|
|
5109
5109
|
|
|
5110
5110
|
def simulation_nodes_cache_bake(
|
|
5111
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5111
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5112
5112
|
execution_context: int | str | None = None,
|
|
5113
5113
|
undo: bool | None = None,
|
|
5114
5114
|
*,
|
|
@@ -5116,7 +5116,7 @@ def simulation_nodes_cache_bake(
|
|
|
5116
5116
|
):
|
|
5117
5117
|
"""Bake simulations in geometry nodes modifiers
|
|
5118
5118
|
|
|
5119
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5119
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5120
5120
|
:type execution_context: int | str | None
|
|
5121
5121
|
:type undo: bool | None
|
|
5122
5122
|
:param selected: Selected, Bake cache on all selected objects
|
|
@@ -5126,7 +5126,7 @@ def simulation_nodes_cache_bake(
|
|
|
5126
5126
|
...
|
|
5127
5127
|
|
|
5128
5128
|
def simulation_nodes_cache_calculate_to_frame(
|
|
5129
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5129
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5130
5130
|
execution_context: int | str | None = None,
|
|
5131
5131
|
undo: bool | None = None,
|
|
5132
5132
|
*,
|
|
@@ -5134,7 +5134,7 @@ def simulation_nodes_cache_calculate_to_frame(
|
|
|
5134
5134
|
):
|
|
5135
5135
|
"""Calculate simulations in geometry nodes modifiers from the start to current frame
|
|
5136
5136
|
|
|
5137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5137
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5138
5138
|
:type execution_context: int | str | None
|
|
5139
5139
|
:type undo: bool | None
|
|
5140
5140
|
:param selected: Selected, Calculate all selected objects instead of just the active object
|
|
@@ -5144,7 +5144,7 @@ def simulation_nodes_cache_calculate_to_frame(
|
|
|
5144
5144
|
...
|
|
5145
5145
|
|
|
5146
5146
|
def simulation_nodes_cache_delete(
|
|
5147
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5147
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5148
5148
|
execution_context: int | str | None = None,
|
|
5149
5149
|
undo: bool | None = None,
|
|
5150
5150
|
*,
|
|
@@ -5152,7 +5152,7 @@ def simulation_nodes_cache_delete(
|
|
|
5152
5152
|
):
|
|
5153
5153
|
"""Delete cached/baked simulations in geometry nodes modifiers
|
|
5154
5154
|
|
|
5155
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5155
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5156
5156
|
:type execution_context: int | str | None
|
|
5157
5157
|
:type undo: bool | None
|
|
5158
5158
|
:param selected: Selected, Delete cache on all selected objects
|
|
@@ -5162,7 +5162,7 @@ def simulation_nodes_cache_delete(
|
|
|
5162
5162
|
...
|
|
5163
5163
|
|
|
5164
5164
|
def skin_armature_create(
|
|
5165
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5165
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5166
5166
|
execution_context: int | str | None = None,
|
|
5167
5167
|
undo: bool | None = None,
|
|
5168
5168
|
*,
|
|
@@ -5170,7 +5170,7 @@ def skin_armature_create(
|
|
|
5170
5170
|
):
|
|
5171
5171
|
"""Create an armature that parallels the skin layout
|
|
5172
5172
|
|
|
5173
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5173
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5174
5174
|
:type execution_context: int | str | None
|
|
5175
5175
|
:type undo: bool | None
|
|
5176
5176
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -5180,7 +5180,7 @@ def skin_armature_create(
|
|
|
5180
5180
|
...
|
|
5181
5181
|
|
|
5182
5182
|
def skin_loose_mark_clear(
|
|
5183
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5183
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5184
5184
|
execution_context: int | str | None = None,
|
|
5185
5185
|
undo: bool | None = None,
|
|
5186
5186
|
*,
|
|
@@ -5188,7 +5188,7 @@ def skin_loose_mark_clear(
|
|
|
5188
5188
|
):
|
|
5189
5189
|
"""Mark/clear selected vertices as loose
|
|
5190
5190
|
|
|
5191
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5191
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5192
5192
|
:type execution_context: int | str | None
|
|
5193
5193
|
:type undo: bool | None
|
|
5194
5194
|
:param action: Action
|
|
@@ -5204,13 +5204,13 @@ def skin_loose_mark_clear(
|
|
|
5204
5204
|
...
|
|
5205
5205
|
|
|
5206
5206
|
def skin_radii_equalize(
|
|
5207
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5207
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5208
5208
|
execution_context: int | str | None = None,
|
|
5209
5209
|
undo: bool | None = None,
|
|
5210
5210
|
):
|
|
5211
5211
|
"""Make skin radii of selected vertices equal on each axis
|
|
5212
5212
|
|
|
5213
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5213
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5214
5214
|
:type execution_context: int | str | None
|
|
5215
5215
|
:type undo: bool | None
|
|
5216
5216
|
"""
|
|
@@ -5218,13 +5218,13 @@ def skin_radii_equalize(
|
|
|
5218
5218
|
...
|
|
5219
5219
|
|
|
5220
5220
|
def skin_root_mark(
|
|
5221
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5221
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5222
5222
|
execution_context: int | str | None = None,
|
|
5223
5223
|
undo: bool | None = None,
|
|
5224
5224
|
):
|
|
5225
5225
|
"""Mark selected vertices as roots
|
|
5226
5226
|
|
|
5227
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5227
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5228
5228
|
:type execution_context: int | str | None
|
|
5229
5229
|
:type undo: bool | None
|
|
5230
5230
|
"""
|
|
@@ -5232,7 +5232,7 @@ def skin_root_mark(
|
|
|
5232
5232
|
...
|
|
5233
5233
|
|
|
5234
5234
|
def speaker_add(
|
|
5235
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5235
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5236
5236
|
execution_context: int | str | None = None,
|
|
5237
5237
|
undo: bool | None = None,
|
|
5238
5238
|
*,
|
|
@@ -5252,7 +5252,7 @@ def speaker_add(
|
|
|
5252
5252
|
):
|
|
5253
5253
|
"""Add a speaker object to the scene
|
|
5254
5254
|
|
|
5255
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5255
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5256
5256
|
:type execution_context: int | str | None
|
|
5257
5257
|
:type undo: bool | None
|
|
5258
5258
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
@@ -5279,7 +5279,7 @@ def speaker_add(
|
|
|
5279
5279
|
...
|
|
5280
5280
|
|
|
5281
5281
|
def subdivision_set(
|
|
5282
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5282
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5283
5283
|
execution_context: int | str | None = None,
|
|
5284
5284
|
undo: bool | None = None,
|
|
5285
5285
|
*,
|
|
@@ -5288,7 +5288,7 @@ def subdivision_set(
|
|
|
5288
5288
|
):
|
|
5289
5289
|
"""Sets a Subdivision Surface level (1 to 5)
|
|
5290
5290
|
|
|
5291
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5291
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5292
5292
|
:type execution_context: int | str | None
|
|
5293
5293
|
:type undo: bool | None
|
|
5294
5294
|
:param level: Level
|
|
@@ -5300,7 +5300,7 @@ def subdivision_set(
|
|
|
5300
5300
|
...
|
|
5301
5301
|
|
|
5302
5302
|
def surfacedeform_bind(
|
|
5303
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5303
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5304
5304
|
execution_context: int | str | None = None,
|
|
5305
5305
|
undo: bool | None = None,
|
|
5306
5306
|
*,
|
|
@@ -5308,7 +5308,7 @@ def surfacedeform_bind(
|
|
|
5308
5308
|
):
|
|
5309
5309
|
"""Bind mesh to target in surface deform modifier
|
|
5310
5310
|
|
|
5311
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5311
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5312
5312
|
:type execution_context: int | str | None
|
|
5313
5313
|
:type undo: bool | None
|
|
5314
5314
|
:param modifier: Modifier, Name of the modifier to edit
|
|
@@ -5318,7 +5318,7 @@ def surfacedeform_bind(
|
|
|
5318
5318
|
...
|
|
5319
5319
|
|
|
5320
5320
|
def text_add(
|
|
5321
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5321
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5322
5322
|
execution_context: int | str | None = None,
|
|
5323
5323
|
undo: bool | None = None,
|
|
5324
5324
|
*,
|
|
@@ -5339,7 +5339,7 @@ def text_add(
|
|
|
5339
5339
|
):
|
|
5340
5340
|
"""Add a text object to the scene
|
|
5341
5341
|
|
|
5342
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5342
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5343
5343
|
:type execution_context: int | str | None
|
|
5344
5344
|
:type undo: bool | None
|
|
5345
5345
|
:param radius: Radius
|
|
@@ -5368,7 +5368,7 @@ def text_add(
|
|
|
5368
5368
|
...
|
|
5369
5369
|
|
|
5370
5370
|
def track_clear(
|
|
5371
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5371
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5372
5372
|
execution_context: int | str | None = None,
|
|
5373
5373
|
undo: bool | None = None,
|
|
5374
5374
|
*,
|
|
@@ -5376,7 +5376,7 @@ def track_clear(
|
|
|
5376
5376
|
):
|
|
5377
5377
|
"""Clear tracking constraint or flag from object
|
|
5378
5378
|
|
|
5379
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5379
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5380
5380
|
:type execution_context: int | str | None
|
|
5381
5381
|
:type undo: bool | None
|
|
5382
5382
|
:param type: Type
|
|
@@ -5386,7 +5386,7 @@ def track_clear(
|
|
|
5386
5386
|
...
|
|
5387
5387
|
|
|
5388
5388
|
def track_set(
|
|
5389
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5389
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5390
5390
|
execution_context: int | str | None = None,
|
|
5391
5391
|
undo: bool | None = None,
|
|
5392
5392
|
*,
|
|
@@ -5394,7 +5394,7 @@ def track_set(
|
|
|
5394
5394
|
):
|
|
5395
5395
|
"""Make the object track another object, using various methods/constraints
|
|
5396
5396
|
|
|
5397
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5397
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5398
5398
|
:type execution_context: int | str | None
|
|
5399
5399
|
:type undo: bool | None
|
|
5400
5400
|
:param type: Type
|
|
@@ -5404,7 +5404,7 @@ def track_set(
|
|
|
5404
5404
|
...
|
|
5405
5405
|
|
|
5406
5406
|
def transfer_mode(
|
|
5407
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5407
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5408
5408
|
execution_context: int | str | None = None,
|
|
5409
5409
|
undo: bool | None = None,
|
|
5410
5410
|
*,
|
|
@@ -5412,7 +5412,7 @@ def transfer_mode(
|
|
|
5412
5412
|
):
|
|
5413
5413
|
"""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
|
|
5414
5414
|
|
|
5415
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5415
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5416
5416
|
:type execution_context: int | str | None
|
|
5417
5417
|
:type undo: bool | None
|
|
5418
5418
|
:param use_flash_on_transfer: Flash On Transfer, Flash the target object when transferring the mode
|
|
@@ -5422,7 +5422,7 @@ def transfer_mode(
|
|
|
5422
5422
|
...
|
|
5423
5423
|
|
|
5424
5424
|
def transform_apply(
|
|
5425
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5425
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5426
5426
|
execution_context: int | str | None = None,
|
|
5427
5427
|
undo: bool | None = None,
|
|
5428
5428
|
*,
|
|
@@ -5434,7 +5434,7 @@ def transform_apply(
|
|
|
5434
5434
|
):
|
|
5435
5435
|
"""Apply the object's transformation to its data
|
|
5436
5436
|
|
|
5437
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5437
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5438
5438
|
:type execution_context: int | str | None
|
|
5439
5439
|
:type undo: bool | None
|
|
5440
5440
|
:param location: Location
|
|
@@ -5452,13 +5452,13 @@ def transform_apply(
|
|
|
5452
5452
|
...
|
|
5453
5453
|
|
|
5454
5454
|
def transform_axis_target(
|
|
5455
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5455
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5456
5456
|
execution_context: int | str | None = None,
|
|
5457
5457
|
undo: bool | None = None,
|
|
5458
5458
|
):
|
|
5459
5459
|
"""Interactively point cameras and lights to a location (Ctrl translates)
|
|
5460
5460
|
|
|
5461
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5461
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5462
5462
|
:type execution_context: int | str | None
|
|
5463
5463
|
:type undo: bool | None
|
|
5464
5464
|
"""
|
|
@@ -5466,7 +5466,7 @@ def transform_axis_target(
|
|
|
5466
5466
|
...
|
|
5467
5467
|
|
|
5468
5468
|
def transform_to_mouse(
|
|
5469
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5469
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5470
5470
|
execution_context: int | str | None = None,
|
|
5471
5471
|
undo: bool | None = None,
|
|
5472
5472
|
*,
|
|
@@ -5485,7 +5485,7 @@ def transform_to_mouse(
|
|
|
5485
5485
|
):
|
|
5486
5486
|
"""Snap selected item(s) to the mouse location
|
|
5487
5487
|
|
|
5488
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5488
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5489
5489
|
:type execution_context: int | str | None
|
|
5490
5490
|
:type undo: bool | None
|
|
5491
5491
|
:param name: Name, Object name to place (uses the active object when this and 'session_uid' are unset)
|
|
@@ -5503,7 +5503,7 @@ def transform_to_mouse(
|
|
|
5503
5503
|
...
|
|
5504
5504
|
|
|
5505
5505
|
def transforms_to_deltas(
|
|
5506
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5506
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5507
5507
|
execution_context: int | str | None = None,
|
|
5508
5508
|
undo: bool | None = None,
|
|
5509
5509
|
*,
|
|
@@ -5512,7 +5512,7 @@ def transforms_to_deltas(
|
|
|
5512
5512
|
):
|
|
5513
5513
|
"""Convert normal object transforms to delta transforms, any existing delta transforms will be included as well
|
|
5514
5514
|
|
|
5515
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5515
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5516
5516
|
:type execution_context: int | str | None
|
|
5517
5517
|
:type undo: bool | None
|
|
5518
5518
|
:param mode: Mode, Which transforms to transfer
|
|
@@ -5536,13 +5536,13 @@ def transforms_to_deltas(
|
|
|
5536
5536
|
...
|
|
5537
5537
|
|
|
5538
5538
|
def unlink_data(
|
|
5539
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5539
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5540
5540
|
execution_context: int | str | None = None,
|
|
5541
5541
|
undo: bool | None = None,
|
|
5542
5542
|
):
|
|
5543
5543
|
"""Undocumented, consider contributing.
|
|
5544
5544
|
|
|
5545
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5545
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5546
5546
|
:type execution_context: int | str | None
|
|
5547
5547
|
:type undo: bool | None
|
|
5548
5548
|
"""
|
|
@@ -5550,13 +5550,13 @@ def unlink_data(
|
|
|
5550
5550
|
...
|
|
5551
5551
|
|
|
5552
5552
|
def vertex_group_add(
|
|
5553
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5553
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5554
5554
|
execution_context: int | str | None = None,
|
|
5555
5555
|
undo: bool | None = None,
|
|
5556
5556
|
):
|
|
5557
5557
|
"""Add a new vertex group to the active object
|
|
5558
5558
|
|
|
5559
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5559
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5560
5560
|
:type execution_context: int | str | None
|
|
5561
5561
|
:type undo: bool | None
|
|
5562
5562
|
"""
|
|
@@ -5564,13 +5564,13 @@ def vertex_group_add(
|
|
|
5564
5564
|
...
|
|
5565
5565
|
|
|
5566
5566
|
def vertex_group_assign(
|
|
5567
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5567
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5568
5568
|
execution_context: int | str | None = None,
|
|
5569
5569
|
undo: bool | None = None,
|
|
5570
5570
|
):
|
|
5571
5571
|
"""Assign the selected vertices to the active vertex group
|
|
5572
5572
|
|
|
5573
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5573
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5574
5574
|
:type execution_context: int | str | None
|
|
5575
5575
|
:type undo: bool | None
|
|
5576
5576
|
"""
|
|
@@ -5578,13 +5578,13 @@ def vertex_group_assign(
|
|
|
5578
5578
|
...
|
|
5579
5579
|
|
|
5580
5580
|
def vertex_group_assign_new(
|
|
5581
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5581
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5582
5582
|
execution_context: int | str | None = None,
|
|
5583
5583
|
undo: bool | None = None,
|
|
5584
5584
|
):
|
|
5585
5585
|
"""Assign the selected vertices to a new vertex group
|
|
5586
5586
|
|
|
5587
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5587
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5588
5588
|
:type execution_context: int | str | None
|
|
5589
5589
|
:type undo: bool | None
|
|
5590
5590
|
"""
|
|
@@ -5592,7 +5592,7 @@ def vertex_group_assign_new(
|
|
|
5592
5592
|
...
|
|
5593
5593
|
|
|
5594
5594
|
def vertex_group_clean(
|
|
5595
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5595
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5596
5596
|
execution_context: int | str | None = None,
|
|
5597
5597
|
undo: bool | None = None,
|
|
5598
5598
|
*,
|
|
@@ -5602,7 +5602,7 @@ def vertex_group_clean(
|
|
|
5602
5602
|
):
|
|
5603
5603
|
"""Remove vertex group assignments which are not required
|
|
5604
5604
|
|
|
5605
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5605
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5606
5606
|
:type execution_context: int | str | None
|
|
5607
5607
|
:type undo: bool | None
|
|
5608
5608
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5616,13 +5616,13 @@ def vertex_group_clean(
|
|
|
5616
5616
|
...
|
|
5617
5617
|
|
|
5618
5618
|
def vertex_group_copy(
|
|
5619
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5619
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5620
5620
|
execution_context: int | str | None = None,
|
|
5621
5621
|
undo: bool | None = None,
|
|
5622
5622
|
):
|
|
5623
5623
|
"""Make a copy of the active vertex group
|
|
5624
5624
|
|
|
5625
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5625
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5626
5626
|
:type execution_context: int | str | None
|
|
5627
5627
|
:type undo: bool | None
|
|
5628
5628
|
"""
|
|
@@ -5630,13 +5630,13 @@ def vertex_group_copy(
|
|
|
5630
5630
|
...
|
|
5631
5631
|
|
|
5632
5632
|
def vertex_group_copy_to_selected(
|
|
5633
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5633
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5634
5634
|
execution_context: int | str | None = None,
|
|
5635
5635
|
undo: bool | None = None,
|
|
5636
5636
|
):
|
|
5637
5637
|
"""Replace vertex groups of selected objects by vertex groups of active object
|
|
5638
5638
|
|
|
5639
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5639
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5640
5640
|
:type execution_context: int | str | None
|
|
5641
5641
|
:type undo: bool | None
|
|
5642
5642
|
"""
|
|
@@ -5644,13 +5644,13 @@ def vertex_group_copy_to_selected(
|
|
|
5644
5644
|
...
|
|
5645
5645
|
|
|
5646
5646
|
def vertex_group_deselect(
|
|
5647
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5647
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5648
5648
|
execution_context: int | str | None = None,
|
|
5649
5649
|
undo: bool | None = None,
|
|
5650
5650
|
):
|
|
5651
5651
|
"""Deselect all selected vertices assigned to the active vertex group
|
|
5652
5652
|
|
|
5653
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5653
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5654
5654
|
:type execution_context: int | str | None
|
|
5655
5655
|
:type undo: bool | None
|
|
5656
5656
|
"""
|
|
@@ -5658,7 +5658,7 @@ def vertex_group_deselect(
|
|
|
5658
5658
|
...
|
|
5659
5659
|
|
|
5660
5660
|
def vertex_group_invert(
|
|
5661
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5661
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5662
5662
|
execution_context: int | str | None = None,
|
|
5663
5663
|
undo: bool | None = None,
|
|
5664
5664
|
*,
|
|
@@ -5668,7 +5668,7 @@ def vertex_group_invert(
|
|
|
5668
5668
|
):
|
|
5669
5669
|
"""Invert active vertex group's weights
|
|
5670
5670
|
|
|
5671
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5671
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5672
5672
|
:type execution_context: int | str | None
|
|
5673
5673
|
:type undo: bool | None
|
|
5674
5674
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5682,7 +5682,7 @@ def vertex_group_invert(
|
|
|
5682
5682
|
...
|
|
5683
5683
|
|
|
5684
5684
|
def vertex_group_levels(
|
|
5685
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5685
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5686
5686
|
execution_context: int | str | None = None,
|
|
5687
5687
|
undo: bool | None = None,
|
|
5688
5688
|
*,
|
|
@@ -5692,7 +5692,7 @@ def vertex_group_levels(
|
|
|
5692
5692
|
):
|
|
5693
5693
|
"""Add some offset and multiply with some gain the weights of the active vertex group
|
|
5694
5694
|
|
|
5695
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5695
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5696
5696
|
:type execution_context: int | str | None
|
|
5697
5697
|
:type undo: bool | None
|
|
5698
5698
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5706,7 +5706,7 @@ def vertex_group_levels(
|
|
|
5706
5706
|
...
|
|
5707
5707
|
|
|
5708
5708
|
def vertex_group_limit_total(
|
|
5709
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5709
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5710
5710
|
execution_context: int | str | None = None,
|
|
5711
5711
|
undo: bool | None = None,
|
|
5712
5712
|
*,
|
|
@@ -5715,7 +5715,7 @@ def vertex_group_limit_total(
|
|
|
5715
5715
|
):
|
|
5716
5716
|
"""Limit deform weights associated with a vertex to a specified number by removing lowest weights
|
|
5717
5717
|
|
|
5718
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5718
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5719
5719
|
:type execution_context: int | str | None
|
|
5720
5720
|
:type undo: bool | None
|
|
5721
5721
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5727,7 +5727,7 @@ def vertex_group_limit_total(
|
|
|
5727
5727
|
...
|
|
5728
5728
|
|
|
5729
5729
|
def vertex_group_lock(
|
|
5730
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5730
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5731
5731
|
execution_context: int | str | None = None,
|
|
5732
5732
|
undo: bool | None = None,
|
|
5733
5733
|
*,
|
|
@@ -5737,7 +5737,7 @@ def vertex_group_lock(
|
|
|
5737
5737
|
):
|
|
5738
5738
|
"""Change the lock state of all or some vertex groups of active object
|
|
5739
5739
|
|
|
5740
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5740
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5741
5741
|
:type execution_context: int | str | None
|
|
5742
5742
|
:type undo: bool | None
|
|
5743
5743
|
:param action: Action, Lock action to execute on vertex groups
|
|
@@ -5773,7 +5773,7 @@ def vertex_group_lock(
|
|
|
5773
5773
|
...
|
|
5774
5774
|
|
|
5775
5775
|
def vertex_group_mirror(
|
|
5776
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5776
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5777
5777
|
execution_context: int | str | None = None,
|
|
5778
5778
|
undo: bool | None = None,
|
|
5779
5779
|
*,
|
|
@@ -5784,7 +5784,7 @@ def vertex_group_mirror(
|
|
|
5784
5784
|
):
|
|
5785
5785
|
"""Mirror vertex group, flip weights and/or names, editing only selected vertices, flipping when both sides are selected otherwise copy from unselected
|
|
5786
5786
|
|
|
5787
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5787
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5788
5788
|
:type execution_context: int | str | None
|
|
5789
5789
|
:type undo: bool | None
|
|
5790
5790
|
:param mirror_weights: Mirror Weights, Mirror weights
|
|
@@ -5800,7 +5800,7 @@ def vertex_group_mirror(
|
|
|
5800
5800
|
...
|
|
5801
5801
|
|
|
5802
5802
|
def vertex_group_move(
|
|
5803
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5803
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5804
5804
|
execution_context: int | str | None = None,
|
|
5805
5805
|
undo: bool | None = None,
|
|
5806
5806
|
*,
|
|
@@ -5808,7 +5808,7 @@ def vertex_group_move(
|
|
|
5808
5808
|
):
|
|
5809
5809
|
"""Move the active vertex group up/down in the list
|
|
5810
5810
|
|
|
5811
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5811
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5812
5812
|
:type execution_context: int | str | None
|
|
5813
5813
|
:type undo: bool | None
|
|
5814
5814
|
:param direction: Direction, Direction to move the active vertex group towards
|
|
@@ -5818,13 +5818,13 @@ def vertex_group_move(
|
|
|
5818
5818
|
...
|
|
5819
5819
|
|
|
5820
5820
|
def vertex_group_normalize(
|
|
5821
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5821
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5822
5822
|
execution_context: int | str | None = None,
|
|
5823
5823
|
undo: bool | None = None,
|
|
5824
5824
|
):
|
|
5825
5825
|
"""Normalize weights of the active vertex group, so that the highest ones are now 1.0
|
|
5826
5826
|
|
|
5827
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5827
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5828
5828
|
:type execution_context: int | str | None
|
|
5829
5829
|
:type undo: bool | None
|
|
5830
5830
|
"""
|
|
@@ -5832,7 +5832,7 @@ def vertex_group_normalize(
|
|
|
5832
5832
|
...
|
|
5833
5833
|
|
|
5834
5834
|
def vertex_group_normalize_all(
|
|
5835
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5835
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5836
5836
|
execution_context: int | str | None = None,
|
|
5837
5837
|
undo: bool | None = None,
|
|
5838
5838
|
*,
|
|
@@ -5841,7 +5841,7 @@ def vertex_group_normalize_all(
|
|
|
5841
5841
|
):
|
|
5842
5842
|
"""Normalize all weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
|
|
5843
5843
|
|
|
5844
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5844
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5845
5845
|
:type execution_context: int | str | None
|
|
5846
5846
|
:type undo: bool | None
|
|
5847
5847
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5853,7 +5853,7 @@ def vertex_group_normalize_all(
|
|
|
5853
5853
|
...
|
|
5854
5854
|
|
|
5855
5855
|
def vertex_group_quantize(
|
|
5856
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5856
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5857
5857
|
execution_context: int | str | None = None,
|
|
5858
5858
|
undo: bool | None = None,
|
|
5859
5859
|
*,
|
|
@@ -5862,7 +5862,7 @@ def vertex_group_quantize(
|
|
|
5862
5862
|
):
|
|
5863
5863
|
"""Set weights to a fixed number of steps
|
|
5864
5864
|
|
|
5865
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5865
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5866
5866
|
:type execution_context: int | str | None
|
|
5867
5867
|
:type undo: bool | None
|
|
5868
5868
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5874,7 +5874,7 @@ def vertex_group_quantize(
|
|
|
5874
5874
|
...
|
|
5875
5875
|
|
|
5876
5876
|
def vertex_group_remove(
|
|
5877
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5877
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5878
5878
|
execution_context: int | str | None = None,
|
|
5879
5879
|
undo: bool | None = None,
|
|
5880
5880
|
*,
|
|
@@ -5883,7 +5883,7 @@ def vertex_group_remove(
|
|
|
5883
5883
|
):
|
|
5884
5884
|
"""Delete the active or all vertex groups from the active object
|
|
5885
5885
|
|
|
5886
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5886
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5887
5887
|
:type execution_context: int | str | None
|
|
5888
5888
|
:type undo: bool | None
|
|
5889
5889
|
:param all: All, Remove all vertex groups
|
|
@@ -5895,7 +5895,7 @@ def vertex_group_remove(
|
|
|
5895
5895
|
...
|
|
5896
5896
|
|
|
5897
5897
|
def vertex_group_remove_from(
|
|
5898
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5898
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5899
5899
|
execution_context: int | str | None = None,
|
|
5900
5900
|
undo: bool | None = None,
|
|
5901
5901
|
*,
|
|
@@ -5904,7 +5904,7 @@ def vertex_group_remove_from(
|
|
|
5904
5904
|
):
|
|
5905
5905
|
"""Remove the selected vertices from active or all vertex group(s)
|
|
5906
5906
|
|
|
5907
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5907
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5908
5908
|
:type execution_context: int | str | None
|
|
5909
5909
|
:type undo: bool | None
|
|
5910
5910
|
:param use_all_groups: All Groups, Remove from all groups
|
|
@@ -5916,13 +5916,13 @@ def vertex_group_remove_from(
|
|
|
5916
5916
|
...
|
|
5917
5917
|
|
|
5918
5918
|
def vertex_group_select(
|
|
5919
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5919
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5920
5920
|
execution_context: int | str | None = None,
|
|
5921
5921
|
undo: bool | None = None,
|
|
5922
5922
|
):
|
|
5923
5923
|
"""Select all the vertices assigned to the active vertex group
|
|
5924
5924
|
|
|
5925
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5925
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5926
5926
|
:type execution_context: int | str | None
|
|
5927
5927
|
:type undo: bool | None
|
|
5928
5928
|
"""
|
|
@@ -5930,7 +5930,7 @@ def vertex_group_select(
|
|
|
5930
5930
|
...
|
|
5931
5931
|
|
|
5932
5932
|
def vertex_group_set_active(
|
|
5933
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5933
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5934
5934
|
execution_context: int | str | None = None,
|
|
5935
5935
|
undo: bool | None = None,
|
|
5936
5936
|
*,
|
|
@@ -5938,7 +5938,7 @@ def vertex_group_set_active(
|
|
|
5938
5938
|
):
|
|
5939
5939
|
"""Set the active vertex group
|
|
5940
5940
|
|
|
5941
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5941
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5942
5942
|
:type execution_context: int | str | None
|
|
5943
5943
|
:type undo: bool | None
|
|
5944
5944
|
:param group: Group, Vertex group to set as active
|
|
@@ -5948,7 +5948,7 @@ def vertex_group_set_active(
|
|
|
5948
5948
|
...
|
|
5949
5949
|
|
|
5950
5950
|
def vertex_group_smooth(
|
|
5951
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5951
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5952
5952
|
execution_context: int | str | None = None,
|
|
5953
5953
|
undo: bool | None = None,
|
|
5954
5954
|
*,
|
|
@@ -5959,7 +5959,7 @@ def vertex_group_smooth(
|
|
|
5959
5959
|
):
|
|
5960
5960
|
"""Smooth weights for selected vertices
|
|
5961
5961
|
|
|
5962
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5962
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5963
5963
|
:type execution_context: int | str | None
|
|
5964
5964
|
:type undo: bool | None
|
|
5965
5965
|
:param group_select_mode: Subset, Define which subset of groups shall be used
|
|
@@ -5975,7 +5975,7 @@ def vertex_group_smooth(
|
|
|
5975
5975
|
...
|
|
5976
5976
|
|
|
5977
5977
|
def vertex_group_sort(
|
|
5978
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5978
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5979
5979
|
execution_context: int | str | None = None,
|
|
5980
5980
|
undo: bool | None = None,
|
|
5981
5981
|
*,
|
|
@@ -5983,7 +5983,7 @@ def vertex_group_sort(
|
|
|
5983
5983
|
):
|
|
5984
5984
|
"""Sort vertex groups
|
|
5985
5985
|
|
|
5986
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5986
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5987
5987
|
:type execution_context: int | str | None
|
|
5988
5988
|
:type undo: bool | None
|
|
5989
5989
|
:param sort_type: Sort Type, Sort type
|
|
@@ -5993,13 +5993,13 @@ def vertex_group_sort(
|
|
|
5993
5993
|
...
|
|
5994
5994
|
|
|
5995
5995
|
def vertex_parent_set(
|
|
5996
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
5996
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
5997
5997
|
execution_context: int | str | None = None,
|
|
5998
5998
|
undo: bool | None = None,
|
|
5999
5999
|
):
|
|
6000
6000
|
"""Parent selected objects to the selected vertices
|
|
6001
6001
|
|
|
6002
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6002
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6003
6003
|
:type execution_context: int | str | None
|
|
6004
6004
|
:type undo: bool | None
|
|
6005
6005
|
"""
|
|
@@ -6007,13 +6007,13 @@ def vertex_parent_set(
|
|
|
6007
6007
|
...
|
|
6008
6008
|
|
|
6009
6009
|
def vertex_weight_copy(
|
|
6010
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6010
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6011
6011
|
execution_context: int | str | None = None,
|
|
6012
6012
|
undo: bool | None = None,
|
|
6013
6013
|
):
|
|
6014
6014
|
"""Copy weights from active to selected
|
|
6015
6015
|
|
|
6016
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6016
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6017
6017
|
:type execution_context: int | str | None
|
|
6018
6018
|
:type undo: bool | None
|
|
6019
6019
|
"""
|
|
@@ -6021,7 +6021,7 @@ def vertex_weight_copy(
|
|
|
6021
6021
|
...
|
|
6022
6022
|
|
|
6023
6023
|
def vertex_weight_delete(
|
|
6024
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6024
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6025
6025
|
execution_context: int | str | None = None,
|
|
6026
6026
|
undo: bool | None = None,
|
|
6027
6027
|
*,
|
|
@@ -6029,7 +6029,7 @@ def vertex_weight_delete(
|
|
|
6029
6029
|
):
|
|
6030
6030
|
"""Delete this weight from the vertex (disabled if vertex group is locked)
|
|
6031
6031
|
|
|
6032
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6032
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6033
6033
|
:type execution_context: int | str | None
|
|
6034
6034
|
:type undo: bool | None
|
|
6035
6035
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -6039,13 +6039,13 @@ def vertex_weight_delete(
|
|
|
6039
6039
|
...
|
|
6040
6040
|
|
|
6041
6041
|
def vertex_weight_normalize_active_vertex(
|
|
6042
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6042
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6043
6043
|
execution_context: int | str | None = None,
|
|
6044
6044
|
undo: bool | None = None,
|
|
6045
6045
|
):
|
|
6046
6046
|
"""Normalize active vertex's weights
|
|
6047
6047
|
|
|
6048
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6048
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6049
6049
|
:type execution_context: int | str | None
|
|
6050
6050
|
:type undo: bool | None
|
|
6051
6051
|
"""
|
|
@@ -6053,7 +6053,7 @@ def vertex_weight_normalize_active_vertex(
|
|
|
6053
6053
|
...
|
|
6054
6054
|
|
|
6055
6055
|
def vertex_weight_paste(
|
|
6056
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6056
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6057
6057
|
execution_context: int | str | None = None,
|
|
6058
6058
|
undo: bool | None = None,
|
|
6059
6059
|
*,
|
|
@@ -6061,7 +6061,7 @@ def vertex_weight_paste(
|
|
|
6061
6061
|
):
|
|
6062
6062
|
"""Copy this group's weight to other selected vertices (disabled if vertex group is locked)
|
|
6063
6063
|
|
|
6064
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6064
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6065
6065
|
:type execution_context: int | str | None
|
|
6066
6066
|
:type undo: bool | None
|
|
6067
6067
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -6071,7 +6071,7 @@ def vertex_weight_paste(
|
|
|
6071
6071
|
...
|
|
6072
6072
|
|
|
6073
6073
|
def vertex_weight_set_active(
|
|
6074
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6074
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6075
6075
|
execution_context: int | str | None = None,
|
|
6076
6076
|
undo: bool | None = None,
|
|
6077
6077
|
*,
|
|
@@ -6079,7 +6079,7 @@ def vertex_weight_set_active(
|
|
|
6079
6079
|
):
|
|
6080
6080
|
"""Set as active vertex group
|
|
6081
6081
|
|
|
6082
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6082
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6083
6083
|
:type execution_context: int | str | None
|
|
6084
6084
|
:type undo: bool | None
|
|
6085
6085
|
:param weight_group: Weight Index, Index of source weight in active vertex group
|
|
@@ -6089,13 +6089,13 @@ def vertex_weight_set_active(
|
|
|
6089
6089
|
...
|
|
6090
6090
|
|
|
6091
6091
|
def visual_transform_apply(
|
|
6092
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6092
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6093
6093
|
execution_context: int | str | None = None,
|
|
6094
6094
|
undo: bool | None = None,
|
|
6095
6095
|
):
|
|
6096
6096
|
"""Apply the object's visual transformation to its data
|
|
6097
6097
|
|
|
6098
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6098
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6099
6099
|
:type execution_context: int | str | None
|
|
6100
6100
|
:type undo: bool | None
|
|
6101
6101
|
"""
|
|
@@ -6103,7 +6103,7 @@ def visual_transform_apply(
|
|
|
6103
6103
|
...
|
|
6104
6104
|
|
|
6105
6105
|
def volume_add(
|
|
6106
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6106
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6107
6107
|
execution_context: int | str | None = None,
|
|
6108
6108
|
undo: bool | None = None,
|
|
6109
6109
|
*,
|
|
@@ -6122,7 +6122,7 @@ def volume_add(
|
|
|
6122
6122
|
):
|
|
6123
6123
|
"""Add a volume object to the scene
|
|
6124
6124
|
|
|
6125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6125
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6126
6126
|
:type execution_context: int | str | None
|
|
6127
6127
|
:type undo: bool | None
|
|
6128
6128
|
:param align: Align, The alignment of the new object
|
|
@@ -6147,7 +6147,7 @@ def volume_add(
|
|
|
6147
6147
|
...
|
|
6148
6148
|
|
|
6149
6149
|
def volume_import(
|
|
6150
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6151
6151
|
execution_context: int | str | None = None,
|
|
6152
6152
|
undo: bool | None = None,
|
|
6153
6153
|
*,
|
|
@@ -6197,7 +6197,7 @@ def volume_import(
|
|
|
6197
6197
|
):
|
|
6198
6198
|
"""Import OpenVDB volume file
|
|
6199
6199
|
|
|
6200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6200
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6201
6201
|
:type execution_context: int | str | None
|
|
6202
6202
|
:type undo: bool | None
|
|
6203
6203
|
:param filepath: File Path, Path to file
|
|
@@ -6288,13 +6288,13 @@ def volume_import(
|
|
|
6288
6288
|
...
|
|
6289
6289
|
|
|
6290
6290
|
def voxel_remesh(
|
|
6291
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6291
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6292
6292
|
execution_context: int | str | None = None,
|
|
6293
6293
|
undo: bool | None = None,
|
|
6294
6294
|
):
|
|
6295
6295
|
"""Calculates a new manifold mesh based on the volume of the current mesh. All data layers will be lost
|
|
6296
6296
|
|
|
6297
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6297
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6298
6298
|
:type execution_context: int | str | None
|
|
6299
6299
|
:type undo: bool | None
|
|
6300
6300
|
"""
|
|
@@ -6302,13 +6302,13 @@ def voxel_remesh(
|
|
|
6302
6302
|
...
|
|
6303
6303
|
|
|
6304
6304
|
def voxel_size_edit(
|
|
6305
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6305
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
6306
6306
|
execution_context: int | str | None = None,
|
|
6307
6307
|
undo: bool | None = None,
|
|
6308
6308
|
):
|
|
6309
6309
|
"""Modify the mesh voxel size interactively used in the voxel remesher
|
|
6310
6310
|
|
|
6311
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6311
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
6312
6312
|
:type execution_context: int | str | None
|
|
6313
6313
|
:type undo: bool | None
|
|
6314
6314
|
"""
|