fake-bpy-module 20240507__py3-none-any.whl → 20240509__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.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def binding_unassign_object(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Clear the assigned animation binding, effectively making this data-block non-animated
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,7 +20,9 @@ def binding_unassign_object(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def change_frame(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
frame: typing.Optional[typing.Any] = 0.0,
|
|
@@ -26,7 +30,7 @@ def change_frame(
|
|
|
26
30
|
):
|
|
27
31
|
"""Interactively change the current frame number
|
|
28
32
|
|
|
29
|
-
:type override_context: typing.Optional[typing.Union[
|
|
33
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
30
34
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
31
35
|
:type undo: typing.Optional[bool]
|
|
32
36
|
:param frame: Frame
|
|
@@ -38,14 +42,16 @@ def change_frame(
|
|
|
38
42
|
...
|
|
39
43
|
|
|
40
44
|
def channel_select_keys(
|
|
41
|
-
override_context: typing.Optional[
|
|
45
|
+
override_context: typing.Optional[
|
|
46
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
47
|
+
] = None,
|
|
42
48
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
43
49
|
undo: typing.Optional[bool] = None,
|
|
44
50
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
45
51
|
):
|
|
46
52
|
"""Select all keyframes of channel under mouse
|
|
47
53
|
|
|
48
|
-
:type override_context: typing.Optional[typing.Union[
|
|
54
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
49
55
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
50
56
|
:type undo: typing.Optional[bool]
|
|
51
57
|
:param extend: Extend, Extend selection
|
|
@@ -55,7 +61,9 @@ def channel_select_keys(
|
|
|
55
61
|
...
|
|
56
62
|
|
|
57
63
|
def channel_view_pick(
|
|
58
|
-
override_context: typing.Optional[
|
|
64
|
+
override_context: typing.Optional[
|
|
65
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
66
|
+
] = None,
|
|
59
67
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
60
68
|
undo: typing.Optional[bool] = None,
|
|
61
69
|
include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -63,7 +71,7 @@ def channel_view_pick(
|
|
|
63
71
|
):
|
|
64
72
|
"""Reset viewable area to show the channel under the cursor
|
|
65
73
|
|
|
66
|
-
:type override_context: typing.Optional[typing.Union[
|
|
74
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
67
75
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
68
76
|
:type undo: typing.Optional[bool]
|
|
69
77
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
@@ -75,7 +83,9 @@ def channel_view_pick(
|
|
|
75
83
|
...
|
|
76
84
|
|
|
77
85
|
def channels_bake(
|
|
78
|
-
override_context: typing.Optional[
|
|
86
|
+
override_context: typing.Optional[
|
|
87
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
88
|
+
] = None,
|
|
79
89
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
80
90
|
undo: typing.Optional[bool] = None,
|
|
81
91
|
range: typing.Optional[typing.Any] = (0, 0),
|
|
@@ -86,7 +96,7 @@ def channels_bake(
|
|
|
86
96
|
):
|
|
87
97
|
"""Create keyframes following the current shape of F-Curves of selected channels
|
|
88
98
|
|
|
89
|
-
:type override_context: typing.Optional[typing.Union[
|
|
99
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
90
100
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
91
101
|
:type undo: typing.Optional[bool]
|
|
92
102
|
:param range: Frame Range, The range in which to create new keys
|
|
@@ -113,13 +123,15 @@ def channels_bake(
|
|
|
113
123
|
...
|
|
114
124
|
|
|
115
125
|
def channels_clean_empty(
|
|
116
|
-
override_context: typing.Optional[
|
|
126
|
+
override_context: typing.Optional[
|
|
127
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
128
|
+
] = None,
|
|
117
129
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
118
130
|
undo: typing.Optional[bool] = None,
|
|
119
131
|
):
|
|
120
132
|
"""Delete all empty animation data containers from visible data-blocks
|
|
121
133
|
|
|
122
|
-
:type override_context: typing.Optional[typing.Union[
|
|
134
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
123
135
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
124
136
|
:type undo: typing.Optional[bool]
|
|
125
137
|
"""
|
|
@@ -127,7 +139,9 @@ def channels_clean_empty(
|
|
|
127
139
|
...
|
|
128
140
|
|
|
129
141
|
def channels_click(
|
|
130
|
-
override_context: typing.Optional[
|
|
142
|
+
override_context: typing.Optional[
|
|
143
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
144
|
+
] = None,
|
|
131
145
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
132
146
|
undo: typing.Optional[bool] = None,
|
|
133
147
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -136,7 +150,7 @@ def channels_click(
|
|
|
136
150
|
):
|
|
137
151
|
"""Handle mouse clicks over animation channels
|
|
138
152
|
|
|
139
|
-
:type override_context: typing.Optional[typing.Union[
|
|
153
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
140
154
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
141
155
|
:type undo: typing.Optional[bool]
|
|
142
156
|
:param extend: Extend Select
|
|
@@ -150,14 +164,16 @@ def channels_click(
|
|
|
150
164
|
...
|
|
151
165
|
|
|
152
166
|
def channels_collapse(
|
|
153
|
-
override_context: typing.Optional[
|
|
167
|
+
override_context: typing.Optional[
|
|
168
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
169
|
+
] = None,
|
|
154
170
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
155
171
|
undo: typing.Optional[bool] = None,
|
|
156
172
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
157
173
|
):
|
|
158
174
|
"""Collapse (close) all selected expandable animation channels
|
|
159
175
|
|
|
160
|
-
:type override_context: typing.Optional[typing.Union[
|
|
176
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
161
177
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
162
178
|
:type undo: typing.Optional[bool]
|
|
163
179
|
:param all: All, Collapse all channels (not just selected ones)
|
|
@@ -167,13 +183,15 @@ def channels_collapse(
|
|
|
167
183
|
...
|
|
168
184
|
|
|
169
185
|
def channels_delete(
|
|
170
|
-
override_context: typing.Optional[
|
|
186
|
+
override_context: typing.Optional[
|
|
187
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
188
|
+
] = None,
|
|
171
189
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
172
190
|
undo: typing.Optional[bool] = None,
|
|
173
191
|
):
|
|
174
192
|
"""Delete all selected animation channels
|
|
175
193
|
|
|
176
|
-
:type override_context: typing.Optional[typing.Union[
|
|
194
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
177
195
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
178
196
|
:type undo: typing.Optional[bool]
|
|
179
197
|
"""
|
|
@@ -181,7 +199,9 @@ def channels_delete(
|
|
|
181
199
|
...
|
|
182
200
|
|
|
183
201
|
def channels_editable_toggle(
|
|
184
|
-
override_context: typing.Optional[
|
|
202
|
+
override_context: typing.Optional[
|
|
203
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
204
|
+
] = None,
|
|
185
205
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
186
206
|
undo: typing.Optional[bool] = None,
|
|
187
207
|
mode: typing.Optional[typing.Any] = "TOGGLE",
|
|
@@ -189,7 +209,7 @@ def channels_editable_toggle(
|
|
|
189
209
|
):
|
|
190
210
|
"""Toggle editability of selected channels
|
|
191
211
|
|
|
192
|
-
:type override_context: typing.Optional[typing.Union[
|
|
212
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
193
213
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
194
214
|
:type undo: typing.Optional[bool]
|
|
195
215
|
:param mode: Mode
|
|
@@ -201,14 +221,16 @@ def channels_editable_toggle(
|
|
|
201
221
|
...
|
|
202
222
|
|
|
203
223
|
def channels_expand(
|
|
204
|
-
override_context: typing.Optional[
|
|
224
|
+
override_context: typing.Optional[
|
|
225
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
226
|
+
] = None,
|
|
205
227
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
206
228
|
undo: typing.Optional[bool] = None,
|
|
207
229
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
208
230
|
):
|
|
209
231
|
"""Expand (open) all selected expandable animation channels
|
|
210
232
|
|
|
211
|
-
:type override_context: typing.Optional[typing.Union[
|
|
233
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
212
234
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
213
235
|
:type undo: typing.Optional[bool]
|
|
214
236
|
:param all: All, Expand all channels (not just selected ones)
|
|
@@ -218,13 +240,15 @@ def channels_expand(
|
|
|
218
240
|
...
|
|
219
241
|
|
|
220
242
|
def channels_fcurves_enable(
|
|
221
|
-
override_context: typing.Optional[
|
|
243
|
+
override_context: typing.Optional[
|
|
244
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
245
|
+
] = None,
|
|
222
246
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
223
247
|
undo: typing.Optional[bool] = None,
|
|
224
248
|
):
|
|
225
249
|
"""Clear 'disabled' tag from all F-Curves to get broken F-Curves working again
|
|
226
250
|
|
|
227
|
-
:type override_context: typing.Optional[typing.Union[
|
|
251
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
228
252
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
229
253
|
:type undo: typing.Optional[bool]
|
|
230
254
|
"""
|
|
@@ -232,14 +256,16 @@ def channels_fcurves_enable(
|
|
|
232
256
|
...
|
|
233
257
|
|
|
234
258
|
def channels_group(
|
|
235
|
-
override_context: typing.Optional[
|
|
259
|
+
override_context: typing.Optional[
|
|
260
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
261
|
+
] = None,
|
|
236
262
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
237
263
|
undo: typing.Optional[bool] = None,
|
|
238
264
|
name: typing.Union[str, typing.Any] = "New Group",
|
|
239
265
|
):
|
|
240
266
|
"""Add selected F-Curves to a new group
|
|
241
267
|
|
|
242
|
-
:type override_context: typing.Optional[typing.Union[
|
|
268
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
243
269
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
244
270
|
:type undo: typing.Optional[bool]
|
|
245
271
|
:param name: Name, Name of newly created group
|
|
@@ -249,14 +275,16 @@ def channels_group(
|
|
|
249
275
|
...
|
|
250
276
|
|
|
251
277
|
def channels_move(
|
|
252
|
-
override_context: typing.Optional[
|
|
278
|
+
override_context: typing.Optional[
|
|
279
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
280
|
+
] = None,
|
|
253
281
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
254
282
|
undo: typing.Optional[bool] = None,
|
|
255
283
|
direction: typing.Optional[typing.Any] = "DOWN",
|
|
256
284
|
):
|
|
257
285
|
"""Rearrange selected animation channels
|
|
258
286
|
|
|
259
|
-
:type override_context: typing.Optional[typing.Union[
|
|
287
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
260
288
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
261
289
|
:type undo: typing.Optional[bool]
|
|
262
290
|
:param direction: Direction
|
|
@@ -266,13 +294,15 @@ def channels_move(
|
|
|
266
294
|
...
|
|
267
295
|
|
|
268
296
|
def channels_rename(
|
|
269
|
-
override_context: typing.Optional[
|
|
297
|
+
override_context: typing.Optional[
|
|
298
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
299
|
+
] = None,
|
|
270
300
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
271
301
|
undo: typing.Optional[bool] = None,
|
|
272
302
|
):
|
|
273
303
|
"""Rename animation channel under mouse
|
|
274
304
|
|
|
275
|
-
:type override_context: typing.Optional[typing.Union[
|
|
305
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
276
306
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
277
307
|
:type undo: typing.Optional[bool]
|
|
278
308
|
"""
|
|
@@ -280,14 +310,16 @@ def channels_rename(
|
|
|
280
310
|
...
|
|
281
311
|
|
|
282
312
|
def channels_select_all(
|
|
283
|
-
override_context: typing.Optional[
|
|
313
|
+
override_context: typing.Optional[
|
|
314
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
315
|
+
] = None,
|
|
284
316
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
285
317
|
undo: typing.Optional[bool] = None,
|
|
286
318
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
287
319
|
):
|
|
288
320
|
"""Toggle selection of all animation channels
|
|
289
321
|
|
|
290
|
-
:type override_context: typing.Optional[typing.Union[
|
|
322
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
291
323
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
292
324
|
:type undo: typing.Optional[bool]
|
|
293
325
|
:param action: Action, Selection action to execute
|
|
@@ -309,7 +341,9 @@ def channels_select_all(
|
|
|
309
341
|
...
|
|
310
342
|
|
|
311
343
|
def channels_select_box(
|
|
312
|
-
override_context: typing.Optional[
|
|
344
|
+
override_context: typing.Optional[
|
|
345
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
346
|
+
] = None,
|
|
313
347
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
314
348
|
undo: typing.Optional[bool] = None,
|
|
315
349
|
xmin: typing.Optional[typing.Any] = 0,
|
|
@@ -322,7 +356,7 @@ def channels_select_box(
|
|
|
322
356
|
):
|
|
323
357
|
"""Select all animation channels within the specified region
|
|
324
358
|
|
|
325
|
-
:type override_context: typing.Optional[typing.Union[
|
|
359
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
326
360
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
327
361
|
:type undo: typing.Optional[bool]
|
|
328
362
|
:param xmin: X Min
|
|
@@ -344,13 +378,15 @@ def channels_select_box(
|
|
|
344
378
|
...
|
|
345
379
|
|
|
346
380
|
def channels_select_filter(
|
|
347
|
-
override_context: typing.Optional[
|
|
381
|
+
override_context: typing.Optional[
|
|
382
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
383
|
+
] = None,
|
|
348
384
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
349
385
|
undo: typing.Optional[bool] = None,
|
|
350
386
|
):
|
|
351
387
|
"""Start entering text which filters the set of channels shown to only include those with matching names
|
|
352
388
|
|
|
353
|
-
:type override_context: typing.Optional[typing.Union[
|
|
389
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
354
390
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
355
391
|
:type undo: typing.Optional[bool]
|
|
356
392
|
"""
|
|
@@ -358,7 +394,9 @@ def channels_select_filter(
|
|
|
358
394
|
...
|
|
359
395
|
|
|
360
396
|
def channels_setting_disable(
|
|
361
|
-
override_context: typing.Optional[
|
|
397
|
+
override_context: typing.Optional[
|
|
398
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
399
|
+
] = None,
|
|
362
400
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
363
401
|
undo: typing.Optional[bool] = None,
|
|
364
402
|
mode: typing.Optional[typing.Any] = "DISABLE",
|
|
@@ -366,7 +404,7 @@ def channels_setting_disable(
|
|
|
366
404
|
):
|
|
367
405
|
"""Disable specified setting on all selected animation channels
|
|
368
406
|
|
|
369
|
-
:type override_context: typing.Optional[typing.Union[
|
|
407
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
370
408
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
371
409
|
:type undo: typing.Optional[bool]
|
|
372
410
|
:param mode: Mode
|
|
@@ -378,7 +416,9 @@ def channels_setting_disable(
|
|
|
378
416
|
...
|
|
379
417
|
|
|
380
418
|
def channels_setting_enable(
|
|
381
|
-
override_context: typing.Optional[
|
|
419
|
+
override_context: typing.Optional[
|
|
420
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
421
|
+
] = None,
|
|
382
422
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
383
423
|
undo: typing.Optional[bool] = None,
|
|
384
424
|
mode: typing.Optional[typing.Any] = "ENABLE",
|
|
@@ -386,7 +426,7 @@ def channels_setting_enable(
|
|
|
386
426
|
):
|
|
387
427
|
"""Enable specified setting on all selected animation channels
|
|
388
428
|
|
|
389
|
-
:type override_context: typing.Optional[typing.Union[
|
|
429
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
390
430
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
391
431
|
:type undo: typing.Optional[bool]
|
|
392
432
|
:param mode: Mode
|
|
@@ -398,7 +438,9 @@ def channels_setting_enable(
|
|
|
398
438
|
...
|
|
399
439
|
|
|
400
440
|
def channels_setting_toggle(
|
|
401
|
-
override_context: typing.Optional[
|
|
441
|
+
override_context: typing.Optional[
|
|
442
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
443
|
+
] = None,
|
|
402
444
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
403
445
|
undo: typing.Optional[bool] = None,
|
|
404
446
|
mode: typing.Optional[typing.Any] = "TOGGLE",
|
|
@@ -406,7 +448,7 @@ def channels_setting_toggle(
|
|
|
406
448
|
):
|
|
407
449
|
"""Toggle specified setting on all selected animation channels
|
|
408
450
|
|
|
409
|
-
:type override_context: typing.Optional[typing.Union[
|
|
451
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
410
452
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
411
453
|
:type undo: typing.Optional[bool]
|
|
412
454
|
:param mode: Mode
|
|
@@ -418,13 +460,15 @@ def channels_setting_toggle(
|
|
|
418
460
|
...
|
|
419
461
|
|
|
420
462
|
def channels_ungroup(
|
|
421
|
-
override_context: typing.Optional[
|
|
463
|
+
override_context: typing.Optional[
|
|
464
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
465
|
+
] = None,
|
|
422
466
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
423
467
|
undo: typing.Optional[bool] = None,
|
|
424
468
|
):
|
|
425
469
|
"""Remove selected F-Curves from their current groups
|
|
426
470
|
|
|
427
|
-
:type override_context: typing.Optional[typing.Union[
|
|
471
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
428
472
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
429
473
|
:type undo: typing.Optional[bool]
|
|
430
474
|
"""
|
|
@@ -432,7 +476,9 @@ def channels_ungroup(
|
|
|
432
476
|
...
|
|
433
477
|
|
|
434
478
|
def channels_view_selected(
|
|
435
|
-
override_context: typing.Optional[
|
|
479
|
+
override_context: typing.Optional[
|
|
480
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
481
|
+
] = None,
|
|
436
482
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
437
483
|
undo: typing.Optional[bool] = None,
|
|
438
484
|
include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -440,7 +486,7 @@ def channels_view_selected(
|
|
|
440
486
|
):
|
|
441
487
|
"""Reset viewable area to show the selected channels
|
|
442
488
|
|
|
443
|
-
:type override_context: typing.Optional[typing.Union[
|
|
489
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
444
490
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
445
491
|
:type undo: typing.Optional[bool]
|
|
446
492
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
@@ -452,14 +498,16 @@ def channels_view_selected(
|
|
|
452
498
|
...
|
|
453
499
|
|
|
454
500
|
def clear_useless_actions(
|
|
455
|
-
override_context: typing.Optional[
|
|
501
|
+
override_context: typing.Optional[
|
|
502
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
503
|
+
] = None,
|
|
456
504
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
457
505
|
undo: typing.Optional[bool] = None,
|
|
458
506
|
only_unused: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
459
507
|
):
|
|
460
508
|
"""Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries"
|
|
461
509
|
|
|
462
|
-
:type override_context: typing.Optional[typing.Union[
|
|
510
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
463
511
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
464
512
|
:type undo: typing.Optional[bool]
|
|
465
513
|
:param only_unused: Only Unused, Only unused (Fake User only) actions get considered
|
|
@@ -469,13 +517,15 @@ def clear_useless_actions(
|
|
|
469
517
|
...
|
|
470
518
|
|
|
471
519
|
def copy_driver_button(
|
|
472
|
-
override_context: typing.Optional[
|
|
520
|
+
override_context: typing.Optional[
|
|
521
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
522
|
+
] = None,
|
|
473
523
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
474
524
|
undo: typing.Optional[bool] = None,
|
|
475
525
|
):
|
|
476
526
|
"""Copy the driver for the highlighted button
|
|
477
527
|
|
|
478
|
-
:type override_context: typing.Optional[typing.Union[
|
|
528
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
479
529
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
480
530
|
:type undo: typing.Optional[bool]
|
|
481
531
|
"""
|
|
@@ -483,13 +533,15 @@ def copy_driver_button(
|
|
|
483
533
|
...
|
|
484
534
|
|
|
485
535
|
def driver_button_add(
|
|
486
|
-
override_context: typing.Optional[
|
|
536
|
+
override_context: typing.Optional[
|
|
537
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
538
|
+
] = None,
|
|
487
539
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
488
540
|
undo: typing.Optional[bool] = None,
|
|
489
541
|
):
|
|
490
542
|
"""Add driver for the property under the cursor
|
|
491
543
|
|
|
492
|
-
:type override_context: typing.Optional[typing.Union[
|
|
544
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
493
545
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
494
546
|
:type undo: typing.Optional[bool]
|
|
495
547
|
"""
|
|
@@ -497,13 +549,15 @@ def driver_button_add(
|
|
|
497
549
|
...
|
|
498
550
|
|
|
499
551
|
def driver_button_edit(
|
|
500
|
-
override_context: typing.Optional[
|
|
552
|
+
override_context: typing.Optional[
|
|
553
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
554
|
+
] = None,
|
|
501
555
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
502
556
|
undo: typing.Optional[bool] = None,
|
|
503
557
|
):
|
|
504
558
|
"""Edit the drivers for the connected property represented by the highlighted button
|
|
505
559
|
|
|
506
|
-
:type override_context: typing.Optional[typing.Union[
|
|
560
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
507
561
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
508
562
|
:type undo: typing.Optional[bool]
|
|
509
563
|
"""
|
|
@@ -511,14 +565,16 @@ def driver_button_edit(
|
|
|
511
565
|
...
|
|
512
566
|
|
|
513
567
|
def driver_button_remove(
|
|
514
|
-
override_context: typing.Optional[
|
|
568
|
+
override_context: typing.Optional[
|
|
569
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
570
|
+
] = None,
|
|
515
571
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
516
572
|
undo: typing.Optional[bool] = None,
|
|
517
573
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
518
574
|
):
|
|
519
575
|
"""Remove the driver(s) for the connected property(s) represented by the highlighted button
|
|
520
576
|
|
|
521
|
-
:type override_context: typing.Optional[typing.Union[
|
|
577
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
522
578
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
523
579
|
:type undo: typing.Optional[bool]
|
|
524
580
|
:param all: All, Delete drivers for all elements of the array
|
|
@@ -528,13 +584,15 @@ def driver_button_remove(
|
|
|
528
584
|
...
|
|
529
585
|
|
|
530
586
|
def end_frame_set(
|
|
531
|
-
override_context: typing.Optional[
|
|
587
|
+
override_context: typing.Optional[
|
|
588
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
589
|
+
] = None,
|
|
532
590
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
533
591
|
undo: typing.Optional[bool] = None,
|
|
534
592
|
):
|
|
535
593
|
"""Set the current frame as the preview or scene end frame
|
|
536
594
|
|
|
537
|
-
:type override_context: typing.Optional[typing.Union[
|
|
595
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
538
596
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
539
597
|
:type undo: typing.Optional[bool]
|
|
540
598
|
"""
|
|
@@ -542,14 +600,16 @@ def end_frame_set(
|
|
|
542
600
|
...
|
|
543
601
|
|
|
544
602
|
def keyframe_clear_button(
|
|
545
|
-
override_context: typing.Optional[
|
|
603
|
+
override_context: typing.Optional[
|
|
604
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
605
|
+
] = None,
|
|
546
606
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
547
607
|
undo: typing.Optional[bool] = None,
|
|
548
608
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
549
609
|
):
|
|
550
610
|
"""Clear all keyframes on the currently active property
|
|
551
611
|
|
|
552
|
-
:type override_context: typing.Optional[typing.Union[
|
|
612
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
553
613
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
554
614
|
:type undo: typing.Optional[bool]
|
|
555
615
|
:param all: All, Clear keyframes from all elements of the array
|
|
@@ -559,14 +619,16 @@ def keyframe_clear_button(
|
|
|
559
619
|
...
|
|
560
620
|
|
|
561
621
|
def keyframe_clear_v3d(
|
|
562
|
-
override_context: typing.Optional[
|
|
622
|
+
override_context: typing.Optional[
|
|
623
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
624
|
+
] = None,
|
|
563
625
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
564
626
|
undo: typing.Optional[bool] = None,
|
|
565
627
|
confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
566
628
|
):
|
|
567
629
|
"""Remove all keyframe animation for selected objects
|
|
568
630
|
|
|
569
|
-
:type override_context: typing.Optional[typing.Union[
|
|
631
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
570
632
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
571
633
|
:type undo: typing.Optional[bool]
|
|
572
634
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -576,14 +638,16 @@ def keyframe_clear_v3d(
|
|
|
576
638
|
...
|
|
577
639
|
|
|
578
640
|
def keyframe_delete(
|
|
579
|
-
override_context: typing.Optional[
|
|
641
|
+
override_context: typing.Optional[
|
|
642
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
643
|
+
] = None,
|
|
580
644
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
581
645
|
undo: typing.Optional[bool] = None,
|
|
582
646
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "DEFAULT",
|
|
583
647
|
):
|
|
584
648
|
"""Delete keyframes on the current frame for all properties in the specified Keying Set
|
|
585
649
|
|
|
586
|
-
:type override_context: typing.Optional[typing.Union[
|
|
650
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
587
651
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
588
652
|
:type undo: typing.Optional[bool]
|
|
589
653
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -593,14 +657,16 @@ def keyframe_delete(
|
|
|
593
657
|
...
|
|
594
658
|
|
|
595
659
|
def keyframe_delete_button(
|
|
596
|
-
override_context: typing.Optional[
|
|
660
|
+
override_context: typing.Optional[
|
|
661
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
662
|
+
] = None,
|
|
597
663
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
598
664
|
undo: typing.Optional[bool] = None,
|
|
599
665
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
600
666
|
):
|
|
601
667
|
"""Delete current keyframe of current UI-active property
|
|
602
668
|
|
|
603
|
-
:type override_context: typing.Optional[typing.Union[
|
|
669
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
604
670
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
605
671
|
:type undo: typing.Optional[bool]
|
|
606
672
|
:param all: All, Delete keyframes from all elements of the array
|
|
@@ -610,14 +676,16 @@ def keyframe_delete_button(
|
|
|
610
676
|
...
|
|
611
677
|
|
|
612
678
|
def keyframe_delete_by_name(
|
|
613
|
-
override_context: typing.Optional[
|
|
679
|
+
override_context: typing.Optional[
|
|
680
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
681
|
+
] = None,
|
|
614
682
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
615
683
|
undo: typing.Optional[bool] = None,
|
|
616
684
|
type: typing.Union[str, typing.Any] = "",
|
|
617
685
|
):
|
|
618
686
|
"""Alternate access to 'Delete Keyframe' for keymaps to use
|
|
619
687
|
|
|
620
|
-
:type override_context: typing.Optional[typing.Union[
|
|
688
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
621
689
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
622
690
|
:type undo: typing.Optional[bool]
|
|
623
691
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -627,14 +695,16 @@ def keyframe_delete_by_name(
|
|
|
627
695
|
...
|
|
628
696
|
|
|
629
697
|
def keyframe_delete_v3d(
|
|
630
|
-
override_context: typing.Optional[
|
|
698
|
+
override_context: typing.Optional[
|
|
699
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
700
|
+
] = None,
|
|
631
701
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
632
702
|
undo: typing.Optional[bool] = None,
|
|
633
703
|
confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
634
704
|
):
|
|
635
705
|
"""Remove keyframes on current frame for selected objects and bones
|
|
636
706
|
|
|
637
|
-
:type override_context: typing.Optional[typing.Union[
|
|
707
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
638
708
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
639
709
|
:type undo: typing.Optional[bool]
|
|
640
710
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -644,14 +714,16 @@ def keyframe_delete_v3d(
|
|
|
644
714
|
...
|
|
645
715
|
|
|
646
716
|
def keyframe_insert(
|
|
647
|
-
override_context: typing.Optional[
|
|
717
|
+
override_context: typing.Optional[
|
|
718
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
719
|
+
] = None,
|
|
648
720
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
649
721
|
undo: typing.Optional[bool] = None,
|
|
650
722
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "DEFAULT",
|
|
651
723
|
):
|
|
652
724
|
"""Insert keyframes on the current frame using either the active keying set, or the user preferences if no keying set is active
|
|
653
725
|
|
|
654
|
-
:type override_context: typing.Optional[typing.Union[
|
|
726
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
655
727
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
656
728
|
:type undo: typing.Optional[bool]
|
|
657
729
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -661,14 +733,16 @@ def keyframe_insert(
|
|
|
661
733
|
...
|
|
662
734
|
|
|
663
735
|
def keyframe_insert_button(
|
|
664
|
-
override_context: typing.Optional[
|
|
736
|
+
override_context: typing.Optional[
|
|
737
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
738
|
+
] = None,
|
|
665
739
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
666
740
|
undo: typing.Optional[bool] = None,
|
|
667
741
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
668
742
|
):
|
|
669
743
|
"""Insert a keyframe for current UI-active property
|
|
670
744
|
|
|
671
|
-
:type override_context: typing.Optional[typing.Union[
|
|
745
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
672
746
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
673
747
|
:type undo: typing.Optional[bool]
|
|
674
748
|
:param all: All, Insert a keyframe for all element of the array
|
|
@@ -678,14 +752,16 @@ def keyframe_insert_button(
|
|
|
678
752
|
...
|
|
679
753
|
|
|
680
754
|
def keyframe_insert_by_name(
|
|
681
|
-
override_context: typing.Optional[
|
|
755
|
+
override_context: typing.Optional[
|
|
756
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
757
|
+
] = None,
|
|
682
758
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
683
759
|
undo: typing.Optional[bool] = None,
|
|
684
760
|
type: typing.Union[str, typing.Any] = "",
|
|
685
761
|
):
|
|
686
762
|
"""Alternate access to 'Insert Keyframe' for keymaps to use
|
|
687
763
|
|
|
688
|
-
:type override_context: typing.Optional[typing.Union[
|
|
764
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
689
765
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
690
766
|
:type undo: typing.Optional[bool]
|
|
691
767
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -695,7 +771,9 @@ def keyframe_insert_by_name(
|
|
|
695
771
|
...
|
|
696
772
|
|
|
697
773
|
def keyframe_insert_menu(
|
|
698
|
-
override_context: typing.Optional[
|
|
774
|
+
override_context: typing.Optional[
|
|
775
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
776
|
+
] = None,
|
|
699
777
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
700
778
|
undo: typing.Optional[bool] = None,
|
|
701
779
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "DEFAULT",
|
|
@@ -703,7 +781,7 @@ def keyframe_insert_menu(
|
|
|
703
781
|
):
|
|
704
782
|
"""Insert Keyframes for specified Keying Set, with menu of available Keying Sets if undefined
|
|
705
783
|
|
|
706
|
-
:type override_context: typing.Optional[typing.Union[
|
|
784
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
707
785
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
708
786
|
:type undo: typing.Optional[bool]
|
|
709
787
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -715,14 +793,16 @@ def keyframe_insert_menu(
|
|
|
715
793
|
...
|
|
716
794
|
|
|
717
795
|
def keying_set_active_set(
|
|
718
|
-
override_context: typing.Optional[
|
|
796
|
+
override_context: typing.Optional[
|
|
797
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
798
|
+
] = None,
|
|
719
799
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
720
800
|
undo: typing.Optional[bool] = None,
|
|
721
801
|
type: typing.Optional[typing.Union[str, int, typing.Any]] = "DEFAULT",
|
|
722
802
|
):
|
|
723
803
|
"""Set a new active keying set
|
|
724
804
|
|
|
725
|
-
:type override_context: typing.Optional[typing.Union[
|
|
805
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
726
806
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
727
807
|
:type undo: typing.Optional[bool]
|
|
728
808
|
:param type: Keying Set, The Keying Set to use
|
|
@@ -732,13 +812,15 @@ def keying_set_active_set(
|
|
|
732
812
|
...
|
|
733
813
|
|
|
734
814
|
def keying_set_add(
|
|
735
|
-
override_context: typing.Optional[
|
|
815
|
+
override_context: typing.Optional[
|
|
816
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
817
|
+
] = None,
|
|
736
818
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
737
819
|
undo: typing.Optional[bool] = None,
|
|
738
820
|
):
|
|
739
821
|
"""Add a new (empty) keying set to the active Scene
|
|
740
822
|
|
|
741
|
-
:type override_context: typing.Optional[typing.Union[
|
|
823
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
742
824
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
743
825
|
:type undo: typing.Optional[bool]
|
|
744
826
|
"""
|
|
@@ -746,7 +828,9 @@ def keying_set_add(
|
|
|
746
828
|
...
|
|
747
829
|
|
|
748
830
|
def keying_set_export(
|
|
749
|
-
override_context: typing.Optional[
|
|
831
|
+
override_context: typing.Optional[
|
|
832
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
833
|
+
] = None,
|
|
750
834
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
751
835
|
undo: typing.Optional[bool] = None,
|
|
752
836
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -756,7 +840,7 @@ def keying_set_export(
|
|
|
756
840
|
):
|
|
757
841
|
"""Export Keying Set to a Python script
|
|
758
842
|
|
|
759
|
-
:type override_context: typing.Optional[typing.Union[
|
|
843
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
760
844
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
761
845
|
:type undo: typing.Optional[bool]
|
|
762
846
|
:param filepath: filepath
|
|
@@ -772,13 +856,15 @@ def keying_set_export(
|
|
|
772
856
|
...
|
|
773
857
|
|
|
774
858
|
def keying_set_path_add(
|
|
775
|
-
override_context: typing.Optional[
|
|
859
|
+
override_context: typing.Optional[
|
|
860
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
861
|
+
] = None,
|
|
776
862
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
777
863
|
undo: typing.Optional[bool] = None,
|
|
778
864
|
):
|
|
779
865
|
"""Add empty path to active keying set
|
|
780
866
|
|
|
781
|
-
:type override_context: typing.Optional[typing.Union[
|
|
867
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
782
868
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
783
869
|
:type undo: typing.Optional[bool]
|
|
784
870
|
"""
|
|
@@ -786,13 +872,15 @@ def keying_set_path_add(
|
|
|
786
872
|
...
|
|
787
873
|
|
|
788
874
|
def keying_set_path_remove(
|
|
789
|
-
override_context: typing.Optional[
|
|
875
|
+
override_context: typing.Optional[
|
|
876
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
877
|
+
] = None,
|
|
790
878
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
791
879
|
undo: typing.Optional[bool] = None,
|
|
792
880
|
):
|
|
793
881
|
"""Remove active Path from active keying set
|
|
794
882
|
|
|
795
|
-
:type override_context: typing.Optional[typing.Union[
|
|
883
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
796
884
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
797
885
|
:type undo: typing.Optional[bool]
|
|
798
886
|
"""
|
|
@@ -800,13 +888,15 @@ def keying_set_path_remove(
|
|
|
800
888
|
...
|
|
801
889
|
|
|
802
890
|
def keying_set_remove(
|
|
803
|
-
override_context: typing.Optional[
|
|
891
|
+
override_context: typing.Optional[
|
|
892
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
893
|
+
] = None,
|
|
804
894
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
805
895
|
undo: typing.Optional[bool] = None,
|
|
806
896
|
):
|
|
807
897
|
"""Remove the active keying set
|
|
808
898
|
|
|
809
|
-
:type override_context: typing.Optional[typing.Union[
|
|
899
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
810
900
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
811
901
|
:type undo: typing.Optional[bool]
|
|
812
902
|
"""
|
|
@@ -814,14 +904,16 @@ def keying_set_remove(
|
|
|
814
904
|
...
|
|
815
905
|
|
|
816
906
|
def keyingset_button_add(
|
|
817
|
-
override_context: typing.Optional[
|
|
907
|
+
override_context: typing.Optional[
|
|
908
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
909
|
+
] = None,
|
|
818
910
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
819
911
|
undo: typing.Optional[bool] = None,
|
|
820
912
|
all: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
821
913
|
):
|
|
822
914
|
"""Add current UI-active property to current keying set
|
|
823
915
|
|
|
824
|
-
:type override_context: typing.Optional[typing.Union[
|
|
916
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
825
917
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
826
918
|
:type undo: typing.Optional[bool]
|
|
827
919
|
:param all: All, Add all elements of the array to a Keying Set
|
|
@@ -831,13 +923,15 @@ def keyingset_button_add(
|
|
|
831
923
|
...
|
|
832
924
|
|
|
833
925
|
def keyingset_button_remove(
|
|
834
|
-
override_context: typing.Optional[
|
|
926
|
+
override_context: typing.Optional[
|
|
927
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
928
|
+
] = None,
|
|
835
929
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
836
930
|
undo: typing.Optional[bool] = None,
|
|
837
931
|
):
|
|
838
932
|
"""Remove current UI-active property from current keying set
|
|
839
933
|
|
|
840
|
-
:type override_context: typing.Optional[typing.Union[
|
|
934
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
841
935
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
842
936
|
:type undo: typing.Optional[bool]
|
|
843
937
|
"""
|
|
@@ -845,13 +939,15 @@ def keyingset_button_remove(
|
|
|
845
939
|
...
|
|
846
940
|
|
|
847
941
|
def paste_driver_button(
|
|
848
|
-
override_context: typing.Optional[
|
|
942
|
+
override_context: typing.Optional[
|
|
943
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
944
|
+
] = None,
|
|
849
945
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
850
946
|
undo: typing.Optional[bool] = None,
|
|
851
947
|
):
|
|
852
948
|
"""Paste the driver in the internal clipboard to the highlighted button
|
|
853
949
|
|
|
854
|
-
:type override_context: typing.Optional[typing.Union[
|
|
950
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
855
951
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
856
952
|
:type undo: typing.Optional[bool]
|
|
857
953
|
"""
|
|
@@ -859,13 +955,15 @@ def paste_driver_button(
|
|
|
859
955
|
...
|
|
860
956
|
|
|
861
957
|
def previewrange_clear(
|
|
862
|
-
override_context: typing.Optional[
|
|
958
|
+
override_context: typing.Optional[
|
|
959
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
960
|
+
] = None,
|
|
863
961
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
864
962
|
undo: typing.Optional[bool] = None,
|
|
865
963
|
):
|
|
866
964
|
"""Clear preview range
|
|
867
965
|
|
|
868
|
-
:type override_context: typing.Optional[typing.Union[
|
|
966
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
869
967
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
870
968
|
:type undo: typing.Optional[bool]
|
|
871
969
|
"""
|
|
@@ -873,7 +971,9 @@ def previewrange_clear(
|
|
|
873
971
|
...
|
|
874
972
|
|
|
875
973
|
def previewrange_set(
|
|
876
|
-
override_context: typing.Optional[
|
|
974
|
+
override_context: typing.Optional[
|
|
975
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
976
|
+
] = None,
|
|
877
977
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
878
978
|
undo: typing.Optional[bool] = None,
|
|
879
979
|
xmin: typing.Optional[typing.Any] = 0,
|
|
@@ -884,7 +984,7 @@ def previewrange_set(
|
|
|
884
984
|
):
|
|
885
985
|
"""Interactively define frame range used for playback
|
|
886
986
|
|
|
887
|
-
:type override_context: typing.Optional[typing.Union[
|
|
987
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
888
988
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
889
989
|
:type undo: typing.Optional[bool]
|
|
890
990
|
:param xmin: X Min
|
|
@@ -902,13 +1002,15 @@ def previewrange_set(
|
|
|
902
1002
|
...
|
|
903
1003
|
|
|
904
1004
|
def start_frame_set(
|
|
905
|
-
override_context: typing.Optional[
|
|
1005
|
+
override_context: typing.Optional[
|
|
1006
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1007
|
+
] = None,
|
|
906
1008
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
907
1009
|
undo: typing.Optional[bool] = None,
|
|
908
1010
|
):
|
|
909
1011
|
"""Set the current frame as the preview or scene start frame
|
|
910
1012
|
|
|
911
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1013
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
912
1014
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
913
1015
|
:type undo: typing.Optional[bool]
|
|
914
1016
|
"""
|
|
@@ -916,14 +1018,16 @@ def start_frame_set(
|
|
|
916
1018
|
...
|
|
917
1019
|
|
|
918
1020
|
def update_animated_transform_constraints(
|
|
919
|
-
override_context: typing.Optional[
|
|
1021
|
+
override_context: typing.Optional[
|
|
1022
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1023
|
+
] = None,
|
|
920
1024
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
921
1025
|
undo: typing.Optional[bool] = None,
|
|
922
1026
|
use_convert_to_radians: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
923
1027
|
):
|
|
924
1028
|
"""Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)
|
|
925
1029
|
|
|
926
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1030
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
927
1031
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
928
1032
|
:type undo: typing.Optional[bool]
|
|
929
1033
|
:param use_convert_to_radians: Convert to Radians, Convert f-curves/drivers affecting rotations to radians.Warning: Use this only once
|
|
@@ -933,7 +1037,9 @@ def update_animated_transform_constraints(
|
|
|
933
1037
|
...
|
|
934
1038
|
|
|
935
1039
|
def view_curve_in_graph_editor(
|
|
936
|
-
override_context: typing.Optional[
|
|
1040
|
+
override_context: typing.Optional[
|
|
1041
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1042
|
+
] = None,
|
|
937
1043
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
938
1044
|
undo: typing.Optional[bool] = None,
|
|
939
1045
|
all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -941,7 +1047,7 @@ def view_curve_in_graph_editor(
|
|
|
941
1047
|
):
|
|
942
1048
|
"""Frame the property under the cursor in the Graph Editor
|
|
943
1049
|
|
|
944
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1050
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
945
1051
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
946
1052
|
:type undo: typing.Optional[bool]
|
|
947
1053
|
:param all: Show All, Frame the whole array property instead of only the index under the cursor
|