fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/clip/__init__.pyi
CHANGED
|
@@ -7,15 +7,14 @@ import bpy.typing
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def add_marker(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
10
|
execution_context: int | str | None = None,
|
|
12
11
|
undo: bool | None = None,
|
|
12
|
+
/,
|
|
13
13
|
*,
|
|
14
14
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
15
15
|
):
|
|
16
16
|
"""Place new marker at specified location
|
|
17
17
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
19
18
|
:type execution_context: int | str | None
|
|
20
19
|
:type undo: bool | None
|
|
21
20
|
:param location: Location, Location of marker on frame
|
|
@@ -23,28 +22,24 @@ def add_marker(
|
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
24
|
def add_marker_at_click(
|
|
26
|
-
|
|
27
|
-
execution_context: int | str | None = None,
|
|
28
|
-
undo: bool | None = None,
|
|
25
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
29
26
|
):
|
|
30
27
|
"""Place new marker at the desired (clicked) position
|
|
31
28
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
29
|
:type execution_context: int | str | None
|
|
34
30
|
:type undo: bool | None
|
|
35
31
|
"""
|
|
36
32
|
|
|
37
33
|
def add_marker_move(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
39
34
|
execution_context: int | str | None = None,
|
|
40
35
|
undo: bool | None = None,
|
|
36
|
+
/,
|
|
41
37
|
*,
|
|
42
38
|
CLIP_OT_add_marker: add_marker | None = None,
|
|
43
39
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
44
40
|
):
|
|
45
41
|
"""Add new marker and move it on movie
|
|
46
42
|
|
|
47
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
48
43
|
:type execution_context: int | str | None
|
|
49
44
|
:type undo: bool | None
|
|
50
45
|
:param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
|
|
@@ -54,16 +49,15 @@ def add_marker_move(
|
|
|
54
49
|
"""
|
|
55
50
|
|
|
56
51
|
def add_marker_slide(
|
|
57
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
58
52
|
execution_context: int | str | None = None,
|
|
59
53
|
undo: bool | None = None,
|
|
54
|
+
/,
|
|
60
55
|
*,
|
|
61
56
|
CLIP_OT_add_marker: add_marker | None = None,
|
|
62
57
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
63
58
|
):
|
|
64
59
|
"""Add new marker and slide it with mouse until mouse button release
|
|
65
60
|
|
|
66
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
67
61
|
:type execution_context: int | str | None
|
|
68
62
|
:type undo: bool | None
|
|
69
63
|
:param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
|
|
@@ -73,15 +67,14 @@ def add_marker_slide(
|
|
|
73
67
|
"""
|
|
74
68
|
|
|
75
69
|
def apply_solution_scale(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
70
|
execution_context: int | str | None = None,
|
|
78
71
|
undo: bool | None = None,
|
|
72
|
+
/,
|
|
79
73
|
*,
|
|
80
74
|
distance: float | None = 0.0,
|
|
81
75
|
):
|
|
82
76
|
"""Apply scale on solution itself to make distance between selected tracks equals to desired
|
|
83
77
|
|
|
84
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
85
78
|
:type execution_context: int | str | None
|
|
86
79
|
:type undo: bool | None
|
|
87
80
|
:param distance: Distance, Distance between selected tracks
|
|
@@ -89,15 +82,14 @@ def apply_solution_scale(
|
|
|
89
82
|
"""
|
|
90
83
|
|
|
91
84
|
def average_tracks(
|
|
92
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
93
85
|
execution_context: int | str | None = None,
|
|
94
86
|
undo: bool | None = None,
|
|
87
|
+
/,
|
|
95
88
|
*,
|
|
96
89
|
keep_original: bool | None = True,
|
|
97
90
|
):
|
|
98
91
|
"""Average selected tracks into active
|
|
99
92
|
|
|
100
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
101
93
|
:type execution_context: int | str | None
|
|
102
94
|
:type undo: bool | None
|
|
103
95
|
:param keep_original: Keep Original, Keep original tracks
|
|
@@ -105,21 +97,18 @@ def average_tracks(
|
|
|
105
97
|
"""
|
|
106
98
|
|
|
107
99
|
def bundles_to_mesh(
|
|
108
|
-
|
|
109
|
-
execution_context: int | str | None = None,
|
|
110
|
-
undo: bool | None = None,
|
|
100
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
111
101
|
):
|
|
112
102
|
"""Create vertex cloud using coordinates of reconstructed tracks
|
|
113
103
|
|
|
114
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
115
104
|
:type execution_context: int | str | None
|
|
116
105
|
:type undo: bool | None
|
|
117
106
|
"""
|
|
118
107
|
|
|
119
108
|
def camera_preset_add(
|
|
120
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
121
109
|
execution_context: int | str | None = None,
|
|
122
110
|
undo: bool | None = None,
|
|
111
|
+
/,
|
|
123
112
|
*,
|
|
124
113
|
name: str = "",
|
|
125
114
|
remove_name: bool | None = False,
|
|
@@ -128,7 +117,6 @@ def camera_preset_add(
|
|
|
128
117
|
):
|
|
129
118
|
"""Add or remove a Tracking Camera Intrinsics Preset
|
|
130
119
|
|
|
131
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
132
120
|
:type execution_context: int | str | None
|
|
133
121
|
:type undo: bool | None
|
|
134
122
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -142,15 +130,14 @@ def camera_preset_add(
|
|
|
142
130
|
"""
|
|
143
131
|
|
|
144
132
|
def change_frame(
|
|
145
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
146
133
|
execution_context: int | str | None = None,
|
|
147
134
|
undo: bool | None = None,
|
|
135
|
+
/,
|
|
148
136
|
*,
|
|
149
137
|
frame: int | None = 0,
|
|
150
138
|
):
|
|
151
139
|
"""Interactively change the current frame number
|
|
152
140
|
|
|
153
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
154
141
|
:type execution_context: int | str | None
|
|
155
142
|
:type undo: bool | None
|
|
156
143
|
:param frame: Frame
|
|
@@ -158,9 +145,9 @@ def change_frame(
|
|
|
158
145
|
"""
|
|
159
146
|
|
|
160
147
|
def clean_tracks(
|
|
161
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
162
148
|
execution_context: int | str | None = None,
|
|
163
149
|
undo: bool | None = None,
|
|
150
|
+
/,
|
|
164
151
|
*,
|
|
165
152
|
frames: int | None = 0,
|
|
166
153
|
error: float | None = 0.0,
|
|
@@ -169,7 +156,6 @@ def clean_tracks(
|
|
|
169
156
|
):
|
|
170
157
|
"""Clean tracks with high error values or few frames
|
|
171
158
|
|
|
172
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
173
159
|
:type execution_context: int | str | None
|
|
174
160
|
:type undo: bool | None
|
|
175
161
|
:param frames: Tracked Frames, Affect tracks which are tracked less than the specified number of frames
|
|
@@ -190,28 +176,24 @@ def clean_tracks(
|
|
|
190
176
|
"""
|
|
191
177
|
|
|
192
178
|
def clear_solution(
|
|
193
|
-
|
|
194
|
-
execution_context: int | str | None = None,
|
|
195
|
-
undo: bool | None = None,
|
|
179
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
196
180
|
):
|
|
197
181
|
"""Clear all calculated data
|
|
198
182
|
|
|
199
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
200
183
|
:type execution_context: int | str | None
|
|
201
184
|
:type undo: bool | None
|
|
202
185
|
"""
|
|
203
186
|
|
|
204
187
|
def clear_track_path(
|
|
205
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
206
188
|
execution_context: int | str | None = None,
|
|
207
189
|
undo: bool | None = None,
|
|
190
|
+
/,
|
|
208
191
|
*,
|
|
209
192
|
action: typing.Literal["UPTO", "REMAINED", "ALL"] | None = "REMAINED",
|
|
210
193
|
clear_active: bool | None = False,
|
|
211
194
|
):
|
|
212
195
|
"""Clear tracks after/before current position or clear the whole track
|
|
213
196
|
|
|
214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
215
197
|
:type execution_context: int | str | None
|
|
216
198
|
:type undo: bool | None
|
|
217
199
|
:param action: Action, Clear action to execute
|
|
@@ -230,51 +212,39 @@ def clear_track_path(
|
|
|
230
212
|
"""
|
|
231
213
|
|
|
232
214
|
def constraint_to_fcurve(
|
|
233
|
-
|
|
234
|
-
execution_context: int | str | None = None,
|
|
235
|
-
undo: bool | None = None,
|
|
215
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
236
216
|
):
|
|
237
217
|
"""Create F-Curves for object which will copy object's movement caused by this constraint
|
|
238
218
|
|
|
239
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
240
219
|
:type execution_context: int | str | None
|
|
241
220
|
:type undo: bool | None
|
|
242
221
|
"""
|
|
243
222
|
|
|
244
|
-
def copy_tracks(
|
|
245
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
246
|
-
execution_context: int | str | None = None,
|
|
247
|
-
undo: bool | None = None,
|
|
248
|
-
):
|
|
223
|
+
def copy_tracks(execution_context: int | str | None = None, undo: bool | None = None):
|
|
249
224
|
"""Copy the selected tracks to the internal clipboard
|
|
250
225
|
|
|
251
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
252
226
|
:type execution_context: int | str | None
|
|
253
227
|
:type undo: bool | None
|
|
254
228
|
"""
|
|
255
229
|
|
|
256
230
|
def create_plane_track(
|
|
257
|
-
|
|
258
|
-
execution_context: int | str | None = None,
|
|
259
|
-
undo: bool | None = None,
|
|
231
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
260
232
|
):
|
|
261
233
|
"""Create new plane track out of selected point tracks
|
|
262
234
|
|
|
263
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
264
235
|
:type execution_context: int | str | None
|
|
265
236
|
:type undo: bool | None
|
|
266
237
|
"""
|
|
267
238
|
|
|
268
239
|
def cursor_set(
|
|
269
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
270
240
|
execution_context: int | str | None = None,
|
|
271
241
|
undo: bool | None = None,
|
|
242
|
+
/,
|
|
272
243
|
*,
|
|
273
244
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
274
245
|
):
|
|
275
246
|
"""Set 2D cursor location
|
|
276
247
|
|
|
277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
278
248
|
:type execution_context: int | str | None
|
|
279
249
|
:type undo: bool | None
|
|
280
250
|
:param location: Location, Cursor location in normalized clip coordinates
|
|
@@ -282,43 +252,36 @@ def cursor_set(
|
|
|
282
252
|
"""
|
|
283
253
|
|
|
284
254
|
def delete_marker(
|
|
285
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
286
255
|
execution_context: int | str | None = None,
|
|
287
256
|
undo: bool | None = None,
|
|
257
|
+
/,
|
|
288
258
|
*,
|
|
289
259
|
confirm: bool | None = True,
|
|
290
260
|
):
|
|
291
261
|
"""Delete marker for current frame from selected tracks
|
|
292
262
|
|
|
293
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
294
263
|
:type execution_context: int | str | None
|
|
295
264
|
:type undo: bool | None
|
|
296
265
|
:param confirm: Confirm, Prompt for confirmation
|
|
297
266
|
:type confirm: bool | None
|
|
298
267
|
"""
|
|
299
268
|
|
|
300
|
-
def delete_proxy(
|
|
301
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
302
|
-
execution_context: int | str | None = None,
|
|
303
|
-
undo: bool | None = None,
|
|
304
|
-
):
|
|
269
|
+
def delete_proxy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
305
270
|
"""Delete movie clip proxy files from the hard drive
|
|
306
271
|
|
|
307
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
308
272
|
:type execution_context: int | str | None
|
|
309
273
|
:type undo: bool | None
|
|
310
274
|
"""
|
|
311
275
|
|
|
312
276
|
def delete_track(
|
|
313
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
314
277
|
execution_context: int | str | None = None,
|
|
315
278
|
undo: bool | None = None,
|
|
279
|
+
/,
|
|
316
280
|
*,
|
|
317
281
|
confirm: bool | None = True,
|
|
318
282
|
):
|
|
319
283
|
"""Delete selected tracks
|
|
320
284
|
|
|
321
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
322
285
|
:type execution_context: int | str | None
|
|
323
286
|
:type undo: bool | None
|
|
324
287
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -326,9 +289,9 @@ def delete_track(
|
|
|
326
289
|
"""
|
|
327
290
|
|
|
328
291
|
def detect_features(
|
|
329
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
330
292
|
execution_context: int | str | None = None,
|
|
331
293
|
undo: bool | None = None,
|
|
294
|
+
/,
|
|
332
295
|
*,
|
|
333
296
|
placement: typing.Literal["FRAME", "INSIDE_GPENCIL", "OUTSIDE_GPENCIL"]
|
|
334
297
|
| None = "FRAME",
|
|
@@ -338,7 +301,6 @@ def detect_features(
|
|
|
338
301
|
):
|
|
339
302
|
"""Automatically detect features and place markers to track
|
|
340
303
|
|
|
341
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
342
304
|
:type execution_context: int | str | None
|
|
343
305
|
:type undo: bool | None
|
|
344
306
|
:param placement: Placement, Placement for detected features
|
|
@@ -361,15 +323,14 @@ def detect_features(
|
|
|
361
323
|
"""
|
|
362
324
|
|
|
363
325
|
def disable_markers(
|
|
364
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
365
326
|
execution_context: int | str | None = None,
|
|
366
327
|
undo: bool | None = None,
|
|
328
|
+
/,
|
|
367
329
|
*,
|
|
368
330
|
action: typing.Literal["DISABLE", "ENABLE", "TOGGLE"] | None = "DISABLE",
|
|
369
331
|
):
|
|
370
332
|
"""Disable/enable selected markers
|
|
371
333
|
|
|
372
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
373
334
|
:type execution_context: int | str | None
|
|
374
335
|
:type undo: bool | None
|
|
375
336
|
:param action: Action, Disable action to execute
|
|
@@ -386,16 +347,15 @@ def disable_markers(
|
|
|
386
347
|
"""
|
|
387
348
|
|
|
388
349
|
def dopesheet_select_channel(
|
|
389
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
390
350
|
execution_context: int | str | None = None,
|
|
391
351
|
undo: bool | None = None,
|
|
352
|
+
/,
|
|
392
353
|
*,
|
|
393
354
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
394
355
|
extend: bool | None = False,
|
|
395
356
|
):
|
|
396
357
|
"""Select movie tracking channel
|
|
397
358
|
|
|
398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
399
359
|
:type execution_context: int | str | None
|
|
400
360
|
:type undo: bool | None
|
|
401
361
|
:param location: Location, Mouse location to select channel
|
|
@@ -405,27 +365,23 @@ def dopesheet_select_channel(
|
|
|
405
365
|
"""
|
|
406
366
|
|
|
407
367
|
def dopesheet_view_all(
|
|
408
|
-
|
|
409
|
-
execution_context: int | str | None = None,
|
|
410
|
-
undo: bool | None = None,
|
|
368
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
411
369
|
):
|
|
412
370
|
"""Reset viewable area to show full keyframe range
|
|
413
371
|
|
|
414
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
415
372
|
:type execution_context: int | str | None
|
|
416
373
|
:type undo: bool | None
|
|
417
374
|
"""
|
|
418
375
|
|
|
419
376
|
def filter_tracks(
|
|
420
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
421
377
|
execution_context: int | str | None = None,
|
|
422
378
|
undo: bool | None = None,
|
|
379
|
+
/,
|
|
423
380
|
*,
|
|
424
381
|
track_threshold: float | None = 5.0,
|
|
425
382
|
):
|
|
426
383
|
"""Filter tracks which has weirdly looking spikes in motion curves
|
|
427
384
|
|
|
428
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
429
385
|
:type execution_context: int | str | None
|
|
430
386
|
:type undo: bool | None
|
|
431
387
|
:param track_threshold: Track Threshold, Filter Threshold to select problematic tracks
|
|
@@ -433,16 +389,15 @@ def filter_tracks(
|
|
|
433
389
|
"""
|
|
434
390
|
|
|
435
391
|
def frame_jump(
|
|
436
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
437
392
|
execution_context: int | str | None = None,
|
|
438
393
|
undo: bool | None = None,
|
|
394
|
+
/,
|
|
439
395
|
*,
|
|
440
396
|
position: typing.Literal["PATHSTART", "PATHEND", "FAILEDPREV", "FAILNEXT"]
|
|
441
397
|
| None = "PATHSTART",
|
|
442
398
|
):
|
|
443
399
|
"""Jump to special frame
|
|
444
400
|
|
|
445
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
446
401
|
:type execution_context: int | str | None
|
|
447
402
|
:type undo: bool | None
|
|
448
403
|
:param position: Position, Position to jump to
|
|
@@ -462,27 +417,23 @@ def frame_jump(
|
|
|
462
417
|
"""
|
|
463
418
|
|
|
464
419
|
def graph_center_current_frame(
|
|
465
|
-
|
|
466
|
-
execution_context: int | str | None = None,
|
|
467
|
-
undo: bool | None = None,
|
|
420
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
468
421
|
):
|
|
469
422
|
"""Scroll view so current frame would be centered
|
|
470
423
|
|
|
471
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
472
424
|
:type execution_context: int | str | None
|
|
473
425
|
:type undo: bool | None
|
|
474
426
|
"""
|
|
475
427
|
|
|
476
428
|
def graph_delete_curve(
|
|
477
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
478
429
|
execution_context: int | str | None = None,
|
|
479
430
|
undo: bool | None = None,
|
|
431
|
+
/,
|
|
480
432
|
*,
|
|
481
433
|
confirm: bool | None = True,
|
|
482
434
|
):
|
|
483
435
|
"""Delete track corresponding to the selected curve
|
|
484
436
|
|
|
485
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
486
437
|
:type execution_context: int | str | None
|
|
487
438
|
:type undo: bool | None
|
|
488
439
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -490,27 +441,23 @@ def graph_delete_curve(
|
|
|
490
441
|
"""
|
|
491
442
|
|
|
492
443
|
def graph_delete_knot(
|
|
493
|
-
|
|
494
|
-
execution_context: int | str | None = None,
|
|
495
|
-
undo: bool | None = None,
|
|
444
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
496
445
|
):
|
|
497
446
|
"""Delete curve knots
|
|
498
447
|
|
|
499
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
500
448
|
:type execution_context: int | str | None
|
|
501
449
|
:type undo: bool | None
|
|
502
450
|
"""
|
|
503
451
|
|
|
504
452
|
def graph_disable_markers(
|
|
505
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
506
453
|
execution_context: int | str | None = None,
|
|
507
454
|
undo: bool | None = None,
|
|
455
|
+
/,
|
|
508
456
|
*,
|
|
509
457
|
action: typing.Literal["DISABLE", "ENABLE", "TOGGLE"] | None = "DISABLE",
|
|
510
458
|
):
|
|
511
459
|
"""Disable/enable selected markers
|
|
512
460
|
|
|
513
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
514
461
|
:type execution_context: int | str | None
|
|
515
462
|
:type undo: bool | None
|
|
516
463
|
:param action: Action, Disable action to execute
|
|
@@ -527,16 +474,15 @@ def graph_disable_markers(
|
|
|
527
474
|
"""
|
|
528
475
|
|
|
529
476
|
def graph_select(
|
|
530
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
531
477
|
execution_context: int | str | None = None,
|
|
532
478
|
undo: bool | None = None,
|
|
479
|
+
/,
|
|
533
480
|
*,
|
|
534
481
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
535
482
|
extend: bool | None = False,
|
|
536
483
|
):
|
|
537
484
|
"""Select graph curves
|
|
538
485
|
|
|
539
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
540
486
|
:type execution_context: int | str | None
|
|
541
487
|
:type undo: bool | None
|
|
542
488
|
:param location: Location, Mouse location to select nearest entity
|
|
@@ -546,15 +492,14 @@ def graph_select(
|
|
|
546
492
|
"""
|
|
547
493
|
|
|
548
494
|
def graph_select_all_markers(
|
|
549
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
550
495
|
execution_context: int | str | None = None,
|
|
551
496
|
undo: bool | None = None,
|
|
497
|
+
/,
|
|
552
498
|
*,
|
|
553
499
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
554
500
|
):
|
|
555
501
|
"""Change selection of all markers of active track
|
|
556
502
|
|
|
557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
558
503
|
:type execution_context: int | str | None
|
|
559
504
|
:type undo: bool | None
|
|
560
505
|
:param action: Action, Selection action to execute
|
|
@@ -574,9 +519,9 @@ def graph_select_all_markers(
|
|
|
574
519
|
"""
|
|
575
520
|
|
|
576
521
|
def graph_select_box(
|
|
577
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
578
522
|
execution_context: int | str | None = None,
|
|
579
523
|
undo: bool | None = None,
|
|
524
|
+
/,
|
|
580
525
|
*,
|
|
581
526
|
xmin: int | None = 0,
|
|
582
527
|
xmax: int | None = 0,
|
|
@@ -588,7 +533,6 @@ def graph_select_box(
|
|
|
588
533
|
):
|
|
589
534
|
"""Select curve points using box selection
|
|
590
535
|
|
|
591
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
592
536
|
:type execution_context: int | str | None
|
|
593
537
|
:type undo: bool | None
|
|
594
538
|
:param xmin: X Min
|
|
@@ -608,27 +552,23 @@ def graph_select_box(
|
|
|
608
552
|
"""
|
|
609
553
|
|
|
610
554
|
def graph_view_all(
|
|
611
|
-
|
|
612
|
-
execution_context: int | str | None = None,
|
|
613
|
-
undo: bool | None = None,
|
|
555
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
614
556
|
):
|
|
615
557
|
"""View all curves in editor
|
|
616
558
|
|
|
617
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
618
559
|
:type execution_context: int | str | None
|
|
619
560
|
:type undo: bool | None
|
|
620
561
|
"""
|
|
621
562
|
|
|
622
563
|
def hide_tracks(
|
|
623
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
624
564
|
execution_context: int | str | None = None,
|
|
625
565
|
undo: bool | None = None,
|
|
566
|
+
/,
|
|
626
567
|
*,
|
|
627
568
|
unselected: bool | None = False,
|
|
628
569
|
):
|
|
629
570
|
"""Hide selected tracks
|
|
630
571
|
|
|
631
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
632
572
|
:type execution_context: int | str | None
|
|
633
573
|
:type undo: bool | None
|
|
634
574
|
:param unselected: Unselected, Hide unselected tracks
|
|
@@ -636,75 +576,57 @@ def hide_tracks(
|
|
|
636
576
|
"""
|
|
637
577
|
|
|
638
578
|
def hide_tracks_clear(
|
|
639
|
-
|
|
640
|
-
execution_context: int | str | None = None,
|
|
641
|
-
undo: bool | None = None,
|
|
579
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
642
580
|
):
|
|
643
581
|
"""Clear hide selected tracks
|
|
644
582
|
|
|
645
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
646
583
|
:type execution_context: int | str | None
|
|
647
584
|
:type undo: bool | None
|
|
648
585
|
"""
|
|
649
586
|
|
|
650
|
-
def join_tracks(
|
|
651
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
652
|
-
execution_context: int | str | None = None,
|
|
653
|
-
undo: bool | None = None,
|
|
654
|
-
):
|
|
587
|
+
def join_tracks(execution_context: int | str | None = None, undo: bool | None = None):
|
|
655
588
|
"""Join selected tracks
|
|
656
589
|
|
|
657
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
658
590
|
:type execution_context: int | str | None
|
|
659
591
|
:type undo: bool | None
|
|
660
592
|
"""
|
|
661
593
|
|
|
662
594
|
def keyframe_delete(
|
|
663
|
-
|
|
664
|
-
execution_context: int | str | None = None,
|
|
665
|
-
undo: bool | None = None,
|
|
595
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
666
596
|
):
|
|
667
597
|
"""Delete a keyframe from selected tracks at current frame
|
|
668
598
|
|
|
669
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
670
599
|
:type execution_context: int | str | None
|
|
671
600
|
:type undo: bool | None
|
|
672
601
|
"""
|
|
673
602
|
|
|
674
603
|
def keyframe_insert(
|
|
675
|
-
|
|
676
|
-
execution_context: int | str | None = None,
|
|
677
|
-
undo: bool | None = None,
|
|
604
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
678
605
|
):
|
|
679
606
|
"""Insert a keyframe to selected tracks at current frame
|
|
680
607
|
|
|
681
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
682
608
|
:type execution_context: int | str | None
|
|
683
609
|
:type undo: bool | None
|
|
684
610
|
"""
|
|
685
611
|
|
|
686
612
|
def lock_selection_toggle(
|
|
687
|
-
|
|
688
|
-
execution_context: int | str | None = None,
|
|
689
|
-
undo: bool | None = None,
|
|
613
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
690
614
|
):
|
|
691
615
|
"""Toggle Lock Selection option of the current clip editor
|
|
692
616
|
|
|
693
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
694
617
|
:type execution_context: int | str | None
|
|
695
618
|
:type undo: bool | None
|
|
696
619
|
"""
|
|
697
620
|
|
|
698
621
|
def lock_tracks(
|
|
699
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
700
622
|
execution_context: int | str | None = None,
|
|
701
623
|
undo: bool | None = None,
|
|
624
|
+
/,
|
|
702
625
|
*,
|
|
703
626
|
action: typing.Literal["LOCK", "UNLOCK", "TOGGLE"] | None = "LOCK",
|
|
704
627
|
):
|
|
705
628
|
"""Lock/unlock selected tracks
|
|
706
629
|
|
|
707
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
708
630
|
:type execution_context: int | str | None
|
|
709
631
|
:type undo: bool | None
|
|
710
632
|
:param action: Action, Lock action to execute
|
|
@@ -721,15 +643,14 @@ def lock_tracks(
|
|
|
721
643
|
"""
|
|
722
644
|
|
|
723
645
|
def mode_set(
|
|
724
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
725
646
|
execution_context: int | str | None = None,
|
|
726
647
|
undo: bool | None = None,
|
|
648
|
+
/,
|
|
727
649
|
*,
|
|
728
650
|
mode: bpy.typing.ClipEditorModeItems | None = "TRACKING",
|
|
729
651
|
):
|
|
730
652
|
"""Set the clip interaction mode
|
|
731
653
|
|
|
732
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
733
654
|
:type execution_context: int | str | None
|
|
734
655
|
:type undo: bool | None
|
|
735
656
|
:param mode: Mode
|
|
@@ -737,21 +658,18 @@ def mode_set(
|
|
|
737
658
|
"""
|
|
738
659
|
|
|
739
660
|
def new_image_from_plane_marker(
|
|
740
|
-
|
|
741
|
-
execution_context: int | str | None = None,
|
|
742
|
-
undo: bool | None = None,
|
|
661
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
743
662
|
):
|
|
744
663
|
"""Create new image from the content of the plane marker
|
|
745
664
|
|
|
746
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
747
665
|
:type execution_context: int | str | None
|
|
748
666
|
:type undo: bool | None
|
|
749
667
|
"""
|
|
750
668
|
|
|
751
669
|
def open(
|
|
752
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
753
670
|
execution_context: int | str | None = None,
|
|
754
671
|
undo: bool | None = None,
|
|
672
|
+
/,
|
|
755
673
|
*,
|
|
756
674
|
directory: str = "",
|
|
757
675
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -795,7 +713,6 @@ def open(
|
|
|
795
713
|
):
|
|
796
714
|
"""Load a sequence of frames or a movie file
|
|
797
715
|
|
|
798
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
799
716
|
:type execution_context: int | str | None
|
|
800
717
|
:type undo: bool | None
|
|
801
718
|
:param directory: Directory, Directory of the file
|
|
@@ -884,74 +801,53 @@ def open(
|
|
|
884
801
|
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
885
802
|
"""
|
|
886
803
|
|
|
887
|
-
def paste_tracks(
|
|
888
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
889
|
-
execution_context: int | str | None = None,
|
|
890
|
-
undo: bool | None = None,
|
|
891
|
-
):
|
|
804
|
+
def paste_tracks(execution_context: int | str | None = None, undo: bool | None = None):
|
|
892
805
|
"""Paste tracks from the internal clipboard
|
|
893
806
|
|
|
894
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
895
807
|
:type execution_context: int | str | None
|
|
896
808
|
:type undo: bool | None
|
|
897
809
|
"""
|
|
898
810
|
|
|
899
|
-
def prefetch(
|
|
900
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
901
|
-
execution_context: int | str | None = None,
|
|
902
|
-
undo: bool | None = None,
|
|
903
|
-
):
|
|
811
|
+
def prefetch(execution_context: int | str | None = None, undo: bool | None = None):
|
|
904
812
|
"""Prefetch frames from disk for faster playback/tracking
|
|
905
813
|
|
|
906
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
907
814
|
:type execution_context: int | str | None
|
|
908
815
|
:type undo: bool | None
|
|
909
816
|
"""
|
|
910
817
|
|
|
911
|
-
def rebuild_proxy(
|
|
912
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
913
|
-
execution_context: int | str | None = None,
|
|
914
|
-
undo: bool | None = None,
|
|
915
|
-
):
|
|
818
|
+
def rebuild_proxy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
916
819
|
"""Rebuild all selected proxies and timecode indices in the background
|
|
917
820
|
|
|
918
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
919
821
|
:type execution_context: int | str | None
|
|
920
822
|
:type undo: bool | None
|
|
921
823
|
"""
|
|
922
824
|
|
|
923
825
|
def refine_markers(
|
|
924
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
925
826
|
execution_context: int | str | None = None,
|
|
926
827
|
undo: bool | None = None,
|
|
828
|
+
/,
|
|
927
829
|
*,
|
|
928
830
|
backwards: bool | None = False,
|
|
929
831
|
):
|
|
930
832
|
"""Refine selected markers positions by running the tracker from track's reference to current frame
|
|
931
833
|
|
|
932
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
933
834
|
:type execution_context: int | str | None
|
|
934
835
|
:type undo: bool | None
|
|
935
836
|
:param backwards: Backwards, Do backwards tracking
|
|
936
837
|
:type backwards: bool | None
|
|
937
838
|
"""
|
|
938
839
|
|
|
939
|
-
def reload(
|
|
940
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
941
|
-
execution_context: int | str | None = None,
|
|
942
|
-
undo: bool | None = None,
|
|
943
|
-
):
|
|
840
|
+
def reload(execution_context: int | str | None = None, undo: bool | None = None):
|
|
944
841
|
"""Reload clip
|
|
945
842
|
|
|
946
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
947
843
|
:type execution_context: int | str | None
|
|
948
844
|
:type undo: bool | None
|
|
949
845
|
"""
|
|
950
846
|
|
|
951
847
|
def select(
|
|
952
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
953
848
|
execution_context: int | str | None = None,
|
|
954
849
|
undo: bool | None = None,
|
|
850
|
+
/,
|
|
955
851
|
*,
|
|
956
852
|
extend: bool | None = False,
|
|
957
853
|
deselect_all: bool | None = False,
|
|
@@ -959,7 +855,6 @@ def select(
|
|
|
959
855
|
):
|
|
960
856
|
"""Select tracking markers
|
|
961
857
|
|
|
962
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
963
858
|
:type execution_context: int | str | None
|
|
964
859
|
:type undo: bool | None
|
|
965
860
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -971,15 +866,14 @@ def select(
|
|
|
971
866
|
"""
|
|
972
867
|
|
|
973
868
|
def select_all(
|
|
974
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
975
869
|
execution_context: int | str | None = None,
|
|
976
870
|
undo: bool | None = None,
|
|
871
|
+
/,
|
|
977
872
|
*,
|
|
978
873
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
979
874
|
):
|
|
980
875
|
"""Change selection of all tracking markers
|
|
981
876
|
|
|
982
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
983
877
|
:type execution_context: int | str | None
|
|
984
878
|
:type undo: bool | None
|
|
985
879
|
:param action: Action, Selection action to execute
|
|
@@ -999,9 +893,9 @@ def select_all(
|
|
|
999
893
|
"""
|
|
1000
894
|
|
|
1001
895
|
def select_box(
|
|
1002
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1003
896
|
execution_context: int | str | None = None,
|
|
1004
897
|
undo: bool | None = None,
|
|
898
|
+
/,
|
|
1005
899
|
*,
|
|
1006
900
|
xmin: int | None = 0,
|
|
1007
901
|
xmax: int | None = 0,
|
|
@@ -1012,7 +906,6 @@ def select_box(
|
|
|
1012
906
|
):
|
|
1013
907
|
"""Select markers using box selection
|
|
1014
908
|
|
|
1015
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1016
909
|
:type execution_context: int | str | None
|
|
1017
910
|
:type undo: bool | None
|
|
1018
911
|
:param xmin: X Min
|
|
@@ -1039,9 +932,9 @@ def select_box(
|
|
|
1039
932
|
"""
|
|
1040
933
|
|
|
1041
934
|
def select_circle(
|
|
1042
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1043
935
|
execution_context: int | str | None = None,
|
|
1044
936
|
undo: bool | None = None,
|
|
937
|
+
/,
|
|
1045
938
|
*,
|
|
1046
939
|
x: int | None = 0,
|
|
1047
940
|
y: int | None = 0,
|
|
@@ -1051,7 +944,6 @@ def select_circle(
|
|
|
1051
944
|
):
|
|
1052
945
|
"""Select markers using circle selection
|
|
1053
946
|
|
|
1054
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1055
947
|
:type execution_context: int | str | None
|
|
1056
948
|
:type undo: bool | None
|
|
1057
949
|
:param x: X
|
|
@@ -1076,9 +968,9 @@ def select_circle(
|
|
|
1076
968
|
"""
|
|
1077
969
|
|
|
1078
970
|
def select_grouped(
|
|
1079
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1080
971
|
execution_context: int | str | None = None,
|
|
1081
972
|
undo: bool | None = None,
|
|
973
|
+
/,
|
|
1082
974
|
*,
|
|
1083
975
|
group: typing.Literal[
|
|
1084
976
|
"KEYFRAMED", "ESTIMATED", "TRACKED", "LOCKED", "DISABLED", "COLOR", "FAILED"
|
|
@@ -1087,7 +979,6 @@ def select_grouped(
|
|
|
1087
979
|
):
|
|
1088
980
|
"""Select all tracks from specified group
|
|
1089
981
|
|
|
1090
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1091
982
|
:type execution_context: int | str | None
|
|
1092
983
|
:type undo: bool | None
|
|
1093
984
|
:param group: Action, Clear action to execute
|
|
@@ -1116,9 +1007,9 @@ def select_grouped(
|
|
|
1116
1007
|
"""
|
|
1117
1008
|
|
|
1118
1009
|
def select_lasso(
|
|
1119
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1120
1010
|
execution_context: int | str | None = None,
|
|
1121
1011
|
undo: bool | None = None,
|
|
1012
|
+
/,
|
|
1122
1013
|
*,
|
|
1123
1014
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1124
1015
|
use_smooth_stroke: bool | None = False,
|
|
@@ -1128,7 +1019,6 @@ def select_lasso(
|
|
|
1128
1019
|
):
|
|
1129
1020
|
"""Select markers using lasso selection
|
|
1130
1021
|
|
|
1131
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1132
1022
|
:type execution_context: int | str | None
|
|
1133
1023
|
:type undo: bool | None
|
|
1134
1024
|
:param path: Path
|
|
@@ -1153,27 +1043,23 @@ def select_lasso(
|
|
|
1153
1043
|
"""
|
|
1154
1044
|
|
|
1155
1045
|
def set_active_clip(
|
|
1156
|
-
|
|
1157
|
-
execution_context: int | str | None = None,
|
|
1158
|
-
undo: bool | None = None,
|
|
1046
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1159
1047
|
):
|
|
1160
1048
|
"""Undocumented, consider contributing.
|
|
1161
1049
|
|
|
1162
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1163
1050
|
:type execution_context: int | str | None
|
|
1164
1051
|
:type undo: bool | None
|
|
1165
1052
|
"""
|
|
1166
1053
|
|
|
1167
1054
|
def set_axis(
|
|
1168
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1169
1055
|
execution_context: int | str | None = None,
|
|
1170
1056
|
undo: bool | None = None,
|
|
1057
|
+
/,
|
|
1171
1058
|
*,
|
|
1172
1059
|
axis: typing.Literal["X", "Y"] | None = "X",
|
|
1173
1060
|
):
|
|
1174
1061
|
"""Set the direction of a scene axis by rotating the camera (or its parent if present). This assumes that the selected track lies on a real axis connecting it to the origin
|
|
1175
1062
|
|
|
1176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1177
1063
|
:type execution_context: int | str | None
|
|
1178
1064
|
:type undo: bool | None
|
|
1179
1065
|
:param axis: Axis, Axis to use to align bundle along
|
|
@@ -1187,15 +1073,14 @@ def set_axis(
|
|
|
1187
1073
|
"""
|
|
1188
1074
|
|
|
1189
1075
|
def set_origin(
|
|
1190
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1191
1076
|
execution_context: int | str | None = None,
|
|
1192
1077
|
undo: bool | None = None,
|
|
1078
|
+
/,
|
|
1193
1079
|
*,
|
|
1194
1080
|
use_median: bool | None = False,
|
|
1195
1081
|
):
|
|
1196
1082
|
"""Set active marker as origin by moving camera (or its parent if present) in 3D space
|
|
1197
1083
|
|
|
1198
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1199
1084
|
:type execution_context: int | str | None
|
|
1200
1085
|
:type undo: bool | None
|
|
1201
1086
|
:param use_median: Use Median, Set origin to median point of selected bundles
|
|
@@ -1203,15 +1088,14 @@ def set_origin(
|
|
|
1203
1088
|
"""
|
|
1204
1089
|
|
|
1205
1090
|
def set_plane(
|
|
1206
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1207
1091
|
execution_context: int | str | None = None,
|
|
1208
1092
|
undo: bool | None = None,
|
|
1093
|
+
/,
|
|
1209
1094
|
*,
|
|
1210
1095
|
plane: typing.Literal["FLOOR", "WALL"] | None = "FLOOR",
|
|
1211
1096
|
):
|
|
1212
1097
|
"""Set plane based on 3 selected bundles by moving camera (or its parent if present) in 3D space
|
|
1213
1098
|
|
|
1214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1215
1099
|
:type execution_context: int | str | None
|
|
1216
1100
|
:type undo: bool | None
|
|
1217
1101
|
:param plane: Plane, Plane to be used for orientation
|
|
@@ -1225,15 +1109,14 @@ def set_plane(
|
|
|
1225
1109
|
"""
|
|
1226
1110
|
|
|
1227
1111
|
def set_scale(
|
|
1228
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1229
1112
|
execution_context: int | str | None = None,
|
|
1230
1113
|
undo: bool | None = None,
|
|
1114
|
+
/,
|
|
1231
1115
|
*,
|
|
1232
1116
|
distance: float | None = 0.0,
|
|
1233
1117
|
):
|
|
1234
1118
|
"""Set scale of scene by scaling camera (or its parent if present)
|
|
1235
1119
|
|
|
1236
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1237
1120
|
:type execution_context: int | str | None
|
|
1238
1121
|
:type undo: bool | None
|
|
1239
1122
|
:param distance: Distance, Distance between selected tracks
|
|
@@ -1241,27 +1124,23 @@ def set_scale(
|
|
|
1241
1124
|
"""
|
|
1242
1125
|
|
|
1243
1126
|
def set_scene_frames(
|
|
1244
|
-
|
|
1245
|
-
execution_context: int | str | None = None,
|
|
1246
|
-
undo: bool | None = None,
|
|
1127
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1247
1128
|
):
|
|
1248
1129
|
"""Set scene's start and end frame to match clip's start frame and length
|
|
1249
1130
|
|
|
1250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1251
1131
|
:type execution_context: int | str | None
|
|
1252
1132
|
:type undo: bool | None
|
|
1253
1133
|
"""
|
|
1254
1134
|
|
|
1255
1135
|
def set_solution_scale(
|
|
1256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1257
1136
|
execution_context: int | str | None = None,
|
|
1258
1137
|
undo: bool | None = None,
|
|
1138
|
+
/,
|
|
1259
1139
|
*,
|
|
1260
1140
|
distance: float | None = 0.0,
|
|
1261
1141
|
):
|
|
1262
1142
|
"""Set object solution scale using distance between two selected tracks
|
|
1263
1143
|
|
|
1264
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1265
1144
|
:type execution_context: int | str | None
|
|
1266
1145
|
:type undo: bool | None
|
|
1267
1146
|
:param distance: Distance, Distance between selected tracks
|
|
@@ -1269,15 +1148,14 @@ def set_solution_scale(
|
|
|
1269
1148
|
"""
|
|
1270
1149
|
|
|
1271
1150
|
def set_solver_keyframe(
|
|
1272
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1273
1151
|
execution_context: int | str | None = None,
|
|
1274
1152
|
undo: bool | None = None,
|
|
1153
|
+
/,
|
|
1275
1154
|
*,
|
|
1276
1155
|
keyframe: typing.Literal["KEYFRAME_A", "KEYFRAME_B"] | None = "KEYFRAME_A",
|
|
1277
1156
|
):
|
|
1278
1157
|
"""Set keyframe used by solver
|
|
1279
1158
|
|
|
1280
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1281
1159
|
:type execution_context: int | str | None
|
|
1282
1160
|
:type undo: bool | None
|
|
1283
1161
|
:param keyframe: Keyframe, Keyframe to set
|
|
@@ -1285,39 +1163,32 @@ def set_solver_keyframe(
|
|
|
1285
1163
|
"""
|
|
1286
1164
|
|
|
1287
1165
|
def set_viewport_background(
|
|
1288
|
-
|
|
1289
|
-
execution_context: int | str | None = None,
|
|
1290
|
-
undo: bool | None = None,
|
|
1166
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1291
1167
|
):
|
|
1292
1168
|
"""Set current movie clip as a camera background in 3D Viewport (works only when a 3D Viewport is visible)
|
|
1293
1169
|
|
|
1294
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1295
1170
|
:type execution_context: int | str | None
|
|
1296
1171
|
:type undo: bool | None
|
|
1297
1172
|
"""
|
|
1298
1173
|
|
|
1299
1174
|
def setup_tracking_scene(
|
|
1300
|
-
|
|
1301
|
-
execution_context: int | str | None = None,
|
|
1302
|
-
undo: bool | None = None,
|
|
1175
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1303
1176
|
):
|
|
1304
1177
|
"""Prepare scene for compositing 3D objects into this footage
|
|
1305
1178
|
|
|
1306
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1307
1179
|
:type execution_context: int | str | None
|
|
1308
1180
|
:type undo: bool | None
|
|
1309
1181
|
"""
|
|
1310
1182
|
|
|
1311
1183
|
def slide_marker(
|
|
1312
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1313
1184
|
execution_context: int | str | None = None,
|
|
1314
1185
|
undo: bool | None = None,
|
|
1186
|
+
/,
|
|
1315
1187
|
*,
|
|
1316
1188
|
offset: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1317
1189
|
):
|
|
1318
1190
|
"""Slide marker areas
|
|
1319
1191
|
|
|
1320
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1321
1192
|
:type execution_context: int | str | None
|
|
1322
1193
|
:type undo: bool | None
|
|
1323
1194
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
@@ -1325,105 +1196,79 @@ def slide_marker(
|
|
|
1325
1196
|
"""
|
|
1326
1197
|
|
|
1327
1198
|
def slide_plane_marker(
|
|
1328
|
-
|
|
1329
|
-
execution_context: int | str | None = None,
|
|
1330
|
-
undo: bool | None = None,
|
|
1199
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1331
1200
|
):
|
|
1332
1201
|
"""Slide plane marker areas
|
|
1333
1202
|
|
|
1334
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1335
1203
|
:type execution_context: int | str | None
|
|
1336
1204
|
:type undo: bool | None
|
|
1337
1205
|
"""
|
|
1338
1206
|
|
|
1339
|
-
def solve_camera(
|
|
1340
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1341
|
-
execution_context: int | str | None = None,
|
|
1342
|
-
undo: bool | None = None,
|
|
1343
|
-
):
|
|
1207
|
+
def solve_camera(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1344
1208
|
"""Solve camera motion from tracks
|
|
1345
1209
|
|
|
1346
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1347
1210
|
:type execution_context: int | str | None
|
|
1348
1211
|
:type undo: bool | None
|
|
1349
1212
|
"""
|
|
1350
1213
|
|
|
1351
1214
|
def stabilize_2d_add(
|
|
1352
|
-
|
|
1353
|
-
execution_context: int | str | None = None,
|
|
1354
|
-
undo: bool | None = None,
|
|
1215
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1355
1216
|
):
|
|
1356
1217
|
"""Add selected tracks to 2D translation stabilization
|
|
1357
1218
|
|
|
1358
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1359
1219
|
:type execution_context: int | str | None
|
|
1360
1220
|
:type undo: bool | None
|
|
1361
1221
|
"""
|
|
1362
1222
|
|
|
1363
1223
|
def stabilize_2d_remove(
|
|
1364
|
-
|
|
1365
|
-
execution_context: int | str | None = None,
|
|
1366
|
-
undo: bool | None = None,
|
|
1224
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1367
1225
|
):
|
|
1368
1226
|
"""Remove selected track from translation stabilization
|
|
1369
1227
|
|
|
1370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1371
1228
|
:type execution_context: int | str | None
|
|
1372
1229
|
:type undo: bool | None
|
|
1373
1230
|
"""
|
|
1374
1231
|
|
|
1375
1232
|
def stabilize_2d_rotation_add(
|
|
1376
|
-
|
|
1377
|
-
execution_context: int | str | None = None,
|
|
1378
|
-
undo: bool | None = None,
|
|
1233
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1379
1234
|
):
|
|
1380
1235
|
"""Add selected tracks to 2D rotation stabilization
|
|
1381
1236
|
|
|
1382
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1383
1237
|
:type execution_context: int | str | None
|
|
1384
1238
|
:type undo: bool | None
|
|
1385
1239
|
"""
|
|
1386
1240
|
|
|
1387
1241
|
def stabilize_2d_rotation_remove(
|
|
1388
|
-
|
|
1389
|
-
execution_context: int | str | None = None,
|
|
1390
|
-
undo: bool | None = None,
|
|
1242
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1391
1243
|
):
|
|
1392
1244
|
"""Remove selected track from rotation stabilization
|
|
1393
1245
|
|
|
1394
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1395
1246
|
:type execution_context: int | str | None
|
|
1396
1247
|
:type undo: bool | None
|
|
1397
1248
|
"""
|
|
1398
1249
|
|
|
1399
1250
|
def stabilize_2d_rotation_select(
|
|
1400
|
-
|
|
1401
|
-
execution_context: int | str | None = None,
|
|
1402
|
-
undo: bool | None = None,
|
|
1251
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1403
1252
|
):
|
|
1404
1253
|
"""Select tracks which are used for rotation stabilization
|
|
1405
1254
|
|
|
1406
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1407
1255
|
:type execution_context: int | str | None
|
|
1408
1256
|
:type undo: bool | None
|
|
1409
1257
|
"""
|
|
1410
1258
|
|
|
1411
1259
|
def stabilize_2d_select(
|
|
1412
|
-
|
|
1413
|
-
execution_context: int | str | None = None,
|
|
1414
|
-
undo: bool | None = None,
|
|
1260
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1415
1261
|
):
|
|
1416
1262
|
"""Select tracks which are used for translation stabilization
|
|
1417
1263
|
|
|
1418
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1419
1264
|
:type execution_context: int | str | None
|
|
1420
1265
|
:type undo: bool | None
|
|
1421
1266
|
"""
|
|
1422
1267
|
|
|
1423
1268
|
def track_color_preset_add(
|
|
1424
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1425
1269
|
execution_context: int | str | None = None,
|
|
1426
1270
|
undo: bool | None = None,
|
|
1271
|
+
/,
|
|
1427
1272
|
*,
|
|
1428
1273
|
name: str = "",
|
|
1429
1274
|
remove_name: bool | None = False,
|
|
@@ -1431,7 +1276,6 @@ def track_color_preset_add(
|
|
|
1431
1276
|
):
|
|
1432
1277
|
"""Add or remove a Clip Track Color Preset
|
|
1433
1278
|
|
|
1434
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1435
1279
|
:type execution_context: int | str | None
|
|
1436
1280
|
:type undo: bool | None
|
|
1437
1281
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -1443,28 +1287,24 @@ def track_color_preset_add(
|
|
|
1443
1287
|
"""
|
|
1444
1288
|
|
|
1445
1289
|
def track_copy_color(
|
|
1446
|
-
|
|
1447
|
-
execution_context: int | str | None = None,
|
|
1448
|
-
undo: bool | None = None,
|
|
1290
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1449
1291
|
):
|
|
1450
1292
|
"""Copy color to all selected tracks
|
|
1451
1293
|
|
|
1452
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1453
1294
|
:type execution_context: int | str | None
|
|
1454
1295
|
:type undo: bool | None
|
|
1455
1296
|
"""
|
|
1456
1297
|
|
|
1457
1298
|
def track_markers(
|
|
1458
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1459
1299
|
execution_context: int | str | None = None,
|
|
1460
1300
|
undo: bool | None = None,
|
|
1301
|
+
/,
|
|
1461
1302
|
*,
|
|
1462
1303
|
backwards: bool | None = False,
|
|
1463
1304
|
sequence: bool | None = False,
|
|
1464
1305
|
):
|
|
1465
1306
|
"""Track selected markers
|
|
1466
1307
|
|
|
1467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1468
1308
|
:type execution_context: int | str | None
|
|
1469
1309
|
:type undo: bool | None
|
|
1470
1310
|
:param backwards: Backwards, Do backwards tracking
|
|
@@ -1474,69 +1314,54 @@ def track_markers(
|
|
|
1474
1314
|
"""
|
|
1475
1315
|
|
|
1476
1316
|
def track_settings_as_default(
|
|
1477
|
-
|
|
1478
|
-
execution_context: int | str | None = None,
|
|
1479
|
-
undo: bool | None = None,
|
|
1317
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1480
1318
|
):
|
|
1481
1319
|
"""Copy tracking settings from active track to default settings
|
|
1482
1320
|
|
|
1483
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1484
1321
|
:type execution_context: int | str | None
|
|
1485
1322
|
:type undo: bool | None
|
|
1486
1323
|
"""
|
|
1487
1324
|
|
|
1488
1325
|
def track_settings_to_track(
|
|
1489
|
-
|
|
1490
|
-
execution_context: int | str | None = None,
|
|
1491
|
-
undo: bool | None = None,
|
|
1326
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1492
1327
|
):
|
|
1493
1328
|
"""Copy tracking settings from active track to selected tracks
|
|
1494
1329
|
|
|
1495
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1496
1330
|
:type execution_context: int | str | None
|
|
1497
1331
|
:type undo: bool | None
|
|
1498
1332
|
"""
|
|
1499
1333
|
|
|
1500
1334
|
def track_to_empty(
|
|
1501
|
-
|
|
1502
|
-
execution_context: int | str | None = None,
|
|
1503
|
-
undo: bool | None = None,
|
|
1335
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1504
1336
|
):
|
|
1505
1337
|
"""Create an Empty object which will be copying movement of active track
|
|
1506
1338
|
|
|
1507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1508
1339
|
:type execution_context: int | str | None
|
|
1509
1340
|
:type undo: bool | None
|
|
1510
1341
|
"""
|
|
1511
1342
|
|
|
1512
1343
|
def tracking_object_new(
|
|
1513
|
-
|
|
1514
|
-
execution_context: int | str | None = None,
|
|
1515
|
-
undo: bool | None = None,
|
|
1344
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1516
1345
|
):
|
|
1517
1346
|
"""Add new object for tracking
|
|
1518
1347
|
|
|
1519
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1520
1348
|
:type execution_context: int | str | None
|
|
1521
1349
|
:type undo: bool | None
|
|
1522
1350
|
"""
|
|
1523
1351
|
|
|
1524
1352
|
def tracking_object_remove(
|
|
1525
|
-
|
|
1526
|
-
execution_context: int | str | None = None,
|
|
1527
|
-
undo: bool | None = None,
|
|
1353
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1528
1354
|
):
|
|
1529
1355
|
"""Remove object for tracking
|
|
1530
1356
|
|
|
1531
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1532
1357
|
:type execution_context: int | str | None
|
|
1533
1358
|
:type undo: bool | None
|
|
1534
1359
|
"""
|
|
1535
1360
|
|
|
1536
1361
|
def tracking_settings_preset_add(
|
|
1537
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1538
1362
|
execution_context: int | str | None = None,
|
|
1539
1363
|
undo: bool | None = None,
|
|
1364
|
+
/,
|
|
1540
1365
|
*,
|
|
1541
1366
|
name: str = "",
|
|
1542
1367
|
remove_name: bool | None = False,
|
|
@@ -1544,7 +1369,6 @@ def tracking_settings_preset_add(
|
|
|
1544
1369
|
):
|
|
1545
1370
|
"""Add or remove a motion tracking settings preset
|
|
1546
1371
|
|
|
1547
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1548
1372
|
:type execution_context: int | str | None
|
|
1549
1373
|
:type undo: bool | None
|
|
1550
1374
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -1556,27 +1380,23 @@ def tracking_settings_preset_add(
|
|
|
1556
1380
|
"""
|
|
1557
1381
|
|
|
1558
1382
|
def update_image_from_plane_marker(
|
|
1559
|
-
|
|
1560
|
-
execution_context: int | str | None = None,
|
|
1561
|
-
undo: bool | None = None,
|
|
1383
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1562
1384
|
):
|
|
1563
1385
|
"""Update current image used by plane marker from the content of the plane marker
|
|
1564
1386
|
|
|
1565
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1566
1387
|
:type execution_context: int | str | None
|
|
1567
1388
|
:type undo: bool | None
|
|
1568
1389
|
"""
|
|
1569
1390
|
|
|
1570
1391
|
def view_all(
|
|
1571
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1572
1392
|
execution_context: int | str | None = None,
|
|
1573
1393
|
undo: bool | None = None,
|
|
1394
|
+
/,
|
|
1574
1395
|
*,
|
|
1575
1396
|
fit_view: bool | None = False,
|
|
1576
1397
|
):
|
|
1577
1398
|
"""View whole image with markers
|
|
1578
1399
|
|
|
1579
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1580
1400
|
:type execution_context: int | str | None
|
|
1581
1401
|
:type undo: bool | None
|
|
1582
1402
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
@@ -1584,68 +1404,53 @@ def view_all(
|
|
|
1584
1404
|
"""
|
|
1585
1405
|
|
|
1586
1406
|
def view_center_cursor(
|
|
1587
|
-
|
|
1588
|
-
execution_context: int | str | None = None,
|
|
1589
|
-
undo: bool | None = None,
|
|
1407
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1590
1408
|
):
|
|
1591
1409
|
"""Center the view so that the cursor is in the middle of the view
|
|
1592
1410
|
|
|
1593
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1594
1411
|
:type execution_context: int | str | None
|
|
1595
1412
|
:type undo: bool | None
|
|
1596
1413
|
"""
|
|
1597
1414
|
|
|
1598
|
-
def view_ndof(
|
|
1599
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1600
|
-
execution_context: int | str | None = None,
|
|
1601
|
-
undo: bool | None = None,
|
|
1602
|
-
):
|
|
1415
|
+
def view_ndof(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1603
1416
|
"""Use a 3D mouse device to pan/zoom the view
|
|
1604
1417
|
|
|
1605
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1606
1418
|
:type execution_context: int | str | None
|
|
1607
1419
|
:type undo: bool | None
|
|
1608
1420
|
"""
|
|
1609
1421
|
|
|
1610
1422
|
def view_pan(
|
|
1611
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1612
1423
|
execution_context: int | str | None = None,
|
|
1613
1424
|
undo: bool | None = None,
|
|
1425
|
+
/,
|
|
1614
1426
|
*,
|
|
1615
1427
|
offset: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1616
1428
|
):
|
|
1617
1429
|
"""Pan the view
|
|
1618
1430
|
|
|
1619
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1620
1431
|
:type execution_context: int | str | None
|
|
1621
1432
|
:type undo: bool | None
|
|
1622
1433
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1623
1434
|
:type offset: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1624
1435
|
"""
|
|
1625
1436
|
|
|
1626
|
-
def view_selected(
|
|
1627
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1628
|
-
execution_context: int | str | None = None,
|
|
1629
|
-
undo: bool | None = None,
|
|
1630
|
-
):
|
|
1437
|
+
def view_selected(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1631
1438
|
"""View all selected elements
|
|
1632
1439
|
|
|
1633
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1634
1440
|
:type execution_context: int | str | None
|
|
1635
1441
|
:type undo: bool | None
|
|
1636
1442
|
"""
|
|
1637
1443
|
|
|
1638
1444
|
def view_zoom(
|
|
1639
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1640
1445
|
execution_context: int | str | None = None,
|
|
1641
1446
|
undo: bool | None = None,
|
|
1447
|
+
/,
|
|
1642
1448
|
*,
|
|
1643
1449
|
factor: float | None = 0.0,
|
|
1644
1450
|
use_cursor_init: bool | None = True,
|
|
1645
1451
|
):
|
|
1646
1452
|
"""Zoom in/out the view
|
|
1647
1453
|
|
|
1648
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1649
1454
|
:type execution_context: int | str | None
|
|
1650
1455
|
:type undo: bool | None
|
|
1651
1456
|
:param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
|
|
@@ -1655,15 +1460,14 @@ def view_zoom(
|
|
|
1655
1460
|
"""
|
|
1656
1461
|
|
|
1657
1462
|
def view_zoom_in(
|
|
1658
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1659
1463
|
execution_context: int | str | None = None,
|
|
1660
1464
|
undo: bool | None = None,
|
|
1465
|
+
/,
|
|
1661
1466
|
*,
|
|
1662
1467
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1663
1468
|
):
|
|
1664
1469
|
"""Zoom in the view
|
|
1665
1470
|
|
|
1666
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1667
1471
|
:type execution_context: int | str | None
|
|
1668
1472
|
:type undo: bool | None
|
|
1669
1473
|
:param location: Location, Cursor location in screen coordinates
|
|
@@ -1671,15 +1475,14 @@ def view_zoom_in(
|
|
|
1671
1475
|
"""
|
|
1672
1476
|
|
|
1673
1477
|
def view_zoom_out(
|
|
1674
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1675
1478
|
execution_context: int | str | None = None,
|
|
1676
1479
|
undo: bool | None = None,
|
|
1480
|
+
/,
|
|
1677
1481
|
*,
|
|
1678
1482
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1679
1483
|
):
|
|
1680
1484
|
"""Zoom out the view
|
|
1681
1485
|
|
|
1682
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1683
1486
|
:type execution_context: int | str | None
|
|
1684
1487
|
:type undo: bool | None
|
|
1685
1488
|
:param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
|
|
@@ -1687,15 +1490,14 @@ def view_zoom_out(
|
|
|
1687
1490
|
"""
|
|
1688
1491
|
|
|
1689
1492
|
def view_zoom_ratio(
|
|
1690
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1691
1493
|
execution_context: int | str | None = None,
|
|
1692
1494
|
undo: bool | None = None,
|
|
1495
|
+
/,
|
|
1693
1496
|
*,
|
|
1694
1497
|
ratio: float | None = 0.0,
|
|
1695
1498
|
):
|
|
1696
1499
|
"""Set the zoom ratio (based on clip size)
|
|
1697
1500
|
|
|
1698
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1699
1501
|
:type execution_context: int | str | None
|
|
1700
1502
|
:type undo: bool | None
|
|
1701
1503
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|