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/nla/__init__.pyi
CHANGED
|
@@ -5,14 +5,16 @@ import bpy.types
|
|
|
5
5
|
GenericType = typing.TypeVar("GenericType")
|
|
6
6
|
|
|
7
7
|
def action_pushdown(
|
|
8
|
-
override_context: typing.Optional[
|
|
8
|
+
override_context: typing.Optional[
|
|
9
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
10
|
+
] = None,
|
|
9
11
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
10
12
|
undo: typing.Optional[bool] = None,
|
|
11
13
|
track_index: typing.Optional[typing.Any] = -1,
|
|
12
14
|
):
|
|
13
15
|
"""Push action down onto the top of the NLA stack as a new strip
|
|
14
16
|
|
|
15
|
-
:type override_context: typing.Optional[typing.Union[
|
|
17
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
18
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
17
19
|
:type undo: typing.Optional[bool]
|
|
18
20
|
:param track_index: Track Index, Index of NLA action track to perform pushdown operation on
|
|
@@ -22,14 +24,16 @@ def action_pushdown(
|
|
|
22
24
|
...
|
|
23
25
|
|
|
24
26
|
def action_sync_length(
|
|
25
|
-
override_context: typing.Optional[
|
|
27
|
+
override_context: typing.Optional[
|
|
28
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
29
|
+
] = None,
|
|
26
30
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
27
31
|
undo: typing.Optional[bool] = None,
|
|
28
32
|
active: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
29
33
|
):
|
|
30
34
|
"""Synchronize the length of the referenced Action with the length used in the strip
|
|
31
35
|
|
|
32
|
-
:type override_context: typing.Optional[typing.Union[
|
|
36
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
33
37
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
34
38
|
:type undo: typing.Optional[bool]
|
|
35
39
|
:param active: Active Strip Only, Only sync the active length for the active strip
|
|
@@ -39,14 +43,16 @@ def action_sync_length(
|
|
|
39
43
|
...
|
|
40
44
|
|
|
41
45
|
def action_unlink(
|
|
42
|
-
override_context: typing.Optional[
|
|
46
|
+
override_context: typing.Optional[
|
|
47
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
48
|
+
] = None,
|
|
43
49
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
44
50
|
undo: typing.Optional[bool] = None,
|
|
45
51
|
force_delete: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
46
52
|
):
|
|
47
53
|
"""Unlink this action from the active action slot (and/or exit Tweak Mode)
|
|
48
54
|
|
|
49
|
-
:type override_context: typing.Optional[typing.Union[
|
|
55
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
50
56
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
51
57
|
:type undo: typing.Optional[bool]
|
|
52
58
|
:param force_delete: Force Delete, Clear Fake User and remove copy stashed in this data-block's NLA stack
|
|
@@ -56,14 +62,16 @@ def action_unlink(
|
|
|
56
62
|
...
|
|
57
63
|
|
|
58
64
|
def actionclip_add(
|
|
59
|
-
override_context: typing.Optional[
|
|
65
|
+
override_context: typing.Optional[
|
|
66
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
67
|
+
] = None,
|
|
60
68
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
61
69
|
undo: typing.Optional[bool] = None,
|
|
62
70
|
action: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
63
71
|
):
|
|
64
72
|
"""Add an Action-Clip strip (i.e. an NLA Strip referencing an Action) to the active track
|
|
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 action: Action
|
|
@@ -73,13 +81,15 @@ def actionclip_add(
|
|
|
73
81
|
...
|
|
74
82
|
|
|
75
83
|
def apply_scale(
|
|
76
|
-
override_context: typing.Optional[
|
|
84
|
+
override_context: typing.Optional[
|
|
85
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
86
|
+
] = None,
|
|
77
87
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
78
88
|
undo: typing.Optional[bool] = None,
|
|
79
89
|
):
|
|
80
90
|
"""Apply scaling of selected strips to their referenced Actions
|
|
81
91
|
|
|
82
|
-
:type override_context: typing.Optional[typing.Union[
|
|
92
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
83
93
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
84
94
|
:type undo: typing.Optional[bool]
|
|
85
95
|
"""
|
|
@@ -87,7 +97,9 @@ def apply_scale(
|
|
|
87
97
|
...
|
|
88
98
|
|
|
89
99
|
def bake(
|
|
90
|
-
override_context: typing.Optional[
|
|
100
|
+
override_context: typing.Optional[
|
|
101
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
102
|
+
] = None,
|
|
91
103
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
92
104
|
undo: typing.Optional[bool] = None,
|
|
93
105
|
frame_start: typing.Optional[typing.Any] = 1,
|
|
@@ -101,16 +113,16 @@ def bake(
|
|
|
101
113
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
102
114
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
103
115
|
channel_types: typing.Optional[typing.Any] = {
|
|
104
|
-
'"BBONE"',
|
|
105
|
-
'"ROTATION"',
|
|
106
116
|
'"SCALE"',
|
|
107
117
|
'"LOCATION"',
|
|
108
118
|
'"PROPS"',
|
|
119
|
+
'"BBONE"',
|
|
120
|
+
'"ROTATION"',
|
|
109
121
|
},
|
|
110
122
|
):
|
|
111
123
|
"""Bake all selected objects location/scale/rotation animation to an action
|
|
112
124
|
|
|
113
|
-
:type override_context: typing.Optional[typing.Union[
|
|
125
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
114
126
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
115
127
|
:type undo: typing.Optional[bool]
|
|
116
128
|
:param frame_start: Start Frame, Start frame for baking
|
|
@@ -161,14 +173,16 @@ def bake(
|
|
|
161
173
|
...
|
|
162
174
|
|
|
163
175
|
def channels_click(
|
|
164
|
-
override_context: typing.Optional[
|
|
176
|
+
override_context: typing.Optional[
|
|
177
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
178
|
+
] = None,
|
|
165
179
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
166
180
|
undo: typing.Optional[bool] = None,
|
|
167
181
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
168
182
|
):
|
|
169
183
|
"""Handle clicks to select NLA tracks
|
|
170
184
|
|
|
171
|
-
:type override_context: typing.Optional[typing.Union[
|
|
185
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
172
186
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
173
187
|
:type undo: typing.Optional[bool]
|
|
174
188
|
:param extend: Extend Select
|
|
@@ -178,13 +192,15 @@ def channels_click(
|
|
|
178
192
|
...
|
|
179
193
|
|
|
180
194
|
def clear_scale(
|
|
181
|
-
override_context: typing.Optional[
|
|
195
|
+
override_context: typing.Optional[
|
|
196
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
197
|
+
] = None,
|
|
182
198
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
183
199
|
undo: typing.Optional[bool] = None,
|
|
184
200
|
):
|
|
185
201
|
"""Reset scaling of selected strips
|
|
186
202
|
|
|
187
|
-
:type override_context: typing.Optional[typing.Union[
|
|
203
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
188
204
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
189
205
|
:type undo: typing.Optional[bool]
|
|
190
206
|
"""
|
|
@@ -192,7 +208,9 @@ def clear_scale(
|
|
|
192
208
|
...
|
|
193
209
|
|
|
194
210
|
def click_select(
|
|
195
|
-
override_context: typing.Optional[
|
|
211
|
+
override_context: typing.Optional[
|
|
212
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
213
|
+
] = None,
|
|
196
214
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
197
215
|
undo: typing.Optional[bool] = None,
|
|
198
216
|
wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -203,7 +221,7 @@ def click_select(
|
|
|
203
221
|
):
|
|
204
222
|
"""Handle clicks to select NLA Strips
|
|
205
223
|
|
|
206
|
-
:type override_context: typing.Optional[typing.Union[
|
|
224
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
207
225
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
208
226
|
:type undo: typing.Optional[bool]
|
|
209
227
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -221,13 +239,15 @@ def click_select(
|
|
|
221
239
|
...
|
|
222
240
|
|
|
223
241
|
def delete(
|
|
224
|
-
override_context: typing.Optional[
|
|
242
|
+
override_context: typing.Optional[
|
|
243
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
244
|
+
] = None,
|
|
225
245
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
226
246
|
undo: typing.Optional[bool] = None,
|
|
227
247
|
):
|
|
228
248
|
"""Delete selected strips
|
|
229
249
|
|
|
230
|
-
:type override_context: typing.Optional[typing.Union[
|
|
250
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
231
251
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
232
252
|
:type undo: typing.Optional[bool]
|
|
233
253
|
"""
|
|
@@ -235,14 +255,16 @@ def delete(
|
|
|
235
255
|
...
|
|
236
256
|
|
|
237
257
|
def duplicate(
|
|
238
|
-
override_context: typing.Optional[
|
|
258
|
+
override_context: typing.Optional[
|
|
259
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
260
|
+
] = None,
|
|
239
261
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
240
262
|
undo: typing.Optional[bool] = None,
|
|
241
263
|
linked: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
242
264
|
):
|
|
243
265
|
"""Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
244
266
|
|
|
245
|
-
:type override_context: typing.Optional[typing.Union[
|
|
267
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
246
268
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
247
269
|
:type undo: typing.Optional[bool]
|
|
248
270
|
:param linked: Linked, When duplicating strips, assign new copies of the actions they use
|
|
@@ -252,7 +274,9 @@ def duplicate(
|
|
|
252
274
|
...
|
|
253
275
|
|
|
254
276
|
def duplicate_linked_move(
|
|
255
|
-
override_context: typing.Optional[
|
|
277
|
+
override_context: typing.Optional[
|
|
278
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
279
|
+
] = None,
|
|
256
280
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
257
281
|
undo: typing.Optional[bool] = None,
|
|
258
282
|
NLA_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -260,7 +284,7 @@ def duplicate_linked_move(
|
|
|
260
284
|
):
|
|
261
285
|
"""Duplicate Linked selected NLA-Strips, adding the new strips to new track(s)
|
|
262
286
|
|
|
263
|
-
:type override_context: typing.Optional[typing.Union[
|
|
287
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
264
288
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
265
289
|
:type undo: typing.Optional[bool]
|
|
266
290
|
:param NLA_OT_duplicate: Duplicate Strips, Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
@@ -272,7 +296,9 @@ def duplicate_linked_move(
|
|
|
272
296
|
...
|
|
273
297
|
|
|
274
298
|
def duplicate_move(
|
|
275
|
-
override_context: typing.Optional[
|
|
299
|
+
override_context: typing.Optional[
|
|
300
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
301
|
+
] = None,
|
|
276
302
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
277
303
|
undo: typing.Optional[bool] = None,
|
|
278
304
|
NLA_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -280,7 +306,7 @@ def duplicate_move(
|
|
|
280
306
|
):
|
|
281
307
|
"""Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
282
308
|
|
|
283
|
-
:type override_context: typing.Optional[typing.Union[
|
|
309
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
284
310
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
285
311
|
:type undo: typing.Optional[bool]
|
|
286
312
|
:param NLA_OT_duplicate: Duplicate Strips, Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
@@ -292,7 +318,9 @@ def duplicate_move(
|
|
|
292
318
|
...
|
|
293
319
|
|
|
294
320
|
def fmodifier_add(
|
|
295
|
-
override_context: typing.Optional[
|
|
321
|
+
override_context: typing.Optional[
|
|
322
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
323
|
+
] = None,
|
|
296
324
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
297
325
|
undo: typing.Optional[bool] = None,
|
|
298
326
|
type: typing.Optional[typing.Union[str, int]] = "NULL",
|
|
@@ -300,7 +328,7 @@ def fmodifier_add(
|
|
|
300
328
|
):
|
|
301
329
|
"""Add F-Modifier to the active/selected NLA-Strips
|
|
302
330
|
|
|
303
|
-
:type override_context: typing.Optional[typing.Union[
|
|
331
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
304
332
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
305
333
|
:type undo: typing.Optional[bool]
|
|
306
334
|
:param type: Type
|
|
@@ -312,13 +340,15 @@ def fmodifier_add(
|
|
|
312
340
|
...
|
|
313
341
|
|
|
314
342
|
def fmodifier_copy(
|
|
315
|
-
override_context: typing.Optional[
|
|
343
|
+
override_context: typing.Optional[
|
|
344
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
345
|
+
] = None,
|
|
316
346
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
317
347
|
undo: typing.Optional[bool] = None,
|
|
318
348
|
):
|
|
319
349
|
"""Copy the F-Modifier(s) of the active NLA-Strip
|
|
320
350
|
|
|
321
|
-
:type override_context: typing.Optional[typing.Union[
|
|
351
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
322
352
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
323
353
|
:type undo: typing.Optional[bool]
|
|
324
354
|
"""
|
|
@@ -326,7 +356,9 @@ def fmodifier_copy(
|
|
|
326
356
|
...
|
|
327
357
|
|
|
328
358
|
def fmodifier_paste(
|
|
329
|
-
override_context: typing.Optional[
|
|
359
|
+
override_context: typing.Optional[
|
|
360
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
361
|
+
] = None,
|
|
330
362
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
331
363
|
undo: typing.Optional[bool] = None,
|
|
332
364
|
only_active: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -334,7 +366,7 @@ def fmodifier_paste(
|
|
|
334
366
|
):
|
|
335
367
|
"""Add copied F-Modifiers to the selected NLA-Strips
|
|
336
368
|
|
|
337
|
-
:type override_context: typing.Optional[typing.Union[
|
|
369
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
338
370
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
339
371
|
:type undo: typing.Optional[bool]
|
|
340
372
|
:param only_active: Only Active, Only paste F-Modifiers on active strip
|
|
@@ -346,14 +378,16 @@ def fmodifier_paste(
|
|
|
346
378
|
...
|
|
347
379
|
|
|
348
380
|
def make_single_user(
|
|
349
|
-
override_context: typing.Optional[
|
|
381
|
+
override_context: typing.Optional[
|
|
382
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
383
|
+
] = None,
|
|
350
384
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
351
385
|
undo: typing.Optional[bool] = None,
|
|
352
386
|
confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
353
387
|
):
|
|
354
388
|
"""Make linked action local to each strip
|
|
355
389
|
|
|
356
|
-
:type override_context: typing.Optional[typing.Union[
|
|
390
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
357
391
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
358
392
|
:type undo: typing.Optional[bool]
|
|
359
393
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -363,13 +397,15 @@ def make_single_user(
|
|
|
363
397
|
...
|
|
364
398
|
|
|
365
399
|
def meta_add(
|
|
366
|
-
override_context: typing.Optional[
|
|
400
|
+
override_context: typing.Optional[
|
|
401
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
402
|
+
] = None,
|
|
367
403
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
368
404
|
undo: typing.Optional[bool] = None,
|
|
369
405
|
):
|
|
370
406
|
"""Add new meta-strips incorporating the selected strips
|
|
371
407
|
|
|
372
|
-
:type override_context: typing.Optional[typing.Union[
|
|
408
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
373
409
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
374
410
|
:type undo: typing.Optional[bool]
|
|
375
411
|
"""
|
|
@@ -377,13 +413,15 @@ def meta_add(
|
|
|
377
413
|
...
|
|
378
414
|
|
|
379
415
|
def meta_remove(
|
|
380
|
-
override_context: typing.Optional[
|
|
416
|
+
override_context: typing.Optional[
|
|
417
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
418
|
+
] = None,
|
|
381
419
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
382
420
|
undo: typing.Optional[bool] = None,
|
|
383
421
|
):
|
|
384
422
|
"""Separate out the strips held by the selected meta-strips
|
|
385
423
|
|
|
386
|
-
:type override_context: typing.Optional[typing.Union[
|
|
424
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
387
425
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
388
426
|
:type undo: typing.Optional[bool]
|
|
389
427
|
"""
|
|
@@ -391,13 +429,15 @@ def meta_remove(
|
|
|
391
429
|
...
|
|
392
430
|
|
|
393
431
|
def move_down(
|
|
394
|
-
override_context: typing.Optional[
|
|
432
|
+
override_context: typing.Optional[
|
|
433
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
434
|
+
] = None,
|
|
395
435
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
396
436
|
undo: typing.Optional[bool] = None,
|
|
397
437
|
):
|
|
398
438
|
"""Move selected strips down a track if there's room
|
|
399
439
|
|
|
400
|
-
:type override_context: typing.Optional[typing.Union[
|
|
440
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
401
441
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
402
442
|
:type undo: typing.Optional[bool]
|
|
403
443
|
"""
|
|
@@ -405,13 +445,15 @@ def move_down(
|
|
|
405
445
|
...
|
|
406
446
|
|
|
407
447
|
def move_up(
|
|
408
|
-
override_context: typing.Optional[
|
|
448
|
+
override_context: typing.Optional[
|
|
449
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
450
|
+
] = None,
|
|
409
451
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
410
452
|
undo: typing.Optional[bool] = None,
|
|
411
453
|
):
|
|
412
454
|
"""Move selected strips up a track if there's room
|
|
413
455
|
|
|
414
|
-
:type override_context: typing.Optional[typing.Union[
|
|
456
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
415
457
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
416
458
|
:type undo: typing.Optional[bool]
|
|
417
459
|
"""
|
|
@@ -419,13 +461,15 @@ def move_up(
|
|
|
419
461
|
...
|
|
420
462
|
|
|
421
463
|
def mute_toggle(
|
|
422
|
-
override_context: typing.Optional[
|
|
464
|
+
override_context: typing.Optional[
|
|
465
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
466
|
+
] = None,
|
|
423
467
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
424
468
|
undo: typing.Optional[bool] = None,
|
|
425
469
|
):
|
|
426
470
|
"""Mute or un-mute selected strips
|
|
427
471
|
|
|
428
|
-
:type override_context: typing.Optional[typing.Union[
|
|
472
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
429
473
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
430
474
|
:type undo: typing.Optional[bool]
|
|
431
475
|
"""
|
|
@@ -433,13 +477,15 @@ def mute_toggle(
|
|
|
433
477
|
...
|
|
434
478
|
|
|
435
479
|
def previewrange_set(
|
|
436
|
-
override_context: typing.Optional[
|
|
480
|
+
override_context: typing.Optional[
|
|
481
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
482
|
+
] = None,
|
|
437
483
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
438
484
|
undo: typing.Optional[bool] = None,
|
|
439
485
|
):
|
|
440
486
|
"""Set Preview Range based on extends of selected strips
|
|
441
487
|
|
|
442
|
-
:type override_context: typing.Optional[typing.Union[
|
|
488
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
443
489
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
444
490
|
:type undo: typing.Optional[bool]
|
|
445
491
|
"""
|
|
@@ -447,14 +493,16 @@ def previewrange_set(
|
|
|
447
493
|
...
|
|
448
494
|
|
|
449
495
|
def select_all(
|
|
450
|
-
override_context: typing.Optional[
|
|
496
|
+
override_context: typing.Optional[
|
|
497
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
498
|
+
] = None,
|
|
451
499
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
452
500
|
undo: typing.Optional[bool] = None,
|
|
453
501
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
454
502
|
):
|
|
455
503
|
"""Select or deselect all NLA-Strips
|
|
456
504
|
|
|
457
|
-
:type override_context: typing.Optional[typing.Union[
|
|
505
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
458
506
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
459
507
|
:type undo: typing.Optional[bool]
|
|
460
508
|
:param action: Action, Selection action to execute
|
|
@@ -476,7 +524,9 @@ def select_all(
|
|
|
476
524
|
...
|
|
477
525
|
|
|
478
526
|
def select_box(
|
|
479
|
-
override_context: typing.Optional[
|
|
527
|
+
override_context: typing.Optional[
|
|
528
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
529
|
+
] = None,
|
|
480
530
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
481
531
|
undo: typing.Optional[bool] = None,
|
|
482
532
|
axis_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -490,7 +540,7 @@ def select_box(
|
|
|
490
540
|
):
|
|
491
541
|
"""Use box selection to grab NLA-Strips
|
|
492
542
|
|
|
493
|
-
:type override_context: typing.Optional[typing.Union[
|
|
543
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
494
544
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
495
545
|
:type undo: typing.Optional[bool]
|
|
496
546
|
:param axis_range: Axis Range
|
|
@@ -523,7 +573,9 @@ def select_box(
|
|
|
523
573
|
...
|
|
524
574
|
|
|
525
575
|
def select_leftright(
|
|
526
|
-
override_context: typing.Optional[
|
|
576
|
+
override_context: typing.Optional[
|
|
577
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
578
|
+
] = None,
|
|
527
579
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
528
580
|
undo: typing.Optional[bool] = None,
|
|
529
581
|
mode: typing.Optional[typing.Any] = "CHECK",
|
|
@@ -531,7 +583,7 @@ def select_leftright(
|
|
|
531
583
|
):
|
|
532
584
|
"""Select strips to the left or the right of the current frame
|
|
533
585
|
|
|
534
|
-
:type override_context: typing.Optional[typing.Union[
|
|
586
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
535
587
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
536
588
|
:type undo: typing.Optional[bool]
|
|
537
589
|
:param mode: Mode
|
|
@@ -543,13 +595,15 @@ def select_leftright(
|
|
|
543
595
|
...
|
|
544
596
|
|
|
545
597
|
def selected_objects_add(
|
|
546
|
-
override_context: typing.Optional[
|
|
598
|
+
override_context: typing.Optional[
|
|
599
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
600
|
+
] = None,
|
|
547
601
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
548
602
|
undo: typing.Optional[bool] = None,
|
|
549
603
|
):
|
|
550
604
|
"""Make selected objects appear in NLA Editor by adding Animation Data
|
|
551
605
|
|
|
552
|
-
:type override_context: typing.Optional[typing.Union[
|
|
606
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
553
607
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
554
608
|
:type undo: typing.Optional[bool]
|
|
555
609
|
"""
|
|
@@ -557,14 +611,16 @@ def selected_objects_add(
|
|
|
557
611
|
...
|
|
558
612
|
|
|
559
613
|
def snap(
|
|
560
|
-
override_context: typing.Optional[
|
|
614
|
+
override_context: typing.Optional[
|
|
615
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
616
|
+
] = None,
|
|
561
617
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
562
618
|
undo: typing.Optional[bool] = None,
|
|
563
619
|
type: typing.Optional[typing.Any] = "CFRA",
|
|
564
620
|
):
|
|
565
621
|
"""Move start of strips to specified time
|
|
566
622
|
|
|
567
|
-
:type override_context: typing.Optional[typing.Union[
|
|
623
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
568
624
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
569
625
|
:type undo: typing.Optional[bool]
|
|
570
626
|
:param type: Type
|
|
@@ -574,13 +630,15 @@ def snap(
|
|
|
574
630
|
...
|
|
575
631
|
|
|
576
632
|
def soundclip_add(
|
|
577
|
-
override_context: typing.Optional[
|
|
633
|
+
override_context: typing.Optional[
|
|
634
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
635
|
+
] = None,
|
|
578
636
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
579
637
|
undo: typing.Optional[bool] = None,
|
|
580
638
|
):
|
|
581
639
|
"""Add a strip for controlling when speaker plays its sound clip
|
|
582
640
|
|
|
583
|
-
:type override_context: typing.Optional[typing.Union[
|
|
641
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
584
642
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
585
643
|
:type undo: typing.Optional[bool]
|
|
586
644
|
"""
|
|
@@ -588,13 +646,15 @@ def soundclip_add(
|
|
|
588
646
|
...
|
|
589
647
|
|
|
590
648
|
def split(
|
|
591
|
-
override_context: typing.Optional[
|
|
649
|
+
override_context: typing.Optional[
|
|
650
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
651
|
+
] = None,
|
|
592
652
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
593
653
|
undo: typing.Optional[bool] = None,
|
|
594
654
|
):
|
|
595
655
|
"""Split selected strips at their midpoints
|
|
596
656
|
|
|
597
|
-
:type override_context: typing.Optional[typing.Union[
|
|
657
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
598
658
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
599
659
|
:type undo: typing.Optional[bool]
|
|
600
660
|
"""
|
|
@@ -602,13 +662,15 @@ def split(
|
|
|
602
662
|
...
|
|
603
663
|
|
|
604
664
|
def swap(
|
|
605
|
-
override_context: typing.Optional[
|
|
665
|
+
override_context: typing.Optional[
|
|
666
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
667
|
+
] = None,
|
|
606
668
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
607
669
|
undo: typing.Optional[bool] = None,
|
|
608
670
|
):
|
|
609
671
|
"""Swap order of selected strips within tracks
|
|
610
672
|
|
|
611
|
-
:type override_context: typing.Optional[typing.Union[
|
|
673
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
612
674
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
613
675
|
:type undo: typing.Optional[bool]
|
|
614
676
|
"""
|
|
@@ -616,14 +678,16 @@ def swap(
|
|
|
616
678
|
...
|
|
617
679
|
|
|
618
680
|
def tracks_add(
|
|
619
|
-
override_context: typing.Optional[
|
|
681
|
+
override_context: typing.Optional[
|
|
682
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
683
|
+
] = None,
|
|
620
684
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
621
685
|
undo: typing.Optional[bool] = None,
|
|
622
686
|
above_selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
623
687
|
):
|
|
624
688
|
"""Add NLA-Tracks above/after the selected tracks
|
|
625
689
|
|
|
626
|
-
:type override_context: typing.Optional[typing.Union[
|
|
690
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
627
691
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
628
692
|
:type undo: typing.Optional[bool]
|
|
629
693
|
:param above_selected: Above Selected, Add a new NLA Track above every existing selected one
|
|
@@ -633,13 +697,15 @@ def tracks_add(
|
|
|
633
697
|
...
|
|
634
698
|
|
|
635
699
|
def tracks_delete(
|
|
636
|
-
override_context: typing.Optional[
|
|
700
|
+
override_context: typing.Optional[
|
|
701
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
702
|
+
] = None,
|
|
637
703
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
638
704
|
undo: typing.Optional[bool] = None,
|
|
639
705
|
):
|
|
640
706
|
"""Delete selected NLA-Tracks and the strips they contain
|
|
641
707
|
|
|
642
|
-
:type override_context: typing.Optional[typing.Union[
|
|
708
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
643
709
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
644
710
|
:type undo: typing.Optional[bool]
|
|
645
711
|
"""
|
|
@@ -647,13 +713,15 @@ def tracks_delete(
|
|
|
647
713
|
...
|
|
648
714
|
|
|
649
715
|
def transition_add(
|
|
650
|
-
override_context: typing.Optional[
|
|
716
|
+
override_context: typing.Optional[
|
|
717
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
718
|
+
] = None,
|
|
651
719
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
652
720
|
undo: typing.Optional[bool] = None,
|
|
653
721
|
):
|
|
654
722
|
"""Add a transition strip between two adjacent selected strips
|
|
655
723
|
|
|
656
|
-
:type override_context: typing.Optional[typing.Union[
|
|
724
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
657
725
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
658
726
|
:type undo: typing.Optional[bool]
|
|
659
727
|
"""
|
|
@@ -661,7 +729,9 @@ def transition_add(
|
|
|
661
729
|
...
|
|
662
730
|
|
|
663
731
|
def tweakmode_enter(
|
|
664
|
-
override_context: typing.Optional[
|
|
732
|
+
override_context: typing.Optional[
|
|
733
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
734
|
+
] = None,
|
|
665
735
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
666
736
|
undo: typing.Optional[bool] = None,
|
|
667
737
|
isolate_action: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -669,7 +739,7 @@ def tweakmode_enter(
|
|
|
669
739
|
):
|
|
670
740
|
"""Enter tweaking mode for the action referenced by the active strip to edit its keyframes
|
|
671
741
|
|
|
672
|
-
:type override_context: typing.Optional[typing.Union[
|
|
742
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
673
743
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
674
744
|
:type undo: typing.Optional[bool]
|
|
675
745
|
:param isolate_action: Isolate Action, Enable 'solo' on the NLA Track containing the active strip, to edit it without seeing the effects of the NLA stack
|
|
@@ -681,14 +751,16 @@ def tweakmode_enter(
|
|
|
681
751
|
...
|
|
682
752
|
|
|
683
753
|
def tweakmode_exit(
|
|
684
|
-
override_context: typing.Optional[
|
|
754
|
+
override_context: typing.Optional[
|
|
755
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
756
|
+
] = None,
|
|
685
757
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
686
758
|
undo: typing.Optional[bool] = None,
|
|
687
759
|
isolate_action: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
688
760
|
):
|
|
689
761
|
"""Exit tweaking mode for the action referenced by the active strip
|
|
690
762
|
|
|
691
|
-
:type override_context: typing.Optional[typing.Union[
|
|
763
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
692
764
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
693
765
|
:type undo: typing.Optional[bool]
|
|
694
766
|
:param isolate_action: Isolate Action, Disable 'solo' on any of the NLA Tracks after exiting tweak mode to get things back to normal
|
|
@@ -698,13 +770,15 @@ def tweakmode_exit(
|
|
|
698
770
|
...
|
|
699
771
|
|
|
700
772
|
def view_all(
|
|
701
|
-
override_context: typing.Optional[
|
|
773
|
+
override_context: typing.Optional[
|
|
774
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
775
|
+
] = None,
|
|
702
776
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
703
777
|
undo: typing.Optional[bool] = None,
|
|
704
778
|
):
|
|
705
779
|
"""Reset viewable area to show full strips range
|
|
706
780
|
|
|
707
|
-
:type override_context: typing.Optional[typing.Union[
|
|
781
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
708
782
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
709
783
|
:type undo: typing.Optional[bool]
|
|
710
784
|
"""
|
|
@@ -712,13 +786,15 @@ def view_all(
|
|
|
712
786
|
...
|
|
713
787
|
|
|
714
788
|
def view_frame(
|
|
715
|
-
override_context: typing.Optional[
|
|
789
|
+
override_context: typing.Optional[
|
|
790
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
791
|
+
] = None,
|
|
716
792
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
717
793
|
undo: typing.Optional[bool] = None,
|
|
718
794
|
):
|
|
719
795
|
"""Move the view to the current frame
|
|
720
796
|
|
|
721
|
-
:type override_context: typing.Optional[typing.Union[
|
|
797
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
722
798
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
723
799
|
:type undo: typing.Optional[bool]
|
|
724
800
|
"""
|
|
@@ -726,13 +802,15 @@ def view_frame(
|
|
|
726
802
|
...
|
|
727
803
|
|
|
728
804
|
def view_selected(
|
|
729
|
-
override_context: typing.Optional[
|
|
805
|
+
override_context: typing.Optional[
|
|
806
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
807
|
+
] = None,
|
|
730
808
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
731
809
|
undo: typing.Optional[bool] = None,
|
|
732
810
|
):
|
|
733
811
|
"""Reset viewable area to show selected strips range
|
|
734
812
|
|
|
735
|
-
:type override_context: typing.Optional[typing.Union[
|
|
813
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
736
814
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
737
815
|
:type undo: typing.Optional[bool]
|
|
738
816
|
"""
|