fake-bpy-module 20240523__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/properties_data_modifier/__init__.pyi +284 -0
- bl_ui/properties_render/__init__.pyi +1 -1
- bl_ui/space_userpref/__init__.pyi +233 -0
- bpy/app/__init__.pyi +9 -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 +58 -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 +53 -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 +26 -1
- 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 +594 -342
- 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-20240523.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +94 -93
- gpu/types/__init__.pyi +4 -2
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
bpy/ops/particle/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def brush_edit(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
13
14
|
| None = None,
|
|
14
15
|
):
|
|
@@ -27,6 +28,7 @@ def connect_hair(
|
|
|
27
28
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
28
29
|
execution_context: str | int | None = None,
|
|
29
30
|
undo: bool | None = None,
|
|
31
|
+
*,
|
|
30
32
|
all: bool | typing.Any | None = False,
|
|
31
33
|
):
|
|
32
34
|
"""Connect hair to the emitter mesh
|
|
@@ -44,6 +46,7 @@ def copy_particle_systems(
|
|
|
44
46
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
45
47
|
execution_context: str | int | None = None,
|
|
46
48
|
undo: bool | None = None,
|
|
49
|
+
*,
|
|
47
50
|
space: str | None = "OBJECT",
|
|
48
51
|
remove_target_particles: bool | typing.Any | None = True,
|
|
49
52
|
use_active: bool | typing.Any | None = False,
|
|
@@ -73,6 +76,7 @@ def delete(
|
|
|
73
76
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
74
77
|
execution_context: str | int | None = None,
|
|
75
78
|
undo: bool | None = None,
|
|
79
|
+
*,
|
|
76
80
|
type: str | None = "PARTICLE",
|
|
77
81
|
):
|
|
78
82
|
"""Delete selected particles or keys
|
|
@@ -90,6 +94,7 @@ def disconnect_hair(
|
|
|
90
94
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
91
95
|
execution_context: str | int | None = None,
|
|
92
96
|
undo: bool | None = None,
|
|
97
|
+
*,
|
|
93
98
|
all: bool | typing.Any | None = False,
|
|
94
99
|
):
|
|
95
100
|
"""Disconnect hair from the emitter mesh
|
|
@@ -107,6 +112,7 @@ def duplicate_particle_system(
|
|
|
107
112
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
108
113
|
execution_context: str | int | None = None,
|
|
109
114
|
undo: bool | None = None,
|
|
115
|
+
*,
|
|
110
116
|
use_duplicate_settings: bool | typing.Any | None = False,
|
|
111
117
|
):
|
|
112
118
|
"""Duplicate particle system within the active object
|
|
@@ -208,6 +214,7 @@ def hair_dynamics_preset_add(
|
|
|
208
214
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
209
215
|
execution_context: str | int | None = None,
|
|
210
216
|
undo: bool | None = None,
|
|
217
|
+
*,
|
|
211
218
|
name: str | typing.Any = "",
|
|
212
219
|
remove_name: bool | typing.Any | None = False,
|
|
213
220
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -231,6 +238,7 @@ def hide(
|
|
|
231
238
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
232
239
|
execution_context: str | int | None = None,
|
|
233
240
|
undo: bool | None = None,
|
|
241
|
+
*,
|
|
234
242
|
unselected: bool | typing.Any | None = False,
|
|
235
243
|
):
|
|
236
244
|
"""Hide selected particles
|
|
@@ -304,6 +312,7 @@ def rekey(
|
|
|
304
312
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
305
313
|
execution_context: str | int | None = None,
|
|
306
314
|
undo: bool | None = None,
|
|
315
|
+
*,
|
|
307
316
|
keys_number: typing.Any | None = 2,
|
|
308
317
|
):
|
|
309
318
|
"""Change the number of keys of selected particles (root and tip keys included)
|
|
@@ -321,6 +330,7 @@ def remove_doubles(
|
|
|
321
330
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
322
331
|
execution_context: str | int | None = None,
|
|
323
332
|
undo: bool | None = None,
|
|
333
|
+
*,
|
|
324
334
|
threshold: typing.Any | None = 0.0002,
|
|
325
335
|
):
|
|
326
336
|
"""Remove selected particles close enough of others
|
|
@@ -338,6 +348,7 @@ def reveal(
|
|
|
338
348
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
339
349
|
execution_context: str | int | None = None,
|
|
340
350
|
undo: bool | None = None,
|
|
351
|
+
*,
|
|
341
352
|
select: bool | typing.Any | None = True,
|
|
342
353
|
):
|
|
343
354
|
"""Show hidden particles
|
|
@@ -355,6 +366,7 @@ def select_all(
|
|
|
355
366
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
356
367
|
execution_context: str | int | None = None,
|
|
357
368
|
undo: bool | None = None,
|
|
369
|
+
*,
|
|
358
370
|
action: str | None = "TOGGLE",
|
|
359
371
|
):
|
|
360
372
|
"""(De)select all particles' keys
|
|
@@ -412,6 +424,7 @@ def select_linked_pick(
|
|
|
412
424
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
413
425
|
execution_context: str | int | None = None,
|
|
414
426
|
undo: bool | None = None,
|
|
427
|
+
*,
|
|
415
428
|
deselect: bool | typing.Any | None = False,
|
|
416
429
|
location: typing.Any | None = (0, 0),
|
|
417
430
|
):
|
|
@@ -446,6 +459,7 @@ def select_random(
|
|
|
446
459
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
447
460
|
execution_context: str | int | None = None,
|
|
448
461
|
undo: bool | None = None,
|
|
462
|
+
*,
|
|
449
463
|
ratio: typing.Any | None = 0.5,
|
|
450
464
|
seed: typing.Any | None = 0,
|
|
451
465
|
action: str | None = "SELECT",
|
|
@@ -478,6 +492,7 @@ def select_roots(
|
|
|
478
492
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
479
493
|
execution_context: str | int | None = None,
|
|
480
494
|
undo: bool | None = None,
|
|
495
|
+
*,
|
|
481
496
|
action: str | None = "SELECT",
|
|
482
497
|
):
|
|
483
498
|
"""Select roots of all visible particles
|
|
@@ -507,6 +522,7 @@ def select_tips(
|
|
|
507
522
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
508
523
|
execution_context: str | int | None = None,
|
|
509
524
|
undo: bool | None = None,
|
|
525
|
+
*,
|
|
510
526
|
action: str | None = "SELECT",
|
|
511
527
|
):
|
|
512
528
|
"""Select tips of all visible particles
|
|
@@ -620,6 +636,7 @@ def weight_set(
|
|
|
620
636
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
621
637
|
execution_context: str | int | None = None,
|
|
622
638
|
undo: bool | None = None,
|
|
639
|
+
*,
|
|
623
640
|
factor: typing.Any | None = 1.0,
|
|
624
641
|
):
|
|
625
642
|
"""Set the weight of selected keys
|
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def armature_apply(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
selected: bool | typing.Any | None = False,
|
|
13
14
|
):
|
|
14
15
|
"""Apply the current pose as the new rest pose
|
|
@@ -26,6 +27,7 @@ def autoside_names(
|
|
|
26
27
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
27
28
|
execution_context: str | int | None = None,
|
|
28
29
|
undo: bool | None = None,
|
|
30
|
+
*,
|
|
29
31
|
axis: str | None = "XAXIS",
|
|
30
32
|
):
|
|
31
33
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
@@ -52,6 +54,7 @@ def blend_to_neighbor(
|
|
|
52
54
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
53
55
|
execution_context: str | int | None = None,
|
|
54
56
|
undo: bool | None = None,
|
|
57
|
+
*,
|
|
55
58
|
factor: typing.Any | None = 0.5,
|
|
56
59
|
prev_frame: typing.Any | None = 0,
|
|
57
60
|
next_frame: typing.Any | None = 0,
|
|
@@ -111,6 +114,7 @@ def blend_with_rest(
|
|
|
111
114
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
112
115
|
execution_context: str | int | None = None,
|
|
113
116
|
undo: bool | None = None,
|
|
117
|
+
*,
|
|
114
118
|
factor: typing.Any | None = 0.5,
|
|
115
119
|
prev_frame: typing.Any | None = 0,
|
|
116
120
|
next_frame: typing.Any | None = 0,
|
|
@@ -170,6 +174,7 @@ def breakdown(
|
|
|
170
174
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
171
175
|
execution_context: str | int | None = None,
|
|
172
176
|
undo: bool | None = None,
|
|
177
|
+
*,
|
|
173
178
|
factor: typing.Any | None = 0.5,
|
|
174
179
|
prev_frame: typing.Any | None = 0,
|
|
175
180
|
next_frame: typing.Any | None = 0,
|
|
@@ -229,6 +234,7 @@ def constraint_add(
|
|
|
229
234
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
230
235
|
execution_context: str | int | None = None,
|
|
231
236
|
undo: bool | None = None,
|
|
237
|
+
*,
|
|
232
238
|
type: str | None = "",
|
|
233
239
|
):
|
|
234
240
|
"""Add a constraint to the active bone
|
|
@@ -246,6 +252,7 @@ def constraint_add_with_targets(
|
|
|
246
252
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
247
253
|
execution_context: str | int | None = None,
|
|
248
254
|
undo: bool | None = None,
|
|
255
|
+
*,
|
|
249
256
|
type: str | None = "",
|
|
250
257
|
):
|
|
251
258
|
"""Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
|
|
@@ -305,6 +312,7 @@ def flip_names(
|
|
|
305
312
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
306
313
|
execution_context: str | int | None = None,
|
|
307
314
|
undo: bool | None = None,
|
|
315
|
+
*,
|
|
308
316
|
do_strip_numbers: bool | typing.Any | None = False,
|
|
309
317
|
):
|
|
310
318
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
@@ -322,6 +330,7 @@ def hide(
|
|
|
322
330
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
323
331
|
execution_context: str | int | None = None,
|
|
324
332
|
undo: bool | None = None,
|
|
333
|
+
*,
|
|
325
334
|
unselected: bool | typing.Any | None = False,
|
|
326
335
|
):
|
|
327
336
|
"""Tag selected bones to not be visible in Pose Mode
|
|
@@ -339,6 +348,7 @@ def ik_add(
|
|
|
339
348
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
340
349
|
execution_context: str | int | None = None,
|
|
341
350
|
undo: bool | None = None,
|
|
351
|
+
*,
|
|
342
352
|
with_targets: bool | typing.Any | None = True,
|
|
343
353
|
):
|
|
344
354
|
"""Add IK Constraint to the active Bone
|
|
@@ -384,6 +394,7 @@ def paste(
|
|
|
384
394
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
385
395
|
execution_context: str | int | None = None,
|
|
386
396
|
undo: bool | None = None,
|
|
397
|
+
*,
|
|
387
398
|
flipped: bool | typing.Any | None = False,
|
|
388
399
|
selected_mask: bool | typing.Any | None = False,
|
|
389
400
|
):
|
|
@@ -404,6 +415,7 @@ def paths_calculate(
|
|
|
404
415
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
405
416
|
execution_context: str | int | None = None,
|
|
406
417
|
undo: bool | None = None,
|
|
418
|
+
*,
|
|
407
419
|
display_type: str | None = "RANGE",
|
|
408
420
|
range: str | None = "SCENE",
|
|
409
421
|
bake_location: str | None = "HEADS",
|
|
@@ -427,6 +439,7 @@ def paths_clear(
|
|
|
427
439
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
428
440
|
execution_context: str | int | None = None,
|
|
429
441
|
undo: bool | None = None,
|
|
442
|
+
*,
|
|
430
443
|
only_selected: bool | typing.Any | None = False,
|
|
431
444
|
):
|
|
432
445
|
"""Undocumented, consider contributing.
|
|
@@ -472,6 +485,7 @@ def propagate(
|
|
|
472
485
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
473
486
|
execution_context: str | int | None = None,
|
|
474
487
|
undo: bool | None = None,
|
|
488
|
+
*,
|
|
475
489
|
mode: str | None = "NEXT_KEY",
|
|
476
490
|
end_frame: typing.Any | None = 250.0,
|
|
477
491
|
):
|
|
@@ -510,6 +524,7 @@ def push(
|
|
|
510
524
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
511
525
|
execution_context: str | int | None = None,
|
|
512
526
|
undo: bool | None = None,
|
|
527
|
+
*,
|
|
513
528
|
factor: typing.Any | None = 0.5,
|
|
514
529
|
prev_frame: typing.Any | None = 0,
|
|
515
530
|
next_frame: typing.Any | None = 0,
|
|
@@ -583,6 +598,7 @@ def relax(
|
|
|
583
598
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
584
599
|
execution_context: str | int | None = None,
|
|
585
600
|
undo: bool | None = None,
|
|
601
|
+
*,
|
|
586
602
|
factor: typing.Any | None = 0.5,
|
|
587
603
|
prev_frame: typing.Any | None = 0,
|
|
588
604
|
next_frame: typing.Any | None = 0,
|
|
@@ -642,6 +658,7 @@ def reveal(
|
|
|
642
658
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
643
659
|
execution_context: str | int | None = None,
|
|
644
660
|
undo: bool | None = None,
|
|
661
|
+
*,
|
|
645
662
|
select: bool | typing.Any | None = True,
|
|
646
663
|
):
|
|
647
664
|
"""Reveal all bones hidden in Pose Mode
|
|
@@ -673,6 +690,7 @@ def rotation_mode_set(
|
|
|
673
690
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
674
691
|
execution_context: str | int | None = None,
|
|
675
692
|
undo: bool | None = None,
|
|
693
|
+
*,
|
|
676
694
|
type: str | None = "QUATERNION",
|
|
677
695
|
):
|
|
678
696
|
"""Set the rotation representation used by selected bones
|
|
@@ -704,6 +722,7 @@ def select_all(
|
|
|
704
722
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
705
723
|
execution_context: str | int | None = None,
|
|
706
724
|
undo: bool | None = None,
|
|
725
|
+
*,
|
|
707
726
|
action: str | None = "TOGGLE",
|
|
708
727
|
):
|
|
709
728
|
"""Toggle selection status of all bones
|
|
@@ -747,6 +766,7 @@ def select_grouped(
|
|
|
747
766
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
748
767
|
execution_context: str | int | None = None,
|
|
749
768
|
undo: bool | None = None,
|
|
769
|
+
*,
|
|
750
770
|
extend: bool | typing.Any | None = False,
|
|
751
771
|
type: str | None = "COLLECTION",
|
|
752
772
|
):
|
|
@@ -776,6 +796,7 @@ def select_hierarchy(
|
|
|
776
796
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
777
797
|
execution_context: str | int | None = None,
|
|
778
798
|
undo: bool | None = None,
|
|
799
|
+
*,
|
|
779
800
|
direction: str | None = "PARENT",
|
|
780
801
|
extend: bool | typing.Any | None = False,
|
|
781
802
|
):
|
|
@@ -810,6 +831,7 @@ def select_linked_pick(
|
|
|
810
831
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
811
832
|
execution_context: str | int | None = None,
|
|
812
833
|
undo: bool | None = None,
|
|
834
|
+
*,
|
|
813
835
|
extend: bool | typing.Any | None = False,
|
|
814
836
|
):
|
|
815
837
|
"""Select bones linked by parent/child connections under the mouse cursor
|
|
@@ -827,6 +849,7 @@ def select_mirror(
|
|
|
827
849
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
828
850
|
execution_context: str | int | None = None,
|
|
829
851
|
undo: bool | None = None,
|
|
852
|
+
*,
|
|
830
853
|
only_active: bool | typing.Any | None = False,
|
|
831
854
|
extend: bool | typing.Any | None = False,
|
|
832
855
|
):
|
|
@@ -875,6 +898,7 @@ def user_transforms_clear(
|
|
|
875
898
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
876
899
|
execution_context: str | int | None = None,
|
|
877
900
|
undo: bool | None = None,
|
|
901
|
+
*,
|
|
878
902
|
only_selected: bool | typing.Any | None = True,
|
|
879
903
|
):
|
|
880
904
|
"""Reset pose bone transforms to keyframed state
|
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def apply_pose_asset(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
blend_factor: typing.Any | None = 1.0,
|
|
13
14
|
flipped: bool | typing.Any | None = False,
|
|
14
15
|
):
|
|
@@ -29,6 +30,7 @@ def blend_pose_asset(
|
|
|
29
30
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
30
31
|
execution_context: str | int | None = None,
|
|
31
32
|
undo: bool | None = None,
|
|
33
|
+
*,
|
|
32
34
|
blend_factor: typing.Any | None = 0.0,
|
|
33
35
|
flipped: bool | typing.Any | None = False,
|
|
34
36
|
release_confirm: bool | typing.Any | None = False,
|
|
@@ -94,6 +96,7 @@ def create_pose_asset(
|
|
|
94
96
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
95
97
|
execution_context: str | int | None = None,
|
|
96
98
|
undo: bool | None = None,
|
|
99
|
+
*,
|
|
97
100
|
pose_name: str | typing.Any = "",
|
|
98
101
|
activate_new_action: bool | typing.Any | None = True,
|
|
99
102
|
):
|
|
@@ -128,6 +131,7 @@ def pose_asset_select_bones(
|
|
|
128
131
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
129
132
|
execution_context: str | int | None = None,
|
|
130
133
|
undo: bool | None = None,
|
|
134
|
+
*,
|
|
131
135
|
select: bool | typing.Any | None = True,
|
|
132
136
|
flipped: bool | typing.Any | None = False,
|
|
133
137
|
):
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def addon_disable(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
module: str | typing.Any = "",
|
|
13
14
|
):
|
|
14
15
|
"""Turn off this extension
|
|
@@ -26,6 +27,7 @@ def addon_enable(
|
|
|
26
27
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
27
28
|
execution_context: str | int | None = None,
|
|
28
29
|
undo: bool | None = None,
|
|
30
|
+
*,
|
|
29
31
|
module: str | typing.Any = "",
|
|
30
32
|
):
|
|
31
33
|
"""Turn on this extension
|
|
@@ -43,6 +45,7 @@ def addon_expand(
|
|
|
43
45
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
44
46
|
execution_context: str | int | None = None,
|
|
45
47
|
undo: bool | None = None,
|
|
48
|
+
*,
|
|
46
49
|
module: str | typing.Any = "",
|
|
47
50
|
):
|
|
48
51
|
"""Display information and preferences for this add-on
|
|
@@ -60,6 +63,7 @@ def addon_install(
|
|
|
60
63
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
61
64
|
execution_context: str | int | None = None,
|
|
62
65
|
undo: bool | None = None,
|
|
66
|
+
*,
|
|
63
67
|
overwrite: bool | typing.Any | None = True,
|
|
64
68
|
target: str | None = "",
|
|
65
69
|
filepath: str | typing.Any = "",
|
|
@@ -106,6 +110,7 @@ def addon_remove(
|
|
|
106
110
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
107
111
|
execution_context: str | int | None = None,
|
|
108
112
|
undo: bool | None = None,
|
|
113
|
+
*,
|
|
109
114
|
module: str | typing.Any = "",
|
|
110
115
|
):
|
|
111
116
|
"""Delete the add-on from the file system
|
|
@@ -123,6 +128,7 @@ def addon_show(
|
|
|
123
128
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
124
129
|
execution_context: str | int | None = None,
|
|
125
130
|
undo: bool | None = None,
|
|
131
|
+
*,
|
|
126
132
|
module: str | typing.Any = "",
|
|
127
133
|
):
|
|
128
134
|
"""Show add-on preferences
|
|
@@ -140,6 +146,7 @@ def app_template_install(
|
|
|
140
146
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
141
147
|
execution_context: str | int | None = None,
|
|
142
148
|
undo: bool | None = None,
|
|
149
|
+
*,
|
|
143
150
|
overwrite: bool | typing.Any | None = True,
|
|
144
151
|
filepath: str | typing.Any = "",
|
|
145
152
|
filter_folder: bool | typing.Any | None = True,
|
|
@@ -166,6 +173,7 @@ def asset_library_add(
|
|
|
166
173
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
167
174
|
execution_context: str | int | None = None,
|
|
168
175
|
undo: bool | None = None,
|
|
176
|
+
*,
|
|
169
177
|
directory: str | typing.Any = "",
|
|
170
178
|
hide_props_region: bool | typing.Any | None = True,
|
|
171
179
|
check_existing: bool | typing.Any | None = False,
|
|
@@ -261,6 +269,7 @@ def asset_library_remove(
|
|
|
261
269
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
262
270
|
execution_context: str | int | None = None,
|
|
263
271
|
undo: bool | None = None,
|
|
272
|
+
*,
|
|
264
273
|
index: typing.Any | None = 0,
|
|
265
274
|
):
|
|
266
275
|
"""Remove a path to a .blend file, so the Asset Browser will not attempt to show it anymore
|
|
@@ -306,6 +315,7 @@ def autoexec_path_remove(
|
|
|
306
315
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
307
316
|
execution_context: str | int | None = None,
|
|
308
317
|
undo: bool | None = None,
|
|
318
|
+
*,
|
|
309
319
|
index: typing.Any | None = 0,
|
|
310
320
|
):
|
|
311
321
|
"""Remove path to exclude from auto-execution
|
|
@@ -337,6 +347,7 @@ def extension_repo_add(
|
|
|
337
347
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
338
348
|
execution_context: str | int | None = None,
|
|
339
349
|
undo: bool | None = None,
|
|
350
|
+
*,
|
|
340
351
|
name: str | typing.Any = "",
|
|
341
352
|
remote_url: str | typing.Any = "",
|
|
342
353
|
use_access_token: bool | typing.Any | None = False,
|
|
@@ -381,6 +392,7 @@ def extension_repo_remove(
|
|
|
381
392
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
382
393
|
execution_context: str | int | None = None,
|
|
383
394
|
undo: bool | None = None,
|
|
395
|
+
*,
|
|
384
396
|
index: typing.Any | None = 0,
|
|
385
397
|
type: str | None = "REPO_ONLY",
|
|
386
398
|
):
|
|
@@ -435,6 +447,7 @@ def extension_url_drop(
|
|
|
435
447
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
436
448
|
execution_context: str | int | None = None,
|
|
437
449
|
undo: bool | None = None,
|
|
450
|
+
*,
|
|
438
451
|
url: str | typing.Any = "",
|
|
439
452
|
):
|
|
440
453
|
"""Handle dropping an extension URL
|
|
@@ -452,6 +465,7 @@ def keyconfig_activate(
|
|
|
452
465
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
453
466
|
execution_context: str | int | None = None,
|
|
454
467
|
undo: bool | None = None,
|
|
468
|
+
*,
|
|
455
469
|
filepath: str | typing.Any = "",
|
|
456
470
|
):
|
|
457
471
|
"""Undocumented, consider contributing.
|
|
@@ -469,6 +483,7 @@ def keyconfig_export(
|
|
|
469
483
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
470
484
|
execution_context: str | int | None = None,
|
|
471
485
|
undo: bool | None = None,
|
|
486
|
+
*,
|
|
472
487
|
all: bool | typing.Any | None = False,
|
|
473
488
|
filepath: str | typing.Any = "",
|
|
474
489
|
filter_folder: bool | typing.Any | None = True,
|
|
@@ -498,6 +513,7 @@ def keyconfig_import(
|
|
|
498
513
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
499
514
|
execution_context: str | int | None = None,
|
|
500
515
|
undo: bool | None = None,
|
|
516
|
+
*,
|
|
501
517
|
filepath: str | typing.Any = "keymap.py",
|
|
502
518
|
filter_folder: bool | typing.Any | None = True,
|
|
503
519
|
filter_text: bool | typing.Any | None = True,
|
|
@@ -569,6 +585,7 @@ def keyitem_remove(
|
|
|
569
585
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
570
586
|
execution_context: str | int | None = None,
|
|
571
587
|
undo: bool | None = None,
|
|
588
|
+
*,
|
|
572
589
|
item_id: typing.Any | None = 0,
|
|
573
590
|
):
|
|
574
591
|
"""Remove key map item
|
|
@@ -586,6 +603,7 @@ def keyitem_restore(
|
|
|
586
603
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
587
604
|
execution_context: str | int | None = None,
|
|
588
605
|
undo: bool | None = None,
|
|
606
|
+
*,
|
|
589
607
|
item_id: typing.Any | None = 0,
|
|
590
608
|
):
|
|
591
609
|
"""Restore key map item
|
|
@@ -603,6 +621,7 @@ def keymap_restore(
|
|
|
603
621
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
604
622
|
execution_context: str | int | None = None,
|
|
605
623
|
undo: bool | None = None,
|
|
624
|
+
*,
|
|
606
625
|
all: bool | typing.Any | None = False,
|
|
607
626
|
):
|
|
608
627
|
"""Restore key map(s)
|
|
@@ -634,6 +653,7 @@ def script_directory_add(
|
|
|
634
653
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
635
654
|
execution_context: str | int | None = None,
|
|
636
655
|
undo: bool | None = None,
|
|
656
|
+
*,
|
|
637
657
|
directory: str | typing.Any = "",
|
|
638
658
|
filter_folder: bool | typing.Any | None = True,
|
|
639
659
|
):
|
|
@@ -654,6 +674,7 @@ def script_directory_remove(
|
|
|
654
674
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
655
675
|
execution_context: str | int | None = None,
|
|
656
676
|
undo: bool | None = None,
|
|
677
|
+
*,
|
|
657
678
|
index: typing.Any | None = 0,
|
|
658
679
|
):
|
|
659
680
|
"""Undocumented, consider contributing.
|
|
@@ -671,6 +692,7 @@ def studiolight_copy_settings(
|
|
|
671
692
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
672
693
|
execution_context: str | int | None = None,
|
|
673
694
|
undo: bool | None = None,
|
|
695
|
+
*,
|
|
674
696
|
index: typing.Any | None = 0,
|
|
675
697
|
):
|
|
676
698
|
"""Copy Studio Light settings to the Studio Light editor
|
|
@@ -688,6 +710,7 @@ def studiolight_install(
|
|
|
688
710
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
689
711
|
execution_context: str | int | None = None,
|
|
690
712
|
undo: bool | None = None,
|
|
713
|
+
*,
|
|
691
714
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
692
715
|
| None = None,
|
|
693
716
|
directory: str | typing.Any = "",
|
|
@@ -727,6 +750,7 @@ def studiolight_new(
|
|
|
727
750
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
728
751
|
execution_context: str | int | None = None,
|
|
729
752
|
undo: bool | None = None,
|
|
753
|
+
*,
|
|
730
754
|
filename: str | typing.Any = "StudioLight",
|
|
731
755
|
):
|
|
732
756
|
"""Save custom studio light from the studio light editor settings
|
|
@@ -740,24 +764,11 @@ def studiolight_new(
|
|
|
740
764
|
|
|
741
765
|
...
|
|
742
766
|
|
|
743
|
-
def studiolight_show(
|
|
744
|
-
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
745
|
-
execution_context: str | int | None = None,
|
|
746
|
-
undo: bool | None = None,
|
|
747
|
-
):
|
|
748
|
-
"""Show light preferences
|
|
749
|
-
|
|
750
|
-
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
751
|
-
:type execution_context: str | int | None
|
|
752
|
-
:type undo: bool | None
|
|
753
|
-
"""
|
|
754
|
-
|
|
755
|
-
...
|
|
756
|
-
|
|
757
767
|
def studiolight_uninstall(
|
|
758
768
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
759
769
|
execution_context: str | int | None = None,
|
|
760
770
|
undo: bool | None = None,
|
|
771
|
+
*,
|
|
761
772
|
index: typing.Any | None = 0,
|
|
762
773
|
):
|
|
763
774
|
"""Delete Studio Light
|
|
@@ -775,6 +786,7 @@ def theme_install(
|
|
|
775
786
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
776
787
|
execution_context: str | int | None = None,
|
|
777
788
|
undo: bool | None = None,
|
|
789
|
+
*,
|
|
778
790
|
overwrite: bool | typing.Any | None = True,
|
|
779
791
|
filepath: str | typing.Any = "",
|
|
780
792
|
filter_folder: bool | typing.Any | None = True,
|
bpy/ops/ptcache/__init__.pyi
CHANGED
|
@@ -23,6 +23,7 @@ def bake(
|
|
|
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
|
bake: bool | typing.Any | None = False,
|
|
27
28
|
):
|
|
28
29
|
"""Bake physics
|
|
@@ -40,6 +41,7 @@ def bake_all(
|
|
|
40
41
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
41
42
|
execution_context: str | int | None = None,
|
|
42
43
|
undo: bool | None = None,
|
|
44
|
+
*,
|
|
43
45
|
bake: bool | typing.Any | None = True,
|
|
44
46
|
):
|
|
45
47
|
"""Bake all physics
|
bpy/ops/render/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def cycles_integrator_preset_add(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
name: str | typing.Any = "",
|
|
13
14
|
remove_name: bool | typing.Any | None = False,
|
|
14
15
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -32,6 +33,7 @@ def cycles_performance_preset_add(
|
|
|
32
33
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
33
34
|
execution_context: str | int | None = None,
|
|
34
35
|
undo: bool | None = None,
|
|
36
|
+
*,
|
|
35
37
|
name: str | typing.Any = "",
|
|
36
38
|
remove_name: bool | typing.Any | None = False,
|
|
37
39
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -55,6 +57,7 @@ def cycles_sampling_preset_add(
|
|
|
55
57
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
56
58
|
execution_context: str | int | None = None,
|
|
57
59
|
undo: bool | None = None,
|
|
60
|
+
*,
|
|
58
61
|
name: str | typing.Any = "",
|
|
59
62
|
remove_name: bool | typing.Any | None = False,
|
|
60
63
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -78,6 +81,7 @@ def cycles_viewport_sampling_preset_add(
|
|
|
78
81
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
79
82
|
execution_context: str | int | None = None,
|
|
80
83
|
undo: bool | None = None,
|
|
84
|
+
*,
|
|
81
85
|
name: str | typing.Any = "",
|
|
82
86
|
remove_name: bool | typing.Any | None = False,
|
|
83
87
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -101,6 +105,7 @@ def eevee_raytracing_preset_add(
|
|
|
101
105
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
102
106
|
execution_context: str | int | None = None,
|
|
103
107
|
undo: bool | None = None,
|
|
108
|
+
*,
|
|
104
109
|
name: str | typing.Any = "",
|
|
105
110
|
remove_name: bool | typing.Any | None = False,
|
|
106
111
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -124,6 +129,7 @@ def opengl(
|
|
|
124
129
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
125
130
|
execution_context: str | int | None = None,
|
|
126
131
|
undo: bool | None = None,
|
|
132
|
+
*,
|
|
127
133
|
animation: bool | typing.Any | None = False,
|
|
128
134
|
render_keyed_only: bool | typing.Any | None = False,
|
|
129
135
|
sequencer: bool | typing.Any | None = False,
|
|
@@ -167,6 +173,7 @@ def preset_add(
|
|
|
167
173
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
168
174
|
execution_context: str | int | None = None,
|
|
169
175
|
undo: bool | None = None,
|
|
176
|
+
*,
|
|
170
177
|
name: str | typing.Any = "",
|
|
171
178
|
remove_name: bool | typing.Any | None = False,
|
|
172
179
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -190,6 +197,7 @@ def render(
|
|
|
190
197
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
191
198
|
execution_context: str | int | None = None,
|
|
192
199
|
undo: bool | None = None,
|
|
200
|
+
*,
|
|
193
201
|
animation: bool | typing.Any | None = False,
|
|
194
202
|
write_still: bool | typing.Any | None = False,
|
|
195
203
|
use_viewport: bool | typing.Any | None = False,
|
|
@@ -219,6 +227,7 @@ def shutter_curve_preset(
|
|
|
219
227
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
220
228
|
execution_context: str | int | None = None,
|
|
221
229
|
undo: bool | None = None,
|
|
230
|
+
*,
|
|
222
231
|
shape: str | None = "SMOOTH",
|
|
223
232
|
):
|
|
224
233
|
"""Set shutter curve
|