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/armature/__init__.pyi
CHANGED
|
@@ -8,13 +8,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
10
|
def align(
|
|
11
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
11
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
12
12
|
execution_context: int | str | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
14
|
):
|
|
15
15
|
"""Align selected bones to the active bone (or to their parent)
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
"""
|
|
@@ -22,7 +22,7 @@ def align(
|
|
|
22
22
|
...
|
|
23
23
|
|
|
24
24
|
def assign_to_collection(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
26
|
execution_context: int | str | None = None,
|
|
27
27
|
undo: bool | None = None,
|
|
28
28
|
*,
|
|
@@ -31,7 +31,7 @@ def assign_to_collection(
|
|
|
31
31
|
):
|
|
32
32
|
"""Assign all selected bones to a collection, or unassign them, depending on whether the active bone is already assigned or not
|
|
33
33
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
35
35
|
:type execution_context: int | str | None
|
|
36
36
|
:type undo: bool | None
|
|
37
37
|
:param collection_index: Collection Index, Index of the collection to assign selected bones to. When the operator should create a new bone collection, use new_collection_name to define the collection name, and set this parameter to the parent index of the new bone collection
|
|
@@ -43,7 +43,7 @@ def assign_to_collection(
|
|
|
43
43
|
...
|
|
44
44
|
|
|
45
45
|
def autoside_names(
|
|
46
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
46
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
47
47
|
execution_context: int | str | None = None,
|
|
48
48
|
undo: bool | None = None,
|
|
49
49
|
*,
|
|
@@ -51,7 +51,7 @@ def autoside_names(
|
|
|
51
51
|
):
|
|
52
52
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
53
53
|
|
|
54
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
55
55
|
:type execution_context: int | str | None
|
|
56
56
|
:type undo: bool | None
|
|
57
57
|
:param type: Axis, Axis to tag names with
|
|
@@ -70,7 +70,7 @@ def autoside_names(
|
|
|
70
70
|
...
|
|
71
71
|
|
|
72
72
|
def bone_primitive_add(
|
|
73
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
*,
|
|
@@ -78,7 +78,7 @@ def bone_primitive_add(
|
|
|
78
78
|
):
|
|
79
79
|
"""Add a new bone located at the 3D cursor
|
|
80
80
|
|
|
81
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
81
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
82
82
|
:type execution_context: int | str | None
|
|
83
83
|
:type undo: bool | None
|
|
84
84
|
:param name: Name, Name of the newly created bone
|
|
@@ -88,7 +88,7 @@ def bone_primitive_add(
|
|
|
88
88
|
...
|
|
89
89
|
|
|
90
90
|
def calculate_roll(
|
|
91
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
92
92
|
execution_context: int | str | None = None,
|
|
93
93
|
undo: bool | None = None,
|
|
94
94
|
*,
|
|
@@ -113,7 +113,7 @@ def calculate_roll(
|
|
|
113
113
|
):
|
|
114
114
|
"""Automatically fix alignment of select bones' axes
|
|
115
115
|
|
|
116
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
116
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
117
117
|
:type execution_context: int | str | None
|
|
118
118
|
:type undo: bool | None
|
|
119
119
|
:param type: Type
|
|
@@ -127,13 +127,13 @@ def calculate_roll(
|
|
|
127
127
|
...
|
|
128
128
|
|
|
129
129
|
def click_extrude(
|
|
130
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
130
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
131
|
execution_context: int | str | None = None,
|
|
132
132
|
undo: bool | None = None,
|
|
133
133
|
):
|
|
134
134
|
"""Create a new bone going from the last selected joint to the mouse position
|
|
135
135
|
|
|
136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
"""
|
|
@@ -141,13 +141,13 @@ def click_extrude(
|
|
|
141
141
|
...
|
|
142
142
|
|
|
143
143
|
def collection_add(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
):
|
|
148
148
|
"""Add a new bone collection
|
|
149
149
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
151
151
|
:type execution_context: int | str | None
|
|
152
152
|
:type undo: bool | None
|
|
153
153
|
"""
|
|
@@ -155,7 +155,7 @@ def collection_add(
|
|
|
155
155
|
...
|
|
156
156
|
|
|
157
157
|
def collection_assign(
|
|
158
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
158
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
159
159
|
execution_context: int | str | None = None,
|
|
160
160
|
undo: bool | None = None,
|
|
161
161
|
*,
|
|
@@ -163,7 +163,7 @@ def collection_assign(
|
|
|
163
163
|
):
|
|
164
164
|
"""Add selected bones to the chosen bone collection
|
|
165
165
|
|
|
166
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
166
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
167
167
|
:type execution_context: int | str | None
|
|
168
168
|
:type undo: bool | None
|
|
169
169
|
:param name: Bone Collection, Name of the bone collection to assign this bone to; empty to assign to the active bone collection
|
|
@@ -173,7 +173,7 @@ def collection_assign(
|
|
|
173
173
|
...
|
|
174
174
|
|
|
175
175
|
def collection_create_and_assign(
|
|
176
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
177
177
|
execution_context: int | str | None = None,
|
|
178
178
|
undo: bool | None = None,
|
|
179
179
|
*,
|
|
@@ -181,7 +181,7 @@ def collection_create_and_assign(
|
|
|
181
181
|
):
|
|
182
182
|
"""Create a new bone collection and assign all selected bones
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
:param name: Bone Collection, Name of the bone collection to create
|
|
@@ -191,13 +191,13 @@ def collection_create_and_assign(
|
|
|
191
191
|
...
|
|
192
192
|
|
|
193
193
|
def collection_deselect(
|
|
194
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
194
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
195
195
|
execution_context: int | str | None = None,
|
|
196
196
|
undo: bool | None = None,
|
|
197
197
|
):
|
|
198
198
|
"""Deselect bones of active Bone Collection
|
|
199
199
|
|
|
200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
200
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
201
201
|
:type execution_context: int | str | None
|
|
202
202
|
:type undo: bool | None
|
|
203
203
|
"""
|
|
@@ -205,7 +205,7 @@ def collection_deselect(
|
|
|
205
205
|
...
|
|
206
206
|
|
|
207
207
|
def collection_move(
|
|
208
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
208
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
209
209
|
execution_context: int | str | None = None,
|
|
210
210
|
undo: bool | None = None,
|
|
211
211
|
*,
|
|
@@ -213,7 +213,7 @@ def collection_move(
|
|
|
213
213
|
):
|
|
214
214
|
"""Change position of active Bone Collection in list of Bone collections
|
|
215
215
|
|
|
216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
216
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
217
|
:type execution_context: int | str | None
|
|
218
218
|
:type undo: bool | None
|
|
219
219
|
:param direction: Direction, Direction to move the active Bone Collection towards
|
|
@@ -223,13 +223,13 @@ def collection_move(
|
|
|
223
223
|
...
|
|
224
224
|
|
|
225
225
|
def collection_remove(
|
|
226
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
226
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
227
227
|
execution_context: int | str | None = None,
|
|
228
228
|
undo: bool | None = None,
|
|
229
229
|
):
|
|
230
230
|
"""Remove the active bone collection
|
|
231
231
|
|
|
232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
232
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
233
|
:type execution_context: int | str | None
|
|
234
234
|
:type undo: bool | None
|
|
235
235
|
"""
|
|
@@ -237,13 +237,13 @@ def collection_remove(
|
|
|
237
237
|
...
|
|
238
238
|
|
|
239
239
|
def collection_remove_unused(
|
|
240
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
240
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
241
241
|
execution_context: int | str | None = None,
|
|
242
242
|
undo: bool | None = None,
|
|
243
243
|
):
|
|
244
244
|
"""Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed
|
|
245
245
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
247
247
|
:type execution_context: int | str | None
|
|
248
248
|
:type undo: bool | None
|
|
249
249
|
"""
|
|
@@ -251,13 +251,13 @@ def collection_remove_unused(
|
|
|
251
251
|
...
|
|
252
252
|
|
|
253
253
|
def collection_select(
|
|
254
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
254
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
255
255
|
execution_context: int | str | None = None,
|
|
256
256
|
undo: bool | None = None,
|
|
257
257
|
):
|
|
258
258
|
"""Select bones in active Bone Collection
|
|
259
259
|
|
|
260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
261
261
|
:type execution_context: int | str | None
|
|
262
262
|
:type undo: bool | None
|
|
263
263
|
"""
|
|
@@ -265,13 +265,13 @@ def collection_select(
|
|
|
265
265
|
...
|
|
266
266
|
|
|
267
267
|
def collection_show_all(
|
|
268
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
268
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
269
269
|
execution_context: int | str | None = None,
|
|
270
270
|
undo: bool | None = None,
|
|
271
271
|
):
|
|
272
272
|
"""Show all bone collections
|
|
273
273
|
|
|
274
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
274
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
275
275
|
:type execution_context: int | str | None
|
|
276
276
|
:type undo: bool | None
|
|
277
277
|
"""
|
|
@@ -279,7 +279,7 @@ def collection_show_all(
|
|
|
279
279
|
...
|
|
280
280
|
|
|
281
281
|
def collection_unassign(
|
|
282
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
283
283
|
execution_context: int | str | None = None,
|
|
284
284
|
undo: bool | None = None,
|
|
285
285
|
*,
|
|
@@ -287,7 +287,7 @@ def collection_unassign(
|
|
|
287
287
|
):
|
|
288
288
|
"""Remove selected bones from the active bone collection
|
|
289
289
|
|
|
290
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
290
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
291
291
|
:type execution_context: int | str | None
|
|
292
292
|
:type undo: bool | None
|
|
293
293
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
@@ -297,7 +297,7 @@ def collection_unassign(
|
|
|
297
297
|
...
|
|
298
298
|
|
|
299
299
|
def collection_unassign_named(
|
|
300
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
300
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
301
301
|
execution_context: int | str | None = None,
|
|
302
302
|
undo: bool | None = None,
|
|
303
303
|
*,
|
|
@@ -306,7 +306,7 @@ def collection_unassign_named(
|
|
|
306
306
|
):
|
|
307
307
|
"""Unassign the named bone from this bone collection
|
|
308
308
|
|
|
309
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
309
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
310
310
|
:type execution_context: int | str | None
|
|
311
311
|
:type undo: bool | None
|
|
312
312
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
@@ -318,13 +318,13 @@ def collection_unassign_named(
|
|
|
318
318
|
...
|
|
319
319
|
|
|
320
320
|
def collection_unsolo_all(
|
|
321
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
321
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
322
322
|
execution_context: int | str | None = None,
|
|
323
323
|
undo: bool | None = None,
|
|
324
324
|
):
|
|
325
325
|
"""Clear the 'solo' setting on all bone collections
|
|
326
326
|
|
|
327
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
327
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
328
|
:type execution_context: int | str | None
|
|
329
329
|
:type undo: bool | None
|
|
330
330
|
"""
|
|
@@ -332,7 +332,7 @@ def collection_unsolo_all(
|
|
|
332
332
|
...
|
|
333
333
|
|
|
334
334
|
def copy_bone_color_to_selected(
|
|
335
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
335
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
336
336
|
execution_context: int | str | None = None,
|
|
337
337
|
undo: bool | None = None,
|
|
338
338
|
*,
|
|
@@ -340,7 +340,7 @@ def copy_bone_color_to_selected(
|
|
|
340
340
|
):
|
|
341
341
|
"""Copy the bone color of the active bone to all selected bones
|
|
342
342
|
|
|
343
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
343
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
344
344
|
:type execution_context: int | str | None
|
|
345
345
|
:type undo: bool | None
|
|
346
346
|
:param bone_type: Type
|
|
@@ -356,7 +356,7 @@ def copy_bone_color_to_selected(
|
|
|
356
356
|
...
|
|
357
357
|
|
|
358
358
|
def delete(
|
|
359
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
359
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
360
360
|
execution_context: int | str | None = None,
|
|
361
361
|
undo: bool | None = None,
|
|
362
362
|
*,
|
|
@@ -364,7 +364,7 @@ def delete(
|
|
|
364
364
|
):
|
|
365
365
|
"""Remove selected bones from the armature
|
|
366
366
|
|
|
367
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
367
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
368
368
|
:type execution_context: int | str | None
|
|
369
369
|
:type undo: bool | None
|
|
370
370
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -374,13 +374,13 @@ def delete(
|
|
|
374
374
|
...
|
|
375
375
|
|
|
376
376
|
def dissolve(
|
|
377
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
377
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
378
378
|
execution_context: int | str | None = None,
|
|
379
379
|
undo: bool | None = None,
|
|
380
380
|
):
|
|
381
381
|
"""Dissolve selected bones from the armature
|
|
382
382
|
|
|
383
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
383
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
384
384
|
:type execution_context: int | str | None
|
|
385
385
|
:type undo: bool | None
|
|
386
386
|
"""
|
|
@@ -388,7 +388,7 @@ def dissolve(
|
|
|
388
388
|
...
|
|
389
389
|
|
|
390
390
|
def duplicate(
|
|
391
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
391
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
392
392
|
execution_context: int | str | None = None,
|
|
393
393
|
undo: bool | None = None,
|
|
394
394
|
*,
|
|
@@ -396,7 +396,7 @@ def duplicate(
|
|
|
396
396
|
):
|
|
397
397
|
"""Make copies of the selected bones within the same armature
|
|
398
398
|
|
|
399
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
399
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
400
400
|
:type execution_context: int | str | None
|
|
401
401
|
:type undo: bool | None
|
|
402
402
|
:param do_flip_names: Flip Names, Try to flip names of the bones, if possible, instead of adding a number extension
|
|
@@ -406,7 +406,7 @@ def duplicate(
|
|
|
406
406
|
...
|
|
407
407
|
|
|
408
408
|
def duplicate_move(
|
|
409
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
409
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
410
410
|
execution_context: int | str | None = None,
|
|
411
411
|
undo: bool | None = None,
|
|
412
412
|
*,
|
|
@@ -415,7 +415,7 @@ def duplicate_move(
|
|
|
415
415
|
):
|
|
416
416
|
"""Make copies of the selected bones within the same armature and move them
|
|
417
417
|
|
|
418
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
418
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
419
419
|
:type execution_context: int | str | None
|
|
420
420
|
:type undo: bool | None
|
|
421
421
|
:param ARMATURE_OT_duplicate: Duplicate Selected Bone(s), Make copies of the selected bones within the same armature
|
|
@@ -427,7 +427,7 @@ def duplicate_move(
|
|
|
427
427
|
...
|
|
428
428
|
|
|
429
429
|
def extrude(
|
|
430
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
430
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
431
431
|
execution_context: int | str | None = None,
|
|
432
432
|
undo: bool | None = None,
|
|
433
433
|
*,
|
|
@@ -435,7 +435,7 @@ def extrude(
|
|
|
435
435
|
):
|
|
436
436
|
"""Create new bones from the selected joints
|
|
437
437
|
|
|
438
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
438
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
439
|
:type execution_context: int | str | None
|
|
440
440
|
:type undo: bool | None
|
|
441
441
|
:param forked: Forked
|
|
@@ -445,7 +445,7 @@ def extrude(
|
|
|
445
445
|
...
|
|
446
446
|
|
|
447
447
|
def extrude_forked(
|
|
448
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
448
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
449
449
|
execution_context: int | str | None = None,
|
|
450
450
|
undo: bool | None = None,
|
|
451
451
|
*,
|
|
@@ -454,7 +454,7 @@ def extrude_forked(
|
|
|
454
454
|
):
|
|
455
455
|
"""Create new bones from the selected joints and move them
|
|
456
456
|
|
|
457
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
457
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
458
458
|
:type execution_context: int | str | None
|
|
459
459
|
:type undo: bool | None
|
|
460
460
|
:param ARMATURE_OT_extrude: Extrude, Create new bones from the selected joints
|
|
@@ -466,7 +466,7 @@ def extrude_forked(
|
|
|
466
466
|
...
|
|
467
467
|
|
|
468
468
|
def extrude_move(
|
|
469
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
469
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
470
470
|
execution_context: int | str | None = None,
|
|
471
471
|
undo: bool | None = None,
|
|
472
472
|
*,
|
|
@@ -475,7 +475,7 @@ def extrude_move(
|
|
|
475
475
|
):
|
|
476
476
|
"""Create new bones from the selected joints and move them
|
|
477
477
|
|
|
478
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
478
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
479
479
|
:type execution_context: int | str | None
|
|
480
480
|
:type undo: bool | None
|
|
481
481
|
:param ARMATURE_OT_extrude: Extrude, Create new bones from the selected joints
|
|
@@ -487,13 +487,13 @@ def extrude_move(
|
|
|
487
487
|
...
|
|
488
488
|
|
|
489
489
|
def fill(
|
|
490
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
490
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
491
491
|
execution_context: int | str | None = None,
|
|
492
492
|
undo: bool | None = None,
|
|
493
493
|
):
|
|
494
494
|
"""Add bone between selected joint(s) and/or 3D cursor
|
|
495
495
|
|
|
496
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
496
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
497
497
|
:type execution_context: int | str | None
|
|
498
498
|
:type undo: bool | None
|
|
499
499
|
"""
|
|
@@ -501,7 +501,7 @@ def fill(
|
|
|
501
501
|
...
|
|
502
502
|
|
|
503
503
|
def flip_names(
|
|
504
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
504
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
505
505
|
execution_context: int | str | None = None,
|
|
506
506
|
undo: bool | None = None,
|
|
507
507
|
*,
|
|
@@ -509,7 +509,7 @@ def flip_names(
|
|
|
509
509
|
):
|
|
510
510
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
511
511
|
|
|
512
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
512
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
513
513
|
:type execution_context: int | str | None
|
|
514
514
|
:type undo: bool | None
|
|
515
515
|
:param do_strip_numbers: Strip Numbers, Try to remove right-most dot-number from flipped names.Warning: May result in incoherent naming in some cases
|
|
@@ -519,7 +519,7 @@ def flip_names(
|
|
|
519
519
|
...
|
|
520
520
|
|
|
521
521
|
def hide(
|
|
522
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
522
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
523
523
|
execution_context: int | str | None = None,
|
|
524
524
|
undo: bool | None = None,
|
|
525
525
|
*,
|
|
@@ -527,7 +527,7 @@ def hide(
|
|
|
527
527
|
):
|
|
528
528
|
"""Tag selected bones to not be visible in Edit Mode
|
|
529
529
|
|
|
530
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
530
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
531
531
|
:type execution_context: int | str | None
|
|
532
532
|
:type undo: bool | None
|
|
533
533
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -537,7 +537,7 @@ def hide(
|
|
|
537
537
|
...
|
|
538
538
|
|
|
539
539
|
def move_to_collection(
|
|
540
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
540
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
541
541
|
execution_context: int | str | None = None,
|
|
542
542
|
undo: bool | None = None,
|
|
543
543
|
*,
|
|
@@ -546,7 +546,7 @@ def move_to_collection(
|
|
|
546
546
|
):
|
|
547
547
|
"""Move bones to a collection
|
|
548
548
|
|
|
549
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
549
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
550
550
|
:type execution_context: int | str | None
|
|
551
551
|
:type undo: bool | None
|
|
552
552
|
:param collection_index: Collection Index, Index of the collection to move selected bones to. When the operator should create a new bone collection, do not include this parameter and pass new_collection_name
|
|
@@ -558,7 +558,7 @@ def move_to_collection(
|
|
|
558
558
|
...
|
|
559
559
|
|
|
560
560
|
def parent_clear(
|
|
561
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
561
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
562
562
|
execution_context: int | str | None = None,
|
|
563
563
|
undo: bool | None = None,
|
|
564
564
|
*,
|
|
@@ -566,7 +566,7 @@ def parent_clear(
|
|
|
566
566
|
):
|
|
567
567
|
"""Remove the parent-child relationship between selected bones and their parents
|
|
568
568
|
|
|
569
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
569
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
570
570
|
:type execution_context: int | str | None
|
|
571
571
|
:type undo: bool | None
|
|
572
572
|
:param type: Clear Type, What way to clear parenting
|
|
@@ -576,7 +576,7 @@ def parent_clear(
|
|
|
576
576
|
...
|
|
577
577
|
|
|
578
578
|
def parent_set(
|
|
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 parent_set(
|
|
|
584
584
|
):
|
|
585
585
|
"""Set the active bone as the parent of the selected bones
|
|
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 type: Parent Type, Type of parenting
|
|
@@ -594,7 +594,7 @@ def parent_set(
|
|
|
594
594
|
...
|
|
595
595
|
|
|
596
596
|
def reveal(
|
|
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
|
*,
|
|
@@ -602,7 +602,7 @@ def reveal(
|
|
|
602
602
|
):
|
|
603
603
|
"""Reveal all bones hidden in Edit Mode
|
|
604
604
|
|
|
605
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
605
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
606
606
|
:type execution_context: int | str | None
|
|
607
607
|
:type undo: bool | None
|
|
608
608
|
:param select: Select
|
|
@@ -612,7 +612,7 @@ def reveal(
|
|
|
612
612
|
...
|
|
613
613
|
|
|
614
614
|
def roll_clear(
|
|
615
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
615
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
616
616
|
execution_context: int | str | None = None,
|
|
617
617
|
undo: bool | None = None,
|
|
618
618
|
*,
|
|
@@ -620,7 +620,7 @@ def roll_clear(
|
|
|
620
620
|
):
|
|
621
621
|
"""Clear roll for selected bones
|
|
622
622
|
|
|
623
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
623
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
624
624
|
:type execution_context: int | str | None
|
|
625
625
|
:type undo: bool | None
|
|
626
626
|
:param roll: Roll
|
|
@@ -630,7 +630,7 @@ def roll_clear(
|
|
|
630
630
|
...
|
|
631
631
|
|
|
632
632
|
def select_all(
|
|
633
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
633
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
634
634
|
execution_context: int | str | None = None,
|
|
635
635
|
undo: bool | None = None,
|
|
636
636
|
*,
|
|
@@ -638,7 +638,7 @@ def select_all(
|
|
|
638
638
|
):
|
|
639
639
|
"""Toggle selection status of all bones
|
|
640
640
|
|
|
641
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
641
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
642
642
|
:type execution_context: int | str | None
|
|
643
643
|
:type undo: bool | None
|
|
644
644
|
:param action: Action, Selection action to execute
|
|
@@ -660,7 +660,7 @@ def select_all(
|
|
|
660
660
|
...
|
|
661
661
|
|
|
662
662
|
def select_hierarchy(
|
|
663
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
663
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
664
664
|
execution_context: int | str | None = None,
|
|
665
665
|
undo: bool | None = None,
|
|
666
666
|
*,
|
|
@@ -669,7 +669,7 @@ def select_hierarchy(
|
|
|
669
669
|
):
|
|
670
670
|
"""Select immediate parent/children of selected bones
|
|
671
671
|
|
|
672
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
672
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
673
673
|
:type execution_context: int | str | None
|
|
674
674
|
:type undo: bool | None
|
|
675
675
|
:param direction: Direction
|
|
@@ -681,13 +681,13 @@ def select_hierarchy(
|
|
|
681
681
|
...
|
|
682
682
|
|
|
683
683
|
def select_less(
|
|
684
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
684
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
685
685
|
execution_context: int | str | None = None,
|
|
686
686
|
undo: bool | None = None,
|
|
687
687
|
):
|
|
688
688
|
"""Deselect those bones at the boundary of each selection region
|
|
689
689
|
|
|
690
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
690
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
691
691
|
:type execution_context: int | str | None
|
|
692
692
|
:type undo: bool | None
|
|
693
693
|
"""
|
|
@@ -695,7 +695,7 @@ def select_less(
|
|
|
695
695
|
...
|
|
696
696
|
|
|
697
697
|
def select_linked(
|
|
698
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
698
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
699
699
|
execution_context: int | str | None = None,
|
|
700
700
|
undo: bool | None = None,
|
|
701
701
|
*,
|
|
@@ -703,7 +703,7 @@ def select_linked(
|
|
|
703
703
|
):
|
|
704
704
|
"""Select all bones linked by parent/child connections to the current selection
|
|
705
705
|
|
|
706
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
706
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
707
707
|
:type execution_context: int | str | None
|
|
708
708
|
:type undo: bool | None
|
|
709
709
|
:param all_forks: All Forks, Follow forks in the parents chain
|
|
@@ -713,7 +713,7 @@ def select_linked(
|
|
|
713
713
|
...
|
|
714
714
|
|
|
715
715
|
def select_linked_pick(
|
|
716
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
716
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
717
717
|
execution_context: int | str | None = None,
|
|
718
718
|
undo: bool | None = None,
|
|
719
719
|
*,
|
|
@@ -722,7 +722,7 @@ def select_linked_pick(
|
|
|
722
722
|
):
|
|
723
723
|
"""(De)select bones linked by parent/child connections under the mouse cursor
|
|
724
724
|
|
|
725
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
725
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
726
726
|
:type execution_context: int | str | None
|
|
727
727
|
:type undo: bool | None
|
|
728
728
|
:param deselect: Deselect
|
|
@@ -734,7 +734,7 @@ def select_linked_pick(
|
|
|
734
734
|
...
|
|
735
735
|
|
|
736
736
|
def select_mirror(
|
|
737
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
737
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
738
738
|
execution_context: int | str | None = None,
|
|
739
739
|
undo: bool | None = None,
|
|
740
740
|
*,
|
|
@@ -743,7 +743,7 @@ def select_mirror(
|
|
|
743
743
|
):
|
|
744
744
|
"""Mirror the bone selection
|
|
745
745
|
|
|
746
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
746
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
747
747
|
:type execution_context: int | str | None
|
|
748
748
|
:type undo: bool | None
|
|
749
749
|
:param only_active: Active Only, Only operate on the active bone
|
|
@@ -755,13 +755,13 @@ def select_mirror(
|
|
|
755
755
|
...
|
|
756
756
|
|
|
757
757
|
def select_more(
|
|
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
|
):
|
|
762
762
|
"""Select those bones connected to the initial selection
|
|
763
763
|
|
|
764
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
764
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
765
765
|
:type execution_context: int | str | None
|
|
766
766
|
:type undo: bool | None
|
|
767
767
|
"""
|
|
@@ -769,7 +769,7 @@ def select_more(
|
|
|
769
769
|
...
|
|
770
770
|
|
|
771
771
|
def select_similar(
|
|
772
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
772
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
773
773
|
execution_context: int | str | None = None,
|
|
774
774
|
undo: bool | None = None,
|
|
775
775
|
*,
|
|
@@ -790,7 +790,7 @@ def select_similar(
|
|
|
790
790
|
):
|
|
791
791
|
"""Select similar bones by property types
|
|
792
792
|
|
|
793
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
793
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
794
794
|
:type execution_context: int | str | None
|
|
795
795
|
:type undo: bool | None
|
|
796
796
|
:param type: Type
|
|
@@ -802,13 +802,13 @@ def select_similar(
|
|
|
802
802
|
...
|
|
803
803
|
|
|
804
804
|
def separate(
|
|
805
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
805
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
806
806
|
execution_context: int | str | None = None,
|
|
807
807
|
undo: bool | None = None,
|
|
808
808
|
):
|
|
809
809
|
"""Isolate selected bones into a separate armature
|
|
810
810
|
|
|
811
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
811
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
812
812
|
:type execution_context: int | str | None
|
|
813
813
|
:type undo: bool | None
|
|
814
814
|
"""
|
|
@@ -816,13 +816,13 @@ def separate(
|
|
|
816
816
|
...
|
|
817
817
|
|
|
818
818
|
def shortest_path_pick(
|
|
819
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
819
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
820
820
|
execution_context: int | str | None = None,
|
|
821
821
|
undo: bool | None = None,
|
|
822
822
|
):
|
|
823
823
|
"""Select shortest path between two bones
|
|
824
824
|
|
|
825
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
825
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
826
826
|
:type execution_context: int | str | None
|
|
827
827
|
:type undo: bool | None
|
|
828
828
|
"""
|
|
@@ -830,13 +830,13 @@ def shortest_path_pick(
|
|
|
830
830
|
...
|
|
831
831
|
|
|
832
832
|
def split(
|
|
833
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
833
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
834
834
|
execution_context: int | str | None = None,
|
|
835
835
|
undo: bool | None = None,
|
|
836
836
|
):
|
|
837
837
|
"""Split off selected bones from connected unselected bones
|
|
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
|
"""
|
|
@@ -844,7 +844,7 @@ def split(
|
|
|
844
844
|
...
|
|
845
845
|
|
|
846
846
|
def subdivide(
|
|
847
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
847
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
848
848
|
execution_context: int | str | None = None,
|
|
849
849
|
undo: bool | None = None,
|
|
850
850
|
*,
|
|
@@ -852,7 +852,7 @@ def subdivide(
|
|
|
852
852
|
):
|
|
853
853
|
"""Break selected bones into chains of smaller bones
|
|
854
854
|
|
|
855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
856
856
|
:type execution_context: int | str | None
|
|
857
857
|
:type undo: bool | None
|
|
858
858
|
:param number_cuts: Number of Cuts
|
|
@@ -862,13 +862,13 @@ def subdivide(
|
|
|
862
862
|
...
|
|
863
863
|
|
|
864
864
|
def switch_direction(
|
|
865
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
865
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
866
866
|
execution_context: int | str | None = None,
|
|
867
867
|
undo: bool | None = None,
|
|
868
868
|
):
|
|
869
869
|
"""Change the direction that a chain of bones points in (head and tail swap)
|
|
870
870
|
|
|
871
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
871
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
872
872
|
:type execution_context: int | str | None
|
|
873
873
|
:type undo: bool | None
|
|
874
874
|
"""
|
|
@@ -876,7 +876,7 @@ def switch_direction(
|
|
|
876
876
|
...
|
|
877
877
|
|
|
878
878
|
def symmetrize(
|
|
879
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
879
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
880
880
|
execution_context: int | str | None = None,
|
|
881
881
|
undo: bool | None = None,
|
|
882
882
|
*,
|
|
@@ -884,7 +884,7 @@ def symmetrize(
|
|
|
884
884
|
):
|
|
885
885
|
"""Enforce symmetry, make copies of the selection or use existing
|
|
886
886
|
|
|
887
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
887
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
888
888
|
:type execution_context: int | str | None
|
|
889
889
|
:type undo: bool | None
|
|
890
890
|
:param direction: Direction, Which sides to copy from and to (when both are selected)
|