fake-bpy-module 20240524__py3-none-any.whl → 20240528__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_operators/__init__.pyi +1 -0
- bl_operators/image_as_planes/__init__.pyi +457 -0
- bl_operators/userpref/__init__.pyi +0 -214
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/properties_render/__init__.pyi +1 -1
- bpy/app/__init__.pyi +5 -1
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +28 -17
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +47 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +39 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +26 -14
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +25 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +11 -1
- bpy/types/__init__.pyi +393 -334
- bpy/utils/__init__.pyi +10 -8
- bpy_extras/anim_utils/__init__.pyi +3 -3
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +93 -92
- gpu/types/__init__.pyi +4 -2
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
bpy/app/__init__.pyi
CHANGED
|
@@ -208,6 +208,10 @@ online_access: typing.Any
|
|
|
208
208
|
""" Boolean, true when internet access is allowed by Blender & 3rd party scripts (read-only)
|
|
209
209
|
"""
|
|
210
210
|
|
|
211
|
+
online_access_override: typing.Any
|
|
212
|
+
""" Boolean, true when internet access preference is overridden by the command line (read-only)
|
|
213
|
+
"""
|
|
214
|
+
|
|
211
215
|
opensubdiv: typing.Any
|
|
212
216
|
""" Constant value bpy.app.opensubdiv(supported=True, version=(3, 6, 0), version_string=' 3, 6, 0')
|
|
213
217
|
"""
|
|
@@ -244,7 +248,7 @@ use_userpref_skip_save_on_exit: typing.Any
|
|
|
244
248
|
""" Boolean, for application behavior (started with --enable-* matching this attribute name)
|
|
245
249
|
"""
|
|
246
250
|
|
|
247
|
-
version:
|
|
251
|
+
version: tuple[int, int, int]
|
|
248
252
|
""" The Blender version as a tuple of 3 numbers. eg. (2, 83, 1)
|
|
249
253
|
"""
|
|
250
254
|
|
bpy/ops/action/__init__.pyi
CHANGED
|
@@ -24,6 +24,7 @@ def clean(
|
|
|
24
24
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
25
25
|
execution_context: str | int | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
|
+
*,
|
|
27
28
|
threshold: typing.Any | None = 0.001,
|
|
28
29
|
channels: bool | typing.Any | None = False,
|
|
29
30
|
):
|
|
@@ -44,6 +45,7 @@ def clickselect(
|
|
|
44
45
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
45
46
|
execution_context: str | int | None = None,
|
|
46
47
|
undo: bool | None = None,
|
|
48
|
+
*,
|
|
47
49
|
wait_to_deselect_others: bool | typing.Any | None = False,
|
|
48
50
|
mouse_x: typing.Any | None = 0,
|
|
49
51
|
mouse_y: typing.Any | None = 0,
|
|
@@ -93,6 +95,7 @@ def delete(
|
|
|
93
95
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
94
96
|
execution_context: str | int | None = None,
|
|
95
97
|
undo: bool | None = None,
|
|
98
|
+
*,
|
|
96
99
|
confirm: bool | typing.Any | None = True,
|
|
97
100
|
):
|
|
98
101
|
"""Remove all selected keyframes
|
|
@@ -124,6 +127,7 @@ def duplicate_move(
|
|
|
124
127
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
125
128
|
execution_context: str | int | None = None,
|
|
126
129
|
undo: bool | None = None,
|
|
130
|
+
*,
|
|
127
131
|
ACTION_OT_duplicate: duplicate | None = None,
|
|
128
132
|
TRANSFORM_OT_transform: bpy.ops.transform.transform | None = None,
|
|
129
133
|
):
|
|
@@ -144,6 +148,7 @@ def easing_type(
|
|
|
144
148
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
145
149
|
execution_context: str | int | None = None,
|
|
146
150
|
undo: bool | None = None,
|
|
151
|
+
*,
|
|
147
152
|
type: str | None = "AUTO",
|
|
148
153
|
):
|
|
149
154
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
@@ -161,6 +166,7 @@ def extrapolation_type(
|
|
|
161
166
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
162
167
|
execution_context: str | int | None = None,
|
|
163
168
|
undo: bool | None = None,
|
|
169
|
+
*,
|
|
164
170
|
type: str | None = "CONSTANT",
|
|
165
171
|
):
|
|
166
172
|
"""Set extrapolation mode for selected F-Curves
|
|
@@ -204,6 +210,7 @@ def handle_type(
|
|
|
204
210
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
205
211
|
execution_context: str | int | None = None,
|
|
206
212
|
undo: bool | None = None,
|
|
213
|
+
*,
|
|
207
214
|
type: str | None = "FREE",
|
|
208
215
|
):
|
|
209
216
|
"""Set type of handle for selected keyframes
|
|
@@ -221,6 +228,7 @@ def interpolation_type(
|
|
|
221
228
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
222
229
|
execution_context: str | int | None = None,
|
|
223
230
|
undo: bool | None = None,
|
|
231
|
+
*,
|
|
224
232
|
type: str | None = "CONSTANT",
|
|
225
233
|
):
|
|
226
234
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
@@ -238,6 +246,7 @@ def keyframe_insert(
|
|
|
238
246
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
239
247
|
execution_context: str | int | None = None,
|
|
240
248
|
undo: bool | None = None,
|
|
249
|
+
*,
|
|
241
250
|
type: str | None = "ALL",
|
|
242
251
|
):
|
|
243
252
|
"""Insert keyframes for the specified channels
|
|
@@ -255,6 +264,7 @@ def keyframe_type(
|
|
|
255
264
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
256
265
|
execution_context: str | int | None = None,
|
|
257
266
|
undo: bool | None = None,
|
|
267
|
+
*,
|
|
258
268
|
type: str | None = "KEYFRAME",
|
|
259
269
|
):
|
|
260
270
|
"""Set type of keyframe for the selected keyframes
|
|
@@ -314,6 +324,7 @@ def mirror(
|
|
|
314
324
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
315
325
|
execution_context: str | int | None = None,
|
|
316
326
|
undo: bool | None = None,
|
|
327
|
+
*,
|
|
317
328
|
type: str | None = "CFRA",
|
|
318
329
|
):
|
|
319
330
|
"""Flip selected keyframes over the selected mirror line
|
|
@@ -354,6 +365,7 @@ def paste(
|
|
|
354
365
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
355
366
|
execution_context: str | int | None = None,
|
|
356
367
|
undo: bool | None = None,
|
|
368
|
+
*,
|
|
357
369
|
offset: str | None = "START",
|
|
358
370
|
merge: str | None = "MIX",
|
|
359
371
|
flipped: bool | typing.Any | None = False,
|
|
@@ -405,6 +417,7 @@ def select_all(
|
|
|
405
417
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
406
418
|
execution_context: str | int | None = None,
|
|
407
419
|
undo: bool | None = None,
|
|
420
|
+
*,
|
|
408
421
|
action: str | None = "TOGGLE",
|
|
409
422
|
):
|
|
410
423
|
"""Toggle selection of all keyframes
|
|
@@ -434,6 +447,7 @@ def select_box(
|
|
|
434
447
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
435
448
|
execution_context: str | int | None = None,
|
|
436
449
|
undo: bool | None = None,
|
|
450
|
+
*,
|
|
437
451
|
axis_range: bool | typing.Any | None = False,
|
|
438
452
|
xmin: typing.Any | None = 0,
|
|
439
453
|
xmax: typing.Any | None = 0,
|
|
@@ -481,6 +495,7 @@ def select_circle(
|
|
|
481
495
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
482
496
|
execution_context: str | int | None = None,
|
|
483
497
|
undo: bool | None = None,
|
|
498
|
+
*,
|
|
484
499
|
x: typing.Any | None = 0,
|
|
485
500
|
y: typing.Any | None = 0,
|
|
486
501
|
radius: typing.Any | None = 25,
|
|
@@ -519,6 +534,7 @@ def select_column(
|
|
|
519
534
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
520
535
|
execution_context: str | int | None = None,
|
|
521
536
|
undo: bool | None = None,
|
|
537
|
+
*,
|
|
522
538
|
mode: str | None = "KEYS",
|
|
523
539
|
):
|
|
524
540
|
"""Select all keyframes on the specified frame(s)
|
|
@@ -536,6 +552,7 @@ def select_lasso(
|
|
|
536
552
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
537
553
|
execution_context: str | int | None = None,
|
|
538
554
|
undo: bool | None = None,
|
|
555
|
+
*,
|
|
539
556
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
540
557
|
mode: str | None = "SET",
|
|
541
558
|
):
|
|
@@ -565,6 +582,7 @@ def select_leftright(
|
|
|
565
582
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
566
583
|
execution_context: str | int | None = None,
|
|
567
584
|
undo: bool | None = None,
|
|
585
|
+
*,
|
|
568
586
|
mode: str | None = "CHECK",
|
|
569
587
|
extend: bool | typing.Any | None = False,
|
|
570
588
|
):
|
|
@@ -627,6 +645,7 @@ def snap(
|
|
|
627
645
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
628
646
|
execution_context: str | int | None = None,
|
|
629
647
|
undo: bool | None = None,
|
|
648
|
+
*,
|
|
630
649
|
type: str | None = "CFRA",
|
|
631
650
|
):
|
|
632
651
|
"""Snap selected keyframes to the times specified
|
|
@@ -656,6 +675,7 @@ def stash(
|
|
|
656
675
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
657
676
|
execution_context: str | int | None = None,
|
|
658
677
|
undo: bool | None = None,
|
|
678
|
+
*,
|
|
659
679
|
create_new: bool | typing.Any | None = True,
|
|
660
680
|
):
|
|
661
681
|
"""Store this action in the NLA stack as a non-contributing strip for later use
|
|
@@ -687,6 +707,7 @@ def unlink(
|
|
|
687
707
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
688
708
|
execution_context: str | int | None = None,
|
|
689
709
|
undo: bool | None = None,
|
|
710
|
+
*,
|
|
690
711
|
force_delete: bool | typing.Any | None = False,
|
|
691
712
|
):
|
|
692
713
|
"""Unlink this action from the active action slot (and/or exit Tweak Mode)
|
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -23,6 +23,7 @@ def change_frame(
|
|
|
23
23
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
24
24
|
execution_context: str | int | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
|
+
*,
|
|
26
27
|
frame: typing.Any | None = 0.0,
|
|
27
28
|
snap: bool | typing.Any | None = False,
|
|
28
29
|
):
|
|
@@ -43,6 +44,7 @@ def channel_select_keys(
|
|
|
43
44
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
44
45
|
execution_context: str | int | None = None,
|
|
45
46
|
undo: bool | None = None,
|
|
47
|
+
*,
|
|
46
48
|
extend: bool | typing.Any | None = False,
|
|
47
49
|
):
|
|
48
50
|
"""Select all keyframes of channel under mouse
|
|
@@ -60,6 +62,7 @@ def channel_view_pick(
|
|
|
60
62
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
61
63
|
execution_context: str | int | None = None,
|
|
62
64
|
undo: bool | None = None,
|
|
65
|
+
*,
|
|
63
66
|
include_handles: bool | typing.Any | None = True,
|
|
64
67
|
use_preview_range: bool | typing.Any | None = True,
|
|
65
68
|
):
|
|
@@ -80,6 +83,7 @@ def channels_bake(
|
|
|
80
83
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
81
84
|
execution_context: str | int | None = None,
|
|
82
85
|
undo: bool | None = None,
|
|
86
|
+
*,
|
|
83
87
|
range: typing.Any | None = (0, 0),
|
|
84
88
|
step: typing.Any | None = 1.0,
|
|
85
89
|
remove_outside_range: bool | typing.Any | None = False,
|
|
@@ -132,6 +136,7 @@ def channels_click(
|
|
|
132
136
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
133
137
|
execution_context: str | int | None = None,
|
|
134
138
|
undo: bool | None = None,
|
|
139
|
+
*,
|
|
135
140
|
extend: bool | typing.Any | None = False,
|
|
136
141
|
extend_range: bool | typing.Any | None = False,
|
|
137
142
|
children_only: bool | typing.Any | None = False,
|
|
@@ -155,6 +160,7 @@ def channels_collapse(
|
|
|
155
160
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
156
161
|
execution_context: str | int | None = None,
|
|
157
162
|
undo: bool | None = None,
|
|
163
|
+
*,
|
|
158
164
|
all: bool | typing.Any | None = True,
|
|
159
165
|
):
|
|
160
166
|
"""Collapse (close) all selected expandable animation channels
|
|
@@ -186,6 +192,7 @@ def channels_editable_toggle(
|
|
|
186
192
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
187
193
|
execution_context: str | int | None = None,
|
|
188
194
|
undo: bool | None = None,
|
|
195
|
+
*,
|
|
189
196
|
mode: str | None = "TOGGLE",
|
|
190
197
|
type: str | None = "PROTECT",
|
|
191
198
|
):
|
|
@@ -206,6 +213,7 @@ def channels_expand(
|
|
|
206
213
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
207
214
|
execution_context: str | int | None = None,
|
|
208
215
|
undo: bool | None = None,
|
|
216
|
+
*,
|
|
209
217
|
all: bool | typing.Any | None = True,
|
|
210
218
|
):
|
|
211
219
|
"""Expand (open) all selected expandable animation channels
|
|
@@ -237,6 +245,7 @@ def channels_group(
|
|
|
237
245
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
238
246
|
execution_context: str | int | None = None,
|
|
239
247
|
undo: bool | None = None,
|
|
248
|
+
*,
|
|
240
249
|
name: str | typing.Any = "New Group",
|
|
241
250
|
):
|
|
242
251
|
"""Add selected F-Curves to a new group
|
|
@@ -254,6 +263,7 @@ def channels_move(
|
|
|
254
263
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
255
264
|
execution_context: str | int | None = None,
|
|
256
265
|
undo: bool | None = None,
|
|
266
|
+
*,
|
|
257
267
|
direction: str | None = "DOWN",
|
|
258
268
|
):
|
|
259
269
|
"""Rearrange selected animation channels
|
|
@@ -285,6 +295,7 @@ def channels_select_all(
|
|
|
285
295
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
286
296
|
execution_context: str | int | None = None,
|
|
287
297
|
undo: bool | None = None,
|
|
298
|
+
*,
|
|
288
299
|
action: str | None = "TOGGLE",
|
|
289
300
|
):
|
|
290
301
|
"""Toggle selection of all animation channels
|
|
@@ -314,6 +325,7 @@ def channels_select_box(
|
|
|
314
325
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
315
326
|
execution_context: str | int | None = None,
|
|
316
327
|
undo: bool | None = None,
|
|
328
|
+
*,
|
|
317
329
|
xmin: typing.Any | None = 0,
|
|
318
330
|
xmax: typing.Any | None = 0,
|
|
319
331
|
ymin: typing.Any | None = 0,
|
|
@@ -363,6 +375,7 @@ def channels_setting_disable(
|
|
|
363
375
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
364
376
|
execution_context: str | int | None = None,
|
|
365
377
|
undo: bool | None = None,
|
|
378
|
+
*,
|
|
366
379
|
mode: str | None = "DISABLE",
|
|
367
380
|
type: str | None = "PROTECT",
|
|
368
381
|
):
|
|
@@ -383,6 +396,7 @@ def channels_setting_enable(
|
|
|
383
396
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
384
397
|
execution_context: str | int | None = None,
|
|
385
398
|
undo: bool | None = None,
|
|
399
|
+
*,
|
|
386
400
|
mode: str | None = "ENABLE",
|
|
387
401
|
type: str | None = "PROTECT",
|
|
388
402
|
):
|
|
@@ -403,6 +417,7 @@ def channels_setting_toggle(
|
|
|
403
417
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
404
418
|
execution_context: str | int | None = None,
|
|
405
419
|
undo: bool | None = None,
|
|
420
|
+
*,
|
|
406
421
|
mode: str | None = "TOGGLE",
|
|
407
422
|
type: str | None = "PROTECT",
|
|
408
423
|
):
|
|
@@ -437,6 +452,7 @@ def channels_view_selected(
|
|
|
437
452
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
438
453
|
execution_context: str | int | None = None,
|
|
439
454
|
undo: bool | None = None,
|
|
455
|
+
*,
|
|
440
456
|
include_handles: bool | typing.Any | None = True,
|
|
441
457
|
use_preview_range: bool | typing.Any | None = True,
|
|
442
458
|
):
|
|
@@ -457,6 +473,7 @@ def clear_useless_actions(
|
|
|
457
473
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
458
474
|
execution_context: str | int | None = None,
|
|
459
475
|
undo: bool | None = None,
|
|
476
|
+
*,
|
|
460
477
|
only_unused: bool | typing.Any | None = True,
|
|
461
478
|
):
|
|
462
479
|
"""Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries"
|
|
@@ -516,6 +533,7 @@ def driver_button_remove(
|
|
|
516
533
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
517
534
|
execution_context: str | int | None = None,
|
|
518
535
|
undo: bool | None = None,
|
|
536
|
+
*,
|
|
519
537
|
all: bool | typing.Any | None = True,
|
|
520
538
|
):
|
|
521
539
|
"""Remove the driver(s) for the connected property(s) represented by the highlighted button
|
|
@@ -547,6 +565,7 @@ def keyframe_clear_button(
|
|
|
547
565
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
548
566
|
execution_context: str | int | None = None,
|
|
549
567
|
undo: bool | None = None,
|
|
568
|
+
*,
|
|
550
569
|
all: bool | typing.Any | None = True,
|
|
551
570
|
):
|
|
552
571
|
"""Clear all keyframes on the currently active property
|
|
@@ -564,6 +583,7 @@ def keyframe_clear_v3d(
|
|
|
564
583
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
565
584
|
execution_context: str | int | None = None,
|
|
566
585
|
undo: bool | None = None,
|
|
586
|
+
*,
|
|
567
587
|
confirm: bool | typing.Any | None = True,
|
|
568
588
|
):
|
|
569
589
|
"""Remove all keyframe animation for selected objects
|
|
@@ -581,6 +601,7 @@ def keyframe_delete(
|
|
|
581
601
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
582
602
|
execution_context: str | int | None = None,
|
|
583
603
|
undo: bool | None = None,
|
|
604
|
+
*,
|
|
584
605
|
type: str | None = "DEFAULT",
|
|
585
606
|
):
|
|
586
607
|
"""Delete keyframes on the current frame for all properties in the specified Keying Set
|
|
@@ -598,6 +619,7 @@ def keyframe_delete_button(
|
|
|
598
619
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
599
620
|
execution_context: str | int | None = None,
|
|
600
621
|
undo: bool | None = None,
|
|
622
|
+
*,
|
|
601
623
|
all: bool | typing.Any | None = True,
|
|
602
624
|
):
|
|
603
625
|
"""Delete current keyframe of current UI-active property
|
|
@@ -615,6 +637,7 @@ def keyframe_delete_by_name(
|
|
|
615
637
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
616
638
|
execution_context: str | int | None = None,
|
|
617
639
|
undo: bool | None = None,
|
|
640
|
+
*,
|
|
618
641
|
type: str | typing.Any = "",
|
|
619
642
|
):
|
|
620
643
|
"""Alternate access to 'Delete Keyframe' for keymaps to use
|
|
@@ -632,6 +655,7 @@ def keyframe_delete_v3d(
|
|
|
632
655
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
633
656
|
execution_context: str | int | None = None,
|
|
634
657
|
undo: bool | None = None,
|
|
658
|
+
*,
|
|
635
659
|
confirm: bool | typing.Any | None = True,
|
|
636
660
|
):
|
|
637
661
|
"""Remove keyframes on current frame for selected objects and bones
|
|
@@ -649,6 +673,7 @@ def keyframe_insert(
|
|
|
649
673
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
650
674
|
execution_context: str | int | None = None,
|
|
651
675
|
undo: bool | None = None,
|
|
676
|
+
*,
|
|
652
677
|
type: str | None = "DEFAULT",
|
|
653
678
|
):
|
|
654
679
|
"""Insert keyframes on the current frame using either the active keying set, or the user preferences if no keying set is active
|
|
@@ -666,6 +691,7 @@ def keyframe_insert_button(
|
|
|
666
691
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
667
692
|
execution_context: str | int | None = None,
|
|
668
693
|
undo: bool | None = None,
|
|
694
|
+
*,
|
|
669
695
|
all: bool | typing.Any | None = True,
|
|
670
696
|
):
|
|
671
697
|
"""Insert a keyframe for current UI-active property
|
|
@@ -683,6 +709,7 @@ def keyframe_insert_by_name(
|
|
|
683
709
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
684
710
|
execution_context: str | int | None = None,
|
|
685
711
|
undo: bool | None = None,
|
|
712
|
+
*,
|
|
686
713
|
type: str | typing.Any = "",
|
|
687
714
|
):
|
|
688
715
|
"""Alternate access to 'Insert Keyframe' for keymaps to use
|
|
@@ -700,6 +727,7 @@ def keyframe_insert_menu(
|
|
|
700
727
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
701
728
|
execution_context: str | int | None = None,
|
|
702
729
|
undo: bool | None = None,
|
|
730
|
+
*,
|
|
703
731
|
type: str | None = "DEFAULT",
|
|
704
732
|
always_prompt: bool | typing.Any | None = False,
|
|
705
733
|
):
|
|
@@ -720,6 +748,7 @@ def keying_set_active_set(
|
|
|
720
748
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
721
749
|
execution_context: str | int | None = None,
|
|
722
750
|
undo: bool | None = None,
|
|
751
|
+
*,
|
|
723
752
|
type: str | None = "DEFAULT",
|
|
724
753
|
):
|
|
725
754
|
"""Set a new active keying set
|
|
@@ -751,6 +780,7 @@ def keying_set_export(
|
|
|
751
780
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
752
781
|
execution_context: str | int | None = None,
|
|
753
782
|
undo: bool | None = None,
|
|
783
|
+
*,
|
|
754
784
|
filepath: str | typing.Any = "",
|
|
755
785
|
filter_folder: bool | typing.Any | None = True,
|
|
756
786
|
filter_text: bool | typing.Any | None = True,
|
|
@@ -819,6 +849,7 @@ def keyingset_button_add(
|
|
|
819
849
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
820
850
|
execution_context: str | int | None = None,
|
|
821
851
|
undo: bool | None = None,
|
|
852
|
+
*,
|
|
822
853
|
all: bool | typing.Any | None = True,
|
|
823
854
|
):
|
|
824
855
|
"""Add current UI-active property to current keying set
|
|
@@ -878,6 +909,7 @@ def previewrange_set(
|
|
|
878
909
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
879
910
|
execution_context: str | int | None = None,
|
|
880
911
|
undo: bool | None = None,
|
|
912
|
+
*,
|
|
881
913
|
xmin: typing.Any | None = 0,
|
|
882
914
|
xmax: typing.Any | None = 0,
|
|
883
915
|
ymin: typing.Any | None = 0,
|
|
@@ -921,6 +953,7 @@ def update_animated_transform_constraints(
|
|
|
921
953
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
922
954
|
execution_context: str | int | None = None,
|
|
923
955
|
undo: bool | None = None,
|
|
956
|
+
*,
|
|
924
957
|
use_convert_to_radians: bool | typing.Any | None = True,
|
|
925
958
|
):
|
|
926
959
|
"""Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)
|
|
@@ -938,6 +971,7 @@ def view_curve_in_graph_editor(
|
|
|
938
971
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
939
972
|
execution_context: str | int | None = None,
|
|
940
973
|
undo: bool | None = None,
|
|
974
|
+
*,
|
|
941
975
|
all: bool | typing.Any | None = False,
|
|
942
976
|
isolate: bool | typing.Any | None = False,
|
|
943
977
|
):
|
bpy/ops/armature/__init__.pyi
CHANGED
|
@@ -24,6 +24,7 @@ def assign_to_collection(
|
|
|
24
24
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
25
25
|
execution_context: str | int | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
|
+
*,
|
|
27
28
|
collection_index: typing.Any | None = -1,
|
|
28
29
|
new_collection_name: str | typing.Any = "",
|
|
29
30
|
):
|
|
@@ -44,6 +45,7 @@ def autoside_names(
|
|
|
44
45
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
45
46
|
execution_context: str | int | None = None,
|
|
46
47
|
undo: bool | None = None,
|
|
48
|
+
*,
|
|
47
49
|
type: str | None = "XAXIS",
|
|
48
50
|
):
|
|
49
51
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
@@ -70,6 +72,7 @@ def bone_primitive_add(
|
|
|
70
72
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
71
73
|
execution_context: str | int | None = None,
|
|
72
74
|
undo: bool | None = None,
|
|
75
|
+
*,
|
|
73
76
|
name: str | typing.Any = "",
|
|
74
77
|
):
|
|
75
78
|
"""Add a new bone located at the 3D cursor
|
|
@@ -87,6 +90,7 @@ def calculate_roll(
|
|
|
87
90
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
88
91
|
execution_context: str | int | None = None,
|
|
89
92
|
undo: bool | None = None,
|
|
93
|
+
*,
|
|
90
94
|
type: str | None = "POS_X",
|
|
91
95
|
axis_flip: bool | typing.Any | None = False,
|
|
92
96
|
axis_only: bool | typing.Any | None = False,
|
|
@@ -138,6 +142,7 @@ def collection_assign(
|
|
|
138
142
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
139
143
|
execution_context: str | int | None = None,
|
|
140
144
|
undo: bool | None = None,
|
|
145
|
+
*,
|
|
141
146
|
name: str | typing.Any = "",
|
|
142
147
|
):
|
|
143
148
|
"""Add selected bones to the chosen bone collection
|
|
@@ -155,6 +160,7 @@ def collection_create_and_assign(
|
|
|
155
160
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
156
161
|
execution_context: str | int | None = None,
|
|
157
162
|
undo: bool | None = None,
|
|
163
|
+
*,
|
|
158
164
|
name: str | typing.Any = "",
|
|
159
165
|
):
|
|
160
166
|
"""Create a new bone collection and assign all selected bones
|
|
@@ -186,6 +192,7 @@ def collection_move(
|
|
|
186
192
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
187
193
|
execution_context: str | int | None = None,
|
|
188
194
|
undo: bool | None = None,
|
|
195
|
+
*,
|
|
189
196
|
direction: str | None = "UP",
|
|
190
197
|
):
|
|
191
198
|
"""Change position of active Bone Collection in list of Bone collections
|
|
@@ -259,6 +266,7 @@ def collection_unassign(
|
|
|
259
266
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
260
267
|
execution_context: str | int | None = None,
|
|
261
268
|
undo: bool | None = None,
|
|
269
|
+
*,
|
|
262
270
|
name: str | typing.Any = "",
|
|
263
271
|
):
|
|
264
272
|
"""Remove selected bones from the active bone collection
|
|
@@ -276,6 +284,7 @@ def collection_unassign_named(
|
|
|
276
284
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
277
285
|
execution_context: str | int | None = None,
|
|
278
286
|
undo: bool | None = None,
|
|
287
|
+
*,
|
|
279
288
|
name: str | typing.Any = "",
|
|
280
289
|
bone_name: str | typing.Any = "",
|
|
281
290
|
):
|
|
@@ -310,6 +319,7 @@ def copy_bone_color_to_selected(
|
|
|
310
319
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
311
320
|
execution_context: str | int | None = None,
|
|
312
321
|
undo: bool | None = None,
|
|
322
|
+
*,
|
|
313
323
|
bone_type: str | None = "EDIT",
|
|
314
324
|
):
|
|
315
325
|
"""Copy the bone color of the active bone to all selected bones
|
|
@@ -333,6 +343,7 @@ def delete(
|
|
|
333
343
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
334
344
|
execution_context: str | int | None = None,
|
|
335
345
|
undo: bool | None = None,
|
|
346
|
+
*,
|
|
336
347
|
confirm: bool | typing.Any | None = True,
|
|
337
348
|
):
|
|
338
349
|
"""Remove selected bones from the armature
|
|
@@ -364,6 +375,7 @@ def duplicate(
|
|
|
364
375
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
365
376
|
execution_context: str | int | None = None,
|
|
366
377
|
undo: bool | None = None,
|
|
378
|
+
*,
|
|
367
379
|
do_flip_names: bool | typing.Any | None = False,
|
|
368
380
|
):
|
|
369
381
|
"""Make copies of the selected bones within the same armature
|
|
@@ -381,6 +393,7 @@ def duplicate_move(
|
|
|
381
393
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
382
394
|
execution_context: str | int | None = None,
|
|
383
395
|
undo: bool | None = None,
|
|
396
|
+
*,
|
|
384
397
|
ARMATURE_OT_duplicate: duplicate | None = None,
|
|
385
398
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
386
399
|
):
|
|
@@ -401,6 +414,7 @@ def extrude(
|
|
|
401
414
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
402
415
|
execution_context: str | int | None = None,
|
|
403
416
|
undo: bool | None = None,
|
|
417
|
+
*,
|
|
404
418
|
forked: bool | typing.Any | None = False,
|
|
405
419
|
):
|
|
406
420
|
"""Create new bones from the selected joints
|
|
@@ -418,6 +432,7 @@ def extrude_forked(
|
|
|
418
432
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
419
433
|
execution_context: str | int | None = None,
|
|
420
434
|
undo: bool | None = None,
|
|
435
|
+
*,
|
|
421
436
|
ARMATURE_OT_extrude: extrude | None = None,
|
|
422
437
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
423
438
|
):
|
|
@@ -438,6 +453,7 @@ def extrude_move(
|
|
|
438
453
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
439
454
|
execution_context: str | int | None = None,
|
|
440
455
|
undo: bool | None = None,
|
|
456
|
+
*,
|
|
441
457
|
ARMATURE_OT_extrude: extrude | None = None,
|
|
442
458
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
443
459
|
):
|
|
@@ -472,6 +488,7 @@ def flip_names(
|
|
|
472
488
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
473
489
|
execution_context: str | int | None = None,
|
|
474
490
|
undo: bool | None = None,
|
|
491
|
+
*,
|
|
475
492
|
do_strip_numbers: bool | typing.Any | None = False,
|
|
476
493
|
):
|
|
477
494
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
@@ -489,6 +506,7 @@ def hide(
|
|
|
489
506
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
490
507
|
execution_context: str | int | None = None,
|
|
491
508
|
undo: bool | None = None,
|
|
509
|
+
*,
|
|
492
510
|
unselected: bool | typing.Any | None = False,
|
|
493
511
|
):
|
|
494
512
|
"""Tag selected bones to not be visible in Edit Mode
|
|
@@ -506,6 +524,7 @@ def move_to_collection(
|
|
|
506
524
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
507
525
|
execution_context: str | int | None = None,
|
|
508
526
|
undo: bool | None = None,
|
|
527
|
+
*,
|
|
509
528
|
collection_index: typing.Any | None = -1,
|
|
510
529
|
new_collection_name: str | typing.Any = "",
|
|
511
530
|
):
|
|
@@ -526,6 +545,7 @@ def parent_clear(
|
|
|
526
545
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
527
546
|
execution_context: str | int | None = None,
|
|
528
547
|
undo: bool | None = None,
|
|
548
|
+
*,
|
|
529
549
|
type: str | None = "CLEAR",
|
|
530
550
|
):
|
|
531
551
|
"""Remove the parent-child relationship between selected bones and their parents
|
|
@@ -543,6 +563,7 @@ def parent_set(
|
|
|
543
563
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
544
564
|
execution_context: str | int | None = None,
|
|
545
565
|
undo: bool | None = None,
|
|
566
|
+
*,
|
|
546
567
|
type: str | None = "CONNECTED",
|
|
547
568
|
):
|
|
548
569
|
"""Set the active bone as the parent of the selected bones
|
|
@@ -560,6 +581,7 @@ def reveal(
|
|
|
560
581
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
561
582
|
execution_context: str | int | None = None,
|
|
562
583
|
undo: bool | None = None,
|
|
584
|
+
*,
|
|
563
585
|
select: bool | typing.Any | None = True,
|
|
564
586
|
):
|
|
565
587
|
"""Reveal all bones hidden in Edit Mode
|
|
@@ -577,6 +599,7 @@ def roll_clear(
|
|
|
577
599
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
578
600
|
execution_context: str | int | None = None,
|
|
579
601
|
undo: bool | None = None,
|
|
602
|
+
*,
|
|
580
603
|
roll: typing.Any | None = 0.0,
|
|
581
604
|
):
|
|
582
605
|
"""Clear roll for selected bones
|
|
@@ -594,6 +617,7 @@ def select_all(
|
|
|
594
617
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
595
618
|
execution_context: str | int | None = None,
|
|
596
619
|
undo: bool | None = None,
|
|
620
|
+
*,
|
|
597
621
|
action: str | None = "TOGGLE",
|
|
598
622
|
):
|
|
599
623
|
"""Toggle selection status of all bones
|
|
@@ -623,6 +647,7 @@ def select_hierarchy(
|
|
|
623
647
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
624
648
|
execution_context: str | int | None = None,
|
|
625
649
|
undo: bool | None = None,
|
|
650
|
+
*,
|
|
626
651
|
direction: str | None = "PARENT",
|
|
627
652
|
extend: bool | typing.Any | None = False,
|
|
628
653
|
):
|
|
@@ -657,6 +682,7 @@ def select_linked(
|
|
|
657
682
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
658
683
|
execution_context: str | int | None = None,
|
|
659
684
|
undo: bool | None = None,
|
|
685
|
+
*,
|
|
660
686
|
all_forks: bool | typing.Any | None = False,
|
|
661
687
|
):
|
|
662
688
|
"""Select all bones linked by parent/child connections to the current selection
|
|
@@ -674,6 +700,7 @@ def select_linked_pick(
|
|
|
674
700
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
675
701
|
execution_context: str | int | None = None,
|
|
676
702
|
undo: bool | None = None,
|
|
703
|
+
*,
|
|
677
704
|
deselect: bool | typing.Any | None = False,
|
|
678
705
|
all_forks: bool | typing.Any | None = False,
|
|
679
706
|
):
|
|
@@ -694,6 +721,7 @@ def select_mirror(
|
|
|
694
721
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
695
722
|
execution_context: str | int | None = None,
|
|
696
723
|
undo: bool | None = None,
|
|
724
|
+
*,
|
|
697
725
|
only_active: bool | typing.Any | None = False,
|
|
698
726
|
extend: bool | typing.Any | None = False,
|
|
699
727
|
):
|
|
@@ -728,6 +756,7 @@ def select_similar(
|
|
|
728
756
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
729
757
|
execution_context: str | int | None = None,
|
|
730
758
|
undo: bool | None = None,
|
|
759
|
+
*,
|
|
731
760
|
type: str | None = "LENGTH",
|
|
732
761
|
threshold: typing.Any | None = 0.1,
|
|
733
762
|
):
|
|
@@ -790,6 +819,7 @@ def subdivide(
|
|
|
790
819
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
791
820
|
execution_context: str | int | None = None,
|
|
792
821
|
undo: bool | None = None,
|
|
822
|
+
*,
|
|
793
823
|
number_cuts: typing.Any | None = 1,
|
|
794
824
|
):
|
|
795
825
|
"""Break selected bones into chains of smaller bones
|
|
@@ -821,6 +851,7 @@ def symmetrize(
|
|
|
821
851
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
822
852
|
execution_context: str | int | None = None,
|
|
823
853
|
undo: bool | None = None,
|
|
854
|
+
*,
|
|
824
855
|
direction: str | None = "NEGATIVE_X",
|
|
825
856
|
):
|
|
826
857
|
"""Enforce symmetry, make copies of the selection or use existing
|