fake-bpy-module 20240928__py3-none-any.whl → 20240929__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +254 -219
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +84 -84
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/armature/__init__.pyi
CHANGED
|
@@ -5,19 +5,19 @@ import bpy.ops.transform
|
|
|
5
5
|
import bpy.types
|
|
6
6
|
|
|
7
7
|
def align(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
):
|
|
12
12
|
"""Align selected bones to the active bone (or to their parent)
|
|
13
13
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
14
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
15
|
:type execution_context: int | str | None
|
|
16
16
|
:type undo: bool | None
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
def assign_to_collection(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
20
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
21
|
execution_context: int | str | None = None,
|
|
22
22
|
undo: bool | None = None,
|
|
23
23
|
*,
|
|
@@ -26,7 +26,7 @@ def assign_to_collection(
|
|
|
26
26
|
):
|
|
27
27
|
"""Assign all selected bones to a collection, or unassign them, depending on whether the active bone is already assigned or not
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
: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
|
|
@@ -36,7 +36,7 @@ def assign_to_collection(
|
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
38
|
def autoside_names(
|
|
39
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
40
40
|
execution_context: int | str | None = None,
|
|
41
41
|
undo: bool | None = None,
|
|
42
42
|
*,
|
|
@@ -44,7 +44,7 @@ def autoside_names(
|
|
|
44
44
|
):
|
|
45
45
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
46
46
|
|
|
47
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
47
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
48
48
|
:type execution_context: int | str | None
|
|
49
49
|
:type undo: bool | None
|
|
50
50
|
:param type: Axis, Axis to tag names with
|
|
@@ -61,7 +61,7 @@ def autoside_names(
|
|
|
61
61
|
"""
|
|
62
62
|
|
|
63
63
|
def bone_primitive_add(
|
|
64
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
64
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
65
65
|
execution_context: int | str | None = None,
|
|
66
66
|
undo: bool | None = None,
|
|
67
67
|
*,
|
|
@@ -69,7 +69,7 @@ def bone_primitive_add(
|
|
|
69
69
|
):
|
|
70
70
|
"""Add a new bone located at the 3D cursor
|
|
71
71
|
|
|
72
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
72
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
:param name: Name, Name of the newly created bone
|
|
@@ -77,7 +77,7 @@ def bone_primitive_add(
|
|
|
77
77
|
"""
|
|
78
78
|
|
|
79
79
|
def calculate_roll(
|
|
80
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
80
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
81
81
|
execution_context: int | str | None = None,
|
|
82
82
|
undo: bool | None = None,
|
|
83
83
|
*,
|
|
@@ -102,7 +102,7 @@ def calculate_roll(
|
|
|
102
102
|
):
|
|
103
103
|
"""Automatically fix alignment of select bones' axes
|
|
104
104
|
|
|
105
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
105
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
106
106
|
:type execution_context: int | str | None
|
|
107
107
|
:type undo: bool | None
|
|
108
108
|
:param type: Type
|
|
@@ -114,31 +114,31 @@ def calculate_roll(
|
|
|
114
114
|
"""
|
|
115
115
|
|
|
116
116
|
def click_extrude(
|
|
117
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
117
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
118
118
|
execution_context: int | str | None = None,
|
|
119
119
|
undo: bool | None = None,
|
|
120
120
|
):
|
|
121
121
|
"""Create a new bone going from the last selected joint to the mouse position
|
|
122
122
|
|
|
123
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
123
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
124
124
|
:type execution_context: int | str | None
|
|
125
125
|
:type undo: bool | None
|
|
126
126
|
"""
|
|
127
127
|
|
|
128
128
|
def collection_add(
|
|
129
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
129
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
130
130
|
execution_context: int | str | None = None,
|
|
131
131
|
undo: bool | None = None,
|
|
132
132
|
):
|
|
133
133
|
"""Add a new bone collection
|
|
134
134
|
|
|
135
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
135
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
136
136
|
:type execution_context: int | str | None
|
|
137
137
|
:type undo: bool | None
|
|
138
138
|
"""
|
|
139
139
|
|
|
140
140
|
def collection_assign(
|
|
141
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
141
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
142
142
|
execution_context: int | str | None = None,
|
|
143
143
|
undo: bool | None = None,
|
|
144
144
|
*,
|
|
@@ -146,7 +146,7 @@ def collection_assign(
|
|
|
146
146
|
):
|
|
147
147
|
"""Add selected bones to the chosen bone collection
|
|
148
148
|
|
|
149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
149
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
150
150
|
:type execution_context: int | str | None
|
|
151
151
|
:type undo: bool | None
|
|
152
152
|
:param name: Bone Collection, Name of the bone collection to assign this bone to; empty to assign to the active bone collection
|
|
@@ -154,7 +154,7 @@ def collection_assign(
|
|
|
154
154
|
"""
|
|
155
155
|
|
|
156
156
|
def collection_create_and_assign(
|
|
157
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
157
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
158
158
|
execution_context: int | str | None = None,
|
|
159
159
|
undo: bool | None = None,
|
|
160
160
|
*,
|
|
@@ -162,7 +162,7 @@ def collection_create_and_assign(
|
|
|
162
162
|
):
|
|
163
163
|
"""Create a new bone collection and assign all selected bones
|
|
164
164
|
|
|
165
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
165
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
166
166
|
:type execution_context: int | str | None
|
|
167
167
|
:type undo: bool | None
|
|
168
168
|
:param name: Bone Collection, Name of the bone collection to create
|
|
@@ -170,19 +170,19 @@ def collection_create_and_assign(
|
|
|
170
170
|
"""
|
|
171
171
|
|
|
172
172
|
def collection_deselect(
|
|
173
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
173
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
174
174
|
execution_context: int | str | None = None,
|
|
175
175
|
undo: bool | None = None,
|
|
176
176
|
):
|
|
177
177
|
"""Deselect bones of active Bone Collection
|
|
178
178
|
|
|
179
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
179
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
180
180
|
:type execution_context: int | str | None
|
|
181
181
|
:type undo: bool | None
|
|
182
182
|
"""
|
|
183
183
|
|
|
184
184
|
def collection_move(
|
|
185
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
185
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
186
186
|
execution_context: int | str | None = None,
|
|
187
187
|
undo: bool | None = None,
|
|
188
188
|
*,
|
|
@@ -190,7 +190,7 @@ def collection_move(
|
|
|
190
190
|
):
|
|
191
191
|
"""Change position of active Bone Collection in list of Bone collections
|
|
192
192
|
|
|
193
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
193
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
194
194
|
:type execution_context: int | str | None
|
|
195
195
|
:type undo: bool | None
|
|
196
196
|
:param direction: Direction, Direction to move the active Bone Collection towards
|
|
@@ -198,55 +198,55 @@ def collection_move(
|
|
|
198
198
|
"""
|
|
199
199
|
|
|
200
200
|
def collection_remove(
|
|
201
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
201
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
202
202
|
execution_context: int | str | None = None,
|
|
203
203
|
undo: bool | None = None,
|
|
204
204
|
):
|
|
205
205
|
"""Remove the active bone collection
|
|
206
206
|
|
|
207
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
207
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
208
208
|
:type execution_context: int | str | None
|
|
209
209
|
:type undo: bool | None
|
|
210
210
|
"""
|
|
211
211
|
|
|
212
212
|
def collection_remove_unused(
|
|
213
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
213
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
214
214
|
execution_context: int | str | None = None,
|
|
215
215
|
undo: bool | None = None,
|
|
216
216
|
):
|
|
217
217
|
"""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
|
|
218
218
|
|
|
219
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
219
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
220
220
|
:type execution_context: int | str | None
|
|
221
221
|
:type undo: bool | None
|
|
222
222
|
"""
|
|
223
223
|
|
|
224
224
|
def collection_select(
|
|
225
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
225
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
226
226
|
execution_context: int | str | None = None,
|
|
227
227
|
undo: bool | None = None,
|
|
228
228
|
):
|
|
229
229
|
"""Select bones in active Bone Collection
|
|
230
230
|
|
|
231
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
231
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
232
232
|
:type execution_context: int | str | None
|
|
233
233
|
:type undo: bool | None
|
|
234
234
|
"""
|
|
235
235
|
|
|
236
236
|
def collection_show_all(
|
|
237
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
237
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
238
238
|
execution_context: int | str | None = None,
|
|
239
239
|
undo: bool | None = None,
|
|
240
240
|
):
|
|
241
241
|
"""Show all bone collections
|
|
242
242
|
|
|
243
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
243
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
244
244
|
:type execution_context: int | str | None
|
|
245
245
|
:type undo: bool | None
|
|
246
246
|
"""
|
|
247
247
|
|
|
248
248
|
def collection_unassign(
|
|
249
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
249
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
250
250
|
execution_context: int | str | None = None,
|
|
251
251
|
undo: bool | None = None,
|
|
252
252
|
*,
|
|
@@ -254,7 +254,7 @@ def collection_unassign(
|
|
|
254
254
|
):
|
|
255
255
|
"""Remove selected bones from the active bone collection
|
|
256
256
|
|
|
257
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
257
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
258
258
|
:type execution_context: int | str | None
|
|
259
259
|
:type undo: bool | None
|
|
260
260
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
@@ -262,7 +262,7 @@ def collection_unassign(
|
|
|
262
262
|
"""
|
|
263
263
|
|
|
264
264
|
def collection_unassign_named(
|
|
265
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
265
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
266
266
|
execution_context: int | str | None = None,
|
|
267
267
|
undo: bool | None = None,
|
|
268
268
|
*,
|
|
@@ -271,7 +271,7 @@ def collection_unassign_named(
|
|
|
271
271
|
):
|
|
272
272
|
"""Unassign the named bone from this bone collection
|
|
273
273
|
|
|
274
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
274
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
275
275
|
:type execution_context: int | str | None
|
|
276
276
|
:type undo: bool | None
|
|
277
277
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
@@ -281,19 +281,19 @@ def collection_unassign_named(
|
|
|
281
281
|
"""
|
|
282
282
|
|
|
283
283
|
def collection_unsolo_all(
|
|
284
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
284
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
285
285
|
execution_context: int | str | None = None,
|
|
286
286
|
undo: bool | None = None,
|
|
287
287
|
):
|
|
288
288
|
"""Clear the 'solo' setting on all bone collections
|
|
289
289
|
|
|
290
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
290
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
291
291
|
:type execution_context: int | str | None
|
|
292
292
|
:type undo: bool | None
|
|
293
293
|
"""
|
|
294
294
|
|
|
295
295
|
def copy_bone_color_to_selected(
|
|
296
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
296
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
297
297
|
execution_context: int | str | None = None,
|
|
298
298
|
undo: bool | None = None,
|
|
299
299
|
*,
|
|
@@ -301,7 +301,7 @@ def copy_bone_color_to_selected(
|
|
|
301
301
|
):
|
|
302
302
|
"""Copy the bone color of the active bone to all selected bones
|
|
303
303
|
|
|
304
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
304
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
305
305
|
:type execution_context: int | str | None
|
|
306
306
|
:type undo: bool | None
|
|
307
307
|
:param bone_type: Type
|
|
@@ -315,7 +315,7 @@ def copy_bone_color_to_selected(
|
|
|
315
315
|
"""
|
|
316
316
|
|
|
317
317
|
def delete(
|
|
318
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
318
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
319
319
|
execution_context: int | str | None = None,
|
|
320
320
|
undo: bool | None = None,
|
|
321
321
|
*,
|
|
@@ -323,7 +323,7 @@ def delete(
|
|
|
323
323
|
):
|
|
324
324
|
"""Remove selected bones from the armature
|
|
325
325
|
|
|
326
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
326
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
327
327
|
:type execution_context: int | str | None
|
|
328
328
|
:type undo: bool | None
|
|
329
329
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -331,19 +331,19 @@ def delete(
|
|
|
331
331
|
"""
|
|
332
332
|
|
|
333
333
|
def dissolve(
|
|
334
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
334
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
335
335
|
execution_context: int | str | None = None,
|
|
336
336
|
undo: bool | None = None,
|
|
337
337
|
):
|
|
338
338
|
"""Dissolve selected bones from the armature
|
|
339
339
|
|
|
340
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
340
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
341
341
|
:type execution_context: int | str | None
|
|
342
342
|
:type undo: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
def duplicate(
|
|
346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
346
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
347
347
|
execution_context: int | str | None = None,
|
|
348
348
|
undo: bool | None = None,
|
|
349
349
|
*,
|
|
@@ -351,7 +351,7 @@ def duplicate(
|
|
|
351
351
|
):
|
|
352
352
|
"""Make copies of the selected bones within the same armature
|
|
353
353
|
|
|
354
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
354
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
355
355
|
:type execution_context: int | str | None
|
|
356
356
|
:type undo: bool | None
|
|
357
357
|
:param do_flip_names: Flip Names, Try to flip names of the bones, if possible, instead of adding a number extension
|
|
@@ -359,7 +359,7 @@ def duplicate(
|
|
|
359
359
|
"""
|
|
360
360
|
|
|
361
361
|
def duplicate_move(
|
|
362
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
362
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
363
363
|
execution_context: int | str | None = None,
|
|
364
364
|
undo: bool | None = None,
|
|
365
365
|
*,
|
|
@@ -368,7 +368,7 @@ def duplicate_move(
|
|
|
368
368
|
):
|
|
369
369
|
"""Make copies of the selected bones within the same armature and move them
|
|
370
370
|
|
|
371
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
371
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
372
372
|
:type execution_context: int | str | None
|
|
373
373
|
:type undo: bool | None
|
|
374
374
|
:param ARMATURE_OT_duplicate: Duplicate Selected Bone(s), Make copies of the selected bones within the same armature
|
|
@@ -378,7 +378,7 @@ def duplicate_move(
|
|
|
378
378
|
"""
|
|
379
379
|
|
|
380
380
|
def extrude(
|
|
381
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
381
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
382
382
|
execution_context: int | str | None = None,
|
|
383
383
|
undo: bool | None = None,
|
|
384
384
|
*,
|
|
@@ -386,7 +386,7 @@ def extrude(
|
|
|
386
386
|
):
|
|
387
387
|
"""Create new bones from the selected joints
|
|
388
388
|
|
|
389
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
389
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
390
390
|
:type execution_context: int | str | None
|
|
391
391
|
:type undo: bool | None
|
|
392
392
|
:param forked: Forked
|
|
@@ -394,7 +394,7 @@ def extrude(
|
|
|
394
394
|
"""
|
|
395
395
|
|
|
396
396
|
def extrude_forked(
|
|
397
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
397
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
398
398
|
execution_context: int | str | None = None,
|
|
399
399
|
undo: bool | None = None,
|
|
400
400
|
*,
|
|
@@ -403,7 +403,7 @@ def extrude_forked(
|
|
|
403
403
|
):
|
|
404
404
|
"""Create new bones from the selected joints and move them
|
|
405
405
|
|
|
406
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
406
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
407
407
|
:type execution_context: int | str | None
|
|
408
408
|
:type undo: bool | None
|
|
409
409
|
:param ARMATURE_OT_extrude: Extrude, Create new bones from the selected joints
|
|
@@ -413,7 +413,7 @@ def extrude_forked(
|
|
|
413
413
|
"""
|
|
414
414
|
|
|
415
415
|
def extrude_move(
|
|
416
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
416
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
417
417
|
execution_context: int | str | None = None,
|
|
418
418
|
undo: bool | None = None,
|
|
419
419
|
*,
|
|
@@ -422,7 +422,7 @@ def extrude_move(
|
|
|
422
422
|
):
|
|
423
423
|
"""Create new bones from the selected joints and move them
|
|
424
424
|
|
|
425
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
425
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
426
426
|
:type execution_context: int | str | None
|
|
427
427
|
:type undo: bool | None
|
|
428
428
|
:param ARMATURE_OT_extrude: Extrude, Create new bones from the selected joints
|
|
@@ -432,19 +432,19 @@ def extrude_move(
|
|
|
432
432
|
"""
|
|
433
433
|
|
|
434
434
|
def fill(
|
|
435
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
435
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
436
436
|
execution_context: int | str | None = None,
|
|
437
437
|
undo: bool | None = None,
|
|
438
438
|
):
|
|
439
439
|
"""Add bone between selected joint(s) and/or 3D cursor
|
|
440
440
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
441
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
442
|
:type execution_context: int | str | None
|
|
443
443
|
:type undo: bool | None
|
|
444
444
|
"""
|
|
445
445
|
|
|
446
446
|
def flip_names(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
448
448
|
execution_context: int | str | None = None,
|
|
449
449
|
undo: bool | None = None,
|
|
450
450
|
*,
|
|
@@ -452,7 +452,7 @@ def flip_names(
|
|
|
452
452
|
):
|
|
453
453
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
454
454
|
|
|
455
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
455
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
456
456
|
:type execution_context: int | str | None
|
|
457
457
|
:type undo: bool | None
|
|
458
458
|
: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
|
|
@@ -460,7 +460,7 @@ def flip_names(
|
|
|
460
460
|
"""
|
|
461
461
|
|
|
462
462
|
def hide(
|
|
463
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
463
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
464
464
|
execution_context: int | str | None = None,
|
|
465
465
|
undo: bool | None = None,
|
|
466
466
|
*,
|
|
@@ -468,7 +468,7 @@ def hide(
|
|
|
468
468
|
):
|
|
469
469
|
"""Tag selected bones to not be visible in Edit Mode
|
|
470
470
|
|
|
471
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
471
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
472
472
|
:type execution_context: int | str | None
|
|
473
473
|
:type undo: bool | None
|
|
474
474
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -476,7 +476,7 @@ def hide(
|
|
|
476
476
|
"""
|
|
477
477
|
|
|
478
478
|
def move_to_collection(
|
|
479
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
479
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
480
480
|
execution_context: int | str | None = None,
|
|
481
481
|
undo: bool | None = None,
|
|
482
482
|
*,
|
|
@@ -485,7 +485,7 @@ def move_to_collection(
|
|
|
485
485
|
):
|
|
486
486
|
"""Move bones to a collection
|
|
487
487
|
|
|
488
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
488
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
489
489
|
:type execution_context: int | str | None
|
|
490
490
|
:type undo: bool | None
|
|
491
491
|
: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
|
|
@@ -495,7 +495,7 @@ def move_to_collection(
|
|
|
495
495
|
"""
|
|
496
496
|
|
|
497
497
|
def parent_clear(
|
|
498
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
498
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
499
499
|
execution_context: int | str | None = None,
|
|
500
500
|
undo: bool | None = None,
|
|
501
501
|
*,
|
|
@@ -503,7 +503,7 @@ def parent_clear(
|
|
|
503
503
|
):
|
|
504
504
|
"""Remove the parent-child relationship between selected bones and their parents
|
|
505
505
|
|
|
506
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
506
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
507
507
|
:type execution_context: int | str | None
|
|
508
508
|
:type undo: bool | None
|
|
509
509
|
:param type: Clear Type, What way to clear parenting
|
|
@@ -511,7 +511,7 @@ def parent_clear(
|
|
|
511
511
|
"""
|
|
512
512
|
|
|
513
513
|
def parent_set(
|
|
514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
514
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
515
515
|
execution_context: int | str | None = None,
|
|
516
516
|
undo: bool | None = None,
|
|
517
517
|
*,
|
|
@@ -519,7 +519,7 @@ def parent_set(
|
|
|
519
519
|
):
|
|
520
520
|
"""Set the active bone as the parent of the selected bones
|
|
521
521
|
|
|
522
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
522
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
523
523
|
:type execution_context: int | str | None
|
|
524
524
|
:type undo: bool | None
|
|
525
525
|
:param type: Parent Type, Type of parenting
|
|
@@ -527,7 +527,7 @@ def parent_set(
|
|
|
527
527
|
"""
|
|
528
528
|
|
|
529
529
|
def reveal(
|
|
530
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
530
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
531
531
|
execution_context: int | str | None = None,
|
|
532
532
|
undo: bool | None = None,
|
|
533
533
|
*,
|
|
@@ -535,7 +535,7 @@ def reveal(
|
|
|
535
535
|
):
|
|
536
536
|
"""Reveal all bones hidden in Edit Mode
|
|
537
537
|
|
|
538
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
538
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
539
539
|
:type execution_context: int | str | None
|
|
540
540
|
:type undo: bool | None
|
|
541
541
|
:param select: Select
|
|
@@ -543,7 +543,7 @@ def reveal(
|
|
|
543
543
|
"""
|
|
544
544
|
|
|
545
545
|
def roll_clear(
|
|
546
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
546
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
547
547
|
execution_context: int | str | None = None,
|
|
548
548
|
undo: bool | None = None,
|
|
549
549
|
*,
|
|
@@ -551,7 +551,7 @@ def roll_clear(
|
|
|
551
551
|
):
|
|
552
552
|
"""Clear roll for selected bones
|
|
553
553
|
|
|
554
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
554
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
555
555
|
:type execution_context: int | str | None
|
|
556
556
|
:type undo: bool | None
|
|
557
557
|
:param roll: Roll
|
|
@@ -559,7 +559,7 @@ def roll_clear(
|
|
|
559
559
|
"""
|
|
560
560
|
|
|
561
561
|
def select_all(
|
|
562
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
562
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
563
563
|
execution_context: int | str | None = None,
|
|
564
564
|
undo: bool | None = None,
|
|
565
565
|
*,
|
|
@@ -567,7 +567,7 @@ def select_all(
|
|
|
567
567
|
):
|
|
568
568
|
"""Toggle selection status of all bones
|
|
569
569
|
|
|
570
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
570
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
571
571
|
:type execution_context: int | str | None
|
|
572
572
|
:type undo: bool | None
|
|
573
573
|
:param action: Action, Selection action to execute
|
|
@@ -587,7 +587,7 @@ def select_all(
|
|
|
587
587
|
"""
|
|
588
588
|
|
|
589
589
|
def select_hierarchy(
|
|
590
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
590
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
591
591
|
execution_context: int | str | None = None,
|
|
592
592
|
undo: bool | None = None,
|
|
593
593
|
*,
|
|
@@ -596,7 +596,7 @@ def select_hierarchy(
|
|
|
596
596
|
):
|
|
597
597
|
"""Select immediate parent/children of selected bones
|
|
598
598
|
|
|
599
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
599
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
600
600
|
:type execution_context: int | str | None
|
|
601
601
|
:type undo: bool | None
|
|
602
602
|
:param direction: Direction
|
|
@@ -606,19 +606,19 @@ def select_hierarchy(
|
|
|
606
606
|
"""
|
|
607
607
|
|
|
608
608
|
def select_less(
|
|
609
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
609
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
610
610
|
execution_context: int | str | None = None,
|
|
611
611
|
undo: bool | None = None,
|
|
612
612
|
):
|
|
613
613
|
"""Deselect those bones at the boundary of each selection region
|
|
614
614
|
|
|
615
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
615
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
616
616
|
:type execution_context: int | str | None
|
|
617
617
|
:type undo: bool | None
|
|
618
618
|
"""
|
|
619
619
|
|
|
620
620
|
def select_linked(
|
|
621
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
621
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
622
622
|
execution_context: int | str | None = None,
|
|
623
623
|
undo: bool | None = None,
|
|
624
624
|
*,
|
|
@@ -626,7 +626,7 @@ def select_linked(
|
|
|
626
626
|
):
|
|
627
627
|
"""Select all bones linked by parent/child connections to the current selection
|
|
628
628
|
|
|
629
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
629
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
630
630
|
:type execution_context: int | str | None
|
|
631
631
|
:type undo: bool | None
|
|
632
632
|
:param all_forks: All Forks, Follow forks in the parents chain
|
|
@@ -634,7 +634,7 @@ def select_linked(
|
|
|
634
634
|
"""
|
|
635
635
|
|
|
636
636
|
def select_linked_pick(
|
|
637
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
637
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
638
638
|
execution_context: int | str | None = None,
|
|
639
639
|
undo: bool | None = None,
|
|
640
640
|
*,
|
|
@@ -643,7 +643,7 @@ def select_linked_pick(
|
|
|
643
643
|
):
|
|
644
644
|
"""(De)select bones linked by parent/child connections under the mouse cursor
|
|
645
645
|
|
|
646
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
646
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
647
647
|
:type execution_context: int | str | None
|
|
648
648
|
:type undo: bool | None
|
|
649
649
|
:param deselect: Deselect
|
|
@@ -653,7 +653,7 @@ def select_linked_pick(
|
|
|
653
653
|
"""
|
|
654
654
|
|
|
655
655
|
def select_mirror(
|
|
656
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
656
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
657
657
|
execution_context: int | str | None = None,
|
|
658
658
|
undo: bool | None = None,
|
|
659
659
|
*,
|
|
@@ -662,7 +662,7 @@ def select_mirror(
|
|
|
662
662
|
):
|
|
663
663
|
"""Mirror the bone selection
|
|
664
664
|
|
|
665
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
665
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
666
666
|
:type execution_context: int | str | None
|
|
667
667
|
:type undo: bool | None
|
|
668
668
|
:param only_active: Active Only, Only operate on the active bone
|
|
@@ -672,19 +672,19 @@ def select_mirror(
|
|
|
672
672
|
"""
|
|
673
673
|
|
|
674
674
|
def select_more(
|
|
675
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
675
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
676
676
|
execution_context: int | str | None = None,
|
|
677
677
|
undo: bool | None = None,
|
|
678
678
|
):
|
|
679
679
|
"""Select those bones connected to the initial selection
|
|
680
680
|
|
|
681
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
681
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
682
682
|
:type execution_context: int | str | None
|
|
683
683
|
:type undo: bool | None
|
|
684
684
|
"""
|
|
685
685
|
|
|
686
686
|
def select_similar(
|
|
687
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
687
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
688
688
|
execution_context: int | str | None = None,
|
|
689
689
|
undo: bool | None = None,
|
|
690
690
|
*,
|
|
@@ -705,7 +705,7 @@ def select_similar(
|
|
|
705
705
|
):
|
|
706
706
|
"""Select similar bones by property types
|
|
707
707
|
|
|
708
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
708
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
709
709
|
:type execution_context: int | str | None
|
|
710
710
|
:type undo: bool | None
|
|
711
711
|
:param type: Type
|
|
@@ -715,43 +715,43 @@ def select_similar(
|
|
|
715
715
|
"""
|
|
716
716
|
|
|
717
717
|
def separate(
|
|
718
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
718
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
719
719
|
execution_context: int | str | None = None,
|
|
720
720
|
undo: bool | None = None,
|
|
721
721
|
):
|
|
722
722
|
"""Isolate selected bones into a separate armature
|
|
723
723
|
|
|
724
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
724
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
725
725
|
:type execution_context: int | str | None
|
|
726
726
|
:type undo: bool | None
|
|
727
727
|
"""
|
|
728
728
|
|
|
729
729
|
def shortest_path_pick(
|
|
730
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
730
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
731
731
|
execution_context: int | str | None = None,
|
|
732
732
|
undo: bool | None = None,
|
|
733
733
|
):
|
|
734
734
|
"""Select shortest path between two bones
|
|
735
735
|
|
|
736
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
736
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
737
737
|
:type execution_context: int | str | None
|
|
738
738
|
:type undo: bool | None
|
|
739
739
|
"""
|
|
740
740
|
|
|
741
741
|
def split(
|
|
742
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
742
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
743
743
|
execution_context: int | str | None = None,
|
|
744
744
|
undo: bool | None = None,
|
|
745
745
|
):
|
|
746
746
|
"""Split off selected bones from connected unselected bones
|
|
747
747
|
|
|
748
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
748
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
749
749
|
:type execution_context: int | str | None
|
|
750
750
|
:type undo: bool | None
|
|
751
751
|
"""
|
|
752
752
|
|
|
753
753
|
def subdivide(
|
|
754
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
754
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
755
755
|
execution_context: int | str | None = None,
|
|
756
756
|
undo: bool | None = None,
|
|
757
757
|
*,
|
|
@@ -759,7 +759,7 @@ def subdivide(
|
|
|
759
759
|
):
|
|
760
760
|
"""Break selected bones into chains of smaller bones
|
|
761
761
|
|
|
762
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
762
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
763
763
|
:type execution_context: int | str | None
|
|
764
764
|
:type undo: bool | None
|
|
765
765
|
:param number_cuts: Number of Cuts
|
|
@@ -767,19 +767,19 @@ def subdivide(
|
|
|
767
767
|
"""
|
|
768
768
|
|
|
769
769
|
def switch_direction(
|
|
770
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
770
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
771
771
|
execution_context: int | str | None = None,
|
|
772
772
|
undo: bool | None = None,
|
|
773
773
|
):
|
|
774
774
|
"""Change the direction that a chain of bones points in (head and tail swap)
|
|
775
775
|
|
|
776
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
776
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
777
777
|
:type execution_context: int | str | None
|
|
778
778
|
:type undo: bool | None
|
|
779
779
|
"""
|
|
780
780
|
|
|
781
781
|
def symmetrize(
|
|
782
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
782
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
783
783
|
execution_context: int | str | None = None,
|
|
784
784
|
undo: bool | None = None,
|
|
785
785
|
*,
|
|
@@ -787,7 +787,7 @@ def symmetrize(
|
|
|
787
787
|
):
|
|
788
788
|
"""Enforce symmetry, make copies of the selection or use existing
|
|
789
789
|
|
|
790
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
790
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
791
791
|
:type execution_context: int | str | None
|
|
792
792
|
:type undo: bool | None
|
|
793
793
|
:param direction: Direction, Which sides to copy from and to (when both are selected)
|