fake-bpy-module 20240620__py3-none-any.whl → 20240621__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -24,8 +24,8 @@ def change_frame(
|
|
|
24
24
|
execution_context: int | str | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
26
|
*,
|
|
27
|
-
frame:
|
|
28
|
-
snap: bool |
|
|
27
|
+
frame: float | None = 0.0,
|
|
28
|
+
snap: bool | None = False,
|
|
29
29
|
):
|
|
30
30
|
"""Interactively change the current frame number
|
|
31
31
|
|
|
@@ -33,9 +33,9 @@ def change_frame(
|
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param frame: Frame
|
|
36
|
-
:type frame:
|
|
36
|
+
:type frame: float | None
|
|
37
37
|
:param snap: Snap
|
|
38
|
-
:type snap: bool |
|
|
38
|
+
:type snap: bool | None
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
...
|
|
@@ -45,7 +45,7 @@ def channel_select_keys(
|
|
|
45
45
|
execution_context: int | str | None = None,
|
|
46
46
|
undo: bool | None = None,
|
|
47
47
|
*,
|
|
48
|
-
extend: bool |
|
|
48
|
+
extend: bool | None = False,
|
|
49
49
|
):
|
|
50
50
|
"""Select all keyframes of channel under mouse
|
|
51
51
|
|
|
@@ -53,7 +53,7 @@ def channel_select_keys(
|
|
|
53
53
|
:type execution_context: int | str | None
|
|
54
54
|
:type undo: bool | None
|
|
55
55
|
:param extend: Extend, Extend selection
|
|
56
|
-
:type extend: bool |
|
|
56
|
+
:type extend: bool | None
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
...
|
|
@@ -63,8 +63,8 @@ def channel_view_pick(
|
|
|
63
63
|
execution_context: int | str | None = None,
|
|
64
64
|
undo: bool | None = None,
|
|
65
65
|
*,
|
|
66
|
-
include_handles: bool |
|
|
67
|
-
use_preview_range: bool |
|
|
66
|
+
include_handles: bool | None = True,
|
|
67
|
+
use_preview_range: bool | None = True,
|
|
68
68
|
):
|
|
69
69
|
"""Reset viewable area to show the channel under the cursor
|
|
70
70
|
|
|
@@ -72,9 +72,9 @@ def channel_view_pick(
|
|
|
72
72
|
:type execution_context: int | str | None
|
|
73
73
|
:type undo: bool | None
|
|
74
74
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
75
|
-
:type include_handles: bool |
|
|
75
|
+
:type include_handles: bool | None
|
|
76
76
|
:param use_preview_range: Use Preview Range, Ignore frames outside of the preview range
|
|
77
|
-
:type use_preview_range: bool |
|
|
77
|
+
:type use_preview_range: bool | None
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
80
|
...
|
|
@@ -84,11 +84,11 @@ def channels_bake(
|
|
|
84
84
|
execution_context: int | str | None = None,
|
|
85
85
|
undo: bool | None = None,
|
|
86
86
|
*,
|
|
87
|
-
range:
|
|
88
|
-
step:
|
|
89
|
-
remove_outside_range: bool |
|
|
87
|
+
range: collections.abc.Iterable[int] | None = (0, 0),
|
|
88
|
+
step: float | None = 1.0,
|
|
89
|
+
remove_outside_range: bool | None = False,
|
|
90
90
|
interpolation_type: str | None = "BEZIER",
|
|
91
|
-
bake_modifiers: bool |
|
|
91
|
+
bake_modifiers: bool | None = True,
|
|
92
92
|
):
|
|
93
93
|
"""Create keyframes following the current shape of F-Curves of selected channels
|
|
94
94
|
|
|
@@ -96,11 +96,11 @@ def channels_bake(
|
|
|
96
96
|
:type execution_context: int | str | None
|
|
97
97
|
:type undo: bool | None
|
|
98
98
|
:param range: Frame Range, The range in which to create new keys
|
|
99
|
-
:type range:
|
|
99
|
+
:type range: collections.abc.Iterable[int] | None
|
|
100
100
|
:param step: Frame Step, At which interval to add keys
|
|
101
|
-
:type step:
|
|
101
|
+
:type step: float | None
|
|
102
102
|
:param remove_outside_range: Remove Outside Range, Removes keys outside the given range, leaving only the newly baked
|
|
103
|
-
:type remove_outside_range: bool |
|
|
103
|
+
:type remove_outside_range: bool | None
|
|
104
104
|
:param interpolation_type: Interpolation Type, Choose the interpolation type with which new keys will be added
|
|
105
105
|
|
|
106
106
|
BEZIER
|
|
@@ -113,7 +113,7 @@ def channels_bake(
|
|
|
113
113
|
Constant -- New keys will be constant.
|
|
114
114
|
:type interpolation_type: str | None
|
|
115
115
|
:param bake_modifiers: Bake Modifiers, Bake Modifiers into keyframes and delete them after
|
|
116
|
-
:type bake_modifiers: bool |
|
|
116
|
+
:type bake_modifiers: bool | None
|
|
117
117
|
"""
|
|
118
118
|
|
|
119
119
|
...
|
|
@@ -137,9 +137,9 @@ def channels_click(
|
|
|
137
137
|
execution_context: int | str | None = None,
|
|
138
138
|
undo: bool | None = None,
|
|
139
139
|
*,
|
|
140
|
-
extend: bool |
|
|
141
|
-
extend_range: bool |
|
|
142
|
-
children_only: bool |
|
|
140
|
+
extend: bool | None = False,
|
|
141
|
+
extend_range: bool | None = False,
|
|
142
|
+
children_only: bool | None = False,
|
|
143
143
|
):
|
|
144
144
|
"""Handle mouse clicks over animation channels
|
|
145
145
|
|
|
@@ -147,11 +147,11 @@ def channels_click(
|
|
|
147
147
|
:type execution_context: int | str | None
|
|
148
148
|
:type undo: bool | None
|
|
149
149
|
:param extend: Extend Select
|
|
150
|
-
:type extend: bool |
|
|
150
|
+
:type extend: bool | None
|
|
151
151
|
:param extend_range: Extend Range, Selection of active channel to clicked channel
|
|
152
|
-
:type extend_range: bool |
|
|
152
|
+
:type extend_range: bool | None
|
|
153
153
|
:param children_only: Select Children Only
|
|
154
|
-
:type children_only: bool |
|
|
154
|
+
:type children_only: bool | None
|
|
155
155
|
"""
|
|
156
156
|
|
|
157
157
|
...
|
|
@@ -161,7 +161,7 @@ def channels_collapse(
|
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
164
|
-
all: bool |
|
|
164
|
+
all: bool | None = True,
|
|
165
165
|
):
|
|
166
166
|
"""Collapse (close) all selected expandable animation channels
|
|
167
167
|
|
|
@@ -169,7 +169,7 @@ def channels_collapse(
|
|
|
169
169
|
:type execution_context: int | str | None
|
|
170
170
|
:type undo: bool | None
|
|
171
171
|
:param all: All, Collapse all channels (not just selected ones)
|
|
172
|
-
:type all: bool |
|
|
172
|
+
:type all: bool | None
|
|
173
173
|
"""
|
|
174
174
|
|
|
175
175
|
...
|
|
@@ -214,7 +214,7 @@ def channels_expand(
|
|
|
214
214
|
execution_context: int | str | None = None,
|
|
215
215
|
undo: bool | None = None,
|
|
216
216
|
*,
|
|
217
|
-
all: bool |
|
|
217
|
+
all: bool | None = True,
|
|
218
218
|
):
|
|
219
219
|
"""Expand (open) all selected expandable animation channels
|
|
220
220
|
|
|
@@ -222,7 +222,7 @@ def channels_expand(
|
|
|
222
222
|
:type execution_context: int | str | None
|
|
223
223
|
:type undo: bool | None
|
|
224
224
|
:param all: All, Expand all channels (not just selected ones)
|
|
225
|
-
:type all: bool |
|
|
225
|
+
:type all: bool | None
|
|
226
226
|
"""
|
|
227
227
|
|
|
228
228
|
...
|
|
@@ -246,7 +246,7 @@ def channels_group(
|
|
|
246
246
|
execution_context: int | str | None = None,
|
|
247
247
|
undo: bool | None = None,
|
|
248
248
|
*,
|
|
249
|
-
name: str
|
|
249
|
+
name: str = "New Group",
|
|
250
250
|
):
|
|
251
251
|
"""Add selected F-Curves to a new group
|
|
252
252
|
|
|
@@ -254,7 +254,7 @@ def channels_group(
|
|
|
254
254
|
:type execution_context: int | str | None
|
|
255
255
|
:type undo: bool | None
|
|
256
256
|
:param name: Name, Name of newly created group
|
|
257
|
-
:type name: str
|
|
257
|
+
:type name: str
|
|
258
258
|
"""
|
|
259
259
|
|
|
260
260
|
...
|
|
@@ -326,13 +326,13 @@ def channels_select_box(
|
|
|
326
326
|
execution_context: int | str | None = None,
|
|
327
327
|
undo: bool | None = None,
|
|
328
328
|
*,
|
|
329
|
-
xmin:
|
|
330
|
-
xmax:
|
|
331
|
-
ymin:
|
|
332
|
-
ymax:
|
|
333
|
-
wait_for_input: bool |
|
|
334
|
-
deselect: bool |
|
|
335
|
-
extend: bool |
|
|
329
|
+
xmin: int | None = 0,
|
|
330
|
+
xmax: int | None = 0,
|
|
331
|
+
ymin: int | None = 0,
|
|
332
|
+
ymax: int | None = 0,
|
|
333
|
+
wait_for_input: bool | None = True,
|
|
334
|
+
deselect: bool | None = False,
|
|
335
|
+
extend: bool | None = True,
|
|
336
336
|
):
|
|
337
337
|
"""Select all animation channels within the specified region
|
|
338
338
|
|
|
@@ -340,19 +340,19 @@ def channels_select_box(
|
|
|
340
340
|
:type execution_context: int | str | None
|
|
341
341
|
:type undo: bool | None
|
|
342
342
|
:param xmin: X Min
|
|
343
|
-
:type xmin:
|
|
343
|
+
:type xmin: int | None
|
|
344
344
|
:param xmax: X Max
|
|
345
|
-
:type xmax:
|
|
345
|
+
:type xmax: int | None
|
|
346
346
|
:param ymin: Y Min
|
|
347
|
-
:type ymin:
|
|
347
|
+
:type ymin: int | None
|
|
348
348
|
:param ymax: Y Max
|
|
349
|
-
:type ymax:
|
|
349
|
+
:type ymax: int | None
|
|
350
350
|
:param wait_for_input: Wait for Input
|
|
351
|
-
:type wait_for_input: bool |
|
|
351
|
+
:type wait_for_input: bool | None
|
|
352
352
|
:param deselect: Deselect, Deselect rather than select items
|
|
353
|
-
:type deselect: bool |
|
|
353
|
+
:type deselect: bool | None
|
|
354
354
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
355
|
-
:type extend: bool |
|
|
355
|
+
:type extend: bool | None
|
|
356
356
|
"""
|
|
357
357
|
|
|
358
358
|
...
|
|
@@ -453,8 +453,8 @@ def channels_view_selected(
|
|
|
453
453
|
execution_context: int | str | None = None,
|
|
454
454
|
undo: bool | None = None,
|
|
455
455
|
*,
|
|
456
|
-
include_handles: bool |
|
|
457
|
-
use_preview_range: bool |
|
|
456
|
+
include_handles: bool | None = True,
|
|
457
|
+
use_preview_range: bool | None = True,
|
|
458
458
|
):
|
|
459
459
|
"""Reset viewable area to show the selected channels
|
|
460
460
|
|
|
@@ -462,9 +462,9 @@ def channels_view_selected(
|
|
|
462
462
|
:type execution_context: int | str | None
|
|
463
463
|
:type undo: bool | None
|
|
464
464
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
465
|
-
:type include_handles: bool |
|
|
465
|
+
:type include_handles: bool | None
|
|
466
466
|
:param use_preview_range: Use Preview Range, Ignore frames outside of the preview range
|
|
467
|
-
:type use_preview_range: bool |
|
|
467
|
+
:type use_preview_range: bool | None
|
|
468
468
|
"""
|
|
469
469
|
|
|
470
470
|
...
|
|
@@ -474,7 +474,7 @@ def clear_useless_actions(
|
|
|
474
474
|
execution_context: int | str | None = None,
|
|
475
475
|
undo: bool | None = None,
|
|
476
476
|
*,
|
|
477
|
-
only_unused: bool |
|
|
477
|
+
only_unused: bool | None = True,
|
|
478
478
|
):
|
|
479
479
|
"""Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries"
|
|
480
480
|
|
|
@@ -482,7 +482,7 @@ def clear_useless_actions(
|
|
|
482
482
|
:type execution_context: int | str | None
|
|
483
483
|
:type undo: bool | None
|
|
484
484
|
:param only_unused: Only Unused, Only unused (Fake User only) actions get considered
|
|
485
|
-
:type only_unused: bool |
|
|
485
|
+
:type only_unused: bool | None
|
|
486
486
|
"""
|
|
487
487
|
|
|
488
488
|
...
|
|
@@ -534,7 +534,7 @@ def driver_button_remove(
|
|
|
534
534
|
execution_context: int | str | None = None,
|
|
535
535
|
undo: bool | None = None,
|
|
536
536
|
*,
|
|
537
|
-
all: bool |
|
|
537
|
+
all: bool | None = True,
|
|
538
538
|
):
|
|
539
539
|
"""Remove the driver(s) for the connected property(s) represented by the highlighted button
|
|
540
540
|
|
|
@@ -542,7 +542,7 @@ def driver_button_remove(
|
|
|
542
542
|
:type execution_context: int | str | None
|
|
543
543
|
:type undo: bool | None
|
|
544
544
|
:param all: All, Delete drivers for all elements of the array
|
|
545
|
-
:type all: bool |
|
|
545
|
+
:type all: bool | None
|
|
546
546
|
"""
|
|
547
547
|
|
|
548
548
|
...
|
|
@@ -566,7 +566,7 @@ def keyframe_clear_button(
|
|
|
566
566
|
execution_context: int | str | None = None,
|
|
567
567
|
undo: bool | None = None,
|
|
568
568
|
*,
|
|
569
|
-
all: bool |
|
|
569
|
+
all: bool | None = True,
|
|
570
570
|
):
|
|
571
571
|
"""Clear all keyframes on the currently active property
|
|
572
572
|
|
|
@@ -574,7 +574,7 @@ def keyframe_clear_button(
|
|
|
574
574
|
:type execution_context: int | str | None
|
|
575
575
|
:type undo: bool | None
|
|
576
576
|
:param all: All, Clear keyframes from all elements of the array
|
|
577
|
-
:type all: bool |
|
|
577
|
+
:type all: bool | None
|
|
578
578
|
"""
|
|
579
579
|
|
|
580
580
|
...
|
|
@@ -584,7 +584,7 @@ def keyframe_clear_v3d(
|
|
|
584
584
|
execution_context: int | str | None = None,
|
|
585
585
|
undo: bool | None = None,
|
|
586
586
|
*,
|
|
587
|
-
confirm: bool |
|
|
587
|
+
confirm: bool | None = True,
|
|
588
588
|
):
|
|
589
589
|
"""Remove all keyframe animation for selected objects
|
|
590
590
|
|
|
@@ -592,7 +592,7 @@ def keyframe_clear_v3d(
|
|
|
592
592
|
:type execution_context: int | str | None
|
|
593
593
|
:type undo: bool | None
|
|
594
594
|
:param confirm: Confirm, Prompt for confirmation
|
|
595
|
-
:type confirm: bool |
|
|
595
|
+
:type confirm: bool | None
|
|
596
596
|
"""
|
|
597
597
|
|
|
598
598
|
...
|
|
@@ -620,7 +620,7 @@ def keyframe_delete_button(
|
|
|
620
620
|
execution_context: int | str | None = None,
|
|
621
621
|
undo: bool | None = None,
|
|
622
622
|
*,
|
|
623
|
-
all: bool |
|
|
623
|
+
all: bool | None = True,
|
|
624
624
|
):
|
|
625
625
|
"""Delete current keyframe of current UI-active property
|
|
626
626
|
|
|
@@ -628,7 +628,7 @@ def keyframe_delete_button(
|
|
|
628
628
|
:type execution_context: int | str | None
|
|
629
629
|
:type undo: bool | None
|
|
630
630
|
:param all: All, Delete keyframes from all elements of the array
|
|
631
|
-
:type all: bool |
|
|
631
|
+
:type all: bool | None
|
|
632
632
|
"""
|
|
633
633
|
|
|
634
634
|
...
|
|
@@ -638,7 +638,7 @@ def keyframe_delete_by_name(
|
|
|
638
638
|
execution_context: int | str | None = None,
|
|
639
639
|
undo: bool | None = None,
|
|
640
640
|
*,
|
|
641
|
-
type: str
|
|
641
|
+
type: str = "",
|
|
642
642
|
):
|
|
643
643
|
"""Alternate access to 'Delete Keyframe' for keymaps to use
|
|
644
644
|
|
|
@@ -646,7 +646,7 @@ def keyframe_delete_by_name(
|
|
|
646
646
|
:type execution_context: int | str | None
|
|
647
647
|
:type undo: bool | None
|
|
648
648
|
:param type: Keying Set, The Keying Set to use
|
|
649
|
-
:type type: str
|
|
649
|
+
:type type: str
|
|
650
650
|
"""
|
|
651
651
|
|
|
652
652
|
...
|
|
@@ -656,7 +656,7 @@ def keyframe_delete_v3d(
|
|
|
656
656
|
execution_context: int | str | None = None,
|
|
657
657
|
undo: bool | None = None,
|
|
658
658
|
*,
|
|
659
|
-
confirm: bool |
|
|
659
|
+
confirm: bool | None = True,
|
|
660
660
|
):
|
|
661
661
|
"""Remove keyframes on current frame for selected objects and bones
|
|
662
662
|
|
|
@@ -664,7 +664,7 @@ def keyframe_delete_v3d(
|
|
|
664
664
|
:type execution_context: int | str | None
|
|
665
665
|
:type undo: bool | None
|
|
666
666
|
:param confirm: Confirm, Prompt for confirmation
|
|
667
|
-
:type confirm: bool |
|
|
667
|
+
:type confirm: bool | None
|
|
668
668
|
"""
|
|
669
669
|
|
|
670
670
|
...
|
|
@@ -692,7 +692,7 @@ def keyframe_insert_button(
|
|
|
692
692
|
execution_context: int | str | None = None,
|
|
693
693
|
undo: bool | None = None,
|
|
694
694
|
*,
|
|
695
|
-
all: bool |
|
|
695
|
+
all: bool | None = True,
|
|
696
696
|
):
|
|
697
697
|
"""Insert a keyframe for current UI-active property
|
|
698
698
|
|
|
@@ -700,7 +700,7 @@ def keyframe_insert_button(
|
|
|
700
700
|
:type execution_context: int | str | None
|
|
701
701
|
:type undo: bool | None
|
|
702
702
|
:param all: All, Insert a keyframe for all element of the array
|
|
703
|
-
:type all: bool |
|
|
703
|
+
:type all: bool | None
|
|
704
704
|
"""
|
|
705
705
|
|
|
706
706
|
...
|
|
@@ -710,7 +710,7 @@ def keyframe_insert_by_name(
|
|
|
710
710
|
execution_context: int | str | None = None,
|
|
711
711
|
undo: bool | None = None,
|
|
712
712
|
*,
|
|
713
|
-
type: str
|
|
713
|
+
type: str = "",
|
|
714
714
|
):
|
|
715
715
|
"""Alternate access to 'Insert Keyframe' for keymaps to use
|
|
716
716
|
|
|
@@ -718,7 +718,7 @@ def keyframe_insert_by_name(
|
|
|
718
718
|
:type execution_context: int | str | None
|
|
719
719
|
:type undo: bool | None
|
|
720
720
|
:param type: Keying Set, The Keying Set to use
|
|
721
|
-
:type type: str
|
|
721
|
+
:type type: str
|
|
722
722
|
"""
|
|
723
723
|
|
|
724
724
|
...
|
|
@@ -729,7 +729,7 @@ def keyframe_insert_menu(
|
|
|
729
729
|
undo: bool | None = None,
|
|
730
730
|
*,
|
|
731
731
|
type: str | None = "DEFAULT",
|
|
732
|
-
always_prompt: bool |
|
|
732
|
+
always_prompt: bool | None = False,
|
|
733
733
|
):
|
|
734
734
|
"""Insert Keyframes for specified Keying Set, with menu of available Keying Sets if undefined
|
|
735
735
|
|
|
@@ -739,7 +739,7 @@ def keyframe_insert_menu(
|
|
|
739
739
|
:param type: Keying Set, The Keying Set to use
|
|
740
740
|
:type type: str | None
|
|
741
741
|
:param always_prompt: Always Show Menu
|
|
742
|
-
:type always_prompt: bool |
|
|
742
|
+
:type always_prompt: bool | None
|
|
743
743
|
"""
|
|
744
744
|
|
|
745
745
|
...
|
|
@@ -781,10 +781,10 @@ def keying_set_export(
|
|
|
781
781
|
execution_context: int | str | None = None,
|
|
782
782
|
undo: bool | None = None,
|
|
783
783
|
*,
|
|
784
|
-
filepath: str
|
|
785
|
-
filter_folder: bool |
|
|
786
|
-
filter_text: bool |
|
|
787
|
-
filter_python: bool |
|
|
784
|
+
filepath: str = "",
|
|
785
|
+
filter_folder: bool | None = True,
|
|
786
|
+
filter_text: bool | None = True,
|
|
787
|
+
filter_python: bool | None = True,
|
|
788
788
|
):
|
|
789
789
|
"""Export Keying Set to a Python script
|
|
790
790
|
|
|
@@ -792,13 +792,13 @@ def keying_set_export(
|
|
|
792
792
|
:type execution_context: int | str | None
|
|
793
793
|
:type undo: bool | None
|
|
794
794
|
:param filepath: filepath
|
|
795
|
-
:type filepath: str
|
|
795
|
+
:type filepath: str
|
|
796
796
|
:param filter_folder: Filter folders
|
|
797
|
-
:type filter_folder: bool |
|
|
797
|
+
:type filter_folder: bool | None
|
|
798
798
|
:param filter_text: Filter text
|
|
799
|
-
:type filter_text: bool |
|
|
799
|
+
:type filter_text: bool | None
|
|
800
800
|
:param filter_python: Filter Python
|
|
801
|
-
:type filter_python: bool |
|
|
801
|
+
:type filter_python: bool | None
|
|
802
802
|
"""
|
|
803
803
|
|
|
804
804
|
...
|
|
@@ -850,7 +850,7 @@ def keyingset_button_add(
|
|
|
850
850
|
execution_context: int | str | None = None,
|
|
851
851
|
undo: bool | None = None,
|
|
852
852
|
*,
|
|
853
|
-
all: bool |
|
|
853
|
+
all: bool | None = True,
|
|
854
854
|
):
|
|
855
855
|
"""Add current UI-active property to current keying set
|
|
856
856
|
|
|
@@ -858,7 +858,7 @@ def keyingset_button_add(
|
|
|
858
858
|
:type execution_context: int | str | None
|
|
859
859
|
:type undo: bool | None
|
|
860
860
|
:param all: All, Add all elements of the array to a Keying Set
|
|
861
|
-
:type all: bool |
|
|
861
|
+
:type all: bool | None
|
|
862
862
|
"""
|
|
863
863
|
|
|
864
864
|
...
|
|
@@ -910,11 +910,11 @@ def previewrange_set(
|
|
|
910
910
|
execution_context: int | str | None = None,
|
|
911
911
|
undo: bool | None = None,
|
|
912
912
|
*,
|
|
913
|
-
xmin:
|
|
914
|
-
xmax:
|
|
915
|
-
ymin:
|
|
916
|
-
ymax:
|
|
917
|
-
wait_for_input: bool |
|
|
913
|
+
xmin: int | None = 0,
|
|
914
|
+
xmax: int | None = 0,
|
|
915
|
+
ymin: int | None = 0,
|
|
916
|
+
ymax: int | None = 0,
|
|
917
|
+
wait_for_input: bool | None = True,
|
|
918
918
|
):
|
|
919
919
|
"""Interactively define frame range used for playback
|
|
920
920
|
|
|
@@ -922,15 +922,15 @@ def previewrange_set(
|
|
|
922
922
|
:type execution_context: int | str | None
|
|
923
923
|
:type undo: bool | None
|
|
924
924
|
:param xmin: X Min
|
|
925
|
-
:type xmin:
|
|
925
|
+
:type xmin: int | None
|
|
926
926
|
:param xmax: X Max
|
|
927
|
-
:type xmax:
|
|
927
|
+
:type xmax: int | None
|
|
928
928
|
:param ymin: Y Min
|
|
929
|
-
:type ymin:
|
|
929
|
+
:type ymin: int | None
|
|
930
930
|
:param ymax: Y Max
|
|
931
|
-
:type ymax:
|
|
931
|
+
:type ymax: int | None
|
|
932
932
|
:param wait_for_input: Wait for Input
|
|
933
|
-
:type wait_for_input: bool |
|
|
933
|
+
:type wait_for_input: bool | None
|
|
934
934
|
"""
|
|
935
935
|
|
|
936
936
|
...
|
|
@@ -968,7 +968,7 @@ def update_animated_transform_constraints(
|
|
|
968
968
|
execution_context: int | str | None = None,
|
|
969
969
|
undo: bool | None = None,
|
|
970
970
|
*,
|
|
971
|
-
use_convert_to_radians: bool |
|
|
971
|
+
use_convert_to_radians: bool | None = True,
|
|
972
972
|
):
|
|
973
973
|
"""Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)
|
|
974
974
|
|
|
@@ -976,7 +976,7 @@ def update_animated_transform_constraints(
|
|
|
976
976
|
:type execution_context: int | str | None
|
|
977
977
|
:type undo: bool | None
|
|
978
978
|
:param use_convert_to_radians: Convert to Radians, Convert f-curves/drivers affecting rotations to radians.Warning: Use this only once
|
|
979
|
-
:type use_convert_to_radians: bool |
|
|
979
|
+
:type use_convert_to_radians: bool | None
|
|
980
980
|
"""
|
|
981
981
|
|
|
982
982
|
...
|
|
@@ -986,8 +986,8 @@ def view_curve_in_graph_editor(
|
|
|
986
986
|
execution_context: int | str | None = None,
|
|
987
987
|
undo: bool | None = None,
|
|
988
988
|
*,
|
|
989
|
-
all: bool |
|
|
990
|
-
isolate: bool |
|
|
989
|
+
all: bool | None = False,
|
|
990
|
+
isolate: bool | None = False,
|
|
991
991
|
):
|
|
992
992
|
"""Frame the property under the cursor in the Graph Editor
|
|
993
993
|
|
|
@@ -995,9 +995,9 @@ def view_curve_in_graph_editor(
|
|
|
995
995
|
:type execution_context: int | str | None
|
|
996
996
|
:type undo: bool | None
|
|
997
997
|
:param all: Show All, Frame the whole array property instead of only the index under the cursor
|
|
998
|
-
:type all: bool |
|
|
998
|
+
:type all: bool | None
|
|
999
999
|
:param isolate: Isolate, Hides all F-Curves other than the ones being framed
|
|
1000
|
-
:type isolate: bool |
|
|
1000
|
+
:type isolate: bool | None
|
|
1001
1001
|
"""
|
|
1002
1002
|
|
|
1003
1003
|
...
|