fake-bpy-module 20240927__py3-none-any.whl → 20240929__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def change_frame(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -13,7 +13,7 @@ def change_frame(
|
|
|
13
13
|
):
|
|
14
14
|
"""Interactively change the current frame number
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param frame: Frame
|
|
@@ -23,7 +23,7 @@ def change_frame(
|
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
def channel_select_keys(
|
|
26
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
27
27
|
execution_context: int | str | None = None,
|
|
28
28
|
undo: bool | None = None,
|
|
29
29
|
*,
|
|
@@ -31,7 +31,7 @@ def channel_select_keys(
|
|
|
31
31
|
):
|
|
32
32
|
"""Select all keyframes of channel under mouse
|
|
33
33
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
35
35
|
:type execution_context: int | str | None
|
|
36
36
|
:type undo: bool | None
|
|
37
37
|
:param extend: Extend, Extend selection
|
|
@@ -39,7 +39,7 @@ def channel_select_keys(
|
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
def channel_view_pick(
|
|
42
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
42
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
*,
|
|
@@ -48,7 +48,7 @@ def channel_view_pick(
|
|
|
48
48
|
):
|
|
49
49
|
"""Reset viewable area to show the channel under the cursor
|
|
50
50
|
|
|
51
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
52
52
|
:type execution_context: int | str | None
|
|
53
53
|
:type undo: bool | None
|
|
54
54
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
@@ -58,7 +58,7 @@ def channel_view_pick(
|
|
|
58
58
|
"""
|
|
59
59
|
|
|
60
60
|
def channels_bake(
|
|
61
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
61
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
62
62
|
execution_context: int | str | None = None,
|
|
63
63
|
undo: bool | None = None,
|
|
64
64
|
*,
|
|
@@ -70,7 +70,7 @@ def channels_bake(
|
|
|
70
70
|
):
|
|
71
71
|
"""Create keyframes following the current shape of F-Curves of selected channels
|
|
72
72
|
|
|
73
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
74
74
|
:type execution_context: int | str | None
|
|
75
75
|
:type undo: bool | None
|
|
76
76
|
:param range: Frame Range, The range in which to create new keys
|
|
@@ -95,19 +95,19 @@ def channels_bake(
|
|
|
95
95
|
"""
|
|
96
96
|
|
|
97
97
|
def channels_clean_empty(
|
|
98
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
98
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
99
99
|
execution_context: int | str | None = None,
|
|
100
100
|
undo: bool | None = None,
|
|
101
101
|
):
|
|
102
102
|
"""Delete all empty animation data containers from visible data-blocks
|
|
103
103
|
|
|
104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
104
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
105
105
|
:type execution_context: int | str | None
|
|
106
106
|
:type undo: bool | None
|
|
107
107
|
"""
|
|
108
108
|
|
|
109
109
|
def channels_click(
|
|
110
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
110
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
111
111
|
execution_context: int | str | None = None,
|
|
112
112
|
undo: bool | None = None,
|
|
113
113
|
*,
|
|
@@ -117,7 +117,7 @@ def channels_click(
|
|
|
117
117
|
):
|
|
118
118
|
"""Handle mouse clicks over animation channels
|
|
119
119
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
:param extend: Extend Select
|
|
@@ -129,7 +129,7 @@ def channels_click(
|
|
|
129
129
|
"""
|
|
130
130
|
|
|
131
131
|
def channels_collapse(
|
|
132
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
132
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
133
133
|
execution_context: int | str | None = None,
|
|
134
134
|
undo: bool | None = None,
|
|
135
135
|
*,
|
|
@@ -137,7 +137,7 @@ def channels_collapse(
|
|
|
137
137
|
):
|
|
138
138
|
"""Collapse (close) all selected expandable animation channels
|
|
139
139
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
141
141
|
:type execution_context: int | str | None
|
|
142
142
|
:type undo: bool | None
|
|
143
143
|
:param all: All, Collapse all channels (not just selected ones)
|
|
@@ -145,19 +145,19 @@ def channels_collapse(
|
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
def channels_delete(
|
|
148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
148
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
149
149
|
execution_context: int | str | None = None,
|
|
150
150
|
undo: bool | None = None,
|
|
151
151
|
):
|
|
152
152
|
"""Delete all selected animation channels
|
|
153
153
|
|
|
154
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
154
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
155
155
|
:type execution_context: int | str | None
|
|
156
156
|
:type undo: bool | None
|
|
157
157
|
"""
|
|
158
158
|
|
|
159
159
|
def channels_editable_toggle(
|
|
160
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
160
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
@@ -166,7 +166,7 @@ def channels_editable_toggle(
|
|
|
166
166
|
):
|
|
167
167
|
"""Toggle editability of selected channels
|
|
168
168
|
|
|
169
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
170
170
|
:type execution_context: int | str | None
|
|
171
171
|
:type undo: bool | None
|
|
172
172
|
:param mode: Mode
|
|
@@ -176,7 +176,7 @@ def channels_editable_toggle(
|
|
|
176
176
|
"""
|
|
177
177
|
|
|
178
178
|
def channels_expand(
|
|
179
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
179
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
180
180
|
execution_context: int | str | None = None,
|
|
181
181
|
undo: bool | None = None,
|
|
182
182
|
*,
|
|
@@ -184,7 +184,7 @@ def channels_expand(
|
|
|
184
184
|
):
|
|
185
185
|
"""Expand (open) all selected expandable animation channels
|
|
186
186
|
|
|
187
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
187
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
188
188
|
:type execution_context: int | str | None
|
|
189
189
|
:type undo: bool | None
|
|
190
190
|
:param all: All, Expand all channels (not just selected ones)
|
|
@@ -192,19 +192,19 @@ def channels_expand(
|
|
|
192
192
|
"""
|
|
193
193
|
|
|
194
194
|
def channels_fcurves_enable(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
196
196
|
execution_context: int | str | None = None,
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
):
|
|
199
199
|
"""Clear 'disabled' tag from all F-Curves to get broken F-Curves working again
|
|
200
200
|
|
|
201
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
201
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
202
202
|
:type execution_context: int | str | None
|
|
203
203
|
:type undo: bool | None
|
|
204
204
|
"""
|
|
205
205
|
|
|
206
206
|
def channels_group(
|
|
207
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
207
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
208
208
|
execution_context: int | str | None = None,
|
|
209
209
|
undo: bool | None = None,
|
|
210
210
|
*,
|
|
@@ -212,7 +212,7 @@ def channels_group(
|
|
|
212
212
|
):
|
|
213
213
|
"""Add selected F-Curves to a new group
|
|
214
214
|
|
|
215
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
215
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
216
216
|
:type execution_context: int | str | None
|
|
217
217
|
:type undo: bool | None
|
|
218
218
|
:param name: Name, Name of newly created group
|
|
@@ -220,7 +220,7 @@ def channels_group(
|
|
|
220
220
|
"""
|
|
221
221
|
|
|
222
222
|
def channels_move(
|
|
223
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
223
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
224
224
|
execution_context: int | str | None = None,
|
|
225
225
|
undo: bool | None = None,
|
|
226
226
|
*,
|
|
@@ -228,7 +228,7 @@ def channels_move(
|
|
|
228
228
|
):
|
|
229
229
|
"""Rearrange selected animation channels
|
|
230
230
|
|
|
231
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
231
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
232
232
|
:type execution_context: int | str | None
|
|
233
233
|
:type undo: bool | None
|
|
234
234
|
:param direction: Direction
|
|
@@ -236,19 +236,19 @@ def channels_move(
|
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
def channels_rename(
|
|
239
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
239
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
240
240
|
execution_context: int | str | None = None,
|
|
241
241
|
undo: bool | None = None,
|
|
242
242
|
):
|
|
243
243
|
"""Rename animation channel under mouse
|
|
244
244
|
|
|
245
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
245
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
246
246
|
:type execution_context: int | str | None
|
|
247
247
|
:type undo: bool | None
|
|
248
248
|
"""
|
|
249
249
|
|
|
250
250
|
def channels_select_all(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -256,7 +256,7 @@ def channels_select_all(
|
|
|
256
256
|
):
|
|
257
257
|
"""Toggle selection of all animation channels
|
|
258
258
|
|
|
259
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
259
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
260
260
|
:type execution_context: int | str | None
|
|
261
261
|
:type undo: bool | None
|
|
262
262
|
:param action: Action, Selection action to execute
|
|
@@ -276,7 +276,7 @@ def channels_select_all(
|
|
|
276
276
|
"""
|
|
277
277
|
|
|
278
278
|
def channels_select_box(
|
|
279
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
279
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
280
280
|
execution_context: int | str | None = None,
|
|
281
281
|
undo: bool | None = None,
|
|
282
282
|
*,
|
|
@@ -290,7 +290,7 @@ def channels_select_box(
|
|
|
290
290
|
):
|
|
291
291
|
"""Select all animation channels within the specified region
|
|
292
292
|
|
|
293
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
293
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
294
294
|
:type execution_context: int | str | None
|
|
295
295
|
:type undo: bool | None
|
|
296
296
|
:param xmin: X Min
|
|
@@ -310,19 +310,19 @@ def channels_select_box(
|
|
|
310
310
|
"""
|
|
311
311
|
|
|
312
312
|
def channels_select_filter(
|
|
313
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
313
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
314
314
|
execution_context: int | str | None = None,
|
|
315
315
|
undo: bool | None = None,
|
|
316
316
|
):
|
|
317
317
|
"""Start entering text which filters the set of channels shown to only include those with matching names
|
|
318
318
|
|
|
319
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
319
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
320
320
|
:type execution_context: int | str | None
|
|
321
321
|
:type undo: bool | None
|
|
322
322
|
"""
|
|
323
323
|
|
|
324
324
|
def channels_setting_disable(
|
|
325
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
325
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
326
326
|
execution_context: int | str | None = None,
|
|
327
327
|
undo: bool | None = None,
|
|
328
328
|
*,
|
|
@@ -331,7 +331,7 @@ def channels_setting_disable(
|
|
|
331
331
|
):
|
|
332
332
|
"""Disable specified setting on all selected animation channels
|
|
333
333
|
|
|
334
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
334
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
335
335
|
:type execution_context: int | str | None
|
|
336
336
|
:type undo: bool | None
|
|
337
337
|
:param mode: Mode
|
|
@@ -341,7 +341,7 @@ def channels_setting_disable(
|
|
|
341
341
|
"""
|
|
342
342
|
|
|
343
343
|
def channels_setting_enable(
|
|
344
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
344
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
345
345
|
execution_context: int | str | None = None,
|
|
346
346
|
undo: bool | None = None,
|
|
347
347
|
*,
|
|
@@ -350,7 +350,7 @@ def channels_setting_enable(
|
|
|
350
350
|
):
|
|
351
351
|
"""Enable specified setting on all selected animation channels
|
|
352
352
|
|
|
353
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
353
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
354
354
|
:type execution_context: int | str | None
|
|
355
355
|
:type undo: bool | None
|
|
356
356
|
:param mode: Mode
|
|
@@ -360,7 +360,7 @@ def channels_setting_enable(
|
|
|
360
360
|
"""
|
|
361
361
|
|
|
362
362
|
def channels_setting_toggle(
|
|
363
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
363
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
364
364
|
execution_context: int | str | None = None,
|
|
365
365
|
undo: bool | None = None,
|
|
366
366
|
*,
|
|
@@ -369,7 +369,7 @@ def channels_setting_toggle(
|
|
|
369
369
|
):
|
|
370
370
|
"""Toggle specified setting on all selected animation channels
|
|
371
371
|
|
|
372
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
372
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
373
373
|
:type execution_context: int | str | None
|
|
374
374
|
:type undo: bool | None
|
|
375
375
|
:param mode: Mode
|
|
@@ -379,19 +379,19 @@ def channels_setting_toggle(
|
|
|
379
379
|
"""
|
|
380
380
|
|
|
381
381
|
def channels_ungroup(
|
|
382
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
382
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
383
383
|
execution_context: int | str | None = None,
|
|
384
384
|
undo: bool | None = None,
|
|
385
385
|
):
|
|
386
386
|
"""Remove selected F-Curves from their current groups
|
|
387
387
|
|
|
388
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
388
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
389
389
|
:type execution_context: int | str | None
|
|
390
390
|
:type undo: bool | None
|
|
391
391
|
"""
|
|
392
392
|
|
|
393
393
|
def channels_view_selected(
|
|
394
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
394
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
*,
|
|
@@ -400,7 +400,7 @@ def channels_view_selected(
|
|
|
400
400
|
):
|
|
401
401
|
"""Reset viewable area to show the selected channels
|
|
402
402
|
|
|
403
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
403
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
404
404
|
:type execution_context: int | str | None
|
|
405
405
|
:type undo: bool | None
|
|
406
406
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
@@ -410,7 +410,7 @@ def channels_view_selected(
|
|
|
410
410
|
"""
|
|
411
411
|
|
|
412
412
|
def clear_useless_actions(
|
|
413
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
413
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
414
414
|
execution_context: int | str | None = None,
|
|
415
415
|
undo: bool | None = None,
|
|
416
416
|
*,
|
|
@@ -418,7 +418,7 @@ def clear_useless_actions(
|
|
|
418
418
|
):
|
|
419
419
|
"""Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries"
|
|
420
420
|
|
|
421
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
421
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
422
422
|
:type execution_context: int | str | None
|
|
423
423
|
:type undo: bool | None
|
|
424
424
|
:param only_unused: Only Unused, Only unused (Fake User only) actions get considered
|
|
@@ -426,55 +426,55 @@ def clear_useless_actions(
|
|
|
426
426
|
"""
|
|
427
427
|
|
|
428
428
|
def convert_legacy_action(
|
|
429
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
429
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
430
430
|
execution_context: int | str | None = None,
|
|
431
431
|
undo: bool | None = None,
|
|
432
432
|
):
|
|
433
433
|
"""Convert a legacy Action to a layered Action on the active object
|
|
434
434
|
|
|
435
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
435
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
436
436
|
:type execution_context: int | str | None
|
|
437
437
|
:type undo: bool | None
|
|
438
438
|
"""
|
|
439
439
|
|
|
440
440
|
def copy_driver_button(
|
|
441
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
441
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
442
442
|
execution_context: int | str | None = None,
|
|
443
443
|
undo: bool | None = None,
|
|
444
444
|
):
|
|
445
445
|
"""Copy the driver for the highlighted button
|
|
446
446
|
|
|
447
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
447
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
448
448
|
:type execution_context: int | str | None
|
|
449
449
|
:type undo: bool | None
|
|
450
450
|
"""
|
|
451
451
|
|
|
452
452
|
def driver_button_add(
|
|
453
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
453
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
454
454
|
execution_context: int | str | None = None,
|
|
455
455
|
undo: bool | None = None,
|
|
456
456
|
):
|
|
457
457
|
"""Add driver for the property under the cursor
|
|
458
458
|
|
|
459
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
459
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
460
460
|
:type execution_context: int | str | None
|
|
461
461
|
:type undo: bool | None
|
|
462
462
|
"""
|
|
463
463
|
|
|
464
464
|
def driver_button_edit(
|
|
465
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
465
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
466
466
|
execution_context: int | str | None = None,
|
|
467
467
|
undo: bool | None = None,
|
|
468
468
|
):
|
|
469
469
|
"""Edit the drivers for the connected property represented by the highlighted button
|
|
470
470
|
|
|
471
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
471
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
472
472
|
:type execution_context: int | str | None
|
|
473
473
|
:type undo: bool | None
|
|
474
474
|
"""
|
|
475
475
|
|
|
476
476
|
def driver_button_remove(
|
|
477
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
477
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
478
478
|
execution_context: int | str | None = None,
|
|
479
479
|
undo: bool | None = None,
|
|
480
480
|
*,
|
|
@@ -482,7 +482,7 @@ def driver_button_remove(
|
|
|
482
482
|
):
|
|
483
483
|
"""Remove the driver(s) for the connected property(s) represented by the highlighted button
|
|
484
484
|
|
|
485
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
485
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
486
486
|
:type execution_context: int | str | None
|
|
487
487
|
:type undo: bool | None
|
|
488
488
|
:param all: All, Delete drivers for all elements of the array
|
|
@@ -490,19 +490,19 @@ def driver_button_remove(
|
|
|
490
490
|
"""
|
|
491
491
|
|
|
492
492
|
def end_frame_set(
|
|
493
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
493
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
494
494
|
execution_context: int | str | None = None,
|
|
495
495
|
undo: bool | None = None,
|
|
496
496
|
):
|
|
497
497
|
"""Set the current frame as the preview or scene end frame
|
|
498
498
|
|
|
499
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
499
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
500
500
|
:type execution_context: int | str | None
|
|
501
501
|
:type undo: bool | None
|
|
502
502
|
"""
|
|
503
503
|
|
|
504
504
|
def keyframe_clear_button(
|
|
505
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
505
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
506
506
|
execution_context: int | str | None = None,
|
|
507
507
|
undo: bool | None = None,
|
|
508
508
|
*,
|
|
@@ -510,7 +510,7 @@ def keyframe_clear_button(
|
|
|
510
510
|
):
|
|
511
511
|
"""Clear all keyframes on the currently active property
|
|
512
512
|
|
|
513
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
513
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
514
514
|
:type execution_context: int | str | None
|
|
515
515
|
:type undo: bool | None
|
|
516
516
|
:param all: All, Clear keyframes from all elements of the array
|
|
@@ -518,7 +518,7 @@ def keyframe_clear_button(
|
|
|
518
518
|
"""
|
|
519
519
|
|
|
520
520
|
def keyframe_clear_v3d(
|
|
521
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
521
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
522
522
|
execution_context: int | str | None = None,
|
|
523
523
|
undo: bool | None = None,
|
|
524
524
|
*,
|
|
@@ -526,7 +526,7 @@ def keyframe_clear_v3d(
|
|
|
526
526
|
):
|
|
527
527
|
"""Remove all keyframe animation for selected objects
|
|
528
528
|
|
|
529
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
529
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
530
530
|
:type execution_context: int | str | None
|
|
531
531
|
:type undo: bool | None
|
|
532
532
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -534,7 +534,7 @@ def keyframe_clear_v3d(
|
|
|
534
534
|
"""
|
|
535
535
|
|
|
536
536
|
def keyframe_delete(
|
|
537
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
537
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
538
538
|
execution_context: int | str | None = None,
|
|
539
539
|
undo: bool | None = None,
|
|
540
540
|
*,
|
|
@@ -542,7 +542,7 @@ def keyframe_delete(
|
|
|
542
542
|
):
|
|
543
543
|
"""Delete keyframes on the current frame for all properties in the specified Keying Set
|
|
544
544
|
|
|
545
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
545
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
546
546
|
:type execution_context: int | str | None
|
|
547
547
|
:type undo: bool | None
|
|
548
548
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -550,7 +550,7 @@ def keyframe_delete(
|
|
|
550
550
|
"""
|
|
551
551
|
|
|
552
552
|
def keyframe_delete_button(
|
|
553
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
553
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
554
554
|
execution_context: int | str | None = None,
|
|
555
555
|
undo: bool | None = None,
|
|
556
556
|
*,
|
|
@@ -558,7 +558,7 @@ def keyframe_delete_button(
|
|
|
558
558
|
):
|
|
559
559
|
"""Delete current keyframe of current UI-active property
|
|
560
560
|
|
|
561
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
561
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
562
562
|
:type execution_context: int | str | None
|
|
563
563
|
:type undo: bool | None
|
|
564
564
|
:param all: All, Delete keyframes from all elements of the array
|
|
@@ -566,7 +566,7 @@ def keyframe_delete_button(
|
|
|
566
566
|
"""
|
|
567
567
|
|
|
568
568
|
def keyframe_delete_by_name(
|
|
569
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
569
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
570
570
|
execution_context: int | str | None = None,
|
|
571
571
|
undo: bool | None = None,
|
|
572
572
|
*,
|
|
@@ -574,7 +574,7 @@ def keyframe_delete_by_name(
|
|
|
574
574
|
):
|
|
575
575
|
"""Alternate access to 'Delete Keyframe' for keymaps to use
|
|
576
576
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
577
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
578
|
:type execution_context: int | str | None
|
|
579
579
|
:type undo: bool | None
|
|
580
580
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -582,7 +582,7 @@ def keyframe_delete_by_name(
|
|
|
582
582
|
"""
|
|
583
583
|
|
|
584
584
|
def keyframe_delete_v3d(
|
|
585
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
585
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
586
586
|
execution_context: int | str | None = None,
|
|
587
587
|
undo: bool | None = None,
|
|
588
588
|
*,
|
|
@@ -590,7 +590,7 @@ def keyframe_delete_v3d(
|
|
|
590
590
|
):
|
|
591
591
|
"""Remove keyframes on current frame for selected objects and bones
|
|
592
592
|
|
|
593
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
593
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
594
594
|
:type execution_context: int | str | None
|
|
595
595
|
:type undo: bool | None
|
|
596
596
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -598,7 +598,7 @@ def keyframe_delete_v3d(
|
|
|
598
598
|
"""
|
|
599
599
|
|
|
600
600
|
def keyframe_insert(
|
|
601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
601
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
602
602
|
execution_context: int | str | None = None,
|
|
603
603
|
undo: bool | None = None,
|
|
604
604
|
*,
|
|
@@ -606,7 +606,7 @@ def keyframe_insert(
|
|
|
606
606
|
):
|
|
607
607
|
"""Insert keyframes on the current frame using either the active keying set, or the user preferences if no keying set is active
|
|
608
608
|
|
|
609
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
609
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
610
610
|
:type execution_context: int | str | None
|
|
611
611
|
:type undo: bool | None
|
|
612
612
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -614,7 +614,7 @@ def keyframe_insert(
|
|
|
614
614
|
"""
|
|
615
615
|
|
|
616
616
|
def keyframe_insert_button(
|
|
617
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
617
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
618
618
|
execution_context: int | str | None = None,
|
|
619
619
|
undo: bool | None = None,
|
|
620
620
|
*,
|
|
@@ -622,7 +622,7 @@ def keyframe_insert_button(
|
|
|
622
622
|
):
|
|
623
623
|
"""Insert a keyframe for current UI-active property
|
|
624
624
|
|
|
625
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
625
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
626
626
|
:type execution_context: int | str | None
|
|
627
627
|
:type undo: bool | None
|
|
628
628
|
:param all: All, Insert a keyframe for all element of the array
|
|
@@ -630,7 +630,7 @@ def keyframe_insert_button(
|
|
|
630
630
|
"""
|
|
631
631
|
|
|
632
632
|
def keyframe_insert_by_name(
|
|
633
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
633
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
634
634
|
execution_context: int | str | None = None,
|
|
635
635
|
undo: bool | None = None,
|
|
636
636
|
*,
|
|
@@ -638,7 +638,7 @@ def keyframe_insert_by_name(
|
|
|
638
638
|
):
|
|
639
639
|
"""Alternate access to 'Insert Keyframe' for keymaps to use
|
|
640
640
|
|
|
641
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
641
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
642
642
|
:type execution_context: int | str | None
|
|
643
643
|
:type undo: bool | None
|
|
644
644
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -646,7 +646,7 @@ def keyframe_insert_by_name(
|
|
|
646
646
|
"""
|
|
647
647
|
|
|
648
648
|
def keyframe_insert_menu(
|
|
649
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
649
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
650
650
|
execution_context: int | str | None = None,
|
|
651
651
|
undo: bool | None = None,
|
|
652
652
|
*,
|
|
@@ -655,7 +655,7 @@ def keyframe_insert_menu(
|
|
|
655
655
|
):
|
|
656
656
|
"""Insert Keyframes for specified Keying Set, with menu of available Keying Sets if undefined
|
|
657
657
|
|
|
658
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
658
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
659
659
|
:type execution_context: int | str | None
|
|
660
660
|
:type undo: bool | None
|
|
661
661
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -665,7 +665,7 @@ def keyframe_insert_menu(
|
|
|
665
665
|
"""
|
|
666
666
|
|
|
667
667
|
def keying_set_active_set(
|
|
668
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
668
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
669
669
|
execution_context: int | str | None = None,
|
|
670
670
|
undo: bool | None = None,
|
|
671
671
|
*,
|
|
@@ -673,7 +673,7 @@ def keying_set_active_set(
|
|
|
673
673
|
):
|
|
674
674
|
"""Set a new active keying set
|
|
675
675
|
|
|
676
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
676
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
677
677
|
:type execution_context: int | str | None
|
|
678
678
|
:type undo: bool | None
|
|
679
679
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -681,19 +681,19 @@ def keying_set_active_set(
|
|
|
681
681
|
"""
|
|
682
682
|
|
|
683
683
|
def keying_set_add(
|
|
684
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
684
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
685
685
|
execution_context: int | str | None = None,
|
|
686
686
|
undo: bool | None = None,
|
|
687
687
|
):
|
|
688
688
|
"""Add a new (empty) keying set to the active Scene
|
|
689
689
|
|
|
690
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
690
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
691
691
|
:type execution_context: int | str | None
|
|
692
692
|
:type undo: bool | None
|
|
693
693
|
"""
|
|
694
694
|
|
|
695
695
|
def keying_set_export(
|
|
696
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
696
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
697
697
|
execution_context: int | str | None = None,
|
|
698
698
|
undo: bool | None = None,
|
|
699
699
|
*,
|
|
@@ -704,7 +704,7 @@ def keying_set_export(
|
|
|
704
704
|
):
|
|
705
705
|
"""Export Keying Set to a Python script
|
|
706
706
|
|
|
707
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
707
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
708
708
|
:type execution_context: int | str | None
|
|
709
709
|
:type undo: bool | None
|
|
710
710
|
:param filepath: filepath
|
|
@@ -718,43 +718,43 @@ def keying_set_export(
|
|
|
718
718
|
"""
|
|
719
719
|
|
|
720
720
|
def keying_set_path_add(
|
|
721
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
721
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
722
722
|
execution_context: int | str | None = None,
|
|
723
723
|
undo: bool | None = None,
|
|
724
724
|
):
|
|
725
725
|
"""Add empty path to active keying set
|
|
726
726
|
|
|
727
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
727
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
728
728
|
:type execution_context: int | str | None
|
|
729
729
|
:type undo: bool | None
|
|
730
730
|
"""
|
|
731
731
|
|
|
732
732
|
def keying_set_path_remove(
|
|
733
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
733
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
734
734
|
execution_context: int | str | None = None,
|
|
735
735
|
undo: bool | None = None,
|
|
736
736
|
):
|
|
737
737
|
"""Remove active Path from active keying set
|
|
738
738
|
|
|
739
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
739
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
740
740
|
:type execution_context: int | str | None
|
|
741
741
|
:type undo: bool | None
|
|
742
742
|
"""
|
|
743
743
|
|
|
744
744
|
def keying_set_remove(
|
|
745
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
745
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
746
746
|
execution_context: int | str | None = None,
|
|
747
747
|
undo: bool | None = None,
|
|
748
748
|
):
|
|
749
749
|
"""Remove the active keying set
|
|
750
750
|
|
|
751
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
751
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
752
752
|
:type execution_context: int | str | None
|
|
753
753
|
:type undo: bool | None
|
|
754
754
|
"""
|
|
755
755
|
|
|
756
756
|
def keyingset_button_add(
|
|
757
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
757
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
758
758
|
execution_context: int | str | None = None,
|
|
759
759
|
undo: bool | None = None,
|
|
760
760
|
*,
|
|
@@ -762,7 +762,7 @@ def keyingset_button_add(
|
|
|
762
762
|
):
|
|
763
763
|
"""Add current UI-active property to current keying set
|
|
764
764
|
|
|
765
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
765
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
766
766
|
:type execution_context: int | str | None
|
|
767
767
|
:type undo: bool | None
|
|
768
768
|
:param all: All, Add all elements of the array to a Keying Set
|
|
@@ -770,55 +770,55 @@ def keyingset_button_add(
|
|
|
770
770
|
"""
|
|
771
771
|
|
|
772
772
|
def keyingset_button_remove(
|
|
773
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
773
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
774
774
|
execution_context: int | str | None = None,
|
|
775
775
|
undo: bool | None = None,
|
|
776
776
|
):
|
|
777
777
|
"""Remove current UI-active property from current keying set
|
|
778
778
|
|
|
779
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
779
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
780
780
|
:type execution_context: int | str | None
|
|
781
781
|
:type undo: bool | None
|
|
782
782
|
"""
|
|
783
783
|
|
|
784
784
|
def merge_animation(
|
|
785
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
785
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
786
786
|
execution_context: int | str | None = None,
|
|
787
787
|
undo: bool | None = None,
|
|
788
788
|
):
|
|
789
789
|
"""Merge the animation of the selected objects into the action of the active object. Actions are not deleted by this, but might end up with zero users
|
|
790
790
|
|
|
791
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
791
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
792
792
|
:type execution_context: int | str | None
|
|
793
793
|
:type undo: bool | None
|
|
794
794
|
"""
|
|
795
795
|
|
|
796
796
|
def paste_driver_button(
|
|
797
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
797
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
798
798
|
execution_context: int | str | None = None,
|
|
799
799
|
undo: bool | None = None,
|
|
800
800
|
):
|
|
801
801
|
"""Paste the driver in the internal clipboard to the highlighted button
|
|
802
802
|
|
|
803
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
803
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
804
804
|
:type execution_context: int | str | None
|
|
805
805
|
:type undo: bool | None
|
|
806
806
|
"""
|
|
807
807
|
|
|
808
808
|
def previewrange_clear(
|
|
809
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
809
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
810
810
|
execution_context: int | str | None = None,
|
|
811
811
|
undo: bool | None = None,
|
|
812
812
|
):
|
|
813
813
|
"""Clear preview range
|
|
814
814
|
|
|
815
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
815
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
816
816
|
:type execution_context: int | str | None
|
|
817
817
|
:type undo: bool | None
|
|
818
818
|
"""
|
|
819
819
|
|
|
820
820
|
def previewrange_set(
|
|
821
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
821
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
822
822
|
execution_context: int | str | None = None,
|
|
823
823
|
undo: bool | None = None,
|
|
824
824
|
*,
|
|
@@ -830,7 +830,7 @@ def previewrange_set(
|
|
|
830
830
|
):
|
|
831
831
|
"""Interactively define frame range used for playback
|
|
832
832
|
|
|
833
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
833
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
834
834
|
:type execution_context: int | str | None
|
|
835
835
|
:type undo: bool | None
|
|
836
836
|
:param xmin: X Min
|
|
@@ -846,91 +846,115 @@ def previewrange_set(
|
|
|
846
846
|
"""
|
|
847
847
|
|
|
848
848
|
def scene_range_frame(
|
|
849
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
849
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
850
850
|
execution_context: int | str | None = None,
|
|
851
851
|
undo: bool | None = None,
|
|
852
852
|
):
|
|
853
853
|
"""Reset the horizontal view to the current scene frame range, taking the preview range into account if it is active
|
|
854
854
|
|
|
855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
856
|
+
:type execution_context: int | str | None
|
|
857
|
+
:type undo: bool | None
|
|
858
|
+
"""
|
|
859
|
+
|
|
860
|
+
def separate_slots(
|
|
861
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
862
|
+
execution_context: int | str | None = None,
|
|
863
|
+
undo: bool | None = None,
|
|
864
|
+
):
|
|
865
|
+
"""Move all slots of the action on the active object into newly created, separate actions. All users of those slots will be reassigned to the new actions. The current action won't be deleted but will be empty and might end up having zero users
|
|
866
|
+
|
|
867
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
868
|
+
:type execution_context: int | str | None
|
|
869
|
+
:type undo: bool | None
|
|
870
|
+
"""
|
|
871
|
+
|
|
872
|
+
def slot_channels_move_to_new_action(
|
|
873
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
874
|
+
execution_context: int | str | None = None,
|
|
875
|
+
undo: bool | None = None,
|
|
876
|
+
):
|
|
877
|
+
"""Move the selected slots into a newly created action
|
|
878
|
+
|
|
879
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
856
880
|
:type execution_context: int | str | None
|
|
857
881
|
:type undo: bool | None
|
|
858
882
|
"""
|
|
859
883
|
|
|
860
884
|
def slot_new_for_id(
|
|
861
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
885
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
862
886
|
execution_context: int | str | None = None,
|
|
863
887
|
undo: bool | None = None,
|
|
864
888
|
):
|
|
865
889
|
"""Create a new action slot for this data-block, to hold its animation
|
|
866
890
|
|
|
867
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
891
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
868
892
|
:type execution_context: int | str | None
|
|
869
893
|
:type undo: bool | None
|
|
870
894
|
"""
|
|
871
895
|
|
|
872
896
|
def slot_new_for_object(
|
|
873
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
897
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
874
898
|
execution_context: int | str | None = None,
|
|
875
899
|
undo: bool | None = None,
|
|
876
900
|
):
|
|
877
901
|
"""Create a new Slot for this object, on the Action already assigned to it
|
|
878
902
|
|
|
879
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
903
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
880
904
|
:type execution_context: int | str | None
|
|
881
905
|
:type undo: bool | None
|
|
882
906
|
"""
|
|
883
907
|
|
|
884
908
|
def slot_unassign_from_constraint(
|
|
885
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
909
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
886
910
|
execution_context: int | str | None = None,
|
|
887
911
|
undo: bool | None = None,
|
|
888
912
|
):
|
|
889
913
|
"""Un-assign the action slot from this constraint
|
|
890
914
|
|
|
891
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
915
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
892
916
|
:type execution_context: int | str | None
|
|
893
917
|
:type undo: bool | None
|
|
894
918
|
"""
|
|
895
919
|
|
|
896
920
|
def slot_unassign_from_id(
|
|
897
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
921
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
898
922
|
execution_context: int | str | None = None,
|
|
899
923
|
undo: bool | None = None,
|
|
900
924
|
):
|
|
901
925
|
"""Un-assign the action slot, effectively making this data-block non-animated
|
|
902
926
|
|
|
903
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
927
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
904
928
|
:type execution_context: int | str | None
|
|
905
929
|
:type undo: bool | None
|
|
906
930
|
"""
|
|
907
931
|
|
|
908
932
|
def slot_unassign_from_nla_strip(
|
|
909
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
933
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
910
934
|
execution_context: int | str | None = None,
|
|
911
935
|
undo: bool | None = None,
|
|
912
936
|
):
|
|
913
937
|
"""Un-assign the action slot from this NLA strip, effectively making it non-animated
|
|
914
938
|
|
|
915
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
939
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
916
940
|
:type execution_context: int | str | None
|
|
917
941
|
:type undo: bool | None
|
|
918
942
|
"""
|
|
919
943
|
|
|
920
944
|
def start_frame_set(
|
|
921
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
945
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
922
946
|
execution_context: int | str | None = None,
|
|
923
947
|
undo: bool | None = None,
|
|
924
948
|
):
|
|
925
949
|
"""Set the current frame as the preview or scene start frame
|
|
926
950
|
|
|
927
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
951
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
928
952
|
:type execution_context: int | str | None
|
|
929
953
|
:type undo: bool | None
|
|
930
954
|
"""
|
|
931
955
|
|
|
932
956
|
def update_animated_transform_constraints(
|
|
933
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
957
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
934
958
|
execution_context: int | str | None = None,
|
|
935
959
|
undo: bool | None = None,
|
|
936
960
|
*,
|
|
@@ -938,7 +962,7 @@ def update_animated_transform_constraints(
|
|
|
938
962
|
):
|
|
939
963
|
"""Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)
|
|
940
964
|
|
|
941
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
965
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
942
966
|
:type execution_context: int | str | None
|
|
943
967
|
:type undo: bool | None
|
|
944
968
|
:param use_convert_to_radians: Convert to Radians, Convert f-curves/drivers affecting rotations to radians.Warning: Use this only once
|
|
@@ -946,7 +970,7 @@ def update_animated_transform_constraints(
|
|
|
946
970
|
"""
|
|
947
971
|
|
|
948
972
|
def view_curve_in_graph_editor(
|
|
949
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
973
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
950
974
|
execution_context: int | str | None = None,
|
|
951
975
|
undo: bool | None = None,
|
|
952
976
|
*,
|
|
@@ -955,7 +979,7 @@ def view_curve_in_graph_editor(
|
|
|
955
979
|
):
|
|
956
980
|
"""Frame the property under the cursor in the Graph Editor
|
|
957
981
|
|
|
958
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
982
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
959
983
|
:type execution_context: int | str | None
|
|
960
984
|
:type undo: bool | None
|
|
961
985
|
:param all: Show All, Frame the whole array property instead of only the index under the cursor
|