fake-bpy-module 20240928__py3-none-any.whl → 20240929__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +254 -219
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +84 -84
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -6,7 +6,7 @@ import bpy.types
|
|
|
6
6
|
import bpy.typing
|
|
7
7
|
|
|
8
8
|
def action_pushdown(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
9
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
@@ -14,7 +14,7 @@ def action_pushdown(
|
|
|
14
14
|
):
|
|
15
15
|
"""Push action down onto the top of the NLA stack as a new strip
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
:param track_index: Track Index, Index of NLA action track to perform pushdown operation on
|
|
@@ -22,7 +22,7 @@ def action_pushdown(
|
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
24
|
def action_sync_length(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
26
26
|
execution_context: int | str | None = None,
|
|
27
27
|
undo: bool | None = None,
|
|
28
28
|
*,
|
|
@@ -30,7 +30,7 @@ def action_sync_length(
|
|
|
30
30
|
):
|
|
31
31
|
"""Synchronize the length of the referenced Action with the length used in the strip
|
|
32
32
|
|
|
33
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param active: Active Strip Only, Only sync the active length for the active strip
|
|
@@ -38,7 +38,7 @@ def action_sync_length(
|
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
40
|
def action_unlink(
|
|
41
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
41
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
42
42
|
execution_context: int | str | None = None,
|
|
43
43
|
undo: bool | None = None,
|
|
44
44
|
*,
|
|
@@ -46,7 +46,7 @@ def action_unlink(
|
|
|
46
46
|
):
|
|
47
47
|
"""Unlink this action from the active action slot (and/or exit Tweak Mode)
|
|
48
48
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
:param force_delete: Force Delete, Clear Fake User and remove copy stashed in this data-block's NLA stack
|
|
@@ -54,7 +54,7 @@ def action_unlink(
|
|
|
54
54
|
"""
|
|
55
55
|
|
|
56
56
|
def actionclip_add(
|
|
57
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
57
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
58
58
|
execution_context: int | str | None = None,
|
|
59
59
|
undo: bool | None = None,
|
|
60
60
|
*,
|
|
@@ -62,7 +62,7 @@ def actionclip_add(
|
|
|
62
62
|
):
|
|
63
63
|
"""Add an Action-Clip strip (i.e. an NLA Strip referencing an Action) to the active track
|
|
64
64
|
|
|
65
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
65
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
66
66
|
:type execution_context: int | str | None
|
|
67
67
|
:type undo: bool | None
|
|
68
68
|
:param action: Action
|
|
@@ -70,19 +70,19 @@ def actionclip_add(
|
|
|
70
70
|
"""
|
|
71
71
|
|
|
72
72
|
def apply_scale(
|
|
73
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
73
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
):
|
|
77
77
|
"""Apply scaling of selected strips to their referenced Actions
|
|
78
78
|
|
|
79
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
80
80
|
:type execution_context: int | str | None
|
|
81
81
|
:type undo: bool | None
|
|
82
82
|
"""
|
|
83
83
|
|
|
84
84
|
def bake(
|
|
85
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
85
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
86
86
|
execution_context: int | str | None = None,
|
|
87
87
|
undo: bool | None = None,
|
|
88
88
|
*,
|
|
@@ -103,7 +103,7 @@ def bake(
|
|
|
103
103
|
):
|
|
104
104
|
"""Bake all selected objects location/scale/rotation animation to an action
|
|
105
105
|
|
|
106
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
106
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
107
107
|
:type execution_context: int | str | None
|
|
108
108
|
:type undo: bool | None
|
|
109
109
|
:param frame_start: Start Frame, Start frame for baking
|
|
@@ -152,7 +152,7 @@ def bake(
|
|
|
152
152
|
"""
|
|
153
153
|
|
|
154
154
|
def channels_click(
|
|
155
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
155
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
156
156
|
execution_context: int | str | None = None,
|
|
157
157
|
undo: bool | None = None,
|
|
158
158
|
*,
|
|
@@ -160,7 +160,7 @@ def channels_click(
|
|
|
160
160
|
):
|
|
161
161
|
"""Handle clicks to select NLA tracks
|
|
162
162
|
|
|
163
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
163
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
164
164
|
:type execution_context: int | str | None
|
|
165
165
|
:type undo: bool | None
|
|
166
166
|
:param extend: Extend Select
|
|
@@ -168,19 +168,19 @@ def channels_click(
|
|
|
168
168
|
"""
|
|
169
169
|
|
|
170
170
|
def clear_scale(
|
|
171
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
171
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
172
172
|
execution_context: int | str | None = None,
|
|
173
173
|
undo: bool | None = None,
|
|
174
174
|
):
|
|
175
175
|
"""Reset scaling of selected strips
|
|
176
176
|
|
|
177
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
178
178
|
:type execution_context: int | str | None
|
|
179
179
|
:type undo: bool | None
|
|
180
180
|
"""
|
|
181
181
|
|
|
182
182
|
def click_select(
|
|
183
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
183
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
184
184
|
execution_context: int | str | None = None,
|
|
185
185
|
undo: bool | None = None,
|
|
186
186
|
*,
|
|
@@ -192,7 +192,7 @@ def click_select(
|
|
|
192
192
|
):
|
|
193
193
|
"""Handle clicks to select NLA Strips
|
|
194
194
|
|
|
195
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
195
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
196
196
|
:type execution_context: int | str | None
|
|
197
197
|
:type undo: bool | None
|
|
198
198
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -208,19 +208,19 @@ def click_select(
|
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
210
|
def delete(
|
|
211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
212
212
|
execution_context: int | str | None = None,
|
|
213
213
|
undo: bool | None = None,
|
|
214
214
|
):
|
|
215
215
|
"""Delete selected strips
|
|
216
216
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
218
218
|
:type execution_context: int | str | None
|
|
219
219
|
:type undo: bool | None
|
|
220
220
|
"""
|
|
221
221
|
|
|
222
222
|
def duplicate(
|
|
223
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
223
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
224
224
|
execution_context: int | str | None = None,
|
|
225
225
|
undo: bool | None = None,
|
|
226
226
|
*,
|
|
@@ -228,7 +228,7 @@ def duplicate(
|
|
|
228
228
|
):
|
|
229
229
|
"""Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
230
230
|
|
|
231
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
231
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
232
232
|
:type execution_context: int | str | None
|
|
233
233
|
:type undo: bool | None
|
|
234
234
|
:param linked: Linked, When duplicating strips, assign new copies of the actions they use
|
|
@@ -236,7 +236,7 @@ def duplicate(
|
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
def duplicate_linked_move(
|
|
239
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
239
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
240
240
|
execution_context: int | str | None = None,
|
|
241
241
|
undo: bool | None = None,
|
|
242
242
|
*,
|
|
@@ -245,7 +245,7 @@ def duplicate_linked_move(
|
|
|
245
245
|
):
|
|
246
246
|
"""Duplicate Linked selected NLA-Strips, adding the new strips to new track(s)
|
|
247
247
|
|
|
248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
248
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
249
249
|
:type execution_context: int | str | None
|
|
250
250
|
:type undo: bool | None
|
|
251
251
|
:param NLA_OT_duplicate: Duplicate Strips, Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
@@ -255,7 +255,7 @@ def duplicate_linked_move(
|
|
|
255
255
|
"""
|
|
256
256
|
|
|
257
257
|
def duplicate_move(
|
|
258
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
258
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
259
259
|
execution_context: int | str | None = None,
|
|
260
260
|
undo: bool | None = None,
|
|
261
261
|
*,
|
|
@@ -264,7 +264,7 @@ def duplicate_move(
|
|
|
264
264
|
):
|
|
265
265
|
"""Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
266
266
|
|
|
267
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
267
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
268
268
|
:type execution_context: int | str | None
|
|
269
269
|
:type undo: bool | None
|
|
270
270
|
:param NLA_OT_duplicate: Duplicate Strips, Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
@@ -274,7 +274,7 @@ def duplicate_move(
|
|
|
274
274
|
"""
|
|
275
275
|
|
|
276
276
|
def fmodifier_add(
|
|
277
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
277
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
278
278
|
execution_context: int | str | None = None,
|
|
279
279
|
undo: bool | None = None,
|
|
280
280
|
*,
|
|
@@ -283,7 +283,7 @@ def fmodifier_add(
|
|
|
283
283
|
):
|
|
284
284
|
"""Add F-Modifier to the active/selected NLA-Strips
|
|
285
285
|
|
|
286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
287
287
|
:type execution_context: int | str | None
|
|
288
288
|
:type undo: bool | None
|
|
289
289
|
:param type: Type
|
|
@@ -293,19 +293,19 @@ def fmodifier_add(
|
|
|
293
293
|
"""
|
|
294
294
|
|
|
295
295
|
def fmodifier_copy(
|
|
296
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
296
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
297
297
|
execution_context: int | str | None = None,
|
|
298
298
|
undo: bool | None = None,
|
|
299
299
|
):
|
|
300
300
|
"""Copy the F-Modifier(s) of the active NLA-Strip
|
|
301
301
|
|
|
302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
302
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
303
303
|
:type execution_context: int | str | None
|
|
304
304
|
:type undo: bool | None
|
|
305
305
|
"""
|
|
306
306
|
|
|
307
307
|
def fmodifier_paste(
|
|
308
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
308
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
309
309
|
execution_context: int | str | None = None,
|
|
310
310
|
undo: bool | None = None,
|
|
311
311
|
*,
|
|
@@ -314,7 +314,7 @@ def fmodifier_paste(
|
|
|
314
314
|
):
|
|
315
315
|
"""Add copied F-Modifiers to the selected NLA-Strips
|
|
316
316
|
|
|
317
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
317
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
318
318
|
:type execution_context: int | str | None
|
|
319
319
|
:type undo: bool | None
|
|
320
320
|
:param only_active: Only Active, Only paste F-Modifiers on active strip
|
|
@@ -324,7 +324,7 @@ def fmodifier_paste(
|
|
|
324
324
|
"""
|
|
325
325
|
|
|
326
326
|
def make_single_user(
|
|
327
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
327
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
328
328
|
execution_context: int | str | None = None,
|
|
329
329
|
undo: bool | None = None,
|
|
330
330
|
*,
|
|
@@ -332,7 +332,7 @@ def make_single_user(
|
|
|
332
332
|
):
|
|
333
333
|
"""Make linked action local to each strip
|
|
334
334
|
|
|
335
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
335
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
336
336
|
:type execution_context: int | str | None
|
|
337
337
|
:type undo: bool | None
|
|
338
338
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -340,79 +340,79 @@ def make_single_user(
|
|
|
340
340
|
"""
|
|
341
341
|
|
|
342
342
|
def meta_add(
|
|
343
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
343
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
344
344
|
execution_context: int | str | None = None,
|
|
345
345
|
undo: bool | None = None,
|
|
346
346
|
):
|
|
347
347
|
"""Add new meta-strips incorporating the selected strips
|
|
348
348
|
|
|
349
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
349
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
350
350
|
:type execution_context: int | str | None
|
|
351
351
|
:type undo: bool | None
|
|
352
352
|
"""
|
|
353
353
|
|
|
354
354
|
def meta_remove(
|
|
355
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
355
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
356
356
|
execution_context: int | str | None = None,
|
|
357
357
|
undo: bool | None = None,
|
|
358
358
|
):
|
|
359
359
|
"""Separate out the strips held by the selected meta-strips
|
|
360
360
|
|
|
361
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
361
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
362
362
|
:type execution_context: int | str | None
|
|
363
363
|
:type undo: bool | None
|
|
364
364
|
"""
|
|
365
365
|
|
|
366
366
|
def move_down(
|
|
367
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
367
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
368
368
|
execution_context: int | str | None = None,
|
|
369
369
|
undo: bool | None = None,
|
|
370
370
|
):
|
|
371
371
|
"""Move selected strips down a track if there's room
|
|
372
372
|
|
|
373
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
373
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
374
374
|
:type execution_context: int | str | None
|
|
375
375
|
:type undo: bool | None
|
|
376
376
|
"""
|
|
377
377
|
|
|
378
378
|
def move_up(
|
|
379
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
379
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
380
380
|
execution_context: int | str | None = None,
|
|
381
381
|
undo: bool | None = None,
|
|
382
382
|
):
|
|
383
383
|
"""Move selected strips up a track if there's room
|
|
384
384
|
|
|
385
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
385
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
386
386
|
:type execution_context: int | str | None
|
|
387
387
|
:type undo: bool | None
|
|
388
388
|
"""
|
|
389
389
|
|
|
390
390
|
def mute_toggle(
|
|
391
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
391
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
392
392
|
execution_context: int | str | None = None,
|
|
393
393
|
undo: bool | None = None,
|
|
394
394
|
):
|
|
395
395
|
"""Mute or un-mute selected strips
|
|
396
396
|
|
|
397
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
397
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
398
398
|
:type execution_context: int | str | None
|
|
399
399
|
:type undo: bool | None
|
|
400
400
|
"""
|
|
401
401
|
|
|
402
402
|
def previewrange_set(
|
|
403
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
403
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
404
404
|
execution_context: int | str | None = None,
|
|
405
405
|
undo: bool | None = None,
|
|
406
406
|
):
|
|
407
407
|
"""Set Preview Range based on extends of selected strips
|
|
408
408
|
|
|
409
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
409
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
410
410
|
:type execution_context: int | str | None
|
|
411
411
|
:type undo: bool | None
|
|
412
412
|
"""
|
|
413
413
|
|
|
414
414
|
def select_all(
|
|
415
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
415
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
416
416
|
execution_context: int | str | None = None,
|
|
417
417
|
undo: bool | None = None,
|
|
418
418
|
*,
|
|
@@ -420,7 +420,7 @@ def select_all(
|
|
|
420
420
|
):
|
|
421
421
|
"""Select or deselect all NLA-Strips
|
|
422
422
|
|
|
423
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
423
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
424
424
|
:type execution_context: int | str | None
|
|
425
425
|
:type undo: bool | None
|
|
426
426
|
:param action: Action, Selection action to execute
|
|
@@ -440,7 +440,7 @@ def select_all(
|
|
|
440
440
|
"""
|
|
441
441
|
|
|
442
442
|
def select_box(
|
|
443
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
443
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
444
444
|
execution_context: int | str | None = None,
|
|
445
445
|
undo: bool | None = None,
|
|
446
446
|
*,
|
|
@@ -455,7 +455,7 @@ def select_box(
|
|
|
455
455
|
):
|
|
456
456
|
"""Use box selection to grab NLA-Strips
|
|
457
457
|
|
|
458
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
458
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
459
459
|
:type execution_context: int | str | None
|
|
460
460
|
:type undo: bool | None
|
|
461
461
|
:param axis_range: Axis Range
|
|
@@ -486,7 +486,7 @@ def select_box(
|
|
|
486
486
|
"""
|
|
487
487
|
|
|
488
488
|
def select_leftright(
|
|
489
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
489
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
490
490
|
execution_context: int | str | None = None,
|
|
491
491
|
undo: bool | None = None,
|
|
492
492
|
*,
|
|
@@ -495,7 +495,7 @@ def select_leftright(
|
|
|
495
495
|
):
|
|
496
496
|
"""Select strips to the left or the right of the current frame
|
|
497
497
|
|
|
498
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
498
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
499
499
|
:type execution_context: int | str | None
|
|
500
500
|
:type undo: bool | None
|
|
501
501
|
:param mode: Mode
|
|
@@ -505,19 +505,19 @@ def select_leftright(
|
|
|
505
505
|
"""
|
|
506
506
|
|
|
507
507
|
def selected_objects_add(
|
|
508
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
508
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
509
509
|
execution_context: int | str | None = None,
|
|
510
510
|
undo: bool | None = None,
|
|
511
511
|
):
|
|
512
512
|
"""Make selected objects appear in NLA Editor by adding Animation Data
|
|
513
513
|
|
|
514
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
514
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
515
515
|
:type execution_context: int | str | None
|
|
516
516
|
:type undo: bool | None
|
|
517
517
|
"""
|
|
518
518
|
|
|
519
519
|
def snap(
|
|
520
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
520
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
521
521
|
execution_context: int | str | None = None,
|
|
522
522
|
undo: bool | None = None,
|
|
523
523
|
*,
|
|
@@ -526,7 +526,7 @@ def snap(
|
|
|
526
526
|
):
|
|
527
527
|
"""Move start of strips to specified time
|
|
528
528
|
|
|
529
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
529
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
530
530
|
:type execution_context: int | str | None
|
|
531
531
|
:type undo: bool | None
|
|
532
532
|
:param type: Type
|
|
@@ -534,43 +534,43 @@ def snap(
|
|
|
534
534
|
"""
|
|
535
535
|
|
|
536
536
|
def soundclip_add(
|
|
537
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
537
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
538
538
|
execution_context: int | str | None = None,
|
|
539
539
|
undo: bool | None = None,
|
|
540
540
|
):
|
|
541
541
|
"""Add a strip for controlling when speaker plays its sound clip
|
|
542
542
|
|
|
543
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
543
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
544
544
|
:type execution_context: int | str | None
|
|
545
545
|
:type undo: bool | None
|
|
546
546
|
"""
|
|
547
547
|
|
|
548
548
|
def split(
|
|
549
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
549
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
550
550
|
execution_context: int | str | None = None,
|
|
551
551
|
undo: bool | None = None,
|
|
552
552
|
):
|
|
553
553
|
"""Split selected strips at their midpoints
|
|
554
554
|
|
|
555
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
555
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
556
556
|
:type execution_context: int | str | None
|
|
557
557
|
:type undo: bool | None
|
|
558
558
|
"""
|
|
559
559
|
|
|
560
560
|
def swap(
|
|
561
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
561
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
562
562
|
execution_context: int | str | None = None,
|
|
563
563
|
undo: bool | None = None,
|
|
564
564
|
):
|
|
565
565
|
"""Swap order of selected strips within tracks
|
|
566
566
|
|
|
567
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
567
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
568
568
|
:type execution_context: int | str | None
|
|
569
569
|
:type undo: bool | None
|
|
570
570
|
"""
|
|
571
571
|
|
|
572
572
|
def tracks_add(
|
|
573
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
573
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
574
574
|
execution_context: int | str | None = None,
|
|
575
575
|
undo: bool | None = None,
|
|
576
576
|
*,
|
|
@@ -578,7 +578,7 @@ def tracks_add(
|
|
|
578
578
|
):
|
|
579
579
|
"""Add NLA-Tracks above/after the selected tracks
|
|
580
580
|
|
|
581
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
581
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
582
582
|
:type execution_context: int | str | None
|
|
583
583
|
:type undo: bool | None
|
|
584
584
|
:param above_selected: Above Selected, Add a new NLA Track above every existing selected one
|
|
@@ -586,31 +586,31 @@ def tracks_add(
|
|
|
586
586
|
"""
|
|
587
587
|
|
|
588
588
|
def tracks_delete(
|
|
589
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
589
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
590
590
|
execution_context: int | str | None = None,
|
|
591
591
|
undo: bool | None = None,
|
|
592
592
|
):
|
|
593
593
|
"""Delete selected NLA-Tracks and the strips they contain
|
|
594
594
|
|
|
595
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
595
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
596
596
|
:type execution_context: int | str | None
|
|
597
597
|
:type undo: bool | None
|
|
598
598
|
"""
|
|
599
599
|
|
|
600
600
|
def transition_add(
|
|
601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
601
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
602
602
|
execution_context: int | str | None = None,
|
|
603
603
|
undo: bool | None = None,
|
|
604
604
|
):
|
|
605
605
|
"""Add a transition strip between two adjacent selected strips
|
|
606
606
|
|
|
607
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
607
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
608
608
|
:type execution_context: int | str | None
|
|
609
609
|
:type undo: bool | None
|
|
610
610
|
"""
|
|
611
611
|
|
|
612
612
|
def tweakmode_enter(
|
|
613
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
613
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
614
614
|
execution_context: int | str | None = None,
|
|
615
615
|
undo: bool | None = None,
|
|
616
616
|
*,
|
|
@@ -619,7 +619,7 @@ def tweakmode_enter(
|
|
|
619
619
|
):
|
|
620
620
|
"""Enter tweaking mode for the action referenced by the active strip to edit its keyframes
|
|
621
621
|
|
|
622
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
622
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
623
623
|
:type execution_context: int | str | None
|
|
624
624
|
:type undo: bool | None
|
|
625
625
|
: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
|
|
@@ -629,7 +629,7 @@ def tweakmode_enter(
|
|
|
629
629
|
"""
|
|
630
630
|
|
|
631
631
|
def tweakmode_exit(
|
|
632
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
632
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
633
633
|
execution_context: int | str | None = None,
|
|
634
634
|
undo: bool | None = None,
|
|
635
635
|
*,
|
|
@@ -637,7 +637,7 @@ def tweakmode_exit(
|
|
|
637
637
|
):
|
|
638
638
|
"""Exit tweaking mode for the action referenced by the active strip
|
|
639
639
|
|
|
640
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
640
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
641
641
|
:type execution_context: int | str | None
|
|
642
642
|
:type undo: bool | None
|
|
643
643
|
:param isolate_action: Isolate Action, Disable 'solo' on any of the NLA Tracks after exiting tweak mode to get things back to normal
|
|
@@ -645,37 +645,37 @@ def tweakmode_exit(
|
|
|
645
645
|
"""
|
|
646
646
|
|
|
647
647
|
def view_all(
|
|
648
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
648
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
649
649
|
execution_context: int | str | None = None,
|
|
650
650
|
undo: bool | None = None,
|
|
651
651
|
):
|
|
652
652
|
"""Reset viewable area to show full strips range
|
|
653
653
|
|
|
654
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
654
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
655
655
|
:type execution_context: int | str | None
|
|
656
656
|
:type undo: bool | None
|
|
657
657
|
"""
|
|
658
658
|
|
|
659
659
|
def view_frame(
|
|
660
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
660
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
661
661
|
execution_context: int | str | None = None,
|
|
662
662
|
undo: bool | None = None,
|
|
663
663
|
):
|
|
664
664
|
"""Move the view to the current frame
|
|
665
665
|
|
|
666
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
666
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
667
667
|
:type execution_context: int | str | None
|
|
668
668
|
:type undo: bool | None
|
|
669
669
|
"""
|
|
670
670
|
|
|
671
671
|
def view_selected(
|
|
672
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
672
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
673
673
|
execution_context: int | str | None = None,
|
|
674
674
|
undo: bool | None = None,
|
|
675
675
|
):
|
|
676
676
|
"""Reset viewable area to show selected strips range
|
|
677
677
|
|
|
678
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
678
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
679
679
|
:type execution_context: int | str | None
|
|
680
680
|
:type undo: bool | None
|
|
681
681
|
"""
|