fake-bpy-module 20240411__py3-none-any.whl → 20240418__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_internal/__init__.pyi +4 -0
- _bpy_internal/freedesktop/__init__.pyi +88 -0
- _bpy_internal/freedesktop/py.typed +0 -0
- _bpy_internal/py.typed +0 -0
- aud/__init__.pyi +121 -48
- bgl/__init__.pyi +2443 -1265
- bl_math/__init__.pyi +19 -3
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- blf/__init__.pyi +63 -13
- bmesh/__init__.pyi +13 -0
- bmesh/geometry/__init__.pyi +5 -0
- bmesh/ops/__init__.pyi +157 -68
- bmesh/types/__init__.pyi +109 -62
- bmesh/utils/__init__.pyi +11 -2
- bpy/__init__.pyi +7 -0
- bpy/app/__init__.pyi +13 -0
- bpy/app/handlers/__init__.pyi +41 -0
- bpy/app/icons/__init__.pyi +4 -2
- bpy/app/timers/__init__.pyi +38 -2
- bpy/app/translations/__init__.pyi +59 -1
- bpy/msgbus/__init__.pyi +46 -0
- bpy/ops/__init__.pyi +151 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +104 -104
- 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 +18 -18
- 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 +132 -50
- 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_mesh/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +11 -8
- 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 +300 -300
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +139 -110
- bpy/ops/image/__init__.pyi +92 -92
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_mesh/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +6 -6
- 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 +327 -327
- bpy/ops/nla/__init__.pyi +80 -80
- bpy/ops/node/__init__.pyi +203 -203
- bpy/ops/object/__init__.pyi +496 -508
- bpy/ops/outliner/__init__.pyi +139 -139
- bpy/ops/paint/__init__.pyi +104 -104
- 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 +78 -78
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +77 -77
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +24 -24
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +78 -78
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +68 -62
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +170 -170
- 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 +64 -64
- 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 +225 -225
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +2 -2
- bpy/path/__init__.pyi +6 -0
- bpy/props/__init__.pyi +141 -29
- bpy/types/__init__.pyi +101773 -5222
- bpy/utils/__init__.pyi +18 -3
- bpy/utils/previews/__init__.pyi +15 -0
- bpy/utils/units/__init__.pyi +11 -3
- bpy_extras/__init__.pyi +19 -0
- bpy_extras/asset_utils/__init__.pyi +5 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/RECORD +145 -141
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +18 -0
- freestyle/chainingiterators/__init__.pyi +20 -5
- freestyle/functions/__init__.pyi +151 -155
- freestyle/predicates/__init__.pyi +53 -46
- freestyle/shaders/__init__.pyi +91 -32
- freestyle/types/__init__.pyi +362 -120
- freestyle/utils/ContextFunctions/__init__.pyi +32 -7
- freestyle/utils/__init__.pyi +13 -1
- gpu/__init__.pyi +225 -0
- gpu/capabilities/__init__.pyi +37 -15
- gpu/matrix/__init__.pyi +7 -1
- gpu/platform/__init__.pyi +5 -0
- gpu/select/__init__.pyi +5 -0
- gpu/shader/__init__.pyi +77 -0
- gpu/state/__init__.pyi +15 -4
- gpu/texture/__init__.pyi +5 -0
- gpu/types/__init__.pyi +91 -33
- gpu_extras/__init__.pyi +15 -0
- gpu_extras/presets/__init__.pyi +16 -4
- imbuf/__init__.pyi +13 -0
- imbuf/types/__init__.pyi +20 -5
- mathutils/__init__.pyi +349 -227
- mathutils/bvhtree/__init__.pyi +21 -8
- mathutils/geometry/__init__.pyi +23 -9
- mathutils/interpolate/__init__.pyi +5 -0
- mathutils/kdtree/__init__.pyi +19 -5
- mathutils/noise/__init__.pyi +87 -41
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/WHEEL +0 -0
bpy/ops/clip/__init__.pyi
CHANGED
|
@@ -5,14 +5,14 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def add_marker(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
location: typing.Any = (0.0, 0.0),
|
|
11
11
|
):
|
|
12
12
|
"""Place new marker at specified location
|
|
13
13
|
|
|
14
14
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
15
|
-
:type execution_context: str
|
|
15
|
+
:type execution_context: typing.Union[str, int]
|
|
16
16
|
:type undo: bool
|
|
17
17
|
:param location: Location, Location of marker on frame
|
|
18
18
|
:type location: typing.Any
|
|
@@ -22,13 +22,13 @@ def add_marker(
|
|
|
22
22
|
|
|
23
23
|
def add_marker_at_click(
|
|
24
24
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
-
execution_context: str = None,
|
|
25
|
+
execution_context: typing.Union[str, int] = None,
|
|
26
26
|
undo: bool = None,
|
|
27
27
|
):
|
|
28
28
|
"""Place new marker at the desired (clicked) position
|
|
29
29
|
|
|
30
30
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
31
|
-
:type execution_context: str
|
|
31
|
+
:type execution_context: typing.Union[str, int]
|
|
32
32
|
:type undo: bool
|
|
33
33
|
"""
|
|
34
34
|
|
|
@@ -36,7 +36,7 @@ def add_marker_at_click(
|
|
|
36
36
|
|
|
37
37
|
def add_marker_move(
|
|
38
38
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
39
|
-
execution_context: str = None,
|
|
39
|
+
execution_context: typing.Union[str, int] = None,
|
|
40
40
|
undo: bool = None,
|
|
41
41
|
CLIP_OT_add_marker: typing.Any = None,
|
|
42
42
|
TRANSFORM_OT_translate: typing.Any = None,
|
|
@@ -44,7 +44,7 @@ def add_marker_move(
|
|
|
44
44
|
"""Add new marker and move it on movie
|
|
45
45
|
|
|
46
46
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
47
|
-
:type execution_context: str
|
|
47
|
+
:type execution_context: typing.Union[str, int]
|
|
48
48
|
:type undo: bool
|
|
49
49
|
:param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
|
|
50
50
|
:type CLIP_OT_add_marker: typing.Any
|
|
@@ -56,7 +56,7 @@ def add_marker_move(
|
|
|
56
56
|
|
|
57
57
|
def add_marker_slide(
|
|
58
58
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
59
|
-
execution_context: str = None,
|
|
59
|
+
execution_context: typing.Union[str, int] = None,
|
|
60
60
|
undo: bool = None,
|
|
61
61
|
CLIP_OT_add_marker: typing.Any = None,
|
|
62
62
|
TRANSFORM_OT_translate: typing.Any = None,
|
|
@@ -64,7 +64,7 @@ def add_marker_slide(
|
|
|
64
64
|
"""Add new marker and slide it with mouse until mouse button release
|
|
65
65
|
|
|
66
66
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
67
|
-
:type execution_context: str
|
|
67
|
+
:type execution_context: typing.Union[str, int]
|
|
68
68
|
:type undo: bool
|
|
69
69
|
:param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
|
|
70
70
|
:type CLIP_OT_add_marker: typing.Any
|
|
@@ -76,14 +76,14 @@ def add_marker_slide(
|
|
|
76
76
|
|
|
77
77
|
def apply_solution_scale(
|
|
78
78
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
79
|
-
execution_context: str = None,
|
|
79
|
+
execution_context: typing.Union[str, int] = None,
|
|
80
80
|
undo: bool = None,
|
|
81
81
|
distance: typing.Any = 0.0,
|
|
82
82
|
):
|
|
83
83
|
"""Apply scale on solution itself to make distance between selected tracks equals to desired
|
|
84
84
|
|
|
85
85
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
86
|
-
:type execution_context: str
|
|
86
|
+
:type execution_context: typing.Union[str, int]
|
|
87
87
|
:type undo: bool
|
|
88
88
|
:param distance: Distance, Distance between selected tracks
|
|
89
89
|
:type distance: typing.Any
|
|
@@ -93,14 +93,14 @@ def apply_solution_scale(
|
|
|
93
93
|
|
|
94
94
|
def average_tracks(
|
|
95
95
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
96
|
-
execution_context: str = None,
|
|
96
|
+
execution_context: typing.Union[str, int] = None,
|
|
97
97
|
undo: bool = None,
|
|
98
98
|
keep_original: typing.Union[bool, typing.Any] = True,
|
|
99
99
|
):
|
|
100
100
|
"""Average selected tracks into active
|
|
101
101
|
|
|
102
102
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
103
|
-
:type execution_context: str
|
|
103
|
+
:type execution_context: typing.Union[str, int]
|
|
104
104
|
:type undo: bool
|
|
105
105
|
:param keep_original: Keep Original, Keep original tracks
|
|
106
106
|
:type keep_original: typing.Union[bool, typing.Any]
|
|
@@ -110,13 +110,13 @@ def average_tracks(
|
|
|
110
110
|
|
|
111
111
|
def bundles_to_mesh(
|
|
112
112
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
113
|
-
execution_context: str = None,
|
|
113
|
+
execution_context: typing.Union[str, int] = None,
|
|
114
114
|
undo: bool = None,
|
|
115
115
|
):
|
|
116
116
|
"""Create vertex cloud using coordinates of reconstructed tracks
|
|
117
117
|
|
|
118
118
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
119
|
-
:type execution_context: str
|
|
119
|
+
:type execution_context: typing.Union[str, int]
|
|
120
120
|
:type undo: bool
|
|
121
121
|
"""
|
|
122
122
|
|
|
@@ -124,7 +124,7 @@ def bundles_to_mesh(
|
|
|
124
124
|
|
|
125
125
|
def camera_preset_add(
|
|
126
126
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
127
|
-
execution_context: str = None,
|
|
127
|
+
execution_context: typing.Union[str, int] = None,
|
|
128
128
|
undo: bool = None,
|
|
129
129
|
name: typing.Union[str, typing.Any] = "",
|
|
130
130
|
remove_name: typing.Union[bool, typing.Any] = False,
|
|
@@ -134,7 +134,7 @@ def camera_preset_add(
|
|
|
134
134
|
"""Add or remove a Tracking Camera Intrinsics Preset
|
|
135
135
|
|
|
136
136
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
137
|
-
:type execution_context: str
|
|
137
|
+
:type execution_context: typing.Union[str, int]
|
|
138
138
|
:type undo: bool
|
|
139
139
|
:param name: Name, Name of the preset, used to make the path name
|
|
140
140
|
:type name: typing.Union[str, typing.Any]
|
|
@@ -150,14 +150,14 @@ def camera_preset_add(
|
|
|
150
150
|
|
|
151
151
|
def change_frame(
|
|
152
152
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
153
|
-
execution_context: str = None,
|
|
153
|
+
execution_context: typing.Union[str, int] = None,
|
|
154
154
|
undo: bool = None,
|
|
155
155
|
frame: typing.Any = 0,
|
|
156
156
|
):
|
|
157
157
|
"""Interactively change the current frame number
|
|
158
158
|
|
|
159
159
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
160
|
-
:type execution_context: str
|
|
160
|
+
:type execution_context: typing.Union[str, int]
|
|
161
161
|
:type undo: bool
|
|
162
162
|
:param frame: Frame
|
|
163
163
|
:type frame: typing.Any
|
|
@@ -167,7 +167,7 @@ def change_frame(
|
|
|
167
167
|
|
|
168
168
|
def clean_tracks(
|
|
169
169
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
170
|
-
execution_context: str = None,
|
|
170
|
+
execution_context: typing.Union[str, int] = None,
|
|
171
171
|
undo: bool = None,
|
|
172
172
|
frames: typing.Any = 0,
|
|
173
173
|
error: typing.Any = 0.0,
|
|
@@ -176,7 +176,7 @@ def clean_tracks(
|
|
|
176
176
|
"""Clean tracks with high error values or few frames
|
|
177
177
|
|
|
178
178
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
179
|
-
:type execution_context: str
|
|
179
|
+
:type execution_context: typing.Union[str, int]
|
|
180
180
|
:type undo: bool
|
|
181
181
|
:param frames: Tracked Frames, Affect tracks which are tracked less than the specified number of frames
|
|
182
182
|
:type frames: typing.Any
|
|
@@ -199,13 +199,13 @@ def clean_tracks(
|
|
|
199
199
|
|
|
200
200
|
def clear_solution(
|
|
201
201
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
202
|
-
execution_context: str = None,
|
|
202
|
+
execution_context: typing.Union[str, int] = None,
|
|
203
203
|
undo: bool = None,
|
|
204
204
|
):
|
|
205
205
|
"""Clear all calculated data
|
|
206
206
|
|
|
207
207
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
208
|
-
:type execution_context: str
|
|
208
|
+
:type execution_context: typing.Union[str, int]
|
|
209
209
|
:type undo: bool
|
|
210
210
|
"""
|
|
211
211
|
|
|
@@ -213,7 +213,7 @@ def clear_solution(
|
|
|
213
213
|
|
|
214
214
|
def clear_track_path(
|
|
215
215
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
216
|
-
execution_context: str = None,
|
|
216
|
+
execution_context: typing.Union[str, int] = None,
|
|
217
217
|
undo: bool = None,
|
|
218
218
|
action: typing.Any = "REMAINED",
|
|
219
219
|
clear_active: typing.Union[bool, typing.Any] = False,
|
|
@@ -221,7 +221,7 @@ def clear_track_path(
|
|
|
221
221
|
"""Clear tracks after/before current position or clear the whole track
|
|
222
222
|
|
|
223
223
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
224
|
-
:type execution_context: str
|
|
224
|
+
:type execution_context: typing.Union[str, int]
|
|
225
225
|
:type undo: bool
|
|
226
226
|
:param action: Action, Clear action to execute
|
|
227
227
|
|
|
@@ -242,13 +242,13 @@ def clear_track_path(
|
|
|
242
242
|
|
|
243
243
|
def constraint_to_fcurve(
|
|
244
244
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
245
|
-
execution_context: str = None,
|
|
245
|
+
execution_context: typing.Union[str, int] = None,
|
|
246
246
|
undo: bool = None,
|
|
247
247
|
):
|
|
248
248
|
"""Create F-Curves for object which will copy object's movement caused by this constraint
|
|
249
249
|
|
|
250
250
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
251
|
-
:type execution_context: str
|
|
251
|
+
:type execution_context: typing.Union[str, int]
|
|
252
252
|
:type undo: bool
|
|
253
253
|
"""
|
|
254
254
|
|
|
@@ -256,13 +256,13 @@ def constraint_to_fcurve(
|
|
|
256
256
|
|
|
257
257
|
def copy_tracks(
|
|
258
258
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
259
|
-
execution_context: str = None,
|
|
259
|
+
execution_context: typing.Union[str, int] = None,
|
|
260
260
|
undo: bool = None,
|
|
261
261
|
):
|
|
262
262
|
"""Copy the selected tracks to the internal clipboard
|
|
263
263
|
|
|
264
264
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
265
|
-
:type execution_context: str
|
|
265
|
+
:type execution_context: typing.Union[str, int]
|
|
266
266
|
:type undo: bool
|
|
267
267
|
"""
|
|
268
268
|
|
|
@@ -270,13 +270,13 @@ def copy_tracks(
|
|
|
270
270
|
|
|
271
271
|
def create_plane_track(
|
|
272
272
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
273
|
-
execution_context: str = None,
|
|
273
|
+
execution_context: typing.Union[str, int] = None,
|
|
274
274
|
undo: bool = None,
|
|
275
275
|
):
|
|
276
276
|
"""Create new plane track out of selected point tracks
|
|
277
277
|
|
|
278
278
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
279
|
-
:type execution_context: str
|
|
279
|
+
:type execution_context: typing.Union[str, int]
|
|
280
280
|
:type undo: bool
|
|
281
281
|
"""
|
|
282
282
|
|
|
@@ -284,14 +284,14 @@ def create_plane_track(
|
|
|
284
284
|
|
|
285
285
|
def cursor_set(
|
|
286
286
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
287
|
-
execution_context: str = None,
|
|
287
|
+
execution_context: typing.Union[str, int] = None,
|
|
288
288
|
undo: bool = None,
|
|
289
289
|
location: typing.Any = (0.0, 0.0),
|
|
290
290
|
):
|
|
291
291
|
"""Set 2D cursor location
|
|
292
292
|
|
|
293
293
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
294
|
-
:type execution_context: str
|
|
294
|
+
:type execution_context: typing.Union[str, int]
|
|
295
295
|
:type undo: bool
|
|
296
296
|
:param location: Location, Cursor location in normalized clip coordinates
|
|
297
297
|
:type location: typing.Any
|
|
@@ -301,14 +301,14 @@ def cursor_set(
|
|
|
301
301
|
|
|
302
302
|
def delete_marker(
|
|
303
303
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
304
|
-
execution_context: str = None,
|
|
304
|
+
execution_context: typing.Union[str, int] = None,
|
|
305
305
|
undo: bool = None,
|
|
306
306
|
confirm: typing.Union[bool, typing.Any] = True,
|
|
307
307
|
):
|
|
308
308
|
"""Delete marker for current frame from selected tracks
|
|
309
309
|
|
|
310
310
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
311
|
-
:type execution_context: str
|
|
311
|
+
:type execution_context: typing.Union[str, int]
|
|
312
312
|
:type undo: bool
|
|
313
313
|
:param confirm: Confirm, Prompt for confirmation
|
|
314
314
|
:type confirm: typing.Union[bool, typing.Any]
|
|
@@ -318,13 +318,13 @@ def delete_marker(
|
|
|
318
318
|
|
|
319
319
|
def delete_proxy(
|
|
320
320
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
321
|
-
execution_context: str = None,
|
|
321
|
+
execution_context: typing.Union[str, int] = None,
|
|
322
322
|
undo: bool = None,
|
|
323
323
|
):
|
|
324
324
|
"""Delete movie clip proxy files from the hard drive
|
|
325
325
|
|
|
326
326
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
327
|
-
:type execution_context: str
|
|
327
|
+
:type execution_context: typing.Union[str, int]
|
|
328
328
|
:type undo: bool
|
|
329
329
|
"""
|
|
330
330
|
|
|
@@ -332,14 +332,14 @@ def delete_proxy(
|
|
|
332
332
|
|
|
333
333
|
def delete_track(
|
|
334
334
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
335
|
-
execution_context: str = None,
|
|
335
|
+
execution_context: typing.Union[str, int] = None,
|
|
336
336
|
undo: bool = None,
|
|
337
337
|
confirm: typing.Union[bool, typing.Any] = True,
|
|
338
338
|
):
|
|
339
339
|
"""Delete selected tracks
|
|
340
340
|
|
|
341
341
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
342
|
-
:type execution_context: str
|
|
342
|
+
:type execution_context: typing.Union[str, int]
|
|
343
343
|
:type undo: bool
|
|
344
344
|
:param confirm: Confirm, Prompt for confirmation
|
|
345
345
|
:type confirm: typing.Union[bool, typing.Any]
|
|
@@ -349,7 +349,7 @@ def delete_track(
|
|
|
349
349
|
|
|
350
350
|
def detect_features(
|
|
351
351
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
352
|
-
execution_context: str = None,
|
|
352
|
+
execution_context: typing.Union[str, int] = None,
|
|
353
353
|
undo: bool = None,
|
|
354
354
|
placement: typing.Any = "FRAME",
|
|
355
355
|
margin: typing.Any = 16,
|
|
@@ -359,7 +359,7 @@ def detect_features(
|
|
|
359
359
|
"""Automatically detect features and place markers to track
|
|
360
360
|
|
|
361
361
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
362
|
-
:type execution_context: str
|
|
362
|
+
:type execution_context: typing.Union[str, int]
|
|
363
363
|
:type undo: bool
|
|
364
364
|
:param placement: Placement, Placement for detected features
|
|
365
365
|
|
|
@@ -384,14 +384,14 @@ def detect_features(
|
|
|
384
384
|
|
|
385
385
|
def disable_markers(
|
|
386
386
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
387
|
-
execution_context: str = None,
|
|
387
|
+
execution_context: typing.Union[str, int] = None,
|
|
388
388
|
undo: bool = None,
|
|
389
389
|
action: typing.Any = "DISABLE",
|
|
390
390
|
):
|
|
391
391
|
"""Disable/enable selected markers
|
|
392
392
|
|
|
393
393
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
394
|
-
:type execution_context: str
|
|
394
|
+
:type execution_context: typing.Union[str, int]
|
|
395
395
|
:type undo: bool
|
|
396
396
|
:param action: Action, Disable action to execute
|
|
397
397
|
|
|
@@ -410,7 +410,7 @@ def disable_markers(
|
|
|
410
410
|
|
|
411
411
|
def dopesheet_select_channel(
|
|
412
412
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
413
|
-
execution_context: str = None,
|
|
413
|
+
execution_context: typing.Union[str, int] = None,
|
|
414
414
|
undo: bool = None,
|
|
415
415
|
location: typing.Any = (0.0, 0.0),
|
|
416
416
|
extend: typing.Union[bool, typing.Any] = False,
|
|
@@ -418,7 +418,7 @@ def dopesheet_select_channel(
|
|
|
418
418
|
"""Select movie tracking channel
|
|
419
419
|
|
|
420
420
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
421
|
-
:type execution_context: str
|
|
421
|
+
:type execution_context: typing.Union[str, int]
|
|
422
422
|
:type undo: bool
|
|
423
423
|
:param location: Location, Mouse location to select channel
|
|
424
424
|
:type location: typing.Any
|
|
@@ -430,13 +430,13 @@ def dopesheet_select_channel(
|
|
|
430
430
|
|
|
431
431
|
def dopesheet_view_all(
|
|
432
432
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
433
|
-
execution_context: str = None,
|
|
433
|
+
execution_context: typing.Union[str, int] = None,
|
|
434
434
|
undo: bool = None,
|
|
435
435
|
):
|
|
436
436
|
"""Reset viewable area to show full keyframe range
|
|
437
437
|
|
|
438
438
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
439
|
-
:type execution_context: str
|
|
439
|
+
:type execution_context: typing.Union[str, int]
|
|
440
440
|
:type undo: bool
|
|
441
441
|
"""
|
|
442
442
|
|
|
@@ -444,14 +444,14 @@ def dopesheet_view_all(
|
|
|
444
444
|
|
|
445
445
|
def filter_tracks(
|
|
446
446
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
447
|
-
execution_context: str = None,
|
|
447
|
+
execution_context: typing.Union[str, int] = None,
|
|
448
448
|
undo: bool = None,
|
|
449
449
|
track_threshold: typing.Any = 5.0,
|
|
450
450
|
):
|
|
451
451
|
"""Filter tracks which has weirdly looking spikes in motion curves
|
|
452
452
|
|
|
453
453
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
454
|
-
:type execution_context: str
|
|
454
|
+
:type execution_context: typing.Union[str, int]
|
|
455
455
|
:type undo: bool
|
|
456
456
|
:param track_threshold: Track Threshold, Filter Threshold to select problematic tracks
|
|
457
457
|
:type track_threshold: typing.Any
|
|
@@ -461,14 +461,14 @@ def filter_tracks(
|
|
|
461
461
|
|
|
462
462
|
def frame_jump(
|
|
463
463
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
464
|
-
execution_context: str = None,
|
|
464
|
+
execution_context: typing.Union[str, int] = None,
|
|
465
465
|
undo: bool = None,
|
|
466
466
|
position: typing.Any = "PATHSTART",
|
|
467
467
|
):
|
|
468
468
|
"""Jump to special frame
|
|
469
469
|
|
|
470
470
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
471
|
-
:type execution_context: str
|
|
471
|
+
:type execution_context: typing.Union[str, int]
|
|
472
472
|
:type undo: bool
|
|
473
473
|
:param position: Position, Position to jump to
|
|
474
474
|
|
|
@@ -490,13 +490,13 @@ def frame_jump(
|
|
|
490
490
|
|
|
491
491
|
def graph_center_current_frame(
|
|
492
492
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
493
|
-
execution_context: str = None,
|
|
493
|
+
execution_context: typing.Union[str, int] = None,
|
|
494
494
|
undo: bool = None,
|
|
495
495
|
):
|
|
496
496
|
"""Scroll view so current frame would be centered
|
|
497
497
|
|
|
498
498
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
499
|
-
:type execution_context: str
|
|
499
|
+
:type execution_context: typing.Union[str, int]
|
|
500
500
|
:type undo: bool
|
|
501
501
|
"""
|
|
502
502
|
|
|
@@ -504,14 +504,14 @@ def graph_center_current_frame(
|
|
|
504
504
|
|
|
505
505
|
def graph_delete_curve(
|
|
506
506
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
507
|
-
execution_context: str = None,
|
|
507
|
+
execution_context: typing.Union[str, int] = None,
|
|
508
508
|
undo: bool = None,
|
|
509
509
|
confirm: typing.Union[bool, typing.Any] = True,
|
|
510
510
|
):
|
|
511
511
|
"""Delete track corresponding to the selected curve
|
|
512
512
|
|
|
513
513
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
514
|
-
:type execution_context: str
|
|
514
|
+
:type execution_context: typing.Union[str, int]
|
|
515
515
|
:type undo: bool
|
|
516
516
|
:param confirm: Confirm, Prompt for confirmation
|
|
517
517
|
:type confirm: typing.Union[bool, typing.Any]
|
|
@@ -521,13 +521,13 @@ def graph_delete_curve(
|
|
|
521
521
|
|
|
522
522
|
def graph_delete_knot(
|
|
523
523
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
524
|
-
execution_context: str = None,
|
|
524
|
+
execution_context: typing.Union[str, int] = None,
|
|
525
525
|
undo: bool = None,
|
|
526
526
|
):
|
|
527
527
|
"""Delete curve knots
|
|
528
528
|
|
|
529
529
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
530
|
-
:type execution_context: str
|
|
530
|
+
:type execution_context: typing.Union[str, int]
|
|
531
531
|
:type undo: bool
|
|
532
532
|
"""
|
|
533
533
|
|
|
@@ -535,14 +535,14 @@ def graph_delete_knot(
|
|
|
535
535
|
|
|
536
536
|
def graph_disable_markers(
|
|
537
537
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
538
|
-
execution_context: str = None,
|
|
538
|
+
execution_context: typing.Union[str, int] = None,
|
|
539
539
|
undo: bool = None,
|
|
540
540
|
action: typing.Any = "DISABLE",
|
|
541
541
|
):
|
|
542
542
|
"""Disable/enable selected markers
|
|
543
543
|
|
|
544
544
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
545
|
-
:type execution_context: str
|
|
545
|
+
:type execution_context: typing.Union[str, int]
|
|
546
546
|
:type undo: bool
|
|
547
547
|
:param action: Action, Disable action to execute
|
|
548
548
|
|
|
@@ -561,7 +561,7 @@ def graph_disable_markers(
|
|
|
561
561
|
|
|
562
562
|
def graph_select(
|
|
563
563
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
564
|
-
execution_context: str = None,
|
|
564
|
+
execution_context: typing.Union[str, int] = None,
|
|
565
565
|
undo: bool = None,
|
|
566
566
|
location: typing.Any = (0.0, 0.0),
|
|
567
567
|
extend: typing.Union[bool, typing.Any] = False,
|
|
@@ -569,7 +569,7 @@ def graph_select(
|
|
|
569
569
|
"""Select graph curves
|
|
570
570
|
|
|
571
571
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
572
|
-
:type execution_context: str
|
|
572
|
+
:type execution_context: typing.Union[str, int]
|
|
573
573
|
:type undo: bool
|
|
574
574
|
:param location: Location, Mouse location to select nearest entity
|
|
575
575
|
:type location: typing.Any
|
|
@@ -581,14 +581,14 @@ def graph_select(
|
|
|
581
581
|
|
|
582
582
|
def graph_select_all_markers(
|
|
583
583
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
584
|
-
execution_context: str = None,
|
|
584
|
+
execution_context: typing.Union[str, int] = None,
|
|
585
585
|
undo: bool = None,
|
|
586
586
|
action: typing.Any = "TOGGLE",
|
|
587
587
|
):
|
|
588
588
|
"""Change selection of all markers of active track
|
|
589
589
|
|
|
590
590
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
591
|
-
:type execution_context: str
|
|
591
|
+
:type execution_context: typing.Union[str, int]
|
|
592
592
|
:type undo: bool
|
|
593
593
|
:param action: Action, Selection action to execute
|
|
594
594
|
|
|
@@ -610,7 +610,7 @@ def graph_select_all_markers(
|
|
|
610
610
|
|
|
611
611
|
def graph_select_box(
|
|
612
612
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
613
|
-
execution_context: str = None,
|
|
613
|
+
execution_context: typing.Union[str, int] = None,
|
|
614
614
|
undo: bool = None,
|
|
615
615
|
xmin: typing.Any = 0,
|
|
616
616
|
xmax: typing.Any = 0,
|
|
@@ -623,7 +623,7 @@ def graph_select_box(
|
|
|
623
623
|
"""Select curve points using box selection
|
|
624
624
|
|
|
625
625
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
626
|
-
:type execution_context: str
|
|
626
|
+
:type execution_context: typing.Union[str, int]
|
|
627
627
|
:type undo: bool
|
|
628
628
|
:param xmin: X Min
|
|
629
629
|
:type xmin: typing.Any
|
|
@@ -645,13 +645,13 @@ def graph_select_box(
|
|
|
645
645
|
|
|
646
646
|
def graph_view_all(
|
|
647
647
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
648
|
-
execution_context: str = None,
|
|
648
|
+
execution_context: typing.Union[str, int] = None,
|
|
649
649
|
undo: bool = None,
|
|
650
650
|
):
|
|
651
651
|
"""View all curves in editor
|
|
652
652
|
|
|
653
653
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
654
|
-
:type execution_context: str
|
|
654
|
+
:type execution_context: typing.Union[str, int]
|
|
655
655
|
:type undo: bool
|
|
656
656
|
"""
|
|
657
657
|
|
|
@@ -659,14 +659,14 @@ def graph_view_all(
|
|
|
659
659
|
|
|
660
660
|
def hide_tracks(
|
|
661
661
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
662
|
-
execution_context: str = None,
|
|
662
|
+
execution_context: typing.Union[str, int] = None,
|
|
663
663
|
undo: bool = None,
|
|
664
664
|
unselected: typing.Union[bool, typing.Any] = False,
|
|
665
665
|
):
|
|
666
666
|
"""Hide selected tracks
|
|
667
667
|
|
|
668
668
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
669
|
-
:type execution_context: str
|
|
669
|
+
:type execution_context: typing.Union[str, int]
|
|
670
670
|
:type undo: bool
|
|
671
671
|
:param unselected: Unselected, Hide unselected tracks
|
|
672
672
|
:type unselected: typing.Union[bool, typing.Any]
|
|
@@ -676,13 +676,13 @@ def hide_tracks(
|
|
|
676
676
|
|
|
677
677
|
def hide_tracks_clear(
|
|
678
678
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
679
|
-
execution_context: str = None,
|
|
679
|
+
execution_context: typing.Union[str, int] = None,
|
|
680
680
|
undo: bool = None,
|
|
681
681
|
):
|
|
682
682
|
"""Clear hide selected tracks
|
|
683
683
|
|
|
684
684
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
685
|
-
:type execution_context: str
|
|
685
|
+
:type execution_context: typing.Union[str, int]
|
|
686
686
|
:type undo: bool
|
|
687
687
|
"""
|
|
688
688
|
|
|
@@ -690,13 +690,13 @@ def hide_tracks_clear(
|
|
|
690
690
|
|
|
691
691
|
def join_tracks(
|
|
692
692
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
693
|
-
execution_context: str = None,
|
|
693
|
+
execution_context: typing.Union[str, int] = None,
|
|
694
694
|
undo: bool = None,
|
|
695
695
|
):
|
|
696
696
|
"""Join selected tracks
|
|
697
697
|
|
|
698
698
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
699
|
-
:type execution_context: str
|
|
699
|
+
:type execution_context: typing.Union[str, int]
|
|
700
700
|
:type undo: bool
|
|
701
701
|
"""
|
|
702
702
|
|
|
@@ -704,13 +704,13 @@ def join_tracks(
|
|
|
704
704
|
|
|
705
705
|
def keyframe_delete(
|
|
706
706
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
707
|
-
execution_context: str = None,
|
|
707
|
+
execution_context: typing.Union[str, int] = None,
|
|
708
708
|
undo: bool = None,
|
|
709
709
|
):
|
|
710
710
|
"""Delete a keyframe from selected tracks at current frame
|
|
711
711
|
|
|
712
712
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
713
|
-
:type execution_context: str
|
|
713
|
+
:type execution_context: typing.Union[str, int]
|
|
714
714
|
:type undo: bool
|
|
715
715
|
"""
|
|
716
716
|
|
|
@@ -718,13 +718,13 @@ def keyframe_delete(
|
|
|
718
718
|
|
|
719
719
|
def keyframe_insert(
|
|
720
720
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
721
|
-
execution_context: str = None,
|
|
721
|
+
execution_context: typing.Union[str, int] = None,
|
|
722
722
|
undo: bool = None,
|
|
723
723
|
):
|
|
724
724
|
"""Insert a keyframe to selected tracks at current frame
|
|
725
725
|
|
|
726
726
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
727
|
-
:type execution_context: str
|
|
727
|
+
:type execution_context: typing.Union[str, int]
|
|
728
728
|
:type undo: bool
|
|
729
729
|
"""
|
|
730
730
|
|
|
@@ -732,13 +732,13 @@ def keyframe_insert(
|
|
|
732
732
|
|
|
733
733
|
def lock_selection_toggle(
|
|
734
734
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
735
|
-
execution_context: str = None,
|
|
735
|
+
execution_context: typing.Union[str, int] = None,
|
|
736
736
|
undo: bool = None,
|
|
737
737
|
):
|
|
738
738
|
"""Toggle Lock Selection option of the current clip editor
|
|
739
739
|
|
|
740
740
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
741
|
-
:type execution_context: str
|
|
741
|
+
:type execution_context: typing.Union[str, int]
|
|
742
742
|
:type undo: bool
|
|
743
743
|
"""
|
|
744
744
|
|
|
@@ -746,14 +746,14 @@ def lock_selection_toggle(
|
|
|
746
746
|
|
|
747
747
|
def lock_tracks(
|
|
748
748
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
749
|
-
execution_context: str = None,
|
|
749
|
+
execution_context: typing.Union[str, int] = None,
|
|
750
750
|
undo: bool = None,
|
|
751
751
|
action: typing.Any = "LOCK",
|
|
752
752
|
):
|
|
753
753
|
"""Lock/unlock selected tracks
|
|
754
754
|
|
|
755
755
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
756
|
-
:type execution_context: str
|
|
756
|
+
:type execution_context: typing.Union[str, int]
|
|
757
757
|
:type undo: bool
|
|
758
758
|
:param action: Action, Lock action to execute
|
|
759
759
|
|
|
@@ -772,14 +772,14 @@ def lock_tracks(
|
|
|
772
772
|
|
|
773
773
|
def mode_set(
|
|
774
774
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
775
|
-
execution_context: str = None,
|
|
775
|
+
execution_context: typing.Union[str, int] = None,
|
|
776
776
|
undo: bool = None,
|
|
777
777
|
mode: typing.Union[str, int] = "TRACKING",
|
|
778
778
|
):
|
|
779
779
|
"""Set the clip interaction mode
|
|
780
780
|
|
|
781
781
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
782
|
-
:type execution_context: str
|
|
782
|
+
:type execution_context: typing.Union[str, int]
|
|
783
783
|
:type undo: bool
|
|
784
784
|
:param mode: Mode
|
|
785
785
|
:type mode: typing.Union[str, int]
|
|
@@ -789,13 +789,13 @@ def mode_set(
|
|
|
789
789
|
|
|
790
790
|
def new_image_from_plane_marker(
|
|
791
791
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
792
|
-
execution_context: str = None,
|
|
792
|
+
execution_context: typing.Union[str, int] = None,
|
|
793
793
|
undo: bool = None,
|
|
794
794
|
):
|
|
795
795
|
"""Create new image from the content of the plane marker
|
|
796
796
|
|
|
797
797
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
798
|
-
:type execution_context: str
|
|
798
|
+
:type execution_context: typing.Union[str, int]
|
|
799
799
|
:type undo: bool
|
|
800
800
|
"""
|
|
801
801
|
|
|
@@ -803,7 +803,7 @@ def new_image_from_plane_marker(
|
|
|
803
803
|
|
|
804
804
|
def open(
|
|
805
805
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
806
|
-
execution_context: str = None,
|
|
806
|
+
execution_context: typing.Union[str, int] = None,
|
|
807
807
|
undo: bool = None,
|
|
808
808
|
directory: typing.Union[str, typing.Any] = "",
|
|
809
809
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
@@ -836,7 +836,7 @@ def open(
|
|
|
836
836
|
"""Load a sequence of frames or a movie file
|
|
837
837
|
|
|
838
838
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
839
|
-
:type execution_context: str
|
|
839
|
+
:type execution_context: typing.Union[str, int]
|
|
840
840
|
:type undo: bool
|
|
841
841
|
:param directory: Directory, Directory of the file
|
|
842
842
|
:type directory: typing.Union[str, typing.Any]
|
|
@@ -925,13 +925,13 @@ def open(
|
|
|
925
925
|
|
|
926
926
|
def paste_tracks(
|
|
927
927
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
928
|
-
execution_context: str = None,
|
|
928
|
+
execution_context: typing.Union[str, int] = None,
|
|
929
929
|
undo: bool = None,
|
|
930
930
|
):
|
|
931
931
|
"""Paste tracks from the internal clipboard
|
|
932
932
|
|
|
933
933
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
934
|
-
:type execution_context: str
|
|
934
|
+
:type execution_context: typing.Union[str, int]
|
|
935
935
|
:type undo: bool
|
|
936
936
|
"""
|
|
937
937
|
|
|
@@ -939,13 +939,13 @@ def paste_tracks(
|
|
|
939
939
|
|
|
940
940
|
def prefetch(
|
|
941
941
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
942
|
-
execution_context: str = None,
|
|
942
|
+
execution_context: typing.Union[str, int] = None,
|
|
943
943
|
undo: bool = None,
|
|
944
944
|
):
|
|
945
945
|
"""Prefetch frames from disk for faster playback/tracking
|
|
946
946
|
|
|
947
947
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
948
|
-
:type execution_context: str
|
|
948
|
+
:type execution_context: typing.Union[str, int]
|
|
949
949
|
:type undo: bool
|
|
950
950
|
"""
|
|
951
951
|
|
|
@@ -953,13 +953,13 @@ def prefetch(
|
|
|
953
953
|
|
|
954
954
|
def rebuild_proxy(
|
|
955
955
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
956
|
-
execution_context: str = None,
|
|
956
|
+
execution_context: typing.Union[str, int] = None,
|
|
957
957
|
undo: bool = None,
|
|
958
958
|
):
|
|
959
959
|
"""Rebuild all selected proxies and timecode indices in the background
|
|
960
960
|
|
|
961
961
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
962
|
-
:type execution_context: str
|
|
962
|
+
:type execution_context: typing.Union[str, int]
|
|
963
963
|
:type undo: bool
|
|
964
964
|
"""
|
|
965
965
|
|
|
@@ -967,14 +967,14 @@ def rebuild_proxy(
|
|
|
967
967
|
|
|
968
968
|
def refine_markers(
|
|
969
969
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
970
|
-
execution_context: str = None,
|
|
970
|
+
execution_context: typing.Union[str, int] = None,
|
|
971
971
|
undo: bool = None,
|
|
972
972
|
backwards: typing.Union[bool, typing.Any] = False,
|
|
973
973
|
):
|
|
974
974
|
"""Refine selected markers positions by running the tracker from track's reference to current frame
|
|
975
975
|
|
|
976
976
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
977
|
-
:type execution_context: str
|
|
977
|
+
:type execution_context: typing.Union[str, int]
|
|
978
978
|
:type undo: bool
|
|
979
979
|
:param backwards: Backwards, Do backwards tracking
|
|
980
980
|
:type backwards: typing.Union[bool, typing.Any]
|
|
@@ -984,13 +984,13 @@ def refine_markers(
|
|
|
984
984
|
|
|
985
985
|
def reload(
|
|
986
986
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
987
|
-
execution_context: str = None,
|
|
987
|
+
execution_context: typing.Union[str, int] = None,
|
|
988
988
|
undo: bool = None,
|
|
989
989
|
):
|
|
990
990
|
"""Reload clip
|
|
991
991
|
|
|
992
992
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
993
|
-
:type execution_context: str
|
|
993
|
+
:type execution_context: typing.Union[str, int]
|
|
994
994
|
:type undo: bool
|
|
995
995
|
"""
|
|
996
996
|
|
|
@@ -998,7 +998,7 @@ def reload(
|
|
|
998
998
|
|
|
999
999
|
def select(
|
|
1000
1000
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1001
|
-
execution_context: str = None,
|
|
1001
|
+
execution_context: typing.Union[str, int] = None,
|
|
1002
1002
|
undo: bool = None,
|
|
1003
1003
|
extend: typing.Union[bool, typing.Any] = False,
|
|
1004
1004
|
deselect_all: typing.Union[bool, typing.Any] = False,
|
|
@@ -1007,7 +1007,7 @@ def select(
|
|
|
1007
1007
|
"""Select tracking markers
|
|
1008
1008
|
|
|
1009
1009
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1010
|
-
:type execution_context: str
|
|
1010
|
+
:type execution_context: typing.Union[str, int]
|
|
1011
1011
|
:type undo: bool
|
|
1012
1012
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
1013
1013
|
:type extend: typing.Union[bool, typing.Any]
|
|
@@ -1021,14 +1021,14 @@ def select(
|
|
|
1021
1021
|
|
|
1022
1022
|
def select_all(
|
|
1023
1023
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1024
|
-
execution_context: str = None,
|
|
1024
|
+
execution_context: typing.Union[str, int] = None,
|
|
1025
1025
|
undo: bool = None,
|
|
1026
1026
|
action: typing.Any = "TOGGLE",
|
|
1027
1027
|
):
|
|
1028
1028
|
"""Change selection of all tracking markers
|
|
1029
1029
|
|
|
1030
1030
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1031
|
-
:type execution_context: str
|
|
1031
|
+
:type execution_context: typing.Union[str, int]
|
|
1032
1032
|
:type undo: bool
|
|
1033
1033
|
:param action: Action, Selection action to execute
|
|
1034
1034
|
|
|
@@ -1050,7 +1050,7 @@ def select_all(
|
|
|
1050
1050
|
|
|
1051
1051
|
def select_box(
|
|
1052
1052
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1053
|
-
execution_context: str = None,
|
|
1053
|
+
execution_context: typing.Union[str, int] = None,
|
|
1054
1054
|
undo: bool = None,
|
|
1055
1055
|
xmin: typing.Any = 0,
|
|
1056
1056
|
xmax: typing.Any = 0,
|
|
@@ -1062,7 +1062,7 @@ def select_box(
|
|
|
1062
1062
|
"""Select markers using box selection
|
|
1063
1063
|
|
|
1064
1064
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1065
|
-
:type execution_context: str
|
|
1065
|
+
:type execution_context: typing.Union[str, int]
|
|
1066
1066
|
:type undo: bool
|
|
1067
1067
|
:param xmin: X Min
|
|
1068
1068
|
:type xmin: typing.Any
|
|
@@ -1091,7 +1091,7 @@ def select_box(
|
|
|
1091
1091
|
|
|
1092
1092
|
def select_circle(
|
|
1093
1093
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1094
|
-
execution_context: str = None,
|
|
1094
|
+
execution_context: typing.Union[str, int] = None,
|
|
1095
1095
|
undo: bool = None,
|
|
1096
1096
|
x: typing.Any = 0,
|
|
1097
1097
|
y: typing.Any = 0,
|
|
@@ -1102,7 +1102,7 @@ def select_circle(
|
|
|
1102
1102
|
"""Select markers using circle selection
|
|
1103
1103
|
|
|
1104
1104
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1105
|
-
:type execution_context: str
|
|
1105
|
+
:type execution_context: typing.Union[str, int]
|
|
1106
1106
|
:type undo: bool
|
|
1107
1107
|
:param x: X
|
|
1108
1108
|
:type x: typing.Any
|
|
@@ -1129,14 +1129,14 @@ def select_circle(
|
|
|
1129
1129
|
|
|
1130
1130
|
def select_grouped(
|
|
1131
1131
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1132
|
-
execution_context: str = None,
|
|
1132
|
+
execution_context: typing.Union[str, int] = None,
|
|
1133
1133
|
undo: bool = None,
|
|
1134
1134
|
group: typing.Any = "ESTIMATED",
|
|
1135
1135
|
):
|
|
1136
1136
|
"""Select all tracks from specified group
|
|
1137
1137
|
|
|
1138
1138
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1139
|
-
:type execution_context: str
|
|
1139
|
+
:type execution_context: typing.Union[str, int]
|
|
1140
1140
|
:type undo: bool
|
|
1141
1141
|
:param group: Action, Clear action to execute
|
|
1142
1142
|
|
|
@@ -1167,7 +1167,7 @@ def select_grouped(
|
|
|
1167
1167
|
|
|
1168
1168
|
def select_lasso(
|
|
1169
1169
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1170
|
-
execution_context: str = None,
|
|
1170
|
+
execution_context: typing.Union[str, int] = None,
|
|
1171
1171
|
undo: bool = None,
|
|
1172
1172
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
1173
1173
|
mode: typing.Any = "SET",
|
|
@@ -1175,7 +1175,7 @@ def select_lasso(
|
|
|
1175
1175
|
"""Select markers using lasso selection
|
|
1176
1176
|
|
|
1177
1177
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1178
|
-
:type execution_context: str
|
|
1178
|
+
:type execution_context: typing.Union[str, int]
|
|
1179
1179
|
:type undo: bool
|
|
1180
1180
|
:param path: Path
|
|
1181
1181
|
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
@@ -1196,13 +1196,13 @@ def select_lasso(
|
|
|
1196
1196
|
|
|
1197
1197
|
def set_active_clip(
|
|
1198
1198
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1199
|
-
execution_context: str = None,
|
|
1199
|
+
execution_context: typing.Union[str, int] = None,
|
|
1200
1200
|
undo: bool = None,
|
|
1201
1201
|
):
|
|
1202
1202
|
"""Undocumented, consider contributing.
|
|
1203
1203
|
|
|
1204
1204
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1205
|
-
:type execution_context: str
|
|
1205
|
+
:type execution_context: typing.Union[str, int]
|
|
1206
1206
|
:type undo: bool
|
|
1207
1207
|
"""
|
|
1208
1208
|
|
|
@@ -1210,14 +1210,14 @@ def set_active_clip(
|
|
|
1210
1210
|
|
|
1211
1211
|
def set_axis(
|
|
1212
1212
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1213
|
-
execution_context: str = None,
|
|
1213
|
+
execution_context: typing.Union[str, int] = None,
|
|
1214
1214
|
undo: bool = None,
|
|
1215
1215
|
axis: typing.Any = "X",
|
|
1216
1216
|
):
|
|
1217
1217
|
"""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
|
|
1218
1218
|
|
|
1219
1219
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1220
|
-
:type execution_context: str
|
|
1220
|
+
:type execution_context: typing.Union[str, int]
|
|
1221
1221
|
:type undo: bool
|
|
1222
1222
|
:param axis: Axis, Axis to use to align bundle along
|
|
1223
1223
|
|
|
@@ -1233,14 +1233,14 @@ def set_axis(
|
|
|
1233
1233
|
|
|
1234
1234
|
def set_origin(
|
|
1235
1235
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1236
|
-
execution_context: str = None,
|
|
1236
|
+
execution_context: typing.Union[str, int] = None,
|
|
1237
1237
|
undo: bool = None,
|
|
1238
1238
|
use_median: typing.Union[bool, typing.Any] = False,
|
|
1239
1239
|
):
|
|
1240
1240
|
"""Set active marker as origin by moving camera (or its parent if present) in 3D space
|
|
1241
1241
|
|
|
1242
1242
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1243
|
-
:type execution_context: str
|
|
1243
|
+
:type execution_context: typing.Union[str, int]
|
|
1244
1244
|
:type undo: bool
|
|
1245
1245
|
:param use_median: Use Median, Set origin to median point of selected bundles
|
|
1246
1246
|
:type use_median: typing.Union[bool, typing.Any]
|
|
@@ -1250,14 +1250,14 @@ def set_origin(
|
|
|
1250
1250
|
|
|
1251
1251
|
def set_plane(
|
|
1252
1252
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1253
|
-
execution_context: str = None,
|
|
1253
|
+
execution_context: typing.Union[str, int] = None,
|
|
1254
1254
|
undo: bool = None,
|
|
1255
1255
|
plane: typing.Any = "FLOOR",
|
|
1256
1256
|
):
|
|
1257
1257
|
"""Set plane based on 3 selected bundles by moving camera (or its parent if present) in 3D space
|
|
1258
1258
|
|
|
1259
1259
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1260
|
-
:type execution_context: str
|
|
1260
|
+
:type execution_context: typing.Union[str, int]
|
|
1261
1261
|
:type undo: bool
|
|
1262
1262
|
:param plane: Plane, Plane to be used for orientation
|
|
1263
1263
|
|
|
@@ -1273,14 +1273,14 @@ def set_plane(
|
|
|
1273
1273
|
|
|
1274
1274
|
def set_scale(
|
|
1275
1275
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1276
|
-
execution_context: str = None,
|
|
1276
|
+
execution_context: typing.Union[str, int] = None,
|
|
1277
1277
|
undo: bool = None,
|
|
1278
1278
|
distance: typing.Any = 0.0,
|
|
1279
1279
|
):
|
|
1280
1280
|
"""Set scale of scene by scaling camera (or its parent if present)
|
|
1281
1281
|
|
|
1282
1282
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1283
|
-
:type execution_context: str
|
|
1283
|
+
:type execution_context: typing.Union[str, int]
|
|
1284
1284
|
:type undo: bool
|
|
1285
1285
|
:param distance: Distance, Distance between selected tracks
|
|
1286
1286
|
:type distance: typing.Any
|
|
@@ -1290,13 +1290,13 @@ def set_scale(
|
|
|
1290
1290
|
|
|
1291
1291
|
def set_scene_frames(
|
|
1292
1292
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1293
|
-
execution_context: str = None,
|
|
1293
|
+
execution_context: typing.Union[str, int] = None,
|
|
1294
1294
|
undo: bool = None,
|
|
1295
1295
|
):
|
|
1296
1296
|
"""Set scene's start and end frame to match clip's start frame and length
|
|
1297
1297
|
|
|
1298
1298
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1299
|
-
:type execution_context: str
|
|
1299
|
+
:type execution_context: typing.Union[str, int]
|
|
1300
1300
|
:type undo: bool
|
|
1301
1301
|
"""
|
|
1302
1302
|
|
|
@@ -1304,14 +1304,14 @@ def set_scene_frames(
|
|
|
1304
1304
|
|
|
1305
1305
|
def set_solution_scale(
|
|
1306
1306
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1307
|
-
execution_context: str = None,
|
|
1307
|
+
execution_context: typing.Union[str, int] = None,
|
|
1308
1308
|
undo: bool = None,
|
|
1309
1309
|
distance: typing.Any = 0.0,
|
|
1310
1310
|
):
|
|
1311
1311
|
"""Set object solution scale using distance between two selected tracks
|
|
1312
1312
|
|
|
1313
1313
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1314
|
-
:type execution_context: str
|
|
1314
|
+
:type execution_context: typing.Union[str, int]
|
|
1315
1315
|
:type undo: bool
|
|
1316
1316
|
:param distance: Distance, Distance between selected tracks
|
|
1317
1317
|
:type distance: typing.Any
|
|
@@ -1321,14 +1321,14 @@ def set_solution_scale(
|
|
|
1321
1321
|
|
|
1322
1322
|
def set_solver_keyframe(
|
|
1323
1323
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1324
|
-
execution_context: str = None,
|
|
1324
|
+
execution_context: typing.Union[str, int] = None,
|
|
1325
1325
|
undo: bool = None,
|
|
1326
1326
|
keyframe: typing.Any = "KEYFRAME_A",
|
|
1327
1327
|
):
|
|
1328
1328
|
"""Set keyframe used by solver
|
|
1329
1329
|
|
|
1330
1330
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1331
|
-
:type execution_context: str
|
|
1331
|
+
:type execution_context: typing.Union[str, int]
|
|
1332
1332
|
:type undo: bool
|
|
1333
1333
|
:param keyframe: Keyframe, Keyframe to set
|
|
1334
1334
|
:type keyframe: typing.Any
|
|
@@ -1338,13 +1338,13 @@ def set_solver_keyframe(
|
|
|
1338
1338
|
|
|
1339
1339
|
def set_viewport_background(
|
|
1340
1340
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1341
|
-
execution_context: str = None,
|
|
1341
|
+
execution_context: typing.Union[str, int] = None,
|
|
1342
1342
|
undo: bool = None,
|
|
1343
1343
|
):
|
|
1344
1344
|
"""Set current movie clip as a camera background in 3D Viewport (works only when a 3D Viewport is visible)
|
|
1345
1345
|
|
|
1346
1346
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1347
|
-
:type execution_context: str
|
|
1347
|
+
:type execution_context: typing.Union[str, int]
|
|
1348
1348
|
:type undo: bool
|
|
1349
1349
|
"""
|
|
1350
1350
|
|
|
@@ -1352,13 +1352,13 @@ def set_viewport_background(
|
|
|
1352
1352
|
|
|
1353
1353
|
def setup_tracking_scene(
|
|
1354
1354
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1355
|
-
execution_context: str = None,
|
|
1355
|
+
execution_context: typing.Union[str, int] = None,
|
|
1356
1356
|
undo: bool = None,
|
|
1357
1357
|
):
|
|
1358
1358
|
"""Prepare scene for compositing 3D objects into this footage
|
|
1359
1359
|
|
|
1360
1360
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1361
|
-
:type execution_context: str
|
|
1361
|
+
:type execution_context: typing.Union[str, int]
|
|
1362
1362
|
:type undo: bool
|
|
1363
1363
|
"""
|
|
1364
1364
|
|
|
@@ -1366,14 +1366,14 @@ def setup_tracking_scene(
|
|
|
1366
1366
|
|
|
1367
1367
|
def slide_marker(
|
|
1368
1368
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1369
|
-
execution_context: str = None,
|
|
1369
|
+
execution_context: typing.Union[str, int] = None,
|
|
1370
1370
|
undo: bool = None,
|
|
1371
1371
|
offset: typing.Any = (0.0, 0.0),
|
|
1372
1372
|
):
|
|
1373
1373
|
"""Slide marker areas
|
|
1374
1374
|
|
|
1375
1375
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1376
|
-
:type execution_context: str
|
|
1376
|
+
:type execution_context: typing.Union[str, int]
|
|
1377
1377
|
:type undo: bool
|
|
1378
1378
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1379
1379
|
:type offset: typing.Any
|
|
@@ -1383,13 +1383,13 @@ def slide_marker(
|
|
|
1383
1383
|
|
|
1384
1384
|
def slide_plane_marker(
|
|
1385
1385
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1386
|
-
execution_context: str = None,
|
|
1386
|
+
execution_context: typing.Union[str, int] = None,
|
|
1387
1387
|
undo: bool = None,
|
|
1388
1388
|
):
|
|
1389
1389
|
"""Slide plane marker areas
|
|
1390
1390
|
|
|
1391
1391
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1392
|
-
:type execution_context: str
|
|
1392
|
+
:type execution_context: typing.Union[str, int]
|
|
1393
1393
|
:type undo: bool
|
|
1394
1394
|
"""
|
|
1395
1395
|
|
|
@@ -1397,13 +1397,13 @@ def slide_plane_marker(
|
|
|
1397
1397
|
|
|
1398
1398
|
def solve_camera(
|
|
1399
1399
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1400
|
-
execution_context: str = None,
|
|
1400
|
+
execution_context: typing.Union[str, int] = None,
|
|
1401
1401
|
undo: bool = None,
|
|
1402
1402
|
):
|
|
1403
1403
|
"""Solve camera motion from tracks
|
|
1404
1404
|
|
|
1405
1405
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1406
|
-
:type execution_context: str
|
|
1406
|
+
:type execution_context: typing.Union[str, int]
|
|
1407
1407
|
:type undo: bool
|
|
1408
1408
|
"""
|
|
1409
1409
|
|
|
@@ -1411,13 +1411,13 @@ def solve_camera(
|
|
|
1411
1411
|
|
|
1412
1412
|
def stabilize_2d_add(
|
|
1413
1413
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1414
|
-
execution_context: str = None,
|
|
1414
|
+
execution_context: typing.Union[str, int] = None,
|
|
1415
1415
|
undo: bool = None,
|
|
1416
1416
|
):
|
|
1417
1417
|
"""Add selected tracks to 2D translation stabilization
|
|
1418
1418
|
|
|
1419
1419
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1420
|
-
:type execution_context: str
|
|
1420
|
+
:type execution_context: typing.Union[str, int]
|
|
1421
1421
|
:type undo: bool
|
|
1422
1422
|
"""
|
|
1423
1423
|
|
|
@@ -1425,13 +1425,13 @@ def stabilize_2d_add(
|
|
|
1425
1425
|
|
|
1426
1426
|
def stabilize_2d_remove(
|
|
1427
1427
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1428
|
-
execution_context: str = None,
|
|
1428
|
+
execution_context: typing.Union[str, int] = None,
|
|
1429
1429
|
undo: bool = None,
|
|
1430
1430
|
):
|
|
1431
1431
|
"""Remove selected track from translation stabilization
|
|
1432
1432
|
|
|
1433
1433
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1434
|
-
:type execution_context: str
|
|
1434
|
+
:type execution_context: typing.Union[str, int]
|
|
1435
1435
|
:type undo: bool
|
|
1436
1436
|
"""
|
|
1437
1437
|
|
|
@@ -1439,13 +1439,13 @@ def stabilize_2d_remove(
|
|
|
1439
1439
|
|
|
1440
1440
|
def stabilize_2d_rotation_add(
|
|
1441
1441
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1442
|
-
execution_context: str = None,
|
|
1442
|
+
execution_context: typing.Union[str, int] = None,
|
|
1443
1443
|
undo: bool = None,
|
|
1444
1444
|
):
|
|
1445
1445
|
"""Add selected tracks to 2D rotation stabilization
|
|
1446
1446
|
|
|
1447
1447
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1448
|
-
:type execution_context: str
|
|
1448
|
+
:type execution_context: typing.Union[str, int]
|
|
1449
1449
|
:type undo: bool
|
|
1450
1450
|
"""
|
|
1451
1451
|
|
|
@@ -1453,13 +1453,13 @@ def stabilize_2d_rotation_add(
|
|
|
1453
1453
|
|
|
1454
1454
|
def stabilize_2d_rotation_remove(
|
|
1455
1455
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1456
|
-
execution_context: str = None,
|
|
1456
|
+
execution_context: typing.Union[str, int] = None,
|
|
1457
1457
|
undo: bool = None,
|
|
1458
1458
|
):
|
|
1459
1459
|
"""Remove selected track from rotation stabilization
|
|
1460
1460
|
|
|
1461
1461
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1462
|
-
:type execution_context: str
|
|
1462
|
+
:type execution_context: typing.Union[str, int]
|
|
1463
1463
|
:type undo: bool
|
|
1464
1464
|
"""
|
|
1465
1465
|
|
|
@@ -1467,13 +1467,13 @@ def stabilize_2d_rotation_remove(
|
|
|
1467
1467
|
|
|
1468
1468
|
def stabilize_2d_rotation_select(
|
|
1469
1469
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1470
|
-
execution_context: str = None,
|
|
1470
|
+
execution_context: typing.Union[str, int] = None,
|
|
1471
1471
|
undo: bool = None,
|
|
1472
1472
|
):
|
|
1473
1473
|
"""Select tracks which are used for rotation stabilization
|
|
1474
1474
|
|
|
1475
1475
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1476
|
-
:type execution_context: str
|
|
1476
|
+
:type execution_context: typing.Union[str, int]
|
|
1477
1477
|
:type undo: bool
|
|
1478
1478
|
"""
|
|
1479
1479
|
|
|
@@ -1481,13 +1481,13 @@ def stabilize_2d_rotation_select(
|
|
|
1481
1481
|
|
|
1482
1482
|
def stabilize_2d_select(
|
|
1483
1483
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1484
|
-
execution_context: str = None,
|
|
1484
|
+
execution_context: typing.Union[str, int] = None,
|
|
1485
1485
|
undo: bool = None,
|
|
1486
1486
|
):
|
|
1487
1487
|
"""Select tracks which are used for translation stabilization
|
|
1488
1488
|
|
|
1489
1489
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1490
|
-
:type execution_context: str
|
|
1490
|
+
:type execution_context: typing.Union[str, int]
|
|
1491
1491
|
:type undo: bool
|
|
1492
1492
|
"""
|
|
1493
1493
|
|
|
@@ -1495,7 +1495,7 @@ def stabilize_2d_select(
|
|
|
1495
1495
|
|
|
1496
1496
|
def track_color_preset_add(
|
|
1497
1497
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1498
|
-
execution_context: str = None,
|
|
1498
|
+
execution_context: typing.Union[str, int] = None,
|
|
1499
1499
|
undo: bool = None,
|
|
1500
1500
|
name: typing.Union[str, typing.Any] = "",
|
|
1501
1501
|
remove_name: typing.Union[bool, typing.Any] = False,
|
|
@@ -1504,7 +1504,7 @@ def track_color_preset_add(
|
|
|
1504
1504
|
"""Add or remove a Clip Track Color Preset
|
|
1505
1505
|
|
|
1506
1506
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1507
|
-
:type execution_context: str
|
|
1507
|
+
:type execution_context: typing.Union[str, int]
|
|
1508
1508
|
:type undo: bool
|
|
1509
1509
|
:param name: Name, Name of the preset, used to make the path name
|
|
1510
1510
|
:type name: typing.Union[str, typing.Any]
|
|
@@ -1518,13 +1518,13 @@ def track_color_preset_add(
|
|
|
1518
1518
|
|
|
1519
1519
|
def track_copy_color(
|
|
1520
1520
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1521
|
-
execution_context: str = None,
|
|
1521
|
+
execution_context: typing.Union[str, int] = None,
|
|
1522
1522
|
undo: bool = None,
|
|
1523
1523
|
):
|
|
1524
1524
|
"""Copy color to all selected tracks
|
|
1525
1525
|
|
|
1526
1526
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1527
|
-
:type execution_context: str
|
|
1527
|
+
:type execution_context: typing.Union[str, int]
|
|
1528
1528
|
:type undo: bool
|
|
1529
1529
|
"""
|
|
1530
1530
|
|
|
@@ -1532,7 +1532,7 @@ def track_copy_color(
|
|
|
1532
1532
|
|
|
1533
1533
|
def track_markers(
|
|
1534
1534
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1535
|
-
execution_context: str = None,
|
|
1535
|
+
execution_context: typing.Union[str, int] = None,
|
|
1536
1536
|
undo: bool = None,
|
|
1537
1537
|
backwards: typing.Union[bool, typing.Any] = False,
|
|
1538
1538
|
sequence: typing.Union[bool, typing.Any] = False,
|
|
@@ -1540,7 +1540,7 @@ def track_markers(
|
|
|
1540
1540
|
"""Track selected markers
|
|
1541
1541
|
|
|
1542
1542
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1543
|
-
:type execution_context: str
|
|
1543
|
+
:type execution_context: typing.Union[str, int]
|
|
1544
1544
|
:type undo: bool
|
|
1545
1545
|
:param backwards: Backwards, Do backwards tracking
|
|
1546
1546
|
:type backwards: typing.Union[bool, typing.Any]
|
|
@@ -1552,13 +1552,13 @@ def track_markers(
|
|
|
1552
1552
|
|
|
1553
1553
|
def track_settings_as_default(
|
|
1554
1554
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1555
|
-
execution_context: str = None,
|
|
1555
|
+
execution_context: typing.Union[str, int] = None,
|
|
1556
1556
|
undo: bool = None,
|
|
1557
1557
|
):
|
|
1558
1558
|
"""Copy tracking settings from active track to default settings
|
|
1559
1559
|
|
|
1560
1560
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1561
|
-
:type execution_context: str
|
|
1561
|
+
:type execution_context: typing.Union[str, int]
|
|
1562
1562
|
:type undo: bool
|
|
1563
1563
|
"""
|
|
1564
1564
|
|
|
@@ -1566,13 +1566,13 @@ def track_settings_as_default(
|
|
|
1566
1566
|
|
|
1567
1567
|
def track_settings_to_track(
|
|
1568
1568
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1569
|
-
execution_context: str = None,
|
|
1569
|
+
execution_context: typing.Union[str, int] = None,
|
|
1570
1570
|
undo: bool = None,
|
|
1571
1571
|
):
|
|
1572
1572
|
"""Copy tracking settings from active track to selected tracks
|
|
1573
1573
|
|
|
1574
1574
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1575
|
-
:type execution_context: str
|
|
1575
|
+
:type execution_context: typing.Union[str, int]
|
|
1576
1576
|
:type undo: bool
|
|
1577
1577
|
"""
|
|
1578
1578
|
|
|
@@ -1580,13 +1580,13 @@ def track_settings_to_track(
|
|
|
1580
1580
|
|
|
1581
1581
|
def track_to_empty(
|
|
1582
1582
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1583
|
-
execution_context: str = None,
|
|
1583
|
+
execution_context: typing.Union[str, int] = None,
|
|
1584
1584
|
undo: bool = None,
|
|
1585
1585
|
):
|
|
1586
1586
|
"""Create an Empty object which will be copying movement of active track
|
|
1587
1587
|
|
|
1588
1588
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1589
|
-
:type execution_context: str
|
|
1589
|
+
:type execution_context: typing.Union[str, int]
|
|
1590
1590
|
:type undo: bool
|
|
1591
1591
|
"""
|
|
1592
1592
|
|
|
@@ -1594,13 +1594,13 @@ def track_to_empty(
|
|
|
1594
1594
|
|
|
1595
1595
|
def tracking_object_new(
|
|
1596
1596
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1597
|
-
execution_context: str = None,
|
|
1597
|
+
execution_context: typing.Union[str, int] = None,
|
|
1598
1598
|
undo: bool = None,
|
|
1599
1599
|
):
|
|
1600
1600
|
"""Add new object for tracking
|
|
1601
1601
|
|
|
1602
1602
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1603
|
-
:type execution_context: str
|
|
1603
|
+
:type execution_context: typing.Union[str, int]
|
|
1604
1604
|
:type undo: bool
|
|
1605
1605
|
"""
|
|
1606
1606
|
|
|
@@ -1608,13 +1608,13 @@ def tracking_object_new(
|
|
|
1608
1608
|
|
|
1609
1609
|
def tracking_object_remove(
|
|
1610
1610
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1611
|
-
execution_context: str = None,
|
|
1611
|
+
execution_context: typing.Union[str, int] = None,
|
|
1612
1612
|
undo: bool = None,
|
|
1613
1613
|
):
|
|
1614
1614
|
"""Remove object for tracking
|
|
1615
1615
|
|
|
1616
1616
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1617
|
-
:type execution_context: str
|
|
1617
|
+
:type execution_context: typing.Union[str, int]
|
|
1618
1618
|
:type undo: bool
|
|
1619
1619
|
"""
|
|
1620
1620
|
|
|
@@ -1622,7 +1622,7 @@ def tracking_object_remove(
|
|
|
1622
1622
|
|
|
1623
1623
|
def tracking_settings_preset_add(
|
|
1624
1624
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1625
|
-
execution_context: str = None,
|
|
1625
|
+
execution_context: typing.Union[str, int] = None,
|
|
1626
1626
|
undo: bool = None,
|
|
1627
1627
|
name: typing.Union[str, typing.Any] = "",
|
|
1628
1628
|
remove_name: typing.Union[bool, typing.Any] = False,
|
|
@@ -1631,7 +1631,7 @@ def tracking_settings_preset_add(
|
|
|
1631
1631
|
"""Add or remove a motion tracking settings preset
|
|
1632
1632
|
|
|
1633
1633
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1634
|
-
:type execution_context: str
|
|
1634
|
+
:type execution_context: typing.Union[str, int]
|
|
1635
1635
|
:type undo: bool
|
|
1636
1636
|
:param name: Name, Name of the preset, used to make the path name
|
|
1637
1637
|
:type name: typing.Union[str, typing.Any]
|
|
@@ -1645,13 +1645,13 @@ def tracking_settings_preset_add(
|
|
|
1645
1645
|
|
|
1646
1646
|
def update_image_from_plane_marker(
|
|
1647
1647
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1648
|
-
execution_context: str = None,
|
|
1648
|
+
execution_context: typing.Union[str, int] = None,
|
|
1649
1649
|
undo: bool = None,
|
|
1650
1650
|
):
|
|
1651
1651
|
"""Update current image used by plane marker from the content of the plane marker
|
|
1652
1652
|
|
|
1653
1653
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1654
|
-
:type execution_context: str
|
|
1654
|
+
:type execution_context: typing.Union[str, int]
|
|
1655
1655
|
:type undo: bool
|
|
1656
1656
|
"""
|
|
1657
1657
|
|
|
@@ -1659,14 +1659,14 @@ def update_image_from_plane_marker(
|
|
|
1659
1659
|
|
|
1660
1660
|
def view_all(
|
|
1661
1661
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1662
|
-
execution_context: str = None,
|
|
1662
|
+
execution_context: typing.Union[str, int] = None,
|
|
1663
1663
|
undo: bool = None,
|
|
1664
1664
|
fit_view: typing.Union[bool, typing.Any] = False,
|
|
1665
1665
|
):
|
|
1666
1666
|
"""View whole image with markers
|
|
1667
1667
|
|
|
1668
1668
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1669
|
-
:type execution_context: str
|
|
1669
|
+
:type execution_context: typing.Union[str, int]
|
|
1670
1670
|
:type undo: bool
|
|
1671
1671
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
1672
1672
|
:type fit_view: typing.Union[bool, typing.Any]
|
|
@@ -1676,13 +1676,13 @@ def view_all(
|
|
|
1676
1676
|
|
|
1677
1677
|
def view_center_cursor(
|
|
1678
1678
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1679
|
-
execution_context: str = None,
|
|
1679
|
+
execution_context: typing.Union[str, int] = None,
|
|
1680
1680
|
undo: bool = None,
|
|
1681
1681
|
):
|
|
1682
1682
|
"""Center the view so that the cursor is in the middle of the view
|
|
1683
1683
|
|
|
1684
1684
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1685
|
-
:type execution_context: str
|
|
1685
|
+
:type execution_context: typing.Union[str, int]
|
|
1686
1686
|
:type undo: bool
|
|
1687
1687
|
"""
|
|
1688
1688
|
|
|
@@ -1690,13 +1690,13 @@ def view_center_cursor(
|
|
|
1690
1690
|
|
|
1691
1691
|
def view_ndof(
|
|
1692
1692
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1693
|
-
execution_context: str = None,
|
|
1693
|
+
execution_context: typing.Union[str, int] = None,
|
|
1694
1694
|
undo: bool = None,
|
|
1695
1695
|
):
|
|
1696
1696
|
"""Use a 3D mouse device to pan/zoom the view
|
|
1697
1697
|
|
|
1698
1698
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1699
|
-
:type execution_context: str
|
|
1699
|
+
:type execution_context: typing.Union[str, int]
|
|
1700
1700
|
:type undo: bool
|
|
1701
1701
|
"""
|
|
1702
1702
|
|
|
@@ -1704,14 +1704,14 @@ def view_ndof(
|
|
|
1704
1704
|
|
|
1705
1705
|
def view_pan(
|
|
1706
1706
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1707
|
-
execution_context: str = None,
|
|
1707
|
+
execution_context: typing.Union[str, int] = None,
|
|
1708
1708
|
undo: bool = None,
|
|
1709
1709
|
offset: typing.Any = (0.0, 0.0),
|
|
1710
1710
|
):
|
|
1711
1711
|
"""Pan the view
|
|
1712
1712
|
|
|
1713
1713
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1714
|
-
:type execution_context: str
|
|
1714
|
+
:type execution_context: typing.Union[str, int]
|
|
1715
1715
|
:type undo: bool
|
|
1716
1716
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1717
1717
|
:type offset: typing.Any
|
|
@@ -1721,13 +1721,13 @@ def view_pan(
|
|
|
1721
1721
|
|
|
1722
1722
|
def view_selected(
|
|
1723
1723
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1724
|
-
execution_context: str = None,
|
|
1724
|
+
execution_context: typing.Union[str, int] = None,
|
|
1725
1725
|
undo: bool = None,
|
|
1726
1726
|
):
|
|
1727
1727
|
"""View all selected elements
|
|
1728
1728
|
|
|
1729
1729
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1730
|
-
:type execution_context: str
|
|
1730
|
+
:type execution_context: typing.Union[str, int]
|
|
1731
1731
|
:type undo: bool
|
|
1732
1732
|
"""
|
|
1733
1733
|
|
|
@@ -1735,7 +1735,7 @@ def view_selected(
|
|
|
1735
1735
|
|
|
1736
1736
|
def view_zoom(
|
|
1737
1737
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1738
|
-
execution_context: str = None,
|
|
1738
|
+
execution_context: typing.Union[str, int] = None,
|
|
1739
1739
|
undo: bool = None,
|
|
1740
1740
|
factor: typing.Any = 0.0,
|
|
1741
1741
|
use_cursor_init: typing.Union[bool, typing.Any] = True,
|
|
@@ -1743,7 +1743,7 @@ def view_zoom(
|
|
|
1743
1743
|
"""Zoom in/out the view
|
|
1744
1744
|
|
|
1745
1745
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1746
|
-
:type execution_context: str
|
|
1746
|
+
:type execution_context: typing.Union[str, int]
|
|
1747
1747
|
:type undo: bool
|
|
1748
1748
|
:param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
|
|
1749
1749
|
:type factor: typing.Any
|
|
@@ -1755,14 +1755,14 @@ def view_zoom(
|
|
|
1755
1755
|
|
|
1756
1756
|
def view_zoom_in(
|
|
1757
1757
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1758
|
-
execution_context: str = None,
|
|
1758
|
+
execution_context: typing.Union[str, int] = None,
|
|
1759
1759
|
undo: bool = None,
|
|
1760
1760
|
location: typing.Any = (0.0, 0.0),
|
|
1761
1761
|
):
|
|
1762
1762
|
"""Zoom in the view
|
|
1763
1763
|
|
|
1764
1764
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1765
|
-
:type execution_context: str
|
|
1765
|
+
:type execution_context: typing.Union[str, int]
|
|
1766
1766
|
:type undo: bool
|
|
1767
1767
|
:param location: Location, Cursor location in screen coordinates
|
|
1768
1768
|
:type location: typing.Any
|
|
@@ -1772,14 +1772,14 @@ def view_zoom_in(
|
|
|
1772
1772
|
|
|
1773
1773
|
def view_zoom_out(
|
|
1774
1774
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1775
|
-
execution_context: str = None,
|
|
1775
|
+
execution_context: typing.Union[str, int] = None,
|
|
1776
1776
|
undo: bool = None,
|
|
1777
1777
|
location: typing.Any = (0.0, 0.0),
|
|
1778
1778
|
):
|
|
1779
1779
|
"""Zoom out the view
|
|
1780
1780
|
|
|
1781
1781
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1782
|
-
:type execution_context: str
|
|
1782
|
+
:type execution_context: typing.Union[str, int]
|
|
1783
1783
|
:type undo: bool
|
|
1784
1784
|
:param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
|
|
1785
1785
|
:type location: typing.Any
|
|
@@ -1789,14 +1789,14 @@ def view_zoom_out(
|
|
|
1789
1789
|
|
|
1790
1790
|
def view_zoom_ratio(
|
|
1791
1791
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1792
|
-
execution_context: str = None,
|
|
1792
|
+
execution_context: typing.Union[str, int] = None,
|
|
1793
1793
|
undo: bool = None,
|
|
1794
1794
|
ratio: typing.Any = 0.0,
|
|
1795
1795
|
):
|
|
1796
1796
|
"""Set the zoom ratio (based on clip size)
|
|
1797
1797
|
|
|
1798
1798
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1799
|
-
:type execution_context: str
|
|
1799
|
+
:type execution_context: typing.Union[str, int]
|
|
1800
1800
|
:type undo: bool
|
|
1801
1801
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|
|
1802
1802
|
:type ratio: typing.Any
|